/* 《塔塔远征队》官网 · PC 端样式总表（模块顺序即页面顺序） */
/* ===================================================================
 * 基础重置
 * =================================================================== */
body, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, h1, h2, h3, h4, h5, h6, hr {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ul,ol{
    list-style: none;
}
a{
    text-decoration: none;
    outline: none;
}
ul{
    list-style: none;
}
img{
    height: auto;
}
video{
    width: 100%;
    height: auto;
}

*:focus { outline: none; }
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table tr td{
    word-wrap: break-word;
    white-space: normal;
}
table a{
    word-wrap: break-word;
    white-space: normal;
}
.table-container {
    width: 100%;
    overflow-x: auto; 
}
.lineOne{
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
.flex_row{
    display: -webkit-box;
    display: -webkit-flex; 
    display: -ms-flexbox;
    display: flex;
}

.flex_column{
    display: -webkit-box;
    display: -webkit-flex; 
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.flex_1{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* ===================================================================
 * 富文本图片
 * =================================================================== */
.richtext-image.original-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

/* ===================================================================
 * 整站布局 / 缩放容器 / 首屏 / 咨询浮窗 / 字体
 * =================================================================== */
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html,
body {
  height: 100%;
  overflow: hidden; /* 自己控制滚动 */
  -ms-scroll-chaining: none;
      overscroll-behavior: none; /* 关键：禁止 Mac 橡皮筋 */
}
body {
  --primary: #ffa51d;
  cursor: url("../img/cursor.webp")
      4 4,
    auto;
}
img {
  width: 100%;
  height: auto;
}

@font-face {
  font-family: "mianhuatang";
  src: url("../font/ERYaMianHuaTang.ttf");
  font-weight: 400;
  font-style: normal;
}
.font-mianhuatang {
  font-family: "mianhuatang";
}
@font-face {
  font-family: "huhmlet";
  src: url("../font/ERYaMianHuaTang.ttf");
  font-weight: 600;
}
.font-huhmlet {
  font-family: "huhmlet";
}
@font-face {
  font-family: "siyuanhei";
  src: url("../font/SourceHanSansCN-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "siyuanhei";
  src: url("../font/SourceHanSansCN-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "siyuanhei";
  src: url("../font/SourceHanSansCN-Bold.otf");
  font-weight: 600;
}
.font-siyuanlei {
  font-family: "siyuanhei";
}

#pc_container {
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: relative;
  /* overflow: hidden; */
  background-image: url("../img/overflow_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#pc_container__wrap {
  aspect-ratio: 16 / 9;
  max-width: 100vw;
  max-height: 100vh;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%) !important;
  /* background-color: #fff; */

  --designW: 1920px;
  --designH: 1080px;
  --s: min(100vw / var(--designW), 100vh / var(--designH));
}
#pc_container__ground {
  width: 2500px;
  /* height: min-content; */
  height: 1080px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(var(--s));
      -ms-transform: translate(-50%, -50%) scale(var(--s));
          transform: translate(-50%, -50%) scale(var(--s)) !important;
  /* transform: translate(-50%, -50%) scale(var(--s));
  transform-origin: center; */
  overflow: hidden;
}
#pc_container__content {
  width: var(--designW);
  height: var(--designH);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%) !important;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center !important;
}
.pc_continer_overflow_bg,
.consult_wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-width: calc(100vw / var(--s));
  pointer-events: none;
}
.consult_wrapper {
  z-index: 99;
}
.global_bg {
  display: block !important;
}
.global_bg > * {
  pointer-events: all;
}
.text-primary {
  color: var(--primary);
}
.consult,
.consult_close {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  width: 111px;
  height: 531px;
  /* background: url(../img/consult.webp); */
  background: url(../img/consult/consult_bg.webp);
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -25px;
}
.consult.show {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.consult_item {
  position: absolute;
  width: 60px;
  height: 60px;
  /* cursor: pointer; */
  /* background-color: rgba(0, 0, 0, .3); */
  right: 0;
  display: block;
}
.consult_item .item_qrcode {
  display: none;
  width: 143px;
  height: 153px;
  background: url(../img/consult/scan_bg.png)
    no-repeat center/143px 153px;
  position: absolute;
  top: 50%;
  right: calc(100% + 4px);
  z-index: 11;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 15px 25px 15px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  text-align: center;
  color: #d98900;
}
.consult_item .item_qrcode img {
  width: 100%;
  height: auto;
}
.consult_item .item_qrcode p {
  margin-top: -5px;
  white-space: nowrap;
}

.consult_item:has(.item_qrcode):hover .item_qrcode {
  display: block;
}
.consult_item:nth-of-type(1) {
  top: 50px;
  background: url(../img/consult/weibo.webp)
    no-repeat center/40px 33px;
}
.consult_item:nth-of-type(1):hover {
  background: url(../img/consult/weibo_active.webp)
    no-repeat center/40px 33px;
}
.consult_item:nth-of-type(2) {
  top: 120px;
  background: url(../img/consult/douyin.webp)
    no-repeat center/36px 44px;
}
.consult_item:nth-of-type(2):hover {
  background: url(../img/consult/douyin_active.webp)
    no-repeat center/36px 44px;
}
.consult_item:nth-of-type(3) {
  top: 190px;
  background: url(../img/consult/weixin.webp)
    no-repeat center/43px 36px;
}
.consult_item:nth-of-type(3):hover {
  background: url(../img/consult/weixin_active.webp)
    no-repeat center/43px 36px;
}
.consult_item:nth-of-type(4) {
  top: 265px;
  background: url(../img/consult/B.webp)
    no-repeat center/40px 36px;
}
.consult_item:nth-of-type(4):hover {
  background: url(../img/consult/B_active.webp)
    no-repeat center/40px 36px;
}
.consult_item:nth-of-type(5) {
  top: 337px;
  background: url(../img/consult/xhs.webp)
    no-repeat center/40px 40px;
}
.consult_item:nth-of-type(5):hover {
  background: url(../img/consult/xhs_active.webp)
    no-repeat center/40px 40px;
}
.consult_item:nth-of-type(6) {
  top: 412px;
  background: url(../img/consult/fuli.webp)
    no-repeat center/40px 40px;
}
.consult_item:nth-of-type(6):hover {
  background: url(../img/consult/fuli_active.webp)
    no-repeat center/40px 40px;
}
.consult_btn_close {
  width: 40px;
  height: 100px;
  /* cursor: pointer; */
  position: relative;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  /* background-color: rgba(0, 0, 0, .3); */
  background: url(../img/consult/arrow.webp)
    no-repeat 20px/20px 23px;
}
.consult_btn_close:hover {
  background: url(../img/consult/arrow_active.webp)
    no-repeat 20px/20px 23px;
}
.consult_close {
  width: 66px;
  height: 144px;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(../img/consult_close.webp);
  /* cursor: pointer; */
}
.consult_close:hover {
  background: url(../img/consult/consult_close_active.webp);
}
.consult_close.show {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.star-mask {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 999;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#home,
#roles,
#game,
#news,
#pay {
  height: 1080px !important;
  padding-top: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
#home {
  display: block;
  padding-top: 0;
}
#footer,
#consult_wrapper {
  display: block !important;
}

/* 首页 */
#subscribe {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  margin-left: -12px;
  width: 395px;
  height: 110px;
  /* cursor: pointer; */
  background: url(../img/subscribe_btn.webp);
  background-size: contain;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#subscribe:active {
  -webkit-transform: translate(-50%, 0) scale(0.92);
      -ms-transform: translate(-50%, 0) scale(0.92);
          transform: translate(-50%, 0) scale(0.92);
}
#download {
  position: absolute;
  bottom: 43px;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 497px;
  height: 152px;
  /* cursor: pointer; */
  background: url(../img/pc_download.webp);
  background-size: contain;
  display: none;
}
#download_android,
#download_ios {
  display: block;
  /* background-color: rgba(255, 102, 0, 0.5); */
  width: 186px;
  height: 57px;
  position: absolute;
  left: 155px;
  top: 12px;
}
#download_ios {
  top: 82px;
}

