@font-face {
  font-family: "快看世界体";
  src: url("../font/kuaikanshijieti20231213.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 核心样式：图片下划线 */
.custom-underline {
  margin-top: 34px;
  /* 移除默认下划线 */
  text-decoration: none;
  /* 为背景图预留空间（下划线高度） */
  padding-bottom: 34px;
  /* 调整此值控制下划线与文字的间距 */
  /* 设置图片作为背景 */
  background-image: url('../image/index/xhx.png');
  /* 替换为你的图片路径 */
  background-repeat: no-repeat;
  /*水平重复平铺*/
  background-position: bottom;
  /* 定位到底部 */
  background-size: 40px 6px;
  /* 调整图片大小（宽度 高度） */
}

/* 汉堡菜单样式 */
.menu-toggle {
  display: none;
  /* 默认隐藏，仅在移动端显示 */
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #242222;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* 汉堡菜单动画类 */
.transform-rotate-45 {
  transform: rotate(45deg) !important;
  top: 10px !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.transform-rotate--45 {
  transform: rotate(-45deg) !important;
  top: 10px !important;
}

/* 移动端导航样式 */
.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 99;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #f8f6f6;
}

/* 背景图动画 */
@keyframes bgAnimation {
  0% {
    background-position: center center;
    background-size: 100% cover;
  }

  50% {
    background-position: center 10%;
    background-size: 105% cover;
  }

  100% {
    background-position: center center;
    background-size: 100% cover;
  }
}

/* 顶部导航 */
.banner-top {
  background: url('../image/index/banner-bg.png') no-repeat center/cover;
  /* background-color: rgba(26, 22, 22, 0.7); */
  /* background: linear-gradient(0deg, rgba(255, 246, 229, 0) 0%, #FFF6E3 100%); */

  height: auto;
  min-height: 910px;
  /* 让背景图和颜色叠加 */
  background-blend-mode: multiply;
  /* 应用动画 */
  /* animation: bgAnimation 20s ease-in-out infinite; */
}

@media (max-width: 768px) {
  .banner-top {
    height: auto;
    min-height: 700px;
  }
}

.top {

  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px 20px 0px 20px;
  z-index: 1000;
  transition: all 0.3s ease;
  /* 添加过渡动画，使样式变化更平滑 */
}

/* 滚动超过50px时添加的类 */
.top.scrolled {
  position: fixed;
  background-color: #fff;
  /* 设置白色背景 */
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px 0px 20px;
  gap: 62px;
}

.top-nav a {
  font-family: PingFang SC;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  color: #333333;
}

/* Swiper轮播样式 */
:root {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

.swiper-wrapper {
  display: flex;
}

.swiper-container {
  width: 1028px;
  height: 440px;
  max-width: 100%;
  max-height: 100vh;
  padding: 10px 0 !important;
}

.swiper-slide {
  text-align: center;
  /* background-color: #000; */
  height: 100% !important;
  width: 100%;
  display: block;
  position: relative;
  transition: 300ms;
  transform: scale(0.8);
  width: 296px;
  height: 400px;
  border-radius: 20px;
  opacity: 1;

  background: linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 100%);

  border: 2px solid #FFFFFF;

  box-shadow: 0px 10px 30px 0px #F7F0EB;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
}

.card-icon img {
  width: 130px;
  height: 130px;
  margin: 60px auto 0px;
}

.advantage-card h3 {
  font-family: PingFang SC;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0px;

  font-variation-settings: "opsz" auto;
  color: #333333;
}

.advantage-card p {
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: normal;
  line-height: 120%;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: 0em;
  margin: 20px 22px 0px;
  font-variation-settings: "opsz" auto;
  color: #999999;
}
.container{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 100px;
}
/* 轮播容器和按钮的父容器 */
.swiper-container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* 按钮样式 */
.button-prev,
.button-next {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 按钮图片样式 */
.button-prev img,
.button-next img {
  cursor: pointer;
}

/* 横幅 */
.banner {
  width: 100%;

  /* 替换成实际 banner 图地址 */
  color: #fff;
  /* padding: 60px 20px; */
  margin-top: 138px;
  text-align: center;
}


/* 移动端适配 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .top-nav {
    display: none;
  }
}



/* 375px以下屏幕适配 */
@media (max-width: 375px) {
  .top-nav a {
    font-size: 16px;
    margin-left: 10px;
  }

  .banner h1 {
    font-size: 40px;
  }

  .banner p {
    font-size: 24px;
  }

  .data-statistics .data-item {
    margin: 0 15px;
  }

  .data-statistics .data-item h2 {
    font-size: 32px;
  }

  .tabs .tab-btn {
    width: 170px;
    margin: 5px 0;
    padding: 8px 16px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .solution-item {
    padding: 20px 10px;
  }

  .solution-item p {
    font-size: 20px;
  }
}

/* 移动端适配 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .top-nav {
    display: none;
  }

  /* 平板及大屏手机适配 */
  section.banner>h1 {
    font-size: 45px !important;
  }

  section.banner>p {
    font-size: 24px !important;
  }

  section.banner>.banner_p {
    font-size: 21px !important;
  }

}

.banner h1 {
  font-family: MiSans;
  font-size: 60px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  /* 九四玩游戏平台完美 */
  color: #333333;
}

/* 375px以下屏幕适配 */
@media (max-width: 375px) {
  section.banner>h1 {
    font-size: 35px !important;
    color: #FF9D1F !important;
    /* 临时测试颜色 */
  }

  .banner p {
    font-size: 19px !important;
  }

  .banner_p {
    font-size: 16px !important;
  }

  .top-nav a {
    font-size: 16px;
    margin-left: 10px;
  }

  .data-statistics .data-item {
    margin: 0 15px;
  }

  .data-statistics .data-item h2 {
    font-size: 32px;
  }

  .tabs .tab-btn {
    width: 170px;
    margin: 5px 0;
    padding: 8px 16px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .solution-item {
    padding: 20px 10px;
  }

  .solution-item p {
    font-size: 20px;
  }

  .top-nav a {
    font-size: 16px;
    margin-left: 10px;
  }

  .banner h1 {
    font-size: 35px;
  }

  .banner p {
    font-size: 19px;
  }

  .banner_p {
    font-size: 16px;
  }

  .data-statistics .data-item {
    margin: 0 15px;
  }

  .data-statistics .data-item h2 {
    font-size: 32px;
  }

  .tabs .tab-btn {
    width: 140px;
    margin: 5px 0;
    padding: 8px 16px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .solution-item {
    padding: 20px 10px;
  }

  .solution-item p {
    font-size: 20px;
  }
}

.banner p {
  font-family: MiSans;
  font-size: 34px;
  font-weight: normal;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 30px;
  font-variation-settings: "opsz" auto;
  color: #333333;
}

.banner_p {
  font-family: MiSans;
  font-size: 26px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  color: #FF9D1F;
}

.banner img {
  display: inline-block;
  /* 保持原有尺寸的同时支持居中 */
  height: 6px;
  margin-top: 23px;
  margin-bottom: 16px;
  text-align: center;
  max-width: 100%;
  height: auto;
}

.banner .btn {
  display: block;
  /* 改为块级元素以便使用margin居中 */
  margin: 58px auto;
  /* 距离底部134px，水平居中 */
  width: 210px;
  height: 62px;
  border-radius: 12px;
  opacity: 1;
  border: 2px solid;
  background: #FF9D1F;
  border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF1E8 100%) 2;
  box-shadow: 0px 4px 10px 0px #FFE2BC, inset 0px 0px 20px 0px rgba(255, 112, 64, 0.81);
  padding: 12px 30px;
  background-color: #ffc107;
  color: #FFFFFF;
  font-family: PingFang SC;
  font-size: 30px;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: center;
  /* 按钮内部文字居中 */
  transition: all 0.3s ease;
  text-shadow: 0px 1px 6px rgba(237, 129, 41, 0.84);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.banner .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4);
}

.banner .btn:hover::before {
  left: 100%;
}



/* 滚动渐入动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  font-family: Alimama FangYuanTi VF;
  font-size: 64px;
  font-weight: bold;
  line-height: 100%;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  color: #FAFDFC;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* 数据统计区域 */
.data-statistics {
  margin-top: 100px;
  height: 165px;
  text-align: center;
}

.data-statistics .data-item {
  display: inline-block;
  margin: 0 60px;
}

.data-statistics .data-item h2 {
  font-family: PingFang SC;
  font-size: 44px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0px;
  margin-bottom: 30px;

  font-variation-settings: "opsz" auto;
  color: #FEBE3F;

  -webkit-text-stroke: #FEBE3F 1px;
  /* 浏览器可能不支持 */
}

.data-statistics .data-item p {
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0px;
  margin-bottom: 34px;
  font-variation-settings: "opsz" auto;
  color: #333333;
}

/* 响应式适配 - 数据统计区域 */
@media (max-width: 768px) {
  .data-statistics {
    height: auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .data-statistics .data-item {
    margin: 10px 0;
    width: 45%;
  }

  .data-statistics .data-item h2 {
    font-size: 36px;
  }

  .data-statistics .data-item p {
    font-size: 16px;
  }

  .tabs {
    justify-content: space-between;
    padding: 0 10px;
    gap: 10px;
    flex-wrap: nowrap;
  }
}

/* 行业解决方案 */
.solutions {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f9fa;
}

/* Tab 样式 */
.tabs {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  font-family: PingFang SC;
  font-size: 22px;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0em;
  height: 52px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  width: 170px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tab-btn {
    width: 48%;
    font-size: 18px;
  }
}

.tab-btn.active {
  background: #FF9D1F;
  color: #FFFFFF;
  border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF1E8 100%) 2;
  box-shadow: 0px 4px 10px 0px #FFE2BC, inset 0px 0px 20px 0px rgba(255, 112, 64, 0.81);
}

.tab-btn:hover:not(.active) {
  background-color: #f5f5f5;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 响应式调整 */
@media (max-width: 1280px) {
  .solutions-list {
    max-width: 820px;
  }
}

@media (max-width: 992px) {}

@media (max-width: 768px) {
  .solutions-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
  }

  .solution-item {
    min-width: 100%;
  }

  .solutions-list::-webkit-scrollbar {
    display: none;
  }

  .solutions-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }


  .solution-item img {
    height: 220px;
  }
}


/* 解决方案卡片动画 */
.solution-item {
  flex: 0 0 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);

  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  border-image: linear-gradient(180deg, #FEBE3F 0%, rgba(254, 190, 63, 0) 100%) 1;
  border-top: none;
  padding-top: 34px;

  width: 404px;
  height: 400px;
  border-radius: 20px;
  opacity: 1;

  background: linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 100%);

  border: 2px solid #FFFFFF;

  box-shadow: 0px 10px 30px 0px #F7F0EB;
}

.solution-item img {
  width: 375px;
  height: 216px;
  margin-bottom: 38px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-item p {
  font-family: PingFang SC;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  color: #333333;
}

.solution-item span {
  font-family: PingFang SC;
  font-size: 16px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0px;
  margin-top: 10px;
  color: #F87606;
}

.solution-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}



.solution-item:hover img {
  transform: scale(1.1);
}

.solutions h2 {
  background-image: url('../image/index/hxys.png');
  background-repeat: no-repeat;
  background-position: center top;
  padding: 27px 20px 0 20px;
  font-family: PingFang SC;
  font-size: 42px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;

  font-variation-settings: "opsz" auto;
  color: #333333;

  -webkit-text-stroke: #333333 0.4px;
  /* 浏览器可能不支持 */

  margin-bottom: 30px;
}

.solutions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.title {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}

.title h2 {
  opacity: 1;
  font-family: PingFang SC;
  font-size: 38px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.94px;
  margin-bottom: 30px;
}

.title p {
  font-family: PingFang SC;
  font-size: 20px;
  font-weight: normal;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.94px;

  font-variation-settings: "opsz" auto;
  color: #5B5959;
}

.pk {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 60px;
}

.pk h2 {
  opacity: 1;
  font-family: PingFang SC;
  font-size: 38px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.94px;
}

.pk-img {
  width: 100%;
  max-width: 1758px;
  height: auto;
  min-height: 400px;
  border-radius: 50px;
  opacity: 1;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFE9CC 0%, #FFDEC7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  box-sizing: border-box;
  padding: 80px;
}

.pk-img img {
  max-width: 100%;
  max-height: 100%;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .pk-img {
    border-radius: 30px;
    margin-bottom: 60px;
    padding: 15px;
    min-height: 300px;
  }

  .pk h2 {
    font-size: 28px;
    width: auto;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .pk-img {
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 10px;
    min-height: 250px;
  }

  .pk h2 {
    font-size: 22px;
  }

  .pk {
    margin-bottom: 30px;
  }
}

.news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.news>div {
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 100%);
}

.news>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
}

.news p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news .date {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .news {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .news>div {
    padding: 15px;
  }
}

.game {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.game img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game img:hover {
  transform: scale(1.03);
}


.nb-info-tab-content span {
  justify-content: center;
}

@media (max-width: 480px) {
  .nb-info-tab-content span {
    justify-content: flex-start;
  }
}


.nb-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0;
  background: #FFF9F0;
  text-align: center;
}

.nb-info h2 {
  font-family: 快看世界体;
  font-size: 46px;
  font-weight: normal;
  line-height: 100%;
  color: #333;
  margin-bottom: 15px;

}

.nb-info p {
  font-family: PingFang SC;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
}

.nb-info-tab {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.nb-info-tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fff9f0;
  border-radius: 8px;
  width: 420px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .nb-info-tab-content {
    max-width: 300px;
  }
}

.nb-info-tab-title h3 {
  width: 64px;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.nb-info-tab-content span {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  justify-content: flex-start;
}

.nb-info-tab-content img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.nb-info a {
  display: block;
  /* 改为块级元素以便使用margin居中 */
  margin: 50px auto 100px;
  /* 距离底部134px，水平居中 */
  width: 210px;
  height: 62px;
  border-radius: 12px;
  opacity: 1;
  border: 2px solid;
  background: #FF9D1F;
  border-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF1E8 100%) 2;
  box-shadow: 0px 4px 10px 0px #FFE2BC, inset 0px 0px 20px 0px rgba(255, 112, 64, 0.81);
  padding: 12px 30px;
  background-color: #ffc107;
  color: #FFFFFF;
  font-family: PingFang SC;
  font-size: 30px;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0em;
  text-align: center;
  /* 按钮内部文字居中 */
  transition: all 0.3s ease;
  text-shadow: 0px 1px 6px rgba(237, 129, 41, 0.84);
  position: relative;
  overflow: hidden;
  z-index: 1;

}

.nb-info a:hover {
  background: #E88A00;
}

@media (max-width: 768px) {
  .nb-info h2 {
    font-size: 26px;
  }

  .nb-info-tab {
    gap: 15px 20px;
  }
}

@media (max-width: 480px) {
  .nb-info {
    padding: 40px 15px;
  }

  .nb-info h2 {
    font-size: 22px;
  }

  .nb-info p {
    font-size: 16px;
  }

  .nb-info-tab-title h3 {
    font-size: 20px;
  }

}

/* 移动端适配 - 轮播图样式调整 */
@media (max-width: 768px) {
  .swiper-container {
    padding: 20px 30px;
    width: 100%;
    max-width: 100%;
  }

  .swiper-slide {
    width: 100%;
    transform: scale(0.95);
  }

  .button-prev,
  .button-next {
    display: none;
  }

  .button-prev img,
  .button-next img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .swiper-container {
    padding: 10px 20px;
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .swiper-container-wrapper {
    gap: 10px;
    width: 100%;
  }

  .swiper-slide {
    min-width: 100%;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
  }

  .swiper-slide-active {
    transform: none !important;
    opacity: 1 !important;
  }

  /* 确保左右按钮在移动端可见，以便用户可以滑动查看 */
  .button-prev,
  .button-next {
    display: none;
  }

  .button-prev img,
  .button-next img {
    width: 25px;
    height: 25px;
  }

  /* 调整卡片内部元素大小以适应移动端 */
  .card-icon img {
    width: 100px;
    height: 100px;
    margin: 40px auto 0px;
  }
  
  .advantage-card h3 {
    font-size: 20px;
    line-height: 24px;
  }
  
  .advantage-card p {
    font-size: 14px;
    margin: 15px 15px 60px;
  }
}

@media (max-width: 480px) {
  .pk-img {
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 10px;
    min-height: 250px;
  }

  .pk h2 {
    font-size: 22px;
  }

  .pk {
    margin-bottom: 30px;
  }
}

.news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.news>div {
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 100%);
}

.news>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
}

.news p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news .date {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .news {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .news>div {
    padding: 15px;
  }
}

.game {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.game img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game img:hover {
  transform: scale(1.03);
}


.nb-info-tab-content span {
  justify-content: center;
}

@media (max-width: 480px) {
  .nb-info-tab-content span {
    justify-content: flex-start;
  }
}


.nb-info h2 {
  font-family: 快看世界体;
  font-size: 46px;
  font-weight: normal;
  line-height: 100%;
  color: #333;
  margin-bottom: 15px;

}

.nb-info p {
  font-family: PingFang SC;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
}

.nb-info-tab {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}


@media (max-width: 768px) {
  .nb-info-tab-content {
    max-width: 300px;
  }
}


.nb-info-tab-content span {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  justify-content: flex-start;
}

.nb-info-tab-content img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}


.nb-info a:hover {
  background: #E88A00;
}

@media (max-width: 768px) {
  .nb-info h2 {
    font-size: 26px;
  }

  .nb-info-tab {
    gap: 15px 20px;
  }
}

@media (max-width: 480px) {
  .nb-info {
    padding: 40px 15px;
  }

  .nb-info h2 {
    font-size: 22px;
  }

  .nb-info p {
    font-size: 16px;
  }

  .nb-info-tab-title h3 {
    font-size: 20px;
  }

}

/* 移动端适配 - 轮播图样式调整 */
@media (max-width: 768px) {
  .swiper-container {
    padding: 20px 50px;
  }

  .swiper-slide {
    transform: scale(0.9);
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .swiper-container {
    padding: 10px 30px;
  }

  .swiper-slide {
    min-width: 100%;
    transform: none !important;
    opacity: 1 !important;
  }

  .swiper-slide-active {
    transform: none !important;
    opacity: 1 !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .pk-img {
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 10px;
    min-height: 250px;
  }

  .pk h2 {
    font-size: 22px;
  }

  .pk {
    margin-bottom: 30px;
  }
}

.news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.news>div {
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, #FFF8EF 0%, #FFFFFF 100%);
}

.news>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
}

.news p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news .date {
  color: #999;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .news {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .news>div {
    padding: 15px;
  }
}

.game {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.game img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game img:hover {
  transform: scale(1.03);
}


.nb-info-tab-content span {
  justify-content: center;
}

@media (max-width: 480px) {
  .nb-info-tab-content span {
    justify-content: flex-start;
  }
}



.nb-info h2 {
  font-family: 快看世界体;
  font-size: 46px;
  font-weight: normal;
  line-height: 100%;
  color: #333;
  margin-bottom: 15px;

}

.nb-info p {
  font-family: PingFang SC;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
}

.nb-info-tab {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}


@media (max-width: 768px) {
  .nb-info-tab-content {
    max-width: 300px;
  }
}

.nb-info-tab-content span {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  justify-content: flex-start;
}

.nb-info-tab-content img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}


.nb-info a:hover {
  background: #E88A00;
}

@media (max-width: 768px) {
  .nb-info h2 {
    font-size: 26px;
  }

  .nb-info-tab {
    gap: 15px 20px;
  }
}

@media (max-width: 480px) {
  .nb-info {
    padding: 40px 15px;
  }

  .nb-info h2 {
    font-size: 22px;
  }

  .nb-info p {
    font-size: 16px;
  }

  .nb-info-tab-title h3 {
    font-size: 20px;
  }

}

/* 移动端适配 - 轮播图样式调整 */
@media (max-width: 768px) {
  .swiper-container {
    padding: 20px 50px;
  }

  .swiper-slide {
    transform: scale(0.9);
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .swiper-container {
    padding: 10px 30px;
  }

  .swiper-slide {
    min-width: 100%;
    transform: none !important;
    opacity: 1 !important;
  }

  .swiper-slide-active {
    transform: none !important;
    opacity: 1 !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}