body {
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB',
    'Microsoft YaHei', 'å¾®è½¯é›…é»‘', Arial, sans-serif;
  background-color: #ffffff;
}
.wrap {
  overflow: inherit;
}
.wrap *{
  box-sizing: border-box;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.content-wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0 55px;
}
.w{
  width: 1200px;
  position: absolute;
  margin: 0 auto;
  display: block;
  height: 450px;
  left: 50%;
  transform: translate(-50%);
}

#navTop {
  background-color: #fff;
}
#navTop  .navTop{
  width:900px;
  text-align: center;
  font-size: 0;
  margin: 0 auto;
}
#navTop .nav-list {
  display: inline-block;

}
.navActive + #product-character {
  margin-top: 58px;
}
#navTop .nav-list li,#navTop .new-nav{
  display: inline-block;
  width: 180px;
  height: 56px;
}
#navTop .new-nav:hover{
  border-bottom: 2px solid #3c80ff;
}
#navTop .nav-list li a,#navTop .new-nav a {
  width: 100%;
  text-align: center;
  display: block;
  margin: 0 auto;
  position: relative;
  color: #000000;
  height: 56px;
  line-height: 56px;
  position: relative;
}

#navTop .nav-list li .nav-title,#navTop .new-nav a .nav-title {
  font-size: 16px;
  color: #000000;
  padding-bottom: 9px;
  border-bottom: 2px solid transparent;
}
#navTop .nav-list li:hover a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  background-color: #3c80ff;
}
#navTop .nav-list li.active a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  background-color: #3c80ff;
}

.navActive {
  position: fixed;
  top: 0px;
  z-index: 999;
  left: 0;
  right: 0;
}
.navActive + #product-introduce {
  margin-top: 75px;
}
#gold-index .title{
  font-size: 27px;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}


#banner-img {
  width: 100%;
  background: url(../images/goldkey-big-banner.jpg?v=2) center center no-repeat;
  height: 450px;
  min-width: 1000px;
  cursor: pointer;
}
#banner-img .banner-detail{
  width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 109px;
}
#banner-img .banner-detail .banner-detail-btn{
  width: 100px;
  height: 34px;
  line-height: 34px;
  display: block;
  text-align: center;
  position: absolute;
  font-size: 16px;
  color: #ffffff;
  border-radius: 10px;
  background-image: linear-gradient(to bottom, #fe9a21, #feb50c);
  left: 183px;
  top: 273px;
}
#banner-img .banner-detail .banner-detail-btn:hover{
  background-image: linear-gradient(to bottom, #feb50c, #fe9a21);
}
.recommendation{
  width: 100%;
  background: url(../images/recommendation-img.png) center center no-repeat;
  height: 255px;
  min-width: 1000px;
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.recommendation img{
  display: block;
  margin: 0 auto;
  height: auto; 
  padding-bottom: 19px;
  animation: zoomInOut 3s ease-in-out infinite; 
}

@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); } 
  100% { transform: scale(1); } 
}

#product-introduce{
  position: relative;
  background-color: #f4f7ff;
}

#product-introduce::before{
  content: "";
  display: block;
  position: absolute;
  background: url(../images/introduce-icon1.png) center center no-repeat;
  width: 349px;
  height: 211px;
  top: 0px;
  left: 0px;
}

#product-introduce::after{
  content: "";
  display: block;
  position: absolute;
  background: url(../images/introduce-icon2.png) center center no-repeat;
  width: 255px;
  height: 240px;
  bottom: 0px;
  right: 0px;
}

#product-introduce .introduce-info{
  position: relative;
}

#product-introduce .introduce-info::before{
  content: "";
  display: block;
  position: absolute;
  background: url(../images/introduce-icon3.png) center center no-repeat;
  width: 397px;
  height: 58px;
  top: 0px;
  left: 0px;
}

#product-introduce .introduce-detail{
  margin-top: 64px;
}
#product-introduce .introduce-detail .item-title{
  margin-top: 44px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.9s, transform 2.5s;
}

#product-introduce .introduce-detail .item-title.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
#product-introduce .introduce-detail .item-title::after{
    content: "";
    display: block;
    width: 94px;
    height: 5px;
    background-color: #fea817;
    border-radius: 10px;
    margin-top: 14px;
}