#home .pc_continer_overflow_bg {
  /* background: url(../img/home/home_bg.webp) no-repeat
    center/cover; */
  position: relative;
}
#section_wrapper_home_bg_video {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2500px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#home .slogan {
  position: absolute;
  bottom: 164px;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 828px;
  height: auto;
}

/* ===================================================================
 * 顶部导航
 * =================================================================== */
#header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 100px;
  padding-right: 60px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
#header .pc_continer_overflow_bg {
  background: url(../img/header/header_bg.webp)
    no-repeat;
  background-size: 2500px 84px;
  background-position: center bottom 6px;
  background-color: #ffa800;
  height: 100%;
}
#header_nav_wrapper {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}

#header__logo {
  width: 139px;
  height: 84px;
  transform: translateY(6px);
}

#header_nav {
  display: flex;
  gap: 60px;
  align-items: center;
}

.header_nav__item {
  /* cursor: pointer; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transition: all 0.2s ease;
  position: relative;
}
.header_nav__item img {
  height: 31px;
  width: auto;
  /* display: none; */
  opacity: 0;
}
.header_nav__item.active img {
  height: 31px;
}
.header_nav__item:not(.active) img:nth-of-type(1) {
  display: block;
  opacity: 1;
}
.header_nav__item img:nth-of-type(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 42px;
  transform: translate(-50%, -50%);
}
.header_nav__item.active img:nth-of-type(2) {
  display: block;
  opacity: 1;
}
.header_nav__item:not(.active):hover {
  transform: scale(1.1);
}

