

/* Movies页面导航菜单样式 */
.header-nav-menu {
  display: flex;
  justify-content: space-between;
}

.header-nav-menu > div {
flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* navtitle样式 - 使用CKTKingkong字体 */
.navtitle {
  font-family: CKTKingkong;
  font-size: 42px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  margin-bottom: -5px;
}

/* navitem样式 - 使用背景图片 */
.navitem {
  display: block;
  width: 100%;
  padding: 5px 10px 3pX;
  background-image: url('../../series/img/btn.png');
  background-size: contain; /* 改为contain保持比例 */
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-family: SHanSanB;
  font-size: 20px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* 添加这行来去掉下划线 */
}

/* 鼠标悬停效果 */
.navitem:hover {
  background-image: url('../../series/img/btn_active.png');
  transform: translateY(-2px);
}

.navitem:active {
  transform: translateY(0);
}

/* 响应式设计1200 */
@media screen and (max-width:1200px) {
  .navtitle {
    font-size: 30px;
  }
  .navitem {
    padding: 5px 10px;
    font-size: 16px;
    min-height: 32px;
  }

}
/* 响应式设计768 */
@media screen and (max-width:768px) {
  .navtitle {
    font-size: 3.0vw;
    margin-bottom: -3PX;
  }
  .navitem {
    padding: 5px 5px;
    font-size: 2vw;
    min-height: 24px;
  }
}

/* 故事梗概部分样式 - 背景图设计 */
.story-section {
  position: relative;
  padding: 0;
  margin: 50px auto;
  min-height: 500px;
}

/* PC端图片样式 */
.storypc-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

/* 移动端图片样式 - 默认隐藏 */
.storysp-image {
  width: 100%;
  height: auto;
  display: none;
  max-width: 100%;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

/* 响应式设计 - 768px以下显示移动端图片 */
@media screen and (max-width: 768px) {
  .storypc-image {
    display: none;
  }
  
  .storysp-image {
    display: block;
  }
}

.story-section-header {
  position: absolute;
  top: 35px;
  left: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0;
  pointer-events: none; /* 允许点击穿透到下层元素 */
}

.story-title-cn {
  font-family: CKTKingkong;
  font-size: 68px;
  color: rgba(0, 0, 0, 1);
}

.story-title-en {
  font-family: CKTKingkong;
  font-size: 52px;
  color: rgba(1, 0, 0, 0.3);
}

.story-content-box {
  position: absolute;
  display: flex;
  gap: 30px;
    top: 120px;
  z-index: 2;
  padding: 20px;
}

/* 显示主要图片 */
.story-main-image {
  display: block;
  max-width: 50%;
  height: auto;
  margin-bottom: 20px;
  background: 
    url(../img/bg_cnr_tl.png) no-repeat 0 0,
    url(../img/bg_cnr_tr.png) no-repeat 100% 0,
    url(../img/bg_cnr_br.png) no-repeat 100% 100%,
    url(../img/bg_cnr_bl.png) no-repeat 0 100%;
  background-size: 
    20px 20px,
    20px 20px,
    20px 20px,
    20px 20px,
    auto;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

.story-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(0, 0, 1, 1);
  font-family: SHanSanB;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .story-section {
    margin: 50px 10px;
  }
  .story-section-header{
    top: 5%;
  }
  .story-title-en {
    font-size: 4.5vw;
  }
  
  .story-title-cn {
    font-size: 5vw;
  }
  
  .story-content-box {
    padding: 20px;
    gap: 20px;
    top: 10vw;
  }
  
  .story-description {
    font-size: 1.75vw;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .story-section-header{
    top: 6vw;
  }
  .story-section {
    margin: 30px 10px;
  }
  
  .story-title-en {
    font-size: 3.667vw;
  }
  .story-title-cn {
    font-size: 4.667vw;
  }
  .story-main-image{
    max-width: 100%;
    margin-bottom: 0;
  }
  
  .story-content-box {
    top: 12vw;
    padding: 15px;
    display: grid;
  }
  
  .story-description {
    font-size: 2.667vw;
    line-height: 1.4;
  }
}

/* 出场角色部分样式 - 背景图设计 */
.characters-section {
  position: relative;
  padding: 0;
  margin: 50px auto;
}

/* PC端图片样式 */
.characterspc-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

/* 移动端图片样式 - 默认隐藏 */
.characterssp-image {
  width: 100%;
  height: auto;
  display: none;
  max-width: 100%;
  position: relative;
  margin-top: 0;
  z-index: 1;
}

/* 响应式设计 - 768px以下显示移动端图片 */
@media screen and (max-width: 768px) {
  .characterspc-image {
    display: none;
  }

  .characterssp-image {
    display: block;
  }
}

.characters-section-header {
  position: absolute;
  top: 35px;
  left: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0;
  pointer-events: none; /* 允许点击穿透到下层元素 */
}

.characters-title-cn {
  font-family: CKTKingkong;
  font-size: 68px;
  color: rgba(0, 0, 0, 1);
}

.characters-title-en {
  font-family: CKTKingkong;
  font-size: 52px;
  color: rgba(1, 0, 0, 0.3);
}

/* 角色内容容器样式 - 背景图片布局 */
.characters-content-box {
  position: relative;
}

.characters-main-image{
  width: 100%;
  margin-top: 40px;
}
/* 角色描述区域样式 - 右侧显示 */

.characters-description {
  position: absolute;
  top: 80px;
  left: 48%;
  right: 20PX;
  z-index: 3;
  display: grid;
  align-items: flex-start;
}

/* 角色名称样式 */
.characters-description p:first-child {
  font-family: SHanSanB;
  font-size: 56px;
  font-weight: bold;
  color: #000000;
  margin: 0 0 20px 0;
}

/* 角色描述文字样式 */
.characters-description p:nth-child(2) {
  font-family: SHanSanM;
  font-size: 20px;
  line-height: 2;
  color: #000000;
  margin: 0 0 25px 0;
}

/* 详情按钮样式 */
.characters-description .button {
  width: 150px;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.characters-description .button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .characters-section{
    margin: 30px 10px 40px;
  }
  .characters-section-header {
    top: 5%;
  }
  .characters-title-cn {
    font-size:5vw;
  }
  .characters-title-en {
    font-size: 4.5vw;
  }
  
  .characters-description p:first-child {
    font-size: 3.667vw;
  }
  
  .characters-description p:nth-child(2) {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 768px) {
  .characters-section-header {
    top: 6vw;
  }
  .characters-main-image{
    margin-top: 4vw;
  }
  .characters-title-cn {
    font-size:4.667vw;
  }
  .characters-title-en {
    font-size: 3.667vw;
  }
  .characters-description{
    top: 8vw;
  }
  .characters-description p:first-child {
    font-size: 2.667vw;
    margin: 0 0 2.5vw 0;
  }
  
  .characters-description p:nth-child(2) {
    font-size: 1.8vw;
    line-height: 1.6;
    margin: 0 0 2.5vw 0;
  }
  
  .characters-description .button {
    width: 80px;
    display: block;
  }
}

/* 更多角色按钮样式 */
.moviesmore {
  /*width: 100%;*/
  padding:10px;
  background-image: url(../../series/img/more.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-family: SHanSanB;
  font-size: 20px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 悬停效果 */
.moviesmore:hover {
  transform: translateY(-2px) scale(1.05);
}

/* 点击效果 */
.moviesmore:active {
  transform: translateY(0) scale(1.02);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .moviesmore {
    font-size: 16px;
    padding: 10px;
    margin: 20px auto;
    min-height: 30px;
  }
}

/* 居中显示容器 */
.moviesmore-container {
  text-align: center;
  margin: 40px 0;
}
.moviesmore-container a{
  text-decoration: none;
  transition: all 0.3s ease;
}
.moviesbanner{
  display: flex;
  justify-content: center;
  margin: -50px auto 50px;
}
.moviesbanner img{
  width: 80%;
}
@media screen and (max-width: 768px){
  .moviesbanner{
    display: flex;
    justify-content: center;
    margin: -20px 10px 20px;
  }
  .moviesbanner img{
    width: 100%;
  }
}