#product-introduce .introduce-detail .introduce-info .item-info{
  margin-top: 52px;
  font-size: 15px;
  line-height: 25px;
  color: #666666;
  width: 569px;
}

#product-introduce .introduce-detail .introduce-img{
  width: 428px;
  height: 427px;
  background: url(../images/introduce-img.png) center center no-repeat;
  display: flex;
  justify-content: center; 
  align-items: center; 
}
#product-introduce .introduce-detail .introduce-img img{
  animation: zoomInOut 3s ease-in-out infinite;
}

/* 新增左右摇摆动画 */
.swing {
  animation: swing 3s ease-in-out forwards;
  opacity: 1 !important;
}

@keyframes swing {
  0% { transform: translateX(0); }
  25% { transform: translateX(-20px); }
  50% { transform: translateX(0); }
  75% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

#product-highlights .highlights-detail{
  margin-top: 58px;
}

.flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.ecology-item {
  float: left;
  width: 200px;
  height: 540px;
  position: relative;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
}

.ecology-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
  padding: 27px 0;
  text-align: center;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  background: rgba(0, 0, 0, 0.4);
}

.ecology-mask h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.ecology-mask p{
  font-size: 14px;
  overflow: hidden; /* 隐藏超出内容 */
  text-overflow: ellipsis; /* 显示省略号 */
  white-space: nowrap; /* 禁止文本换行 */
  width: 100%; /* 设置一个宽度以限制内容显示范围，这里假设是父元素的宽度 */
  display: block; /* 确保p作为块级元素展示 */
  padding: 0 17px;
}

.ecology-item.active {
  width: 774px !important;
}

.ecology-item img{
  width: 100%;
  height: 100%;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  object-fit: cover;
}

.ecology-item.active .ecology-mask {
  background-color: rgba(46, 95, 243, 0.8);
  background-repeat: no-repeat;
  background-position: center;
  text-align: left;
}

.ecology-item.active .ecology-mask h2, .ecology-item.active .ecology-mask p {
  padding-left: 40px;
}

#product-highlights .highlights-pro{
  margin-top: 90px;
  position: relative;
}
#product-highlights .highlights-pro .pro-title,#product-highlights .highlights-servcer .servcer-title{
  position: relative;
  margin-bottom: 42px;
}
#gold-index .sub-title{
  position: relative;
  margin-top: 45px;
}
#product-highlights .highlights-pro .pro-title p,#product-highlights .highlights-servcer .servcer-title p,#gold-index .sub-title p{
  text-align: center;
  position: relative;
  color: #000000;
  font-size: 20px;
}

#product-highlights .highlights-pro .pro-title::before,#gold-index .sub-title::before{
  width: 767px;
  content: "";
  height: 13px;
  background-color: #fee18e;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%)
}
#gold-index .sub-title::before{
  width: 198px;
}
#product-highlights .highlights-pro .pro-detial{
  position: relative;
  width: 100%;
  height: 392px;
}

#product-highlights .highlights-pro .pro-detial .item-img-bg{
  display: block;
  position: absolute;
  left: 301px;
  top: -51px;
}

#product-highlights .highlights-pro .pro-detial .item{
  display: block;
  width: 350px;
  height: 176px;
  position: absolute;
  padding-top: 24px;
  padding-left: 22px;
  border-radius: 5px;
  transition: top 0.3s ease,bottom 0.3s ease;
}
#product-highlights .highlights-pro .pro-detial .item:nth-child(2):hover,#product-highlights .highlights-pro .pro-detial .item:nth-child(3):hover{
  top: -10px !important;
}
#product-highlights .highlights-pro .pro-detial .item:nth-child(4):hover,#product-highlights .highlights-pro .pro-detial .item:nth-child(5):hover{
  bottom: 10px !important;
}
#product-highlights .highlights-pro .pro-detial .item .item-title{
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 13px;
}

#product-highlights .highlights-pro .pro-detial .item .item-desc{
  font-size: 14px;
  color: #333333;
}

.animated{
  animation-duration: 2.5s !important
}
#product-highlights .highlights-servcer{
  margin-top: 40px;
}
#product-highlights .highlights-servcer .servcer-title::before{
  width: 348px;
  content: "";
  height: 13px;
  background-color: #fee18e;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%)
}

