@font-face {
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  src: url('../assets/AlibabaPuHuiTi-3-55-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* 滚动动画样式 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

.VIP-title.animate-visible,
.OFFER-title.animate-visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

.left img.animate-visible {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.top img.animate-visible {
  animation: fadeInRight 0.8s ease-out forwards;
}

.desc-item.animate-visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* 初始状态 */
.VIP-title,
.OFFER-title,
.title,
.left img,
.top img,
.VIP-item1,
.VIP-item2,
.VIP-item1-right,
.desc-item {
  opacity: 0;
}

body {
  font-size: 16px;
}

/* header start */
.header-container {
  display: flex;
}

/* header end */
/* main start */
/* main end */
/* footer start */
.footer-container {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #1f2329;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.footer-container .footer-content-box {
  width: 1300px;
  height: 170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
  overflow: hidden;
}
.footer-container .footer-left {
  width: 960px;
}
.footer-container .footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.footer-container .footer-nav li a {
  color: #fff;
  font-size: 14px;
}
.footer-container .footer-left p {
  font-size: 14px;
  color: #838687;
  line-height: 30px;
  text-align: left;
}
.footer-container .footer-left .num-one {
  margin-top: 30px;
}
.footer-container .footer-right {
  width: 190px;
  height: 150px;
  overflow: hidden;
  border-left: 1px solid #fff;
  padding-left: 50px;
  text-align: left;
}
.footer-container .footer-right img {
  width: 150px;
  height: 40px;
  padding-top: 60px;
}
.footer-container .footer-right p {
  color: #838687;
  font-size: 14px;
  line-height: 40px;
}
.footer-container .footer-enroll {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.footer-container .footer-enroll li img {
  width: 50px;
  height: 50px;
}

/* footer end */
body {
  background-color: #ffffff;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.top-container {
  height: 549px;
  position: relative;
  overflow: hidden;
}

/* 轮播图容器样式 */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 导航箭头样式 */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.carousel-prev {
  margin-left: 20px;
}

.carousel-next {
  margin-right: 20px;
}

/* 指示器样式 */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(250, 223, 183, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ff9900;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 199, 115, 0.8);
}
.top-container .header-container {
  width: 1920px;
  height: 60px;
  background: url(../assets/nav.png) no-repeat center/contain;
  display: flex;
  justify-content: center;
}
.top-container .header-container .header-content {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-container .header-container .VIP-item1-left .top {
  width: 100%;
  margin-bottom: 20px;
}
.top-container .header-container .VIP-item1-left .top img {
  width: 100%;
  height: auto;
}
.top-container .header-container .VIP-item1-left .bot {
  width: 100%;
  padding: 0 20px;
}
.top-container .header-container .header-nav ul {
  display: flex;
  padding-right: 25px;
}
.top-container .header-container .header-nav ul li {
  margin-left: 55px;
}
.top-container .header-container .header-nav ul li a {
  position: relative;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.top-container .header-container .header-nav ul li a:hover {
  color: #FFCF00;
  transform: translateY(-2px);
}
.top-container .header-container .header-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFCF00;
  transition: width 0.3s ease;
}
.top-container .header-container .header-nav ul li a:hover::after {
  width: 100%;
}
.top-container .header-container .header-nav ul li.qr-trigger {
  position: relative;
  cursor: pointer;
}
.top-container .header-container .header-nav ul li.qr-trigger .nav-item {
  position: relative;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.top-container .header-container .header-nav ul li.qr-trigger .nav-item:hover {
  color: #FFCF00;
  transform: translateY(-2px);
}
.top-container .header-container .header-nav ul li.qr-trigger .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFCF00;
  transition: width 0.3s ease;
}
.top-container .header-container .header-nav ul li.qr-trigger .nav-item:hover::after {
  width: 100%;
}
.top-container .header-container .header-nav ul li.qr-trigger .qr-popup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 1000;
  margin-top: 10px;
  min-width: 160px;
}
.top-container .header-container .header-nav ul li.qr-trigger:hover .qr-popup {
  display: block;
}
.top-container .header-container .header-nav ul li.qr-trigger .qr-popup img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}
.top-container .header-container .header-nav ul li.qr-trigger .qr-popup p {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 8px 0 0 0;
  line-height: 1.3;
}
.top-container .header-container .header-logo {
  cursor: pointer;
  width: 133px;
  height: 37px;
  background: url(../assets/logo.png) no-repeat center/contain;
}

.btn {
  width: 100px;
  height: 41px;
  background: url(../assets/btn.png) no-repeat center/contain;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-5px);
  background-image: url(../assets/btn2.png);
}
.btn:hover .text_12 {
  color: #F6863D;
}
.btn:active {
  background-image: url(../assets/btn2.png);
}
.btn:active .text_12 {
  color: #F6863D;
}
.btn .text_12 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  font-size: 25px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.VIP-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -20px auto;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0 20px;
}