#header_extra {
  display: flex;
  gap: 40px;
  align-items: center;
}
#header_extra > div {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#header_extra > div > img {
  height: 100%;
  width: auto;
}

#header_extra #header_subscribe {
  width: 221px;
  height: 60px;
  background: url(../img/subscribe_btn.webp)
    no-repeat center/contain;
  transition: all 0.1s ease;
  display: none;
}
#header_extra #header_subscribe:active {
  transform: scale(0.92);
}

#header_lang_pop {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 3px;
  /* padding: 6px 0; */
  white-space: nowrap;
  z-index: 999;
  display: none;
  transform: translate(-50%, 11px);
}
#header_lang_pop.show {
  display: block;
}
#header_lang_pop > div {
  background-color: rgba(26, 19, 23, 0.8);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 12px 23px 30px 15px;
  border-bottom-left-radius: 10px;
}

#header_lang_pop a {
  display: block;
  padding: 16px 12px 12px;
  text-decoration: none;
  color: var(--primary);
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

#header_lang_pop a:hover {
  color: #fff;
}

#music_toggle #music_bg_play {
  display: none;
}
#music_toggle #music_bg_pause {
  display: block;
}
#music_toggle.playing #music_bg_play {
  display: block;
}
#music_toggle.playing #music_bg_pause {
  display: none;
}


/* ===================================================================
 * 第二屏 塔塔图鉴
 * =================================================================== */
#section_roles,
#section_roles_content {
  width: 100%;
  height: 100%;

  position: relative;
}
#section_roles_ani {
  position: relative;
}

#section_roles .pc_continer_overflow_bg {
  background: url(../img/home/roles/section_roles_bg.webp)
    no-repeat center/cover;
}

#role_name {
  height: 181px;
  position: absolute;
  left: 76px;
  top: 99px;
}
#role_name img {
  height: 100%;
  width: auto;
}
#role_description {
  font-size: 24px;
  font-weight: 500;
  color: #6b3f00;
  line-height: 36px;
  width: 446px;
  position: absolute;
  left: 148px;
  top: 286px;
}
#role_list_sub {
  position: absolute;
  top: 151px;
  right: 128px;
  display: flex;
  gap: 56px;
  align-items: center;
}
.role_list_sub_item {
  width: 118px;
  height: 121px;
}
.role_list_sub_item.active {
  transform: scale(1.29);
}
#role_main {
  width: 609px;
  height: 625px;
  background: url(../img/home/roles/role_center_bg.webp)
    no-repeat center/contain;
  position: absolute;
  top: 252px;
  left: 686px;
  z-index: 11;
}

