/* 1像素 */
.top-line,
.right-line,
.bottom-line,
.left-line,
.box-line {
  position: relative;
}
/* 上 */
.top-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid rgba(95, 95, 95, 0.2);
  color: rgba(95, 95, 95, 0.2);
  transform-origin: 0 0;
  transform: scaleY(0.5);
  z-index: 2;
}
/* 右 */
.right-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 1px;
  border-right: 1px solid rgba(95, 95, 95, 0.2);
  color: rgba(95, 95, 95, 0.2);
  transform-origin: 100% 0;
  transform: scaleX(0.5);
  z-index: 2;
}
/* 下 */
.bottom-line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid rgba(95, 95, 95, 0.2);
  color: rgba(95, 95, 95, 0.2);
  transform-origin: 0 100%;
  transform: scaleY(0.5);
  z-index: 2;
}
/*左边*/
.left-line:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 1px;
  border-left: 1px solid rgba(95, 95, 95, 0.2);
  color: rgba(95, 95, 95, 0.2);
  transform-origin: 0 0;
  transform: scaleX(0.5);
  z-index: 2;
}
/* 边框 */
.box-line:after {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(95, 95, 95, 0.2);
  transform: scale(0.5);
  transform-origin: 0 0;
  box-sizing: border-box;
  /* border-radius:20px; */
  z-index: 2;
  pointer-events: none;
}
@-webkit-keyframes fadeOutSelf {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeOutSelf {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
[data-aos] {
  -webkit-animation-name: fadeOutSelf;
  animation-name: fadeOutSelf;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

[data-aos].animated {
  visibility: visible;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInUpbox8 {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0.2;
    transform: translateZ(0);
  }
}
@keyframes fadeInUpbox8 {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0.2;
    transform: translateZ(0);
  }
}
.fadeInUpbox8 {
  -webkit-animation-name: fadeInUpbox8;
  animation-name: fadeInUpbox8;
}
@font-face {
  font-family: "fontNum";
  src: url(../font/dmGothicBold.otf);
}
/* 清除浮动 */
.clearfix:after {
  content: ""; /*设置内容为空*/
  height: 0; /*高度为0*/
  line-height: 0; /*行高为0*/
  display: block; /*将文本转为块级元素*/
  visibility: hidden; /*将元素隐藏*/
  clear: both; /*清除浮动*/
}
.clearfix {
  *zoom: 1; /*只针对IE6/7 */
}
img {
  display: block;
}
body.modal-open {
  position: fixed;
  width: 100%;
}
header {
  z-index: 99;
}
.main {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
.backtop {
  position: fixed;
  right: 0.1rem;
  bottom: 0.4rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  z-index: 98;
  box-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.11);
  display: none;
}
.backtop .icon {
  display: block;
  width: 100%;
  border-radius: 50%;
}
.nav-wrap {
  transition: top 0.5s ease;
  position: relative;
  z-index: 99;
}
.nav-wrap.active {
  position: fixed;
  width: 100%;
  top: -0.01rem;
}
.nav-wrap.up {
  top: -0.5rem;
}
.nav-wrap.down {
  top: 0;
}
.nav-wrap .nav-package {
  position: relative;
}
.nav-wrap .nav-package .pack {
  width: 100%;
  height: 0.5rem;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0 0.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.nav-wrap .nav-package .left {
  font-size: 0.12rem;
  color: #000;
}
.nav-wrap .nav-package .center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-wrap .nav-package .center.active .round-wrap {
  display: none;
}
.nav-wrap .nav-package .center.active .creat {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  width: 0.12rem;
  opacity: 1;
}
.nav-wrap .nav-package .center:after {
  content: "";
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  bottom: -0.2rem;
  left: -0.2rem;
}
.nav-wrap .nav-package .center .round-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-wrap .nav-package .center .round-wrap .round {
  display: block;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  background-color: #4d4b46;
  transition: all 0.3s ease;
  margin: 0 0.05rem;
  position: relative;
}
.nav-wrap .nav-package .center .round-wrap .round.active {
  width: 0.2rem;
  height: 0.04rem;
  border-radius: 100px;
  background-color: #952225;
}
.nav-wrap .nav-package .center .creat {
  width: 0.08rem;
  position: absolute;
  top: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  transition: all 0.3s ease;
  margin-left: 0.02rem;
}
.nav-wrap .nav-package .center .creat .icon {
  width: 100%;
}
.nav-wrap .nav-package .right {
  display: block;
  height: 0.24rem;
  padding: 0 0.15rem;
  border-radius: 1rem;
  background-color: #9c1d22;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.06rem;
  position: relative;
}
.nav-wrap .nav-package .right:after {
  content: "";
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  bottom: -0.1rem;
  left: 0;
}
.nav-wrap .nav-package .right span {
  font-size: 0.1rem;
  font-weight: 600;
  color: #fff;
}
.nav-wrap .nav-package .nav-anchor {
  width: 100%;
  height: 1.8rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0.5rem;
  z-index: 1;
  box-shadow: 0rem 0.3rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease;
}
.nav-wrap .nav-package .nav-anchor.active {
  top: -2rem;
}
.nav-wrap .nav-package .nav-anchor .swiper-container {
  height: 100%;
}
.nav-wrap .nav-package .nav-anchor .anchor {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.nav-wrap .nav-package .nav-anchor .pic-wrap {
  width: 0.8rem;
  overflow: hidden;
  box-shadow: 0rem 0.3rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  border-radius: 0.08rem;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease;
}
.nav-wrap .nav-package .nav-anchor .pic-wrap .pic {
  width: 100%;
  height: 0.9rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.nav-wrap .nav-package .nav-anchor .desc {
  font-size: 0.1rem;
  color: #474d54;
  line-height: 0.13rem;
  padding-top: 0.12rem;
  text-align: left;
}
.nav-wrap .nav-package .nav-anchor .anchor.active .pic-wrap {
  transform: scale(1.275);
}
.nav-wrap .nav-package .nav-anchor .anchor-top.active {
  margin-top: 0.12rem;
}
.nav-wrap .nav-package .nav-anchor .anchor.active .desc {
  color: #9c1d22;
  padding-top: 0.22rem;
}
.loading-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ebf5fc;
  z-index: 98;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-wrap .num {
  font-size: 2.6rem;
  font-family: "fontNum";
  color: #fff;
}
.box1 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.box1 .desc-wrap {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.box1 .desc-wrap .tips {
  font-size: 0.24rem;
  font-weight: 600;
  color: #fff;
  line-height: 0.36rem;
  text-align: center;
  white-space: nowrap;
}
.box1 .desc-wrap .desc {
  font-size: 0.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 0.36rem;
  text-align: center;
  white-space: nowrap;
}
.box1 .desc-wrap .btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.1rem;
}
.box1 .desc-wrap .btn-wrap .buy-desc {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0.2rem;
  position: relative;
}
.box1 .desc-wrap .btn-wrap .buy-desc::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  bottom: -0.1rem;
  left: -0.1rem;
}
.box1 .desc-wrap .btn-wrap .buy-desc .buy-tips {
  font-size: 0.14rem;
  font-weight: 600;
  color: #fff;
  margin-right: 0.05rem;
}
.box1 .desc-wrap .btn-wrap .buy-desc .creat {
  width: 0.1rem;
}
.box1 .desc-wrap .btn-wrap .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.box1 .desc-wrap .btn-wrap .right:after {
  content: "";
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  bottom: -0.1rem;
  left: -0.1rem;
}
.box1 .desc-wrap .btn-wrap .right .video-desc {
  font-size: 0.14rem;
  font-weight: 600;
  color: #fff;
}
.box1 .desc-wrap .btn-wrap .right .icon {
  display: block;
  width: 0.24rem;
  margin-left: 0.1rem;
}
.box1 .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.box1 .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}
.box1 .swiper-down {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0.15rem;
}
.box1 .swiper-down .tips {
  font-size: 0.12rem;
  color: #d9d9d9;
  text-align: center;
}
@keyframes loadingCartton {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 6px);
  }
  100% {
    transform: translate(0px, 0);
  }
}
@-webkit-keyframes loadingCartton {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 6px);
  }
  100% {
    -webkit-transform: translate(0px, 0);
  }
}
.box1 .swiper-down .icon-wrap {
  -webkit-animation: loadingCartton 1.2s infinite linear;
  animation: loadingCartton 1.2s infinite linear;
}
.box1 .swiper-down .icon-wrap .icon {
  width: 0.07rem;
  margin: 0.08rem auto 0;
}
.box2 {
  margin-top: 1.1rem;
  position: relative;
}
.box2 .title {
  font-size: 0.32rem;
  font-weight: 600;
  color: #004297;
  line-height: 0.42rem;
  text-align: center;
}
.box2 .title .subtitle {
  font-size: 0.25rem;
  font-weight: 600;
  color: #004297;
  line-height: 0.42rem;
  text-align: center;
}
.box2 .btn-pop {
  width: 2.5rem;
  height: 0.45rem;
  border-radius: 1rem;
  border: 0.02rem solid #004297;
  margin: 0.15rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes btnTip {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, 0);
  }
  100% {
    transform: translate(0px, 0);
  }
}
@-webkit-keyframes btnTip {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(3px, 0);
  }
  100% {
    -webkit-transform: translate(0px, 0);
  }
}
.box2 .btn-pop .icon {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  -webkit-animation: btnTip 1.2s infinite linear;
  animation: btnTip 1.2s infinite linear;
}
.box2 .btn-pop .icon img {
  width: 100%;
  height: auto;
}
.box2 .btn-pop .desc {
  font-size: 0.14rem;
  font-weight: 600;
  color: #004297;
  margin-left: 0.1rem;
}
.box3 {
  margin-top: 0.6rem;
  position: relative;
}
.box3 .bg-img {
  width: 3.5rem;
  margin: 0 auto;
}
.box3 .bg-img .bg {
  width: 100%;
}
.box3 .desc-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.54rem;
  margin-left: -1.4rem;
  white-space: nowrap;
}
.box3 .desc-wrap .title {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #004297;
  position: relative;
}
.box3 .desc-wrap .title .num {
  font-size: 0.14rem;
  font-weight: bold;
  color: #022d76;
  line-height: 1;
  position: absolute;
  top: 0.05rem;
  right: -0.18rem;
}
.box3 .desc-wrap .desc {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.22rem;
  color: #004297;
  margin-top: 0.12rem;
}
.box4 .desc-wrap {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.box4 .desc-wrap .title {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #004297;
  position: relative;
}
.box4 .desc-wrap .title .num {
  font-size: 0.14rem;
  font-weight: bold;
  color: #5e91ce;
  line-height: 1;
  position: absolute;
  top: 0.05rem;
  right: -0.18rem;
}
.box4 .desc-wrap .desc {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.22rem;
  color: #004297;
  margin-top: 0.12rem;
}
.box4 .product-wrap {
  width: 100%;
  position: relative;
  margin-top: -1.5rem;
}
.box4 .product-wrap .product-bg {
  width: 100%;
  position: absolute;
  top: -0.5rem;
  left: 0;
}
.box4 .product-wrap .product {
  width: 3.24rem;
  margin: 1rem auto 0;
}
.box4 .btn-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-top: -1.8rem;
  position: relative;
  z-index: 1;
}
.box4 .btn-wrap .title {
  font-size: 0.28rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #004297;
  text-align: center;
}
.box4 .btn-wrap .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box4 .btn-wrap .btn .tips {
  display: block;
  min-width: 1.04rem;
  height: 0.42rem;
  line-height: 0.42rem;
  font-size: 0.12rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: #004297;
  border-radius: 100px;
  margin-top: 0.1rem;
}
.box5 {
  margin-top: 0.8rem;
}
.box5 .glass-img {
  width: 100%;
  position: relative;
}
.box5 .glass-img .glass {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
.box5 .desc-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.box5 .desc-wrap1 {
  padding-top: 1rem;
}
.box5 .desc-wrap .desc {
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  color: #004297;
}
.box5 .desc-wrap .img-wrap {
  margin-top: 0.45rem;
}
.box5 .desc-wrap2 {
  margin-top: 0.5rem;
}
.box5 .desc-wrap .img-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}
.box5 .desc-wrap1 .img-wrap .item {
  background-image: url(../img/icon-all3.png);
}
.box5 .desc-wrap2 .img-wrap .item {
  background-image: url(../img/icon-all4.png);
}
@keyframes breath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes breath {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
.box5 .desc-wrap .img-wrap > div {
  flex: 0 0 33.33%;
  height: 1.24rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box5 .desc-wrap .img-wrap .icon {
  width: 0.86rem;
  height: auto;
  -webkit-animation: breath 3s infinite linear;
  animation: breath 3s infinite linear;
}
.box5 .desc-wrap .img-wrap .icon1 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.box5 .desc-wrap .img-wrap .icon2 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.box5 .desc-wrap .img-wrap .icon3 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.box5 .desc-wrap .img-wrap .icon4 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.box5 .desc-wrap .img-wrap .icon5 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.box5 .desc-wrap .img-wrap .icon6 {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.box5 .desc-wrap .img-wrap .icon7 {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.box5 .desc-wrap .img-wrap .icon8 {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}
.box5 .desc-wrap .img-wrap .icon9 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.box6 {
  width: 100%;
  padding-top: 0.7rem;
  position: relative;
}
.box6 .box-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.box6 .box-bg .bg {
  width: 100%;
  height: 100%;
  -o-object-position: center bottom;
  object-position: center bottom;
  -o-object-fit: cover;
  object-fit: cover;
}
.box6 .package {
  width: 100%;
  position: relative;
  z-index: 1;
}
.box6 .package .item-wrap1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.box6 .package .item-wrap1 .desc {
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 0.3rem;
  color: #fff;
}
.box6 .package .item-wrap1 .list {
  width: 3.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  padding: 0.06rem 0.04rem;
  margin-top: 0.3rem;
}
.box6 .package .item-wrap1 .list1 {
  margin-top: 0.2rem;
}
.box6 .package .item-wrap1 .list .left {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.box6 .package .item-wrap1 .list .left .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.box6 .package .item-wrap1 .list .left .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}
.box6 .package .item-wrap1 .list .right {
  flex: 1;
  margin-left: 0.14rem;
}
.box6 .package .item-wrap1 .list .right .title {
  font-size: 0.14rem;
  font-weight: bold;
  line-height: 0.22rem;
  color: #afb4bb;
}
.box6 .package .item-wrap1 .list .right .desc {
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 0.22rem;
  color: #022d76;
  margin-top: 0.04rem;
}
.box6 .package .item-wrap2 {
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}
.box6 .package .item-wrap2 .box-img {
  width: 3.14rem;
  margin: 0 auto;
  position: relative;
}
.box6 .package .item-wrap2 .box-img .bg {
  width: 100%;
}
.box6 .package .item-wrap2 .box-img .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}
.box6 .item-wrap3 {
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}
.box6 .item-wrap3 .desc-wrap .desc {
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.box6 .item-wrap3 .desc-wrap .tips {
  font-size: 0.3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 0.1rem;
}
.box6 .item-wrap3 .word-img {
  width: 3.3rem;
  margin: 0 auto;
}
.box6 .item-wrap3 .btn-wrap {
  width: 2.48rem;
  height: 0.48rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: -0.4rem auto 0;
  position: relative;
}
.box6 .item-wrap3 .btn-wrap .icon {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  -webkit-animation: btnTip 1.2s infinite linear;
  animation: btnTip 1.2s infinite linear;
}
.box6 .item-wrap3 .btn-wrap .icon img {
  width: 100%;
  height: auto;
}
.box6 .item-wrap3 .btn-wrap .desc {
  font-size: 0.14rem;
  font-weight: 600;
  color: #004297;
  margin-left: 0.1rem;
}
.box6 .box6-cartoon {
  width: 100%;
  position: relative;
  margin-top: -2.4rem;
}
.box6 .box6-cartoon .bg {
  width: 100%;
  height: 6.6rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.box6 .box6-cartoon .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}
.box7 .desc-wrap .desc {
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  color: #fff;
}
.box7 {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-top: 0.6rem;
}
.box7 .box7-bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.box7 .box7-bg .bg {
  width: 100%;
}
.box7 .desc-wrap .tips {
  font-size: 0.2rem;
  font-weight: 600;
  color: #022d76;
  line-height: 1.5;
  margin-top: 0.9rem;
}
.box7 .desc-wrap .subtips {
  font-size: 0.36rem;
  font-weight: 600;
  color: #022d76;
  line-height: 0.42rem;
}
.box7 .list.list1 {
  margin-top: 0.35rem;
}
.box7 .list {
  margin-top: 0.25rem;
}
.box7 .list .desc-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.box7 .list .desc-box .desc {
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #022d76;
}
.box7 .list .desc-box .desc.font24 {
  font-size: 0.24rem;
}
.box7 .list .desc-box .tips {
  font-size: 0.14rem;
  font-weight: 600;
  line-height: 0.2rem;
  color: #022d76;
}
.box7 .list .box-img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.box7 .list1 .box-img .pic1 {
  width: 1.58rem;
}
.box7 .list2 .box-img .pic1 {
  width: 2.3rem;
}
.box7 .list3 .box-img .pic1 {
  width: 2.78rem;
}
.box7 .list .box-img .pic1 {
  margin-top: -0.2rem;
  position: relative;
  z-index: 1;
}
.box7 .list .box-img .pic2 {
  width: 3rem;
  margin-top: -0.2rem;
}
.box7 .list4 .desc-box {
  align-items: flex-start;
  flex-direction: column;
}
.box7 .list4 .box-img .pic1 {
  width: 2.04rem;
  margin-top: -0.1rem;
}
.box7 .list4 .box-img .pic2 {
  width: 100%;
  margin-top: -0.4rem;
  position: relative;
  z-index: 1;
}
.box7 .list4 .box-img .pic3 {
  width: 3.28rem;
  margin-top: -0.1rem;
}
.box7 .list5 .box-img .pic2 {
  margin-top: 0;
}
.box8 {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.box8 .desc-wrap .title {
  font-size: 0.2rem;
  font-weight: 600;
  color: #004297;
  line-height: 1.5;
}
.box8 .desc-wrap .desc {
  font-size: 0.36rem;
  font-weight: 600;
  color: #004297;
  line-height: 0.42rem;
}
.box8 .desc-wrap .tips {
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 0.28rem;
  color: #004297;
  margin-top: 0.15rem;
}
.box8 .box-img {
  width: 3.46rem;
  position: relative;
  background-color: #fff;
}
.box8 .box-img .pic1 {
  width: 100%;
}
.box8 .box-img .pic2 {
  width: 0.56rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.box8 .box-img .pic3 {
  width: 2.28rem;
  position: absolute;
  top: 1.2rem;
  right: 0.8rem;
}
.box8 .tips-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 0.5rem;
}
.box8 .tips-wrap .title {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #004297;
}
.box8 .tips-wrap .desc {
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 0.4rem;
  color: #004297;
  position: relative;
}
.box8 .tips-wrap .desc .num {
  font-size: 0.14rem;
  font-weight: bold;
  color: #5e91ce;
  line-height: 1;
  position: absolute;
  top: 0.05rem;
  right: -0.18rem;
}
.box8 .tips-wrap .tips {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #004297;
  margin-top: 0.05rem;
}
.box9 {
  margin-top: 0.5rem;
}
.box9 .pic {
  width: 100%;
}
.box9 .desc-wrap {
  text-align: center;
}
.box9 .desc-wrap .title {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #004297;
}
.box9 .desc-wrap .desc {
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 0.4rem;
  color: #004297;
}
.box9 .desc-wrap .tips {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #004297;
  margin-top: 0.05rem;
}
.box10 {
  margin-top: 0.25rem;
}
.box10 .pic {
  width: 100%;
}
.box10 .desc-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 0.25rem;
}
.box10 .desc-wrap .title {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #004297;
}
.box10 .desc-wrap .desc {
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 0.4rem;
  color: #004297;
  position: relative;
}
.box10 .desc-wrap .desc .num {
  font-size: 0.12rem;
  font-weight: 600;
  color: #004297;
  line-height: 1;
  position: absolute;
  top: 0.46rem;
  right: 0;
}
.box11 {
  margin-top: 0.6rem;
}
.box11 .package {
  width: 3.75rem;
  margin: 0 auto;
  position: relative;
  left: -0.5rem;
}
.box11 .package .pic {
  position: absolute;
  transition: left 1s ease;
}
.box11 .package .pic1 {
  width: 1.5rem;
  top: 1.2rem;
  left: 0;
}
.box11 .package .pic3 {
  width: 0.4rem;
  top: 1.3rem;
  left: 2.65rem;
  z-index: 2;
}
.box11 .package .pic4 {
  width: 0.45rem;
  top: 1.2rem;
  left: 3.05rem;
  z-index: 1;
}
.box11 .package .pic5 {
  width: 1.3rem;
  top: 0.5rem;
  left: 3.5rem;
}
.box11 .package .pic2 {
  width: 1.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.box11 .package.active .pic1{
  left: 0.7rem;
}
.box11 .package.active .pic3{
  left: 2.4rem
}
.box11 .package.active .pic4{
  left: 2.5rem
}
.box11 .package.active .pic5{
  left: 2.5rem
}
.box11 .desc {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.24rem;
  color: #004297;
  text-align: center;
  margin-top: 0.45rem;
}
.box12 {
  margin-top: 0.8rem;
  width: 100%;
  padding: 1rem 0;
  position: relative;
}
.box12 .box-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.box12 .package {
  width: 100%;
  position: relative;
  z-index: 1;
}
.box12 .desc-wrap1 {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #004297;
  margin-bottom: -1rem;
  margin-left: 0.35rem;
  position: relative;
  z-index: 1;
}
.box12 .desc-wrap2 {
  position: relative;
}
.box12 .desc-wrap2 .word-bg {
  display: block;
  width: 100%;
}
.box12 .desc-wrap2 .word {
  width: 2.38rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box12 .desc-wrap3 {
  margin-top: -1rem;
  margin-left: 0.4rem;
  position: relative;
  z-index: 1;
}
.box12 .desc-wrap3 .word {
  width: 2.78rem;
}
.box12 .product {
  width: 100%;
  margin-top: -1.5rem;
  position: relative;
  z-index: 1;
}
.box12 .product .pic {
  width: 100%;
  will-change: transform;
  transition: all 1s ease;
}
.box12 .box-content {
  width: 100%;
  margin-top: -2.5rem;
  /* position: absolute;
  left: 0;
  bottom: 2rem; */
}
.box12 .box-content .title {
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 0.34rem;
  color: #fff;
  text-align: center;
}
.box12 .box-content .list {
  display: flex;
  justify-content: center;
  margin-left: -0.2rem;
  margin-top: 0.2rem;
}
.box12 .box-content .list .icon-wrap {
  width: 0.45rem;
  margin-right: 0.25rem;
  margin-top: 0.05rem;
}
.box12 .box-content .list .icon-wrap .icon {
  width: 100%;
}
.box12 .box-content .list .desc {
  width: 2.2rem;
  font-size: 0.12rem;
  font-weight: 600;
  line-height: 0.18rem;
  color: #fff;
}
.box13 {
  width: 100%;
  position: relative;
}
.box13 .box-bg {
  width: 100%;
}
.box13 .faucet {
  width: 0.98rem;
  position: absolute;
  right: 0.1rem;
  top: 3.75rem;
  z-index: 1;
}
.box13 .package {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.box13 .desc-wrap {
  padding-top: 0.95rem;
  margin-left: 0.35rem;
}
.box13 .desc-wrap .title {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #fff;
}
.box13 .desc-wrap .list {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.15rem;
}
.box13 .desc-wrap .list1 {
  margin-top: 0.3rem;
}
.box13 .desc-wrap .list .icon-wrap {
  width: 0.5rem;
}
.box13 .desc-wrap .list .icon-wrap .icon {
  width: 100%;
}
.box13 .desc-wrap .list .desc {
  font-size: 0.14rem;
  font-weight: 600;
  line-height: 0.18rem;
  color: #fff;
  margin-left: 0.3rem;
}
.box14 {
  margin-top: 0.55rem;
}
.box14 .box-title {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #022d76;
  margin-left: 0.3rem;
  margin-bottom: 0.2rem;
}
.box14 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.05rem;
}
.box14 .item > div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ebf5fc;
}
.box14 .item .left,
.box14 .item .right,
.box14 .item .pic {
  background-image: url(../img/sprite1.jpg);
  background-repeat: no-repeat;
  background-size: 8.05rem 7.18rem;
}
.box14 .item1 {
  margin-top: 0;
}
.box14 .item1 .left {
  width: 2rem;
  height: 1.42rem;
  background-position: -3.9rem -0.05rem;
}
.box14 .item1 .right {
  width: 1.69rem;
  height: 1.42rem;
  background-position: -3.9rem -1.56rem;
}
.box14 .item2 .pic {
  width: 3.75rem;
  height: 3.34rem;
  background-position: -0.05rem -0.05rem;
}
.box14 .item3 .left {
  width: 1.69rem;
  height: 1.18rem;
  background-position: -3.62rem -5.94rem;
}
.box14 .item3 .right {
  width: 2rem;
  height: 1.18rem;
  background-position: -6rem -0.05rem;
}
.box14 .item4 .left {
  width: 2rem;
  height: 1.15rem;
  background-position: -6rem -1.32rem;
}
.box14 .item4 .right {
  width: 1.69rem;
  height: 1.15rem;
  background-position: -5.4rem -5.94rem;
}
.box14 .item5 .left {
  width: 1.69rem;
  height: 1.06rem;
  background-position: -2.15rem -4.78rem;
}
.box14 .item5 .right {
  width: 2rem;
  height: 1.06rem;
  background-position: -6rem -2.58rem;
}
.box14 .item6 .left {
  width: 1.69rem;
  height: 1.06rem;
  background-position: -3.92rem -4.78rem;
}
.box14 .item6 .right {
  width: 2rem;
  height: 1.06rem;
  background-position: -0.05rem -4.78rem;
}
.box14 .item7 .left {
  width: 2rem;
  height: 1.19rem;
  background-position: -0.05rem -3.5rem;
}
.box14 .item7 .right {
  width: 1.69rem;
  height: 1.19rem;
  background-position: -0.05rem -5.95rem;
}
.box14 .item8 .left {
  width: 2rem;
  height: 1.19rem;
  background-position: -2.15rem -3.5rem;
}
.box14 .item8 .right {
  width: 1.69rem;
  height: 1.19rem;
  background-position: -1.84rem -5.95rem;
}
.box15 {
  margin-top: 0.55rem;
}
.box15 .box-title {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #022d76;
  margin-left: 0.3rem;
}
.box15 .box-desc {
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 0.25rem;
  color: #022d76;
  margin: 0.4rem 0.3rem 0 0.3rem;
  padding-bottom: 0.12rem;
  border-bottom: 0.02rem solid #e3e5ea;
}
.box15 .swiper1 .swiper-slide {
  transition: 300ms;
  transform: scale(0.66);
  opacity: 0.6;
}
.box15 .swiper1 .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.box15 .swiper1 .pic-wrap {
  padding: 0.5rem 0;
}
.box15 .swiper1 .pic-wrap .pic {
  width: 1.2rem;
}
.box15 .swiper2 {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  position: relative;
}
.box15 .swiper2:after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 0.02rem solid #e3e5ea;
}
.box15 .swiper2 .swiper-container {
  width: 100%;
}
.box15 .swiper2 .desc-wrap {
  display: flex;
  justify-content: flex-start;
}
.box15 .swiper2 .desc-wrap .desc {
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 0.22rem;
  color: #c7ccd3;
  padding-bottom: 0.2rem;
}
.box15 .swiper2 .swiper-slide-active .desc-wrap .desc {
  color: #022d76 !important;
  border-bottom: 0.04rem solid #b9e1f8;
}
.box15 .swiper3 .param-wrap {
  margin-top: 0.15rem;
  display: none;
}
.box15 .swiper3 .param-wrap .item {
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.3rem;
  display: flex;
  justify-content: flex-start;
}
.box15 .swiper3 .param-wrap .item {
  font-size: 0.14rem;
  font-weight: bold;
  line-height: 0.28rem;
  color: #022d76;
}
.box15 .swiper3 .param-wrap .item .title {
  min-width: 1.35rem;
}
.box15 .swiper3 .param-wrap .install-wrap {
  margin-top: 0.35rem;
}
.box15 .swiper3 .param-wrap .install-wrap .install-title {
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box15 .swiper3 .param-wrap .install-wrap .install-title .title {
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 0.25rem;
  color: #022d76;
}
.box15 .swiper3 .param-wrap .install-wrap .install-title .tips {
  font-size: 0.12rem;
  font-weight: 600;
  color: #afb4bb;
}
.box15 .swiper3 .param-wrap .install-wrap .install-img {
  width: 100%;
  margin-top: 0.5rem;
}
.box16 {
  margin-top: 0.1rem;
}
.box16 .pic {
  width: 100%;
}

/* 历史8年按钮弹窗 */
.pop1 {
  display: none;
}
.pop1 .pop-close {
  width: 0.4rem;
  position: fixed;
  top: 0.15rem;
  right: 0.15rem;
  z-index: 100;
}
.pop1 .pop-close .icon {
  width: 100%;
}
.pop1 .pop-content {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99;
  background-color: #fff;
}
.pop1 .pop-content .pic-wrap {
  width: 100%;
  height: 100vh;
  position: relative;
}
.pop1 .pop-content .pic-wrap .pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pop1 .pop-content .pic-wrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}
.pop1 .pop-content .desc-wrap {
  position: absolute;
  top: 0.75rem;
  left: 0.32rem;
}
.pop1 .pop-content .desc-wrap .tips {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.22rem;
  color: #fff;
}
.pop1 .pop-content .desc-wrap .title {
  font-size: 0.32rem;
  font-weight: 600;
  line-height: 0.42rem;
  color: #fff;
  margin-top: 0.02rem;
}
.pop1 .pop-content .desc-wrap .desc {
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 0.22rem;
  color: #fff;
  margin-top: 0.08rem;
}
.pop1 .pop-content .swiper-pagination {
  bottom: 0.45rem;
}
.pop1 .pop-content .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.02rem;
  background-color: #d8f9ff;
  opacity: 1;
  border-radius: 0;
  margin: 0 0.06rem;
}
.pop1 .pop-content .swiper-pagination-bullet-active {
  background-color: #9c1d22;
}
.pop1 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(1);
}
.pop1 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(1);
}
.pop1 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

/* 查看具体滤除与保留效果数据弹窗 */
.pop2 {
  display: none;
}
.pop2 .pop-mask {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.85);
}
.pop2 .pop-close {
  width: 0.24rem;
  padding: 0.2rem;
  position: fixed;
  top: 0.1rem;
  right: 0.15rem;
  z-index: 100;
}
.pop2 .pop-close .icon {
  width: 100%;
}
.pop2 .pop-content {
  position: fixed;
  top: 0.12rem;
  right: 0.15rem;
  bottom: 0.12rem;
  left: 0.15rem;
  z-index: 99;
  background-color: #c7ccd3;
  border-radius: 0.18rem;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 0.5rem;
}
.pop2 .pop-content .pop-package {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pop2 .pop-content .pop-package > div {
  box-sizing: border-box;
  padding: 0 0.25rem 0.25rem;
}
.pop2 .pop-content .pop-package .title {
  font-size: 0.36rem;
  font-weight: 600;
  line-height: 0.4rem;
  color: #fff;
  padding-bottom: 0.22rem;
  border-bottom: 0.02rem solid #e4ecf6;
}
.pop2 .pop-content .pop-package .desc {
  font-size: 0.3rem;
  font-weight: 600;
  line-height: 0.36rem;
  color: #fff;
  margin-top: 0.2rem;
}
.pop2 .pop-content .pop-package .tips {
  font-size: 0.14rem;
  font-weight: 600;
  line-height: 0.2rem;
  color: #fff;
  margin-top: 0.06rem;
}
.pop2 .pop-content .pop-package .pic {
  width: 100%;
}
.pop2 .pop-content .pop-package .pic1 {
  margin: 0.15rem auto 0;
}
.pop2 .pop-content .pop-package .pic2 {
  margin: 0.45rem auto 0;
}

/* 视频播放弹窗开始 */
.pop-video {
  display: none;
}
.pop-video .pop-mask {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
}
.pop-video .pop-close {
  width: 0.41rem;
  position: fixed;
  top: 0.12rem;
  right: 0.12rem;
  z-index: 99;
}
.pop-video .pop-close .icon {
  display: block;
  width: 100%;
}
.pop-video .pop-content {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  padding: 0 0.24rem;
  z-index: 100;
}
.pop-video .pop-content video {
  display: block;
  width: 100%;
}
/* 视频播放弹窗结束 */

/*留资弹窗开始*/
.pop-info{
  display: none;
}
.pop-info .pop-mask{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
}
.pop-info .pop-content{
  position: fixed;
  top: 50%;
  right: 0.1rem;
  left: 0.1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.pop-info .pop-content .pop-package{
  width: 100%;
  min-height: 4.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.25rem 0.3rem;
  background-color: #fff;
  border-radius: 0.18rem;
  position: relative;
}
.pop-info .pop-content .pop-close{
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  width: 0.28rem;
}
.pop-info .pop-content .pop-close .icon{
  display: block;
  width: 100%;
}
.pop-info .pop-content .pop-title{
  font-size: 0.26rem;
  font-weight: 600;
  color: #1C1F26;
  line-height: 0.36rem;
  text-align: center;
}
.pop-info .pop-content .pop-tips{
  font-size: 0.12rem;
  color: #F17B07;
  line-height: 0.17rem;
  margin-top: 0.05rem;
  text-align: center;
  margin-bottom: 0.24rem;
}
.pop-info .pop-content .enter-wrap{
  width: 100%;
  background-color: #FAFAFA;
  margin-bottom: 0.1rem;
}
.pop-info .pop-content .enter-wrap:after{
  border: 1px solid #F2F2F2;
}
.pop-info .pop-content .enter-wrap .enter::-webkit-input-placeholder { /* WebKit browsers */
  font-size: 0.14rem;
  color: #A6AEB8;
}
.pop-info .pop-content .enter-wrap .enter:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  font-size: 0.14rem;
  color: #A6AEB8;
}
.pop-info .pop-content .enter-wrap .enter::-moz-placeholder { /* Mozilla Firefox 19+ */
  font-size: 0.14rem;
  color: #A6AEB8;
}
.pop-info .pop-content .enter-wrap .enter:-ms-input-placeholder { /* Internet Explorer 10+ */
  font-size: 0.14rem;
  color: #A6AEB8;
}
.pop-info .pop-content .enter-wrap .enter{
  display: block;
  width: 100%;
  height: 0.42rem;
  line-height: normal;
  font-size: 0.14rem;
  color: #1C1F26;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0.12rem;
  background-color: transparent;
}
.pop-info .pop-content .select-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pop-info .pop-content .select-wrap .select-item{
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 0.1rem;
  background-color: #FAFAFA;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0.1rem;
}
.pop-info .pop-content .select-wrap .select-item:last-child{
  margin-right: 0;
}
.pop-info .pop-content .select-wrap .select-item:after{
  border: 1px solid #F2F2F2;
}
.pop-info .pop-content .select-wrap .select-item select{
  display: block;
  width: 100%;
  height: 0.42rem;
  line-height: 0.42rem;
  font-size: 0.14rem;
  color: #A6AEB8;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../img/pop-creat.png) no-repeat right center;
  background-size: 0.07rem auto;
  outline: none;
  border: none;
}
.pop-info .pop-content .pop-agreement{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.18rem;
}
.aui-radio,
.aui-checkbox {
  width: 0.15rem;
  height: 0.15rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: default;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color ease 0.1s;
}
.aui-radio:checked,
.aui-radio.aui-checked,
.aui-checkbox:checked,
.aui-checkbox.aui-checked {
  background-color: #e50113;
  border: solid 1px #e50113;
  text-align: center;
  background-clip: padding-box;
}
.aui-radio:checked:before,
.aui-radio.aui-checked:before,
.aui-checkbox:checked:before,
.aui-checkbox.aui-checked:before,
.aui-radio:checked:after,
.aui-radio.aui-checked:after,
.aui-checkbox:checked:after,
.aui-checkbox.aui-checked:after {
  content: "";
  width: 0.06rem;
  height: 0.03rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.03rem;
  margin-top: -0.03rem;
  background: transparent;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  z-index: 2;
  border-radius: 0;
  transform: rotate(-45deg);
}
.pop-info .pop-content .pop-agreement .pop-agreement-tips{
  font-size: 0.1rem;
  color: #35465A;
  margin-left: 0.10rem;
}
.pop-info .pop-content .pop-agreement .pop-agreement-tips .link{
  font-size: 0.1rem;
  font-width: 600;
  color: #35465A;
  text-decoration: underline;
}
.pop-info .pop-content .pop-btn{
  width: 100%;
  height: 0.52rem;
  line-height: 0.52rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #F7FAFF;
  text-align: center;
  background-color: #FF000A;
  border-radius: 100px;
  margin-top: 0.25rem;
}
.pop-info .pop-content .err-tips{
  font-size: 0.1rem;
  color: #ff000a;
  line-height: 1.5;
  margin-top: 0.1rem;
  text-align: center;
}
.pop-info .pop-content .pop-succ{
  position: absolute;
  top: 177px;
  left: 0.3rem;
  right: 0.3rem;
  z-index:3;
}
.pop-info .pop-content .pop-succ .pop-succ-icon{
  isplay: block;
  width: 0.77rem;
  margin: 0 auto;
}
.pop-info .pop-content .pop-succ .pop-succ-tips {
  font-size: 0.26rem;
  font-weight: 600;
  color: #1c1f26;
  text-align: center;
  margin-top: 0.25rem;
}
/*留资弹窗结束*/