#product-highlights .highlights-servcer .server-detial{
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#product-highlights .highlights-servcer .server-detial li.item{
  width: 382px;
  height: 281px;
  box-shadow: 0 1px 19px rgb(0 0 0 / 5%);
  border-radius: 5px;
  padding-top: 22px;
  padding-left: 36px;
  padding-right: 25px;
  transition: transform 0.3s ease;
}
#product-highlights .highlights-servcer .server-detial li.item:hover{
  transform: translateY(-10px);
}
#product-highlights .highlights-servcer .server-detial li.item .item-header{
  margin-bottom: 18px;
}
#product-highlights .highlights-servcer .server-detial li.item .item-header .item-header-left{
  width: 52px;
  height: 50px;
  text-align: center;
}
#product-highlights .highlights-servcer .server-detial li.item .item-header .item-header-left img{
  transition: transform 0.3s ease; 
}
#product-highlights .highlights-servcer .server-detial li.item:hover .item-header .item-header-left img{
  transform: scale(1.1); 
}
#product-highlights .highlights-servcer .server-detial li.item .item-header  .item-header-right {
  margin-left: 10px;
}
#product-highlights .highlights-servcer .server-detial li.item .item-header  .item-header-right .item-header-title{
 
  font-size: 18px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 5px;
}

#product-highlights .highlights-servcer .server-detial li.item .item-header  .item-header-right .item-header-desc{
  display: inline-block;
  padding: 3px 5px;
  border-radius: 3px;
  background-color: #fdf7ec;
  color: #de720e;
}

#product-highlights .highlights-servcer .server-detial li.item .item-info p{
  color: #888888;
  font-size: 14px;
  line-height: 22px;
}

#product-highlights .highlights-servcer .server-detial li.item .item-pro{
  margin-bottom: 12px;
}

#product-highlights .highlights-servcer .server-detial li.item .item-pro h3{
  padding: 2px;
  padding-left: 7px;
  padding-right: 0px;
  display: inline-block;
  font-size: 13px;
  border-radius: 3px;
  background-color: #e4fdef;
  color: #4e8a5d;
  border-radius: 3px;
  margin-bottom: 5px;
}

#product-highlights .highlights-servcer .server-detial li.item .item-pro p{
  font-size: 13px;
  color: #4e8a5d;
}

.add-animate {
  opacity: 0; /* 或 visibility: hidden; */
  animation-fill-mode: both; /* 确保动画结束后保持最终状态 */
}

#product-advantage{
  background-color: #f5f7fa;
}

#product-advantage .advantage-list{
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}

#product-advantage .advantage-list li.item{
  width: 256px;
  height: 158px;
  background-color: #fff;
  box-shadow: 0 1px 19px rgb(0 0 0 / 5%);
  text-align: center;
  position: relative;
  
  cursor: pointer;
}
#product-advantage .advantage-list li.item .item-front{
  width: 100%;
  display: block;
  padding-top: 22px;
  height: 100%;
  transition: all 0.50s ease-in-out 0s;
}
#product-advantage .advantage-list li.item .item-front i{
  display: block;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

#product-advantage .advantage-list li.item .item-front p{
  font-size: 20px;
  color: #666666;
  display: block;
  width: 100%;
}
#product-advantage .advantage-list li.item .card-back{
  font-size: 20px;
  color: #ffffff;
  padding-top: 33px;
  position: absolute;
  bottom: 25px;
  display: block;
  width: 100%;
  transform: rotateY(90deg);
  transition: all 0.50s ease-in-out 0s;
  overflow: hidden;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background-color: #485772;
}

#product-advantage .advantage-list li.item .card-back p.item-detail{
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  margin-top: 15px;
}

#product-advantage .advantage-list li.item:hover .item-front{
  transform: rotateY(-90deg);
}
#product-advantage .advantage-list li.item:hover .card-back{
  transform: rotateY(0);
}

#product-advantage .advantage-content{
  position: relative;
 
}
#product-advantage .advantage-content .content-guide{
  width: 1125px;
  height: 709px;
  margin: 0 auto;
  margin-top: 30px;
  background: url(../images/advantage-bg.png) center center;
  position: relative;
  z-index: 2;
}
#product-advantage .advantage-content::before{
  content: "";
  display: block;
  width: 283px;
  height: 240px;
  background: url(../images/r.png) center center no-repeat;
  position: absolute;
  right: -170px;
  top: -88px;
  z-index: 1;
}