#role_main > img {
  width: 702px;
  height: 553px;
  position: absolute;
  /* top: 62px;
  left: 84px; */
  max-width: 100%;
  max-height: 100%;
 /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  top: 20px;
  left: -20px;
  object-fit: contain;
}
#role_list {
  position: absolute;
  top: 591px;
  left: 120px;
  right: 113px;
  z-index: 10;
  height: 226px;
}
.role_list_item {
  width: 264px;
  height: 226px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
}
.role_list_item:active {
  transform: scale(0.9);
}
.role_list_item:nth-of-type(1) {
  left: 0;
}
.role_list_item:nth-of-type(2) {
  left: 241px;
}
.role_list_item:nth-of-type(3) {
  left: 1185px;
}
.role_list_item:nth-of-type(4) {
  left: 1425px;
}


/* ===================================================================
 * 第三屏 游戏特色轮播
 * =================================================================== */
#section_game {
  width: 100%;
  height: 100%;

  position: relative;
  position: absolute;
  top: 0;
}
#section_game .pc_continer_overflow_bg {
  background: url(../img/game/game_bg.webp)
    no-repeat center/cover;
}

.slide {
  display: flex;
  align-items: center;
  margin-top: 18px;
  gap: 18px;
  align-items: center;
  margin-top: 152px;
  gap: 18px;
  justify-content: center;
}
#game_swiper {
  height: 707px;
  position: absolute;
  left: 50%;
  top: 199px;
  transform: translate(-50%, 0);
  position: relative;
  box-sizing: border-box;
  width: calc(439px * 3);
}
.game_kv {
  width: 392px !important;
  height: 707px;
  position: relative;
  background: url("../img/game/game_ground_border.webp")
    no-repeat center/cover;
}
#game_swiper .swiper-slide {
  width: 439px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.92);
  opacity: 0;
}
#game_swiper .swiper-slide-prev {
  transform: translateY(8px) scale(0.85) rotate(-5deg);
  opacity: 1;
}
#game_swiper .swiper-slide-next {
  /* translateX(-17px) */
  transform: translateY(8px) scale(0.85) rotate(5deg);
  opacity: 1;
}
#game_swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.game_kv img {
  width: 378px;
  height: 667px;
  position: absolute;
  top: 33px;
  left: 8px;
}
.swiper-slide-next .game_kv::after,
.swiper-slide-prev .game_kv::after {
  content: "";
  display: block;
  width: 363px;
  height: 653px;
  position: absolute;
  top: 40px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 40px;
}
#game_swiper .game_button_next,
#game_swiper .game_button_prev {
  width: 81px;
  height: 86px;
  margin-top: 0;
  transition: all 0.3s ease;
}
#game_swiper .game_button_next:active,
#game_swiper .game_button_prev:active {
  transform: scale(0.85);
}
#game_swiper .game_button_next {
  right: -114px;
  background: url(../img/game/right.webp)
    no-repeat center/80px 84px;
}
#game_swiper .game_button_prev {
  left: -114px;
  background: url(../img/game/left.webp)
    no-repeat center/80px 84px;
}
#game_swiper .game_button_next:hover {
  background: url(../img/game/right_hover.webp)
    no-repeat center/80px 84px;
}
#game_swiper .game_button_prev:hover {
  background: url(../img/game/left_hover.webp)
    no-repeat center/80px 84px;
}
#game_swiper .game_button_next:after,
#game_swiper .game_button_prev:after {
  font-size: 0;
}
#game_swiper .swiper-pagination {
  left: 50%;
  bottom: 60px;
  top: unset;
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
#game_swiper .swiper-pagination-bullet {
  background-color: #fff;
  width: 16px;
  height: 16px;
  margin-right: 32px;
  opacity: 1;
}
#game_swiper .swiper-pagination-bullet-active {
  width: 30px;
  height: 31px;
  background: url("../img/game/active.webp")
    no-repeat;
}
#game_swiper .swiper-horizontal > .swiper-pagination-bullets,
#game_swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -122px;
}


