.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 15px;
  background-color: #454752;
  z-index: 999;
}
body,
.container {
  background-color: #f3f3f3;
}

.header_img {
  width: 60px;
}
.header_text {
  color: #fff;
}
.title {
  color: #333;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
}
.content {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-top: 15px;
}
.banner_title {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.banner_text {
  font-size: 14px;
  color: #333;
  margin-top: 6px;
}
.vip_btn {
  padding: 10px 50px;
  border-radius: 4px;
  background-color: #00a274;
  font-size: 14px;
  color: #fff;
  letter-spacing: 2px;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}
.bottom_btn {
  padding: 10px 50px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  color: #00a274;
  letter-spacing: 2px;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}
.vip_content {
  width: 1224px;
  margin: 0 auto;
  padding-top: 86px;
}
.vip_content_title {
  width: 420px;
  margin: 0 auto;
  margin-bottom: 68px;
}
.vip_content_title img {
  width: 100%;
}

.vip_content .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vip_content .line .one {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 25%;
}
.main_img {
  width: 79.5px;
  margin-bottom: 18.5px;
}
.num_img {
  height: 25px;
  width: auto;
  margin-left: 3px;
}
.num_div {
  font-size: 22.5px;
  letter-spacing: 0.1px;
  color: #333333;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
  line-height: 1;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.vip_content p {
  font-size: 14px;
  font-family: PingFangSC;
  letter-spacing: 0.1px;
  color: #666666;
  margin-bottom: 10px;
  white-space: nowrap;
}
.vip_content p:last-child {
  margin-bottom: 0;
}
.circle_icon {
  width: 30px;
}

.business_content {
  width: 1224px;
  margin: 0 auto;
  margin-top: 86px;
}
.business_content .vip_content_title {
  margin-bottom:48px;
}

.business_content .vip_content_title p {
  font-size: 18px;
  letter-spacing: -0.9px;
  color: #333333;
  margin-top: 21px;
  text-align: center;
}
.business_content .line {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.swiper-container {
    width: 100%;
    height: 100%;

  }
.swiper-slide {
  width: 237.5px;

  background-color: #ffffff;
  box-shadow: 1.5px 3.7px 7.8px 0.3px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  margin-right: 22px;
  display: inline-block;
  overflow: hidden;
}

.business_content .line::-webkit-scrollbar {
  display: none;
}
.swiper-wrapper {
    -webkit-transition-timing-function: linear;    /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    margin: 0 auto;
  }


.quanyi {
  font-size: 2rem;
  font-weight: 900; /* 超粗体 */
  font-style: italic;
  letter-spacing: 0.05em;
  background: linear-gradient(
    135deg,
    #f3e1c3 10%,
    #ecd4a7 25%,
    #e6c68b 50%,
    #d4b593 75%,
    #c2a37b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 
    2px 2px 4px rgba(243, 225, 195, 0.3),
    0 0 8px rgba(255, 255, 255, 0.4);
  position: relative;
  display: inline-block;
  animation: text-glow 2s ease-in-out infinite alternate;
}

/* 微光动画 */
@keyframes text-glow {
  0% {
    text-shadow: 
      2px 2px 4px rgba(243, 225, 195, 0.3),
      0 0 8px rgba(255, 255, 255, 0.4);
  }
  100% {
    text-shadow: 
      4px 4px 6px rgba(243, 225, 195, 0.5),
      0 0 12px rgba(255, 255, 255, 0.6);
  }
}