/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  color: #333;
  position: relative;
  min-width: 1200px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/*清除浮动*/
.clearfix:after {
  visibility: hidden;
  clear: both;
  display: block;
  content: ".";
  height: 0;
}

.clearfix {
  *zoom: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* PC端样式 */
@media screen and (min-width: 751px) {
  /* 头部导航 */
  .header {
    height: 80px;
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: 0px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
  }

  .nav {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .logo {
    height: 70px;
    margin-right: 80px;
  }

  .nav-menu {
    display: flex;
    gap: 40px;
    height: 100%;
  }

  .nav-menu li {
    display: flex;
    align-items: center;
  }

  .nav-menu a {
    color: #333;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
  }

  .nav-menu a:hover {
    color: #c19c67;
  }

  /* 主视觉区域 */
  .hero {
    height: 1075px;
    position: relative;
    overflow: hidden;
  }

  /* Hero Swiper 容器 */
  .hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  /* Hero 幻灯片 */
  .hero-slide {
    width: 100%;
    height: 100%;
    background-size: 3840px 1075px;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* 下载容器 */
  .download-container {
    position: absolute;
    bottom: 230px;
    left: 50%;
    transform: translateX(-50%);
    width: 766px;
    height: 170px;
    background: url("../images/pc/download_bg.png") no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    padding: 0 20px 0 10px;
  }

  .qr-section {
    width: 163px;
    height: 140px;
    background: url(../images/pc/scan_download.png) 0 0 / 100% 100% no-repeat;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
  }
  .qr-section img {
    width: 120px;
    height: 120px;
    position: absolute;
    right: 2px;
    top: 10px;
  }
  @keyframes qrscan {
    0% {
      top: 5px;
    }
    100% {
      top: 125px;
    }  
  }
  .qr-section .scan {
    width: 125px;
    height: 10px;
    background: url(../images/pc/online_offline.png) 0 0 / 100% 100% no-repeat;
    position: absolute;
    top: 6px;
    right: 0;
    animation: qrscan 3s ease-in-out infinite;
  }

  .buttons-section {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .buttons-section a img {
    display: block;
  }

  .pc_down {
    display: block;
    width: 126px;
    height: 125px;
    background: url(../images/pc/pc_simulator.png) 0 0 / 100% 100% no-repeat;
    margin-left: 10px;
  }

  /* 新闻区域 */
  .news-section {
    padding: 50px 0;
    position: relative;
    z-index: 10;
    background: url("../images/pc/bg_02.png") no-repeat center;
    background-size: cover;
    margin-top: 0;
    /* 确保紧贴hero区域 */
  }

  .g-news {
    display: flex;
    gap: 20px;
    width: 1000px;
    /* 根据内容调整 */
    margin: 0 auto;
    background: url("../images/pc/add.png") no-repeat center;
    padding: 20px;
  }

  .m-banner {
    width: 420px;
    /* 调整宽度 */
    flex-shrink: 0;
  }

  .m-banner img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .news-content {
    display: flex;
    flex-direction: column;
    width: 300px;
    /* 调整宽度 */
    gap: 10px;
  }

  .m-news,
  .kf-list {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 5px;
  }

  .m-news .nav {
    display: flex;
    list-style: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    justify-content: flex-start;
    gap: 20px;
  }

  .m-news .nav li {
    cursor: pointer;
    padding: 5px 10px;
  }

  .m-news .nav li.active {
    border-bottom: 2px solid rgb(136, 201, 244);
    color: rgb(136, 201, 244);
    font-weight: bold;
  }

  .m-news .news-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 14px;
  }

  .m-news .news-list a {
    color: #333;
  }

  .m-news .news-list a:hover {
    text-decoration: underline;
  }

  .kf-list h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
  }

  .kf-list ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
  }

  .kf-list .qu {
    font-weight: bold;
  }

  .news-tabs button {
    background: none;
    border-bottom: none;
    padding: 8px 12px;
    /* 调整按钮内边距 */
    cursor: pointer;
    font-size: 14px;
    /* 调整字体大小 */
  }
  .news-list {
    padding-top: 10px;
    display: none;
  }
  .news-list.active {
    display: block;
  }
  @keyframes showNews {
    0% {
      opacity: 0;
      transform: translateY(-5px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .news-list li {
    opacity: 0;
    animation: showNews 0.5s forwards;
    font-size: 14px;
  }
  .news-list li:nth-child(1) {
    animation-delay: 0s;
  }
  .news-list li:nth-child(2) {
    animation-delay: 0.1s;
  }
  .news-list li:nth-child(3) {
    animation-delay: 0.2s;
  }
  .news-list li:nth-child(4) {
    animation-delay: 0.3s;
  }
  .news-list li:nth-child(5) {
    animation-delay: 0.4s;
  }
  .news-list li:nth-child(6) {
    animation-delay: 0.5s;
  }
  .news-list a {
    font-size: 14px;
    width: 100%;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news-list a span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #555;
  }
  .news-list em {
    display: inline-block;
    width: 44px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    margin-right: 6px;
    font-style: normal;
  }
  .news-list em[data-type="gg"] {
    background-color: #68a8ff;
  }
  .news-list em[data-type="xw"] {
    background-color: #76c277;
  }
  .news-list em[data-type="hd"] {
    background-color: #e59469;
  }
  .news-list em[data-type="gl"] {
    background-color: #69bdad;
  }

  .news-list li i {
    width: 50px;
    text-align: right;
    color: #72c1c5;
    font-size: 14px;
    font-style: normal;
  }

  .news-list a:hover span {
    color: #c19c67;
  }

  .kf-list h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
  }

  .kf-list ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
  }

  .kf-list .qu {
    font-weight: bold;
  }

  .news-grid {
    display: flex;
    /* gap: 20px; */
    position: absolute;
    top: 930px;
    left: 50%;
    transform: translateX(-50%);
    width: 1237px;
    height: 310px;
    z-index: 100;
    padding: 5px;
    background: url(../images/pc/news_bg.png) 0 0 / 100% 100% no-repeat;
  }

  .news-swiper {
    width: 529px;
    height: 300px;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
  }
  .news-swiper .swiper-pagination {
    position: absolute;
    text-align: end;
    font-size: 20px;
    padding-right: 30px;
  }
  .news-swiper .swiper-slide img {
    width: 529px;
    border-radius: 12px;
    overflow: hidden;
  }
  .news-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 1;
  }
  .news-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 40px;
    background-color: #fff;
  }
  .news-side {
    flex: 1;
    background-color: #fff;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 0 5px;
    overflow: hidden;
  }
  .news-tabs {
    display: flex;
    border-bottom: 1px solid #c19c67;
    padding: 20px 10px 12px;
    position: relative;
  }
  .tonews {
    width: 16px;
    height: 16px;
    background: url(../images/pc/add.png) 0 0 / 100% 100% no-repeat;
    position: absolute;
    right: 0.2rem;
    top: 0.24rem;
  }

  .news-tabs button {
    height: 25px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: none;
    border: 2px solid transparent;
    padding: 0 15px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
  }

  .news-tabs button.active {
    color: #fff;
    font-weight: bold;
    background-color: #c19c67;
  }
  .news-tabs button:hover {
    color: #c19c67;
  }
  .news-tabs button.active:hover {
    color: #fff;
  }

  .news-list li,
  .server-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
  }

  .server-side {
    width: 250px;
    background: rgba(255, 255, 255, 0.8);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 5px 5px 0;
  }

  .server-header {
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid #c19c67;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .server-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .server-table-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 5px;
    font-weight: bold;
    font-size: 16px;
  }
  .server-list {
    height: 200px;
    overflow-y: auto;
  }
  .server-list::-webkit-scrollbar {
    width: 3px;
  }
  .server-list::-webkit-scrollbar-track {
    background: #000;
    border-radius: 10px;
  }
  .server-list::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 10px;
  }

  .server-col-name {
    flex: 1;
    text-align: center;
  }

  .server-col-time {
    flex: 1;
    text-align: center;
  }

  .server-list li {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    font-size: 14px;
  }

  .server-name {
    color: #333;
    flex: 1;
    text-align: center;
    
  }

  .server-time {
    color: #666;
    width: 120px;
  }

  /* 职业展示  */
  .characters-section {
    height: 1292px;
    background: url("../images/pc/bg_02.jpg") no-repeat center;
    background-size: 3840px 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  #characters-mdd {
    position: absolute;
    top: 1.2rem;
  }
  .occupation {
    padding-top: 375px;
  }

  /* 职业展示Swiper样式 */
  .occupation-swiper {
    width: 1160px;
    height: 100%;
    position: relative;
  }

  .occupation-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .occupation-swiper .swiper-slide img {
    width: 75%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .occupation .swiper-button-next::after,
  .occupation .swiper-button-prev::after {
    display: none;
  }

  .occupation .swiper-button-prev {
    width: 111px;
    height: 106px;
    top: 54%;
    left: calc(50% - 720px);
    z-index: 100;
    background: url(../images/pc/arrow_left.png) 0 0 / 100% 100% no-repeat;
  }
  .occupation .swiper-button-next {
    width: 111px;
    height: 106px;
    top: 54%;
    right: calc(50% - 720px);
    z-index: 100;
    background: url(../images/pc/arrow_right.png) 0 0 / 100% 100% no-repeat;
  }

  /* 游戏特色 */
  .features-section {
    height: 1292px;
    background: url("../images/pc/bg_03.jpg") no-repeat center;
    background-size: 3840px 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 240px;
  }
  #features-mdd {
    position: absolute;
    top: -.5rem;
  }
  .swiper-ts {
    width: 1160px;
    margin: 0 auto;
    overflow: hidden;
  }
  .swiper-ts .swiper-slide {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 965px;
    height: 560px;
  }

  .swiper-ts .swiper-slide-prev,
  .swiper-ts .swiper-slide-next {
    position: relative;
  }

  .swiper-ts .swiper-slide::after {
    transition: all ease 0.1s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }

  .swiper-ts .swiper-slide-active::after {
    opacity: 0;
  }
  .social-links {
    margin-top: 120px;
  }
  .social-links .wx {
    position: relative;
  }
  .social-links .wx .qr_wx {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
  }
  .social-links a {
    display: inline-block;
    margin: 0 15px;
    font-size: 20px !important;
  }
  .social-links a .name  {
    font-size: 30px;
    font-weight: 700;
    color: #198c7a;
    font-family: cursive;
    text-align: center;
    margin-top: 12px;
  }
}
  /* 新闻列表 start */
  .news_area {
    min-height: calc(100vh - 143px);
    position: relative;
  }
  .news_banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: url('../images/pc/1_01.jpg') center 0 / 3840px 769px no-repeat;
    z-index: -1;
  }
  .big_in {
    position: relative;
    width: 956px;
    padding-bottom: 100px;
    font: 12px/1.5 "\5FAE\8F6F\96C5\9ED1", arial;
  }

  .new_titie {
    text-align: left;
    font-size: 30px;
    font-weight: 400;
    color: #ffdba2;
    height: 83px;
    line-height: 83px;
    background: url("../img/list.jpg") no-repeat;
    background-size: 100% 100%;
    font-family: "SimSun", "宋体", Arial, sans-serif;
    padding-left: 20px;
    color: #ffffff;
  }

  .new_contain {
    width: 100%;
    background: #fff;
    min-height: 700px;
  }

  .small_title {
    text-align: right;
    padding-right: 50px;

    color: #ffffff;
    font-size: 14px;
  }
  .small_title a {
    color: #ffffff;
    text-decoration: underline;
  }

  .new_nav {
    padding: 20px 40px 15px;
    display: flex;
    justify-content: flex-start;px
    align-items: center;
    border-bottom: 1px solid #c19c67;
  }

  .new_nav li {
    width: 80px;
    height: 36px;
    margin-right: 10px;
    border-radius: 6px;
  }

  .new_nav li a {
    font-size: 16px;
    text-align: center;
    display: block;
    color: #000;
    line-height: 36px;
  }

  .new_nav li.new_current {
    background: #cfae69;
  }

  .new_nav li.new_current a {
    color: #fff;
  }

  .new_list {
    width: 92%;
    margin: 0 auto;
    padding: 15px 0 55px;
  }

  .new_list li {
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #d5cab2;
  }

  .new_list li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #333333;
    overflow: hidden;
  }

  .new_L {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .new_L span {
    width: 44px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    margin-right: 6px;
  }
  .new_L div {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .new_L span[data-type="gg"] {
    background-color: #68a8ff;
  }
  .new_L span[data-type="xw"] {
    background-color: #76c277;
  }
  .new_L span[data-type="hd"] {
    background-color: #e59469;
  }
  .new_L span[data-type="gl"] {
    background-color: #69bdad;
  }
  .new_R {
    padding-right: 15px;
    margin-left: 20px;
  }

  .num {
    text-align: center;
  }

  .num_list {
    display: inline-block;
  }

  .num_list li a {
    padding: 4px 8px;
    height: 24px;
    margin-right: 8px;
    color: #b4a387;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
  }

  .num_list li.num_listCurrent a {
    color: #f8f1df;
    background: #b4a387;
  }

  .num_list li.num_next a {
    width: auto;
    padding: 4px 6px;
    border: 1px solid #b4a387;
  }

  .num_list li.num_fi a {
    padding: 4px 4px;
  }
  .m-download {
    background: url("../images/pc/bg.png") 0 0 / 100% 100% no-repeat;
    width: 244px;
    height: 724px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .m-download .ios_download {
    width: 179px;
    height: 57px;
    background: url(../images/pc/ios.png) 0 0 / 100% 100% no-repeat;
    margin-bottom: 20px;
  }
  .m-download .android_download {
    width: 179px;
    height: 57px;
    background: url(../images/pc/android.png) 0 0 / 100% 100% no-repeat;
    margin-bottom: 20px;
  }
  .m-download .qr {
    width: 150px;
    height: 150px;
    background: url(../images/pc/qr_border.png) 0 0 / 100% 100% no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .m-download .qr img {
    width: 140px;
    height: 140px;
  }
  .m-download .xslb {
    width: 244px;
    height: 77px;
    background: url(../images/pc/newbie_gift.png) 0 0 / 100% 100% no-repeat;
    margin: 25px 0;
  }
  .m-download > span {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
    font-family: 'fangsong';
  }
  .m-download img {
    display: block;
    width: 60%;
    margin: 10px auto;
  }
  /* 新闻页面 end */

  /* footer pc start */
  .footer {
    font-size: 14px;
    background-color: #333;
    padding: 10px 0 20px;

  }
  .footer .logo {
    display: block;
    float: left;
    margin: 20px 0 20px 20px;
    padding-right: 20px;
    border-right: 2px solid #5b5b5b;
    height: 63px;
  }
  .footer a {
    color: #fff;
  }
  .footer ul {
    width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .footer ul p {
    line-height: 24px;
    display: block;
    float: left;
    margin-top: 20px;
    margin-left: 20px;
    color: #666;
  }
  .footer ul p span i {
    font-style: normal;
  }
  .footer .legal-ico {
    height: 50px;
    padding: 0 0;
    font-size: 12px;
    padding-left: 260px;
  }
  .legal-ico li {
    float: left;
    height: 50px;
    width: 121px;
    background: #4a4a4a;
    margin-right: 8px;
    border: 1px #131313;
    margin: 0px auto;
    border-radius: 250px;
    margin-left: 10px;
  }
  .legal-ico li.large {
    width: 175px;
  }
  .legal-ico a {
    height: 50px;
    line-height: 15px;
    display: block;
    padding: 10px 8px 10px 52px;
    color: #a2a2a2;
  }
  .legal-ico li.large a {
    background: url(../images/pc/legal-ico-jb.png) no-repeat;
    background-position: 9px 7px;
  }
  .legal-02 {
    background: url(../images/pc/legal-ico-2.png) no-repeat;
    background-position: 9px 7px;
  }
  .legal-03 {
    background: url(../images/pc/legal-ico-3.png) no-repeat;
    background-position: 9px 7px;
  }
  .legal-04 {
    background: url(../images/pc/legal-ico-4.png) no-repeat;
    background-position: 9px 7px;
  }
  .legal-05 {
    background: url(../images/pc/legal-ico-5.png) no-repeat;
    background-position: 9px 7px;
  }
  /* footer pc end */

/* 手机端样式更新 */
@media screen and (max-width: 750px) {
  a {
    -webkit-tap-highlight-color: transparent;
  }
  .footer {
    flex-direction: column;
    font-size: .2rem;
  }
  .footer .logo{
    border: none;
    padding: 0;
    margin: 0;
  }
  .footer ul p {
    margin: 0;
    line-height: .35rem;
  }
  .footer ul {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0 .2rem;
    flex-direction: column;
    align-items: center;
  }
  .footer ul p span i {
    display: block;
  }
  .footer .wapnone {
    display: none;
  }
  .legal-ico {
    display: none !important;
  }
  /* 隐藏PC端内容 */
  .header,
  .hero,
  .news-grid,
  .characters-section,
  .features-section {
    display: none !important;
  }

  /* 显示手机端内容 */
  .mobile-hero,
  .mobile-news,
  .mobile-features,
  .mobile-guide,
  .mobile-bottom-nav {
    display: block !important;
  }

  body {
    margin: 0;
    padding: 0;
    min-width: unset;
    font-family: Arial, sans-serif;
  }

  /* 手机端主视觉区域 */
  .mobile-hero {
    width: 100%;
    height: 10.64rem;
    position: relative;
  }
  .hero-swiper {
    height: 100%;
  }
  .hero-swiper .swiper-slide .hero-slide {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: -1px 0;
    background-size: calc(100% + 1px) 100%;
  }

  .mobile-hero-content {
    z-index: 100;
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4.57rem;
    height: 1.14rem;
    background: url(../images/phone/download_game_1.png) 0 0 / 100% 100%
      no-repeat;
  }

  /* mobile-bottom-title 样式 */
  .mobile-bottom-title {
    width: 100%;
    height: 1.02rem;
    /* 根据hero-title.png实际高度调整 */
    background: url("../images/phone/hero-title.png") no-repeat center center;
    background-size: 100% 100%;
    position: fixed;
    /* 改为固定定位 */
    top: 0;
    /* 固定在页面顶部 */
    left: 0;
    /* 确保从左侧开始 */
    z-index: 1000;
    /* 设置较高的层级，确保在其他元素之上 */
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
  .mobile-bottom-title .tohome {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1rem;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-title-buttons {
    gap: 0.05rem;
    display: flex;
    align-items: center;
    padding-right: 0.2rem;
  }
  .mobile-title-buttons a {
    display: flex;
  }

  .mobile-title-btn {
    width: 1.62rem !important;
    height: 0.38rem;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .mobile-title-btn:hover {
    transform: scale(1.05);
  }

  /* 手机端新闻区域样式修改 */
  .mobile-news {
    background: url("../images/phone/bg_02.jpg") -1px 0 / calc(100% + 1px) 100% no-repeat;
    height: 6.33rem;
    overflow: hidden;
  }

  .mobile-news-container {
    background: transparent;
    /* 背景变更为透明 */
    padding: 10px;
    border-radius: 10px;
    width: 90%;
    /* 增加新闻整体宽度 */
    margin: 0 auto;
    margin-top: 1.6rem;
  }

  .news-tabs {
    display: flex;
    border-top: 1px solid #c19c67;
    border-bottom: 1px solid #c19c67;
    padding: 0.15rem;
    position: relative;
  }

  .news-tabs button {
    height: 0.45rem;
    display: flex;
    align-items: center;
    border-radius: 0.06rem;
    background: none;
    border: none;
    padding: 0 0.24rem;
    cursor: pointer;
    font-size: 0.24rem;
    color: #666;
    transition: all 0.3s ease;
  }

  .news-tabs button.active {
    color: #fff;
    font-weight: bold;
    background-color: #c19c67;
  }
  .news-tabs button:hover {
    color: #c19c67;
  }
  .news-tabs button.active:hover {
    color: #fff;
  }
  .tonews {
    width: 0.32rem;
    height: 0.32rem;
    background: url(../images/pc/add.png) 0 0 / 100% 100% no-repeat;
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .news-list li,
  .server-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.12rem 0;
  }
  .news-list {
    display: none;
  }
  .news-list.active {
    display: block;
  }
  @keyframes showNews {
    0% {
      opacity: 0;
      transform: translateY(-5px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .news-list li {
    border-bottom: 1px dashed #aaa;
    opacity: 0;
    animation: showNews 0.5s forwards;
    font-size: .28rem;
  }
  .news-list li:nth-child(1) {
    animation-delay: 0s;
  }
  .news-list li:nth-child(2) {
    animation-delay: 0.1s;
  }
  .news-list li:nth-child(3) {
    animation-delay: 0.2s;
  }
  .news-list li:nth-child(4) {
    animation-delay: 0.3s;
  }
  .news-list li:nth-child(5) {
    animation-delay: 0.4s;
  }
  .news-list li:nth-child(6) {
    animation-delay: 0.5s;
  }
  .news-list a {
    font-size: 0.22rem;
    width: 100%;
    padding: 0 0.24rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news-list a span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #555;
  }
  .news-list em {
    display: inline-block;
    width: .8rem;
    height: .32rem;
    line-height: .32rem;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: .2rem;
    margin-right: .06rem;
    font-style: normal;
  }
  .news-list em[data-type="gg"] {
    background-color: #68a8ff;
  }
  .news-list em[data-type="xw"] {
    background-color: #76c277;
  }
  .news-list em[data-type="hd"] {
    background-color: #e59469;
  }
  .news-list em[data-type="gl"] {
    background-color: #69bdad;
  }
  .news-list li i {
    color: #555;
    width: 1rem;
    text-align: right;
    font-style: normal;
  }

  /* 手机端特色轮播图样式 */
  .mobile-features {
    height: 6.99rem;
    background: url("../images/phone/bg_03.jpg") no-repeat center;
    background-size: cover;
    padding-top: 1rem;
    position: relative;
    overflow: hidden;
  }
  .mobile-features #mobile-features-mdd {
    position: absolute;
    top: -1.2rem;
    pointer-events: none;
  }
  .swiper-ts-wap {
    width: 6.5rem;
    margin: 0 auto;
    height: 5rem;
    overflow: hidden;
  }
  .swiper-ts-wap .swiper-slide {
    width: 2.84rem;
    height: 4.83rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
  }
  .mobile-features .swiper-button-next::after,
  .mobile-features .swiper-button-prev::after {
    display: none;
  }

  .mobile-features .swiper-button-prev {
    width: 1.11rem;
    height: 1.06rem;
    top: 44%;
    left: calc(50% - 3.7rem);
    transform: scale(0.8);
    z-index: 100;
    background: url(../images/pc/arrow_left.png) 0 0 / 100% 100% no-repeat;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-features .swiper-button-next {
    width: 1.11rem;
    height: 1.06rem;
    top: 44%;
    right: calc(50% - 3.7rem);
    transform: scale(0.8);
    z-index: 100;
    background: url(../images/pc/arrow_right.png) 0 0 / 100% 100% no-repeat;
    -webkit-tap-highlight-color: transparent;
  }

  /* 手机端攻略专区 */
  .mobile-guide {
    background: url("../images/phone/bg_04.jpg") no-repeat center center;
    background-size: 100% 100%;
    height: 4.44rem;
    overflow: hidden;
  }

  /* 手机端攻略列表样式 - 参考mobile-news-list */
  .mobile-guide-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    /* 添加自动左右边距实现居中 */
    width: 85%;
    /* 调整宽度为80% */
    margin-top: 1.4rem;
    height: 2.5rem;
    overflow-y: auto;
  }

  .mobile-guide-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    font-size: 0.18rem;
    padding: 0.1rem 0;
    gap: 3%;
  }

  .mobile-guide-title {
    color: #333;
    flex: 0 0 80%;
    /* 增加文字内容占比到80% */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
  }

  .mobile-guide-date {
    flex: 0 0 17%;
    /* 相应调整时间部分占比 */
    text-align: right;
    color: #333;
  }

  .mobile-guide-tag {
    display: none;
    /* 隐藏标签，保持与news-list一致的简洁布局 */
  }

  /* 手机端底部导航 */
  .mobile-bottom-nav {
    background: url("../images/phone/bg_05.jpg") no-repeat center;
    background-size: 100% 100%;
    height: 2.65rem;
    display: flex !important;
    justify-content: space-around;
    padding: 0.25rem 0.5rem 0;
  }
  .mobile-bottom-nav .wx {
    position: relative;
  }
  .mobile-bottom-nav a img {
    width: 1.1rem;
    height: 1.1rem;
  }
  .mobile-bottom-nav .wx .qr_wx {
    position: absolute;
    top: .06rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
  }
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .2rem !important;
  }
  .mobile-bottom-nav a .name  {
    font-size: .3rem;
    font-weight: 700;
    color: #198c7a;
    font-family: cursive;
    text-align: center;
    margin-top: .12rem;
  }
  /* 手机端菜单图标样式 */
  .mobile-menu-icon {
    position: fixed;
    top: 1.2rem;
    right: 0.3rem;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
  }

  .mobile-menu-icon img {
    width: 0.61rem;
    height: 0.61rem;
    margin-bottom: 0.04rem;
    margin-top: 0.04rem;
  }

  /* 下拉导航栏样式 */
  .mobile-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 160px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .mobile-dropdown-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .mobile-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* 显示下拉菜单 */
  .mobile-dropdown-menu.show {
    display: block;
  }

  .m-download {
    display: none;
  }
  .news_area .clearfix{
    width: 100% !important;
    padding-top: 1.02rem !important;
  }
  .news_area .clearfix img {
    max-width: 100%;
    margin: 0 auto;
  }
  .set_wid .new_titie {
    display: none;
  }
  .set_wid .guide_tc {
    width: 100%;
  }
  .set_wid .de_title {
    font-size: .4rem;
    padding: .3rem .2rem .2rem;
  }
  .set_wid .small_title {
    display: none;
  }
  .set_wid .de_contain {
    font-size: .4rem;
  }
  .set_wid .de_contain p {
    line-height: 1.8;
  }
  .set_wid .de_contain h1 {
    font-size: 50px;
  }
  .set_wid .de_contain h2 {
    font-size: 40px;
  }
  .set_wid .de_contain h3 {
    font-size: 30px;
  }
  .big_in {
    width: 100%;
  }
  .new_list {
    width: 100%;
  }
  .new_contain {
    padding: 0 .2rem;
  }
  .new_nav {
    padding-top: .4rem;
    padding-left: .3rem;
    padding-right: .3rem;
    padding-bottom: .2rem;
    border-bottom: 1px solid #cfae69;
    width: auto;
    justify-content: flex-start;
  }
  .new_nav li {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .new_nav li a {
    padding: .04rem .25rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .28rem;
    color: #000;
    line-height: unset;
  }
  .new_nav li.new_current a {
    color: #fff;
  }
  .new_list {
    padding: 0;
  }
  .new_list li {
    height: auto;
    border-bottom: 1px dashed #cfae69;
  }
  .new_list li a {
    height: .6rem;
    line-height: .6rem;
    display: flex;
    font-size: .24rem;
    justify-content: space-between;
    overflow: hidden;
  }
  .new_L {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .new_R {
    width: 1.8rem;
    text-align: end;
    margin-left: 0;
    padding-right: .1rem;
  }
  .new_contain .num {
    margin: .8rem 0;
  }
  .num_list li.num_next a {
    padding: .08rem .2rem;
    margin-right: .2rem;
    font-size: .2rem;
    line-height: unset;
  }
}

/* 隐藏类 */
.hidden {
  display: none;
}