/* ===================================================================
 * 新闻区块（当前版本未启用）
 * =================================================================== */
@font-face {
  font-family: "HanSansCN";
  src: url("../font/SourceHanSansCN-Regular.otf");
  font-weight: 400;
  font-style: normal;
}

#section_news {
  position: relative;
  height: 100%;
  font-family: "HanSansCN";
}
#news_detail {
  --newsContentW: 1272px;
}

#section_news .pc_continer_overflow_bg {
  background: url("../img/news/news_bg.webp") no-repeat
    center/cover;
}

.news_bg {
  background: url("../img/news/news_bg.webp") no-repeat
    center/cover;
}

.absolute_full {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  transform: translate(-50%, 0);
  max-width: calc(100vw / var(--s));
  pointer-events: none;
}

.news_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  margin-left: -40px;
  padding-top: 15px;
  padding-left: 138px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-family: "HanSansCN";
  margin-top: -20px;
}

.news_content_bg {
  width: 1663px;
  height: 712px;
  background: url("../img/news/news_content_bg.webp")
    no-repeat;
}

.news_content_large_bg {
  width: 1663px;
  height: 833px;
  background: url("../img/news/news_detail_content_bg.png")
    no-repeat;
  margin-top: 35px;
}

/* 新闻首页 */
.news_left {
  width: 636px;
  height: 502px;
  background: url("../img/news/news_banner.webp")
    no-repeat;
  background-position-x: right;
  flex: 1;
  margin-right: 14px;
}

.news_right {
  flex: 1;
  width: 580px;
  height: 502px;
  margin-left: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
[lang="en"] .news_title {
  background: url("../img/news/en_news_title.webp")
    no-repeat;
  height: 33px;
  width: 68px;
}
[lang="en"] .more_button {
  width: 199px;
  height: 58px;
  background: url("../img/news/en_unclick_news_button.webp")
    no-repeat;
  transition: all 0.3s ease;
}
[lang="en"] .more_button:hover {
  width: 180px;
  height: 53px;
  background: url("../img/news/en_click_news_button.webp")
    no-repeat;
}
.news_icon {
  background: url("../img/news/news_icon.png") no-repeat;
  width: 16px;
  height: 20px;
  margin-right: 24px;
  display: inline-block;
}
.news_list {
  width: 580px;
}
.news_list_item {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  height: 60px;
  line-height: 42px;
  font-weight: bold;
  color: #263437;
  border-bottom: 3px dotted #d6d0bd;
  padding: 15px 0;
}
.news_date {
  font-weight: normal;
}
.news_bottom {
  width: 580px;
  height: 58px;
  display: flex;
  justify-content: end;
}

/* 新闻详情页 */
.news_detail_page {
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 110px;
}
.news_detail_page .title_page {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 75px;
}
.news_detail_page .title_group {
  width: var(--newsContentW);
  background-color: #f7f3e6;
  height: 60px;
  line-height: 60px;
  border-radius: 10px;
  font-size: 24px;
  display: flex;
  margin: 40px 0;
}
.news_detail_page .title_group .title {
  width: var(--newsContentW);
  font-weight: bold;
  margin-left: 40px;
}
.news_detail_page .title_group .date {
  margin-right: 40px;
}
.news_detail_page .content {
  width: var(--newsContentW);
  height: 450px;
  overflow: auto;
  font-size: 18px;
  line-height: 30px;
  padding-right: 42px;
  margin-left: 42px;
}

/* 滑块7 轨道4 */
/* 设置整个滚动条的宽度（竖直方向）和高度（水平方向） */
::-webkit-scrollbar {
  width: 4px; /* 竖直滚动条宽度 */
  height: 4px; /* 水平滚动条高度 */
}

/* 设置滚动条轨道 */
::-webkit-scrollbar-track {
  background: #ffedb9; /* 轨道背景色 */
  border-radius: 10px; /* 轨道圆角 */
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); /* 可选：内阴影，增加立体感[citation:7] */
}