#product-advantage .advantage-content::after{
  content: "";
  display: block;
  width: 292px;
  height: 231px;
  background: url(../images/l.png) center center no-repeat;
  position: absolute;
  left: -157px;
  bottom: 0px;
  z-index: 1;
}

#product-advantage .advantage-content .content-guide .item-guide{
  color: #406efe;
  font-size: 13px;
  line-height: 21px;
  position: absolute;
  font-weight: 600;
  text-align: center;
}

#product-advantage .advantage-content .item-desc{
  color: #ffffff;
  font-size: 17px;
  text-align: center;
  line-height: 54px;
}
#product-advantage .advantage-content .item-list {
  text-align: center;
  position: absolute;
}
#product-advantage .advantage-content .item-list label{
    font-size: 14px;
    color: #406efe;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}
#product-advantage .advantage-content .item-list p{
  line-height: 32px;
  color: #666666;
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 600;
}

#product-package .package-detial{
  margin-top: 40px;
}

#product-package .package-detial .detial-nav{
  font-size: 0;
  width: 100%;
  height: 63px;
  background-color: #f3f3f3;
  border-radius: 50px;
}

#product-package .package-detial .detial-nav li.item{
  width: 33.3333%;
  display: inline-block;
  font-size: 18px;
  color: #406efe;
  line-height: 63px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

#product-package .package-detial .detial-nav li.item.active{
  background-color: #406efe;
  border-radius: 50px;
  color: #ffffff;
}

#product-package .package-detial .detial-nav li.item.active::before{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 8px solid #406efe;
  transform: translateX(-50%);
  bottom: -8px;
}

#product-package .package-table{
  width: 100%;
  font-size: 0;
  margin-top: 30px;
  border-left: 1px solid #e2ecff;
}

#product-package .package-table .tr-item{
  display: inline-block;
  vertical-align: middle;
}

#product-package .package-table .tr-item .item-header,#product-package .package-table table tr th{
  height: 140px;
  background-color: #406efe;
  font-size: 17px;
  line-height: 140px;
  text-align: center;
  color: #ffffff;
  border-right: 1px solid;
}

#product-package .package-table .tr-item div.item{
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #666666;
  font-size: 13px;
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; 
  border-bottom:1px solid #e2ecff;
  border-right:1px solid #e2ecff;
}
#product-package .package-table table tr td{
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #666666;
  font-size: 13px;
  border-bottom:1px solid #e2ecff;
  border-right:1px solid #e2ecff;
}
#product-package .package-table .tr-item div.item.h96{
  height: 96px;
  line-height: 96px;
}

#product-package .package-table .tr-item div.item.h144{
  height: 144px;
  line-height: 144px;
}

#product-package .package-table .tr-item div.item.gray-bg,#product-package .package-table table tr.gray-bg{
  background-color: #f3f3f3;
} 

#product-package .package-table .tr-item.price-item div.item{
    color: #333333;
    font-weight: 600;
    border-right: 0;
}

#product-package .package-table .tr-item div.item .error{
  display: inline-block;
  background: url(../images/error-icon.png) center center no-repeat;
  width: 13px;
  height: 13px;
}

#product-package .package-table .tr-item div.item .right,#product-package .package-table table tr td .right{
  display: inline-block;
  background: url(../images/right-icon.png) center center no-repeat;
  width: 20px;
  height: 15px;
}
#product-package .package-table table tr td.bold-text{
    color: #000000;
    font-size: 16px;
}
#product-package .package-table table tr td span.pro-price{
  margin-right: 10px;
}
#product-package .package-table table tr td span.pro-price em{
  font-size: 20px;
}
#product-package .package-table table tr td.td-price{
  color: #ff0000;
  font-weight: 600;
}
#product-package .package-table table tr td a.go-buy{
  font-size: 16px;
  width: 326px;
  height: 35px;
  line-height: 34px;
  background-color: #00a0ff;
  border-radius: 3px;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
}
#product-package .package-table table tr td a.go-buy:hover{
  background-color:#406efe;;
}

#product-package .package-table .tr-item div.item-product{
  text-align: center;
  color: #ffffff;
}
#product-package .package-table .tr-item div.item-product h3{
  font-size: 21px;
  margin-bottom: 11px;
  line-height: 21px;padding-top: 22px;
  font-weight: 600;
} 