.VIP-title {
  width: 323px;
  height: 74px;
  margin: 70px 0 10px 0;
}
.VIP-title img {
  margin: 18px 0 25px 0;
}

.title-decoration {
  margin: 18px 0 25px 0;
}

.VIP-item1 {
  width: 100%;
  max-width: 1202px;
  height: auto;
  min-height: 365px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../assets/bg-gaocaiVIP.png);
  margin: 50px auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
}

.VIP-item1 .left {
  width: 518px;
  height: 285px;
  margin: 10px 0 0 39px;
}

.VIP-item1 .right {
  width: 523px;
  height: 223px;
  margin: -30px 47px 0 75px;
}

.num {
  width: 29px;
  height: 22px;
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  font-weight: bold;
  font-size: 30px;
  color: #F79640;
}

.title-name {
  width: 108px;
  height: 29px;
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  font-weight: bold;
  font-size: 30px;
  color: #570202;
}

.title-name2 {
  width: 400px;
  height: 23px;
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  font-weight: 500;
  font-size: 23px;
  color: #666A71;
  line-height: 50px;
  margin-bottom: 15px;
}

.title-with-btn {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.title-with-btn .title-name2 {
  margin-bottom: 0;
}
.title-with-btn .btn {
  margin-top: 0;
  margin-bottom: 0;
  margin: -45px 0 0 12px;
}

.desc {
  align-items: center;
  gap: 10px;
}

.icon img {
  width: 15px;
  height: 15px;
  align-items: center;
}

.desc-container {
  margin-top: -15px;
}

.desc-item {
  margin: 15px 0;
}

.desc {
  width: 320px;
  height: 18px;
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  font-weight: medium;
  font-size: 18px;
  color: #333333;
  line-height: 27px;
}

.VIP-item1-left {
  width: 100%;
  max-width: 630px;
  height: auto;
  min-height: 523px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-image: url(../assets/bg-qiuzhikuai.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  flex-shrink: 1;
}

.VIP-item1-left .top {
  margin-top: 32px;
  margin-left: 36px;
  margin-right: 33px;
  margin-bottom: 20px;
}
.VIP-item1-left .top img {
  width: 100%;
  height: auto;
}

.VIP-item1-left .bot {
  margin-left: 36px;
  margin-top: -10px;
  margin-bottom: 53px;
}

.VIP-item2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1202px;
  margin: -8px auto;
  gap: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .OFFER-service {
    min-height: auto;
    padding: 15px;
  }
  .OFFER-item1 {
    flex-direction: column;
    height: auto;
  }
  .OFFER-item1 .left,
  .OFFER-item1 .right {
    width: 100%;
    max-width: none;
    margin: 10px 0;
  }
  .OFFER-title {
    width: 80%;
    max-width: 323px;
  }
}
@media screen and (max-width: 480px) {
  .OFFER-service {
    padding: 10px;
    margin: 50px 0 30px 0;
  }
  .OFFER-content {
    padding: 0 10px;
  }
}
.VIP-item1-right {
  width: 100%;
  max-width: 530px;
  height: auto;
  min-height: 523px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-image: url(../assets/bg-dongchali.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  flex-shrink: 1;
}

.VIP-item1-right .top {
  margin-top: 20px;
  margin-left: 25px;
  margin-right: 33px;
  margin-bottom: 20px;
}
.VIP-item1-right .top img {
  width: 478px;
  height: 251px;
}

.VIP-item1-right .bot {
  margin-left: 36px;
  margin-top: -10px;
  margin-bottom: 53px;
}

.VIP-item1-right .btn {
  margin-left: -80px;
}

.OFFER-service {
  width: 100%;
  max-width: 1920px;
  height: auto;
  min-height: 1036px;
  background: url(../assets/bg-gaocaiOFFER+.png) 100% no-repeat;
  background-size: cover;
  background-position: center;
  margin: 102px 0 62px 0;
  box-sizing: border-box;
  padding: 20px;
}

.OFFER-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -20px auto;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0 20px;
}

.OFFER-title {
  width: 323px;
  height: 74px;
  margin: 70px 0 10px 0;
}
.OFFER-title img {
  margin: 18px 0 25px 0;
}

.title-decoration {
  margin: 18px 0 25px 0;
}

.OFFER-item1 {
  width: 100%;
  max-width: 1202px;
  height: auto;
  min-height: 365px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../assets/bg-gaocaiVIP.png);
  margin: 50px auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
}

.OFFER-item1 .left {
  width: 48%;
  max-width: 518px;
  height: auto;
  margin: 10px 2% 0 0;
  flex-shrink: 1;
}

.OFFER-item1 .right {
  width: 48%;
  max-width: 523px;
  height: auto;
  margin: -30px 0 0 2%;
  flex-shrink: 1;
}

.OFFER-item1-right {
  width: 100%;
  max-width: 530px;
  height: auto;
  min-height: 523px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-image: url(../assets/bg-dongchali.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  flex-shrink: 1;
}/*# sourceMappingURL=index.css.map */