/* 设置滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #e6b225; /* 滑块颜色 */
  border-radius: 6px; /* 滑块圆角 */
  border: 2px solid #ffedb9; /* 在滑块和轨道间创建边框效果[citation:3] */
}

/* 设置鼠标悬停在滑块上的样式 */
::-webkit-scrollbar-thumb:hover {
  background: #e6b225; /* 悬停时颜色变深[citation:1][citation:3][citation:5] */
}

/* firefox */
html {
  scrollbar-width: thin; /* 可选值：auto, thin, none */
  scrollbar-color: #e6b225 #ffedb9; /* 格式：滑块颜色 轨道颜色 */
}

/* 新闻列表页 */
.news_list_page {
  display: flex;
  flex-direction: column;
}
.news_list_page .content {
  height: 660px;
  padding: 0 55px 0 0;
  overflow: auto;
}
.news_list_page .list_item {
  width: var(--newsContentW);
  height: 320px;
  border-radius: 30px;
  background-color: #f7f3e6;
  padding: 18px 50px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
}
.left {
  margin-right: 45px;
}
.news_list_page .title_group {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  border-bottom: 3px dotted #d6d0bd;
  padding: 20px 0;
  display: flex;
}
.news_list_page .title_group .title {
  margin-top: -5px;
}

.news_list_page .desc {
  font-size: 18px;
  line-height: 30px;
  margin: 16px 0;
}
.news_list_page .date {
  font-size: 18px;
  position: absolute;
  bottom: 30px;
  left: 50px;
}

.news_list_page .right {
  margin-top: -14px;
}

.news_list_page .news_image {
  width: 481px;
  height: 273px;
  object-fit: cover;
  border: 5px solid rgb(216, 230, 108);
  border-radius: 25px;
  margin-top: 15px;
}
.news_kv1,
.news_kv2 {
  width: 487px;
  height: 278px;
  background: url("../img/news/kv.webp") no-repeat;
}

.back {
  position: absolute;
  left: 160px;
  top: 80px;
  width: 51px;
  height: 51px;
  background: url("../img/news/click_back_button.png")
    no-repeat;
  transition: all 0.3s ease;
}
.back:hover {
  background: url("../img/news/unclick_back_button.webp")
    no-repeat;
}

a {
  color: #263437;
  transition: all 0.3s ease;
}
a:hover {
  transform: scale(1.03);
}

/* 1462 */


/* ===================================================================
 * 页脚 / 适龄提示
 * =================================================================== */
#footer {
  position: relative;
  color: #fff;
  background-color: #000;
}

#footer .pc_continer_overflow_bg {
  background-color: #000;
}

.footer {
  padding: 14px /* 14/80 */;
  font-family: "MaoKen";
  position: relative;
  z-index: 100;
  width: 800px;
  margin: 0 auto;
}

.footer span,
.footer div {
  font-size: 14.5px /* 14.5/80 */;
  color: #999999;
}

.footer_logo {
  text-align: center;
  display: block;
}

.footer_logo img {
  width: 286px /* 212/80 */;
}

.footer_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}


.footer_link a {
  padding: 9px /* 9/80 */ 0;
  font-size: 14.5px /* 14.5/80 */;
  margin: 0 0.05rem;
}

.footer_police,
.footer_text,.footer_a {
  padding: 9px /* 9/80 */ 0;
  font-size: 14.5px /* 14.5/80 */;
  text-align: center;
}

.footer_a {
  display: block;
  width: 100%;
 }
