@charset "UTF-8";
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft Yahei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft Yahei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: #404261;
}

.swiper {
  width: 100%;
  height: 100%;
}

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

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  color: #4b8afc;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #1969fb;
  text-decoration: none;
}
a:focus {
  outline: 2px solid #4b8afc;
  outline-offset: 2px;
}

ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  z-index: 999;
  overflow: hidden;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(135deg, rgba(75, 138, 252, 0.05) 0%, rgba(92, 168, 254, 0.05) 100%);
}
.header .box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.header .box .logo {
  width: 260px;
  margin: 0 auto 20px;
}
.header .box .logo img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.header .box .logo img:hover {
  transform: scale(1.05);
}
.header .box .tip-text {
  font-size: clamp(20px, 4vw, 30px);
  padding: 15px 0;
  color: #4b8afc;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(75, 138, 252, 0.1);
}

.navs {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 25px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 20px;
  box-sizing: border-box;
}
.navs a {
  display: block;
  width: 16%;
  text-align: center;
  padding: 10px 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
}
.navs a img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.navs a:hover {
  border-bottom: 2px solid #4b8afc;
  background: rgba(75, 138, 252, 0.05);
  transform: translateY(-2px);
}
.navs a:hover img {
  transform: scale(1.05);
}
.navs a:focus {
  outline: 2px solid #4b8afc;
  outline-offset: 2px;
}

.pc-buttons {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  box-sizing: border-box;
  /* 兼容旧样式 */
}
.pc-buttons .platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  padding: 0 24px;
  background: linear-gradient(135deg, #4b8afc 0%, #5ca8fe 100%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 15px rgba(75, 138, 252, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pc-buttons .platform-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: left 0.5s;
}
.pc-buttons .platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(75, 138, 252, 0.4);
  background: linear-gradient(135deg, #3a7ae8 0%, #4b8afc 100%);
}
.pc-buttons .platform-btn:hover::before {
  left: 100%;
}
.pc-buttons .platform-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(75, 138, 252, 0.3);
}
.pc-buttons .btn-content {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.pc-buttons a:not(.platform-btn) {
  font-size: 24px;
  padding: 0 10px;
  background: white;
  display: block;
  color: #4986fb;
  line-height: 50px;
  font-weight: 800;
  border-radius: 10px;
  border: 2px solid #5ca8fe;
  margin: 5px;
  transition: all ease 0.3s;
}
.pc-buttons a:not(.platform-btn):hover {
  color: white;
  background: #4986fb;
  border: 2px solid #5ca8fe;
}
.pc-buttons a:not(.platform-btn) img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 5px;
}

.ads_jietu {
  width: 100%;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 10px;
  box-sizing: border-box;
}
.ads_jietu .screen {
  margin-bottom: 20px;
}
.ads_jietu .screen img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
}

/* 轮播图样式优化 */
.mySwiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.mySwiper .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

/* 分页器样式 */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(75, 138, 252, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: #4b8afc;
  transform: scale(1.2);
}

/* 导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(75, 138, 252, 0.9);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgb(75, 138, 252);
  transform: scale(1.1);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.appdownload {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(75, 138, 252, 0.05) 0%, rgba(92, 168, 254, 0.05) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(75, 138, 252, 0.1);
}
.appdownload .dowenload_top {
  margin-bottom: 20px;
}
.appdownload .dowenload_top .xiazai {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  color: #404261;
  margin: 0;
  text-shadow: 0 2px 4px rgba(64, 66, 97, 0.1);
}
.appdownload .text {
  color: #404261;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

.jieshao {
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 20px;
}
.jieshao .jieshao_top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.jieshao .jieshao_top .item {
  width: calc(50% - 10px);
  padding: 10px;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.jieshao .jieshao_top .item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.jieshao .jieshao_top .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(75, 138, 252, 0.2);
}
.jieshao .jieshao_top .item:hover img {
  transform: scale(1.05);
}

.footer {
  width: 100%;
}
.footer .foot_img {
  width: 100%;
}

@media only screen and (max-width: 769px) {
  .header {
    padding: 15px 0;
  }
  .header .box .logo {
    width: 200px;
  }
  .navs {
    padding: 0 10px;
    gap: 5px;
  }
  .navs a {
    padding: 8px 3px;
  }
  .jieshao {
    padding: 20px 10px;
  }
  .jieshao .jieshao_top {
    gap: 15px;
  }
  .jieshao .jieshao_top .item {
    width: calc(50% - 7.5px);
  }
  .pc-buttons {
    padding: 15px 10px;
    gap: 12px;
    justify-content: center;
  }
  .pc-buttons .platform-btn {
    min-width: 140px;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  .pc-buttons a:not(.platform-btn) {
    width: 45%;
    font-size: 14px;
    line-height: 40px;
  }
  .appdownload {
    margin: 30px auto;
    padding: 30px 15px;
  }
  /* 移动端轮播图优化 */
  .ads_jietu {
    padding: 15px 5px;
  }
  .ads_jietu .screen img {
    border-radius: 8px;
  }
  .mySwiper {
    border-radius: 8px;
  }
  .mySwiper .swiper-slide {
    border-radius: 8px;
  }
  .mySwiper .swiper-slide img {
    max-height: 300px;
    border-radius: 8px;
  }
  /* 移动端导航按钮 */
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
  /* 移动端分页器 */
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .header {
    padding: 10px 0;
  }
  .header .box .logo {
    width: 180px;
  }
  .navs {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .navs a {
    width: calc(30% - 5.33px);
    padding: 8px 5px;
    margin-bottom: 10px;
  }
  .jieshao {
    padding: 15px 10px;
  }
  .jieshao .jieshao_top {
    gap: 10px;
  }
  .jieshao .jieshao_top .item {
    width: 100%;
  }
  .pc-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .pc-buttons .platform-btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
  .pc-buttons a:not(.platform-btn) {
    width: 100%;
    max-width: 280px;
  }
  .appdownload {
    margin: 20px auto;
    padding: 20px 10px;
  }
  /* 小屏幕轮播图优化 */
  .ads_jietu {
    padding: 10px 5px;
  }
  .mySwiper .swiper-slide img {
    max-height: 250px;
  }
  /* 小屏幕隐藏导航按钮，只显示分页器 */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .swiper-pagination {
    bottom: 10px;
  }
}/*# sourceMappingURL=pcstyle1.css.map */