#product-package .package-table .tr-item div.item-product label{
  font-size: 21px;
  display: block;
  margin: 0 auto;
  width: 160px;
  border-radius: 8px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  color: #406efe;
  margin-bottom: 12px;
  background-color: #ffffff;
} 


#product-package .package-table .tr-item div.item-product p{
  font-size: 14px;
  color: #ffffff;
  line-height: 14px;
}

#product-package .package-table .tr-item .go-buy{
  width: 160px;
  height: 40px;
  line-height: 38px;
  color: #406efe;
  border: 1px solid #406efe;
  border-radius: 3px;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 24px;
}

#product-package .package-table .tr-item div.item.last-item{
  display: block;
  padding-top: 13px;
  border-bottom: 0;
}

#product-package .package-table .tr-item.main-product{
  border:1px solid #e2ecff
}

#product-package .package-table .tr-item.main-product div.item{
  border-right: 0;
  
}
#product-package .package-table .tr-item.active{
  border-color: #00a0ff;
}
#product-package .package-table .tr-item.active div.item-product{
  padding-top: 20px;
  box-sizing: content-box;
  background-color: #00a0ff;
}
#product-package .package-table .tr-item.active div.item-product label{
  color: #00a0ff;
}
#product-package .package-table .tr-item.active div.item.last-item{
  padding-bottom: 6px;
  box-sizing: content-box;
}
#product-package .package-table .tr-item.active div.item.last-item .go-buy{
  background-color: #00a0ff;
  color: #ffffff;
  border-color: #00a0ff;
}

#product-package .package-table table{
  width: 100%;
}

#product-package .package-table .table-tips{
  color: #ff0000;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
}
#product-package .add-table{
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#product-package .add-table .table-item{
  font-size: 0px;
  display: flex;
}
#product-package .add-table .table-item.active .item-sale{
  padding-right: 15px;
  box-sizing: content-box;
  border-right-color: #00bcd4;
}
#product-package .add-table .table-item.active .item-type{
  padding-left: 14px;
  box-sizing: content-box;
  border-left-color: #00bcd4;
}

#product-package .add-table .table-item.active div{
  border-top-color: #00bcd4;
  border-bottom-color: #00bcd4;
}
#product-package .add-table .table-item.active div.item-sale,#product-package .add-table .table-item.active div.item-type{
  height: 46px;
}
#product-package .add-table .table-item.active.h96 div.item-sale,#product-package .add-table .table-item.active.h96 div.item-type{
  height: 94px;
}
#product-package .add-table .table-item.active+.table-item div{
  border-top: 0;
}
#product-package .add-table .table-item div{
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; 
  font-size: 14px;
  color: #666666;
  height: 48px;
  text-align: center;
  border-top: 1px solid #e2ecff;
  border-right: 1px solid #e2ecff;
  border-bottom: 1px solid transparent;
}

#product-package .add-table .table-item.h96 div{
  height: 96px;
}
#product-package .add-table .table-item.gray-bg div{
  background-color: #f3f3f3;
}

#product-package .add-table .table-item .item-type{
  width: 188px;
  border-left: 1px solid #e2ecff;
  position: relative;
}

#product-package .add-table .table-item .item-unit{
  width: 95px;
}

#product-package .add-table .table-item .item-num{
  width: 95px;
}
#product-package .add-table .table-item .item-con{
  width: 421px;
}

#product-package .add-table .table-item .item-price{
  width: 164px;
  color: #333333;
  font-weight: 600;
}

#product-package .add-table .table-item .item-sale{
  width: 230px;
  position: relative;
}

#product-package .add-table .table-header div{
  height: 140px;
  background-color: #406efe;
  color: #ffffff !important;
  font-size: 17px;
  border-right: 1px solid;
  font-weight: normal !important;
}

#product-package .add-table .table-item div.item-sale{
  position: relative;
}

#product-package .add-table .table-item div.item-sale .go-buy{
  display: block;
  width: 116px;
  border-radius: 3px;
  border: 1px solid #406efe;
  height: 30px;
  line-height: 28px;
  position: absolute;
  text-align: center;
  color: #406efe;
  right: 16px;
}
#product-package .add-table .table-item.active div.item-sale .go-buy{
  right: 32px;
  border-color: #00a0ff;
  background-color: #00a0ff;
  color: #ffffff;
}
#product-package .add-table .table-item div.item-sale span{
  position: absolute;
  left: 34px;
  color: #ff0000;
  font-weight: 600;
}