.footer_police span {
  font-size: 14.5px /* 14.5/80 */;
}

.footer_police .footer_police_img {
  width: 27px /* 27/80 */;
  vertical-align: middle;
  border-style: none;
  margin-right: 10px /* 10/80 */
}

.footer_line {
  padding: 9px /* 9/80 */ 0;
  font-size: 14.5px /* 14.5/80 */;
  text-align: center;
}

.footer_line a, .footer a {
  font-size: 14.5px /* 14.5/80 */;
  color: #999999;
  text-align: center;
}

.footer_end {
  padding: 9px /* 9/80 */ 0;
  display: flex;
  justify-content: center;
  gap: .5rem /* 40/80 */
}

.footer_end img {
  display: inline-block;
  height: 62px /* 62/80 */;
  width: auto;
}
.footer_en .footer_link{
  align-items: center;
}
.footer_en .footer_link a{
  color: #999999;
}

.footer .icon_rightage {
  width: 55px /* 55/80 */;
  height: 71px /* 71/80 */;
  background: url(../img/footer/rightage.webp) 0 0 / 100% auto no-repeat;
  cursor: pointer;
}

.copyright {
  margin-top: 20px /* 20/80 */;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.age-model {
  position: fixed;
  top: 0;
  left: 50%;
  width: 2500px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px /* 8/75 */);
  transform: translateX(-50%);
  z-index: 999;
  display: none;
}

.age-model h4 {
  font-size: 36px;
  color: #000;
}

.age-model .age-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 010px;
  width: 1125px;
  padding: 37.5px;
  color: #999999;
}

.age-model .age-content .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.age-model .age-content h1 {
  font-size: xxx-large;
}

.age-model .age-content p {
  font-size: 22.5px;
  line-height: 37.5px;
}

.age-model .age-content .btn-close {

  background: url(../img/close.webp) no-repeat center / cover;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  width: 75px;
  height: 75px;
  top: -18px;
  right: -18px;
}

/* ===================================================================
 * 预约弹窗
 * =================================================================== */
#subscribe_modal {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
#subscribe_modal_overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
#subscribe_modal_wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 832px;
  height: 510px;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  overflow: hidden;
  background-color: #fffadf;
  background-image: url(../img/subscribe/subscribe_content_bg.webp);
  background-size: cover;
  display: flex;
  flex-direction: column;
}
#subscribe_header {
  height: 80px;
  background-color: #ffca49;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.subscribe_title {
  width: 176px;
  height: 46px;
  display: block;
}
.subscribe_title_success {
  width: 265px;
  height: 48px;
  display: none;
}
#subscribe_modal.success .subscribe_title {
  display: none;
}
#subscribe_modal.success .subscribe_title_success {
  display: block;
}
.subscribe_close {
  width: 41px;
  height: 41px;
  position: absolute;
  top: 16px;
  right: 20px;
}

#subscribe_content {
  padding: 34px 64px;
}
#subscribe_content a:link,
#subscribe_content a:hover,
#subscribe_content a:active,
#subscribe_content a:visited {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 12px;
}

#subscribe_content form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}
#subscribe_modal.success form {
  display: none;
}
.subscribe_platform_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  color: #6b3f00;
  height: 19px;
  width: 374px;
  margin: 0 auto;
}
#subscribe_content label {
  display: flex;
  align-items: center;
  gap: 10px;
}
#subscribe_content label .checkbox {
  display: none;
}

#subscribe_content label .checkbox + .check_icon {
  width: 19px;
  height: 19px;
  background: url(../img/unchecked.png);
  background-size: contain;
}
#subscribe_content label .checkbox:checked + .check_icon {
  background: url(../img/checked.png);
}
#subscribe_content .input {
  display: block;
  width: 100%;
  height: 64px;
  border-radius: 1000px;
  background-color: #fff;
  border: 3px solid #ffe4a2;
  box-sizing: border-box;
  padding: 0 24px;
  line-height: 58px;
  color: #6b3f00;
  font-size: 24px;
}
#subscribe_content .input::placeholder {
  color: #ada89d;
}
.subscribe_code_wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 28px;
}
.subscribe_code_wrap :first-child {
  flex: 1;
}
.subscribe_code_wrap :last-child {
  width: 195px;
  transition: transform 0.2s ease;
}
.subscribe_code_wrap :last-child:active {
  transform: scale(0.938);
}
.code_btn {
  width: 195px;
  height: 64px;
  background: url(../img/subscribe/subcribe_code_btn.webp);
  background-size: contain;
  font-family: "mianhuatang";
  font-size: 24px;
  color: #fff;
  /* -webkit-text-stroke: 2px #c56e09; */
  /* text-shadow: 2px 2px 0 #c56e09, -2px -2px 0 #c56e09, -2px 2px 0 #c56e09, 2px -2px 0 #c56e09; */
  /* -webkit-text-stroke: 2px #c56e09; */
  text-shadow: -2px 0px 0 #c56e09, 
    -2px 2px 0 #c56e09, 
    0px 2px 0 #c56e09,
    2px 2px 0 #c56e09, 
    2px 0px 0 #c56e09, 
    2px -2px 0 #c56e09,
    0px -2px 0 #c56e09,
    -2px -2px 0 #c56e09;
  text-align: center;
  vertical-align: middle;
  line-height: 64px;
}
.code_btn > span {
  display: inline-block;
  transform: translate(0, -0.125em);
}
.subscribe_submit_wrapper {
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.subscribe_submit_wrapper .submit_btn {
  width: 195px;
  height: 64px;
  background: url(../img/subscribe/submit_btn.webp);
  background-size: contain;
  transition: transform 0.2s ease;
}
.subscribe_submit_wrapper .submit_btn:active {
  transform: scale(0.938);
}
.subscribe_protocol_wrapper {
  font-size: 24px;
  color: #bb8605;
}

.subscribe_error_toast {
  width: 617px;
  height: 40px;
  background: url(../img/subscribe/subscribe_error_text_bg.webp)
    no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  font-family: "mianhuatang";
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}
.subscribe_error_toast > span {
  transform: translate(0, -0.125em);
  display: inline-block;
}

.subscribe_success {
  display: none;
  flex-direction: column;
  align-items: center;
}
#subscribe_modal.success .subscribe_success {
  display: flex;
}
.subscribe_success_text {
  width: 377px;
  height: 34px;
  margin-top: 14px;
  margin-left: -15px;
  background: url(../img/subscribe/subscribe_success_text.webp)
    no-repeat center/contain;
}
.subscribe_success_icons {
  width: 630px;
  height: 84px;
  margin-top: 70px;
  background: url(../img/subscribe/subscribe_success_icons.webp)
    no-repeat center/contain;
  position: relative;
}
.subscribe_success_icons_item {
  position: absolute;
  width: 80px;
  height: 80px;
  /* background: rgba(0, 0, 0, .3); */
  left: 5px;
  top: 0;
}
.subscribe_success_icons_item:nth-of-type(2) {
  left: 188px;
}
.subscribe_success_icons_item:nth-of-type(3) {
  left: 368px;
}
.subscribe_success_icons_item:nth-of-type(4) {
  left: 551px;
}
.subscribe_success_icons_item .item_qrcode {
  display: none;
  width: 141px;
  height: 174px;
  background: url(../img/consult/scan_bg_v.png)
    no-repeat center/141px 174px;
  position: absolute;
  left: 50%;
  top: 86px;
  z-index: 11;
  transform: translate(-50%, 0);
  padding: 28px 15px;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
  color: #d98900;
}
.subscribe_success_icons_item .item_qrcode img {
  width: 100%;
  height: auto;
}
.subscribe_success_icons_item .item_qrcode p {
  margin-top: -5px;
  white-space: nowrap;
}
.subscribe_success_icons_item:has(.item_qrcode):hover .item_qrcode {
  display: block;
}
