/*   置顶按钮   */
.get_back {
  position: fixed;
  top: 64%;
  right: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2;
  display: none;
}
.get_back i {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url('../img/j_top.png') no-repeat center;
  transition: all .8s;
  background-size: cover;
}
.get_back i:hover {
  background: url('../img/j_top_avt.png') no-repeat center;
  background-size: cover;
}


/*   顶部   */

.top {
  width: 100%;
  background-color: #000;
  transition: all;
}
.top_fiex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* .top .contact_box {
 
} */
.top .contact_box span{
  margin-right: 20px;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.top .contact_box span:nth-child(2),
.top .contact_box span:nth-child(3),
.top .contact_box span:nth-child(4){
  padding-left: 30px;
}
.top .contact_box span i{
  position:absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.top .contact_box span:nth-child(2) i{
  background: url('../img/min_mail.png')
}
.top .contact_box span:nth-child(3) i{
  background: url('../img/min_mobile.svg')
}
.top .contact_box span:nth-child(4) i{
  background: url('../img/min_specialPlane.svg')
}
.top .share_box {
  display: flex;
  align-items: center;
}
.top .share_box a {
  margin-left: 22px;
}
/*   头部   */
.heads_f {
  width: 100%;
  height: 120px;
  display: none;
}
.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.heads_fixed {
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 10;
  width: 100%;
  box-shadow: 0px 0px 10px rgb(168, 168, 168);
}
.logo_box {
  display: flex;
  line-height: 70px;
}
.logo_box img {
  height: 70px;
}
.logo_box h1 {
  margin-left: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.nav_box {
  display: flex;
  align-items: center;
  line-height: 51px;
}
.nav_box .nav_list a{
  margin-right: 20px;
  font-size: 18px;
  color: #222;
}
.nav_box .nav_list a:hover {
  color: rgba(249, 114, 0, 1);
}
.nav_box .nav_list a.nav_activate {
  font-weight: bold;
  color: rgba(249, 114, 0, 1);
}
.nav_box .lang-list-box {
  height: 47px;
  padding: 0 8px;
  padding-right: 28px;
  border-radius: 5px;
  position: relative;
  
}
.lang-list-box::after {
  content: '';
  display: inline-block;
  border: 6px solid transparent;
  border-bottom-color:rgba(153, 153, 153, 1);
  position: absolute;
  top: 50%;
  right: 12px;
  transform: rotate(180deg);
  transition: all .2s;
}
.lang-list-box.sanjiaoxin::after {
  content: '';
  display: inline-block;
  top: 42%;
  border-bottom-color:rgba(249, 114, 0, 1);
  transform: rotate(0deg);
}
.nav_box .lang-list-box p {
  line-height: 47px;
  font-size: 20px;
  color: #222;
  position: relative;
}
.nav_box .lang-list-box p.activate-color,
.nav_box .lang-list-box ul li.activate-color {
  color: rgba(249, 114, 0, 1);
}
.nav_box .lang-list-box ul {
  display: none;
  position: absolute;
  top: 57px;
  width: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, .5);
  border-radius: 3px;
  z-index: 3;
}
.nav_box .lang-list-box ul::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-42deg);
  box-shadow: 2px -2px 2px #ccc;
}
.nav_box .lang-list-box ul li {
  list-style: none;
  height: 47px;
  padding: 0 8px;
  line-height: 47px;
  font-size: 20px;
  color: rgba(34, 34, 34, 1);
  cursor: pointer;
}
.nav_box .lang-list-box ul li:hover {
  color: rgba(249, 114, 0, 1);
}


.nav_box .login_box {
  height: 51px;
  margin-left: 10px;
  padding:0 10px;
  font-size: 18px;
  color: rgba(249, 114, 0, 1);
  border: 1px solid rgba(249, 114, 0, 1);
  border-radius: 5px;
  transition: all .8s;
}
.nav_box .login_box:hover {
  border-color: transparent;
  background:  rgba(249, 114, 0, 1);
  color: #fff;
}

.left_nav_box {
  width: 10px;
  position: relative;
  right: 0;
  top: 0;
  cursor: pointer;
  display: none;
  padding: 14px;
}
.left_nav_box span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000;
  -webkit-transition-duration: 0.086s;
  transition-duration: 0.086s;
  -webkit-transition-property: background-color, opacity, -webkit-transform;
  transition-property: background-color, opacity, -webkit-transform;
  transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform, -webkit-transform;
}
.left_nav_box span:first-child {
  margin-top: -7px;
}
.left_nav_box span:last-child {
  margin-top: 7px;
}
.navbar-burger-drop span:nth-child(2) {
  opacity: 0;
}
.navbar-burger-drop span:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}
.navbar-burger-drop span:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}


.menus_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.54);
  z-index: 2;
}
.menus_box .shade{
  width: 30%;
  height: 100%;
  background: #fff;
  overflow: auto;
  position: relative;
  left: -50%;
  top: 0;
  transition: left .2s;
}
.menus_box .shade h1{
  line-height: 100px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.menus_box .shade h1>a {
  color:rgba(0, 0, 0, 1)
}
/* .menus_box .shade .menus_list {

} */
.menus_box .shade .menus_list a {
  display: block;
  padding-left: 60px;
  line-height: 100px;
  font-size: 30px;
  font-weight: bold;
  color:rgba(0, 0, 0, 0.54);
  border-bottom: 1px solid rgba(153, 153, 153, 1);
}
.menus_box .shade .menus_list a:last-child {
  border: none;
}
.menus_box .shade .lang-list-box {
  width: 100%;
  height: 100px;
  line-height: 100px;
  border: 1px solid gray;
  border-left: 0;
  border-right: 0;
  position: relative;
}
.menus_box .shade .lang-list-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 0;
  height: 0;
  border: 10px solid;
  border-color: transparent transparent #222;
  transform: rotate(180deg);
}
.menus_box .shade .lang-list-box p {
  padding-left: 60px;
  font-size: 30px;
  font-weight: bold;
  color:rgba(0, 0, 0, 0.54);
}
.menus_box .shade .lang-list-box ul {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  list-style: none;
}
.menus_box .shade .lang-list-box ul li {
  width: 100%;
  padding-left: 60px;
  line-height: 100px;
  background: rgb(203,212,216);
  border-bottom: 1px solid rgba(102, 102, 102, 1);
  font-size: 30px;
  color: #fff;
}
.menus_box .shade .lang-list-box ul li:hover {
  background: rgb(184,207,217);
}



/*  banner  */
/* .banner {
} */
.banner .swiper-slide {
  width: 100%;
}
.banner .swiper-slide img {
  width: 100%;
}
.banner_box #banner .swiper-button-next:hover{
  opacity: 1;
  background: url('../img/t_ban_act.png') no-repeat;
  background-size: cover;
  transform: rotate(0deg)
}
.banner_box #banner .swiper-button-prev:hover{
  opacity: 1;
  background: url('../img/t_ban_act.png') no-repeat;
  background-size: cover;
  transform: rotate(180deg)
}
.banner .cur_prev,
.banner .cur_next {
  width: 80px;
  height: 80px;
  background: url('../img/t_ban_j.png') no-repeat;
  background-size: cover;
}
.banner .cur_next {
  transform: rotate(180deg);
}
.banner_box #banner .swiper-pagination.swiper-pagination-bullets{
  bottom: 55px;
}
.banner_box #banner .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  transition: width .5s;
  opacity: 1;
}
.banner_box #banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 36px;
  background: rgba(249, 114, 0, 1);
  border-radius: 10px;
}

/*  卡片激活登录  */
.infoGathering-box {
  position: relative;
}
.infoGathering-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,.7);
}
.infoGathering-box .bg-img{
  width: 100%
}
.infoGathering-box .bg-img img{
  width: 100%; 
}
.infoGathering-box .card-login-box {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1350px;
  /* height: 683px; */
  max-width: 1350px;
  z-index: 3;
  border-radius: 8px;
  display: flex;
}
.infoGathering-box .card-login-box .step-one.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-one.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-one {
  position: absolute;
  right: 0;
  width: 100%;
  /* height: 683px; */
  padding: 0 102px;
  padding-top: 50px;
  padding-bottom: 8px;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
}
.infoGathering-box .card-login-box .step-one .head{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
.infoGathering-box .card-login-box .step-one .head .title{
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(204, 204, 204);
  font-size: 30px;
  font-weight: bold;
  color: #222;
  position: relative;
}
.infoGathering-box .card-login-box .step-one .head .title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  width: 60px;
  height: 6px;
  margin: auto;
  background-color: rgb(249, 114, 0);
}
.infoGathering-box .card-login-box .step-one .main {
  display: flex;
  justify-content: space-between;
}
.card-login-box .step-one .main .info-box {
  width: 84%;
  margin-right: 80px;
  padding-top: 20px;
}
.card-login-box .step-one .main .info-box .item {
  font-size: 20px;
  color: #222
}
.card-login-box .step-one .main .info-box .item:nth-child(1) {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
}
.card-login-box .step-one .main .info-box .item:nth-child(2) {
  margin-bottom: 40px;
}
.card-login-box .step-one .main .info-box .item:nth-child(3){
  margin-bottom: 25px;
}
.card-login-box .step-one .main .info-box .item:nth-child(3)>span {
  font-weight: bold;
}
.card-login-box .step-one .main .info-box .item>span:nth-child(2) {
  font-weight: 400
}
.card-login-box .step-one .main .info-box .item:nth-child(4) {
  margin-bottom: 15px;
  margin-left: 20px;
  text-indent: -20px;
}
.card-login-box .step-one .main .info-box .item:nth-child(5) {
  margin-left: 20px;
  text-indent: -20px;
}
/* .card-login-box .step-one .main .info-box .item:nth-child(5) {
  
} */
.card-login-box .step-one .main .form-box {
  padding: 20px;
  border-radius: 10px;
}
.card-login-box .step-one .main .form-box .title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-one .main .form-box p {
  margin-bottom: 25px;
  font-size: 18px;
  color: #666;
}
.card-login-box .step-one .main .form-box .input_label,
.card-login-box .step-one .main .form-box .input_label>label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-one .main .form-box .input_label>span {
  display: inherit;
  background: url('../img/doubt.svg') no-repeat 0;
  background-size: 100%;
}
.card-login-box .step-one .main .form-box .input_label>span>a {
  display: inherit;
  width: 20px;
  height: 20px;
}
.card-login-box .step-one .main .form-box>span.step_one_warn_1,
.card-login-box .step-one .main .form-box>span.step_one_warn_2,
.card-login-box .step-one .main .form-box .span_s>span.step_one_warn_3 {
  display: none;
  color: red;
  font-size: 12px;
  line-height: 1.5;
  background: url('../img/danger.svg') no-repeat 0 0px;
  padding-left: 20px;
  background-size: 4%;
}
.card-login-box .step-one .main .form-box .span_s>p {
  display: none;
  font-size: 12px;
  margin-bottom: 0;
  padding-left: 20px;
}
.card-login-box .step-one .main .form-box .input-item {
  position: relative;
  margin-bottom: 10px;
  display: flex;
}
.card-login-box .step-one .main .form-box .input-item>span{
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  transform: translate(10px, -50%);
}
.card-login-box .step-one .main .form-box .input-item:nth-child(5)>span {
  background: url("../img/w-1.svg") no-repeat;
}
.card-login-box .step-one .main .form-box .input-item:nth-child(8)>span {
  background: url("../img/w-2.svg") no-repeat;
}
.card-login-box .step-one .main .form-box .input-item:nth-child(11)>span {
  background: url("../img/w-3.svg") no-repeat;
}
.card-login-box .step-one .main .form-box .input-item>input{
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 44px;
  border: 1px solid rgba(216, 216, 216, 1);
  border-radius: 3px;
  font-size: 16px;
  color: #999;
}
.card-login-box .step-one .main .form-box .input-item>input:focus {
  border-color:rgba(0, 0, 0, 1)
}
.card-login-box .step-one .main .form-box button {
  width: 100%;
  margin-top: 13px;
  margin-bottom: 15px;
  line-height: 49px;
  background:rgba(0, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 3px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.card-login-box .step-one .main .form-box button:hover {
  background: rgb(249, 114, 0);
  border-color: rgb(249, 114, 0);
}
.card-login-box .step-one .main .form-box>a {
  line-height: 20px;
  font-size: 14px;
  color: rgba(249, 114, 0, 1);
  text-decoration: underline;
}
.card-login-box .step-one .main .form-box .remark {
  margin-top: 6px;
  line-height: 18px;
  font-size: 14px;
  color: #666;
}
.infoGathering-box .card-login-box>.item {
  position:absolute;
  right: 0;
  width: 100%;
  border-radius: 8px;
  background: #fff;
}
.infoGathering-box .card-login-box .step-two.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-two.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-two {
  display: none;
  z-index: 0;
}
.infoGathering-box .card-login-box .step-two .head {
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-two .main{
  padding-bottom: 68px;
}
.infoGathering-box .card-login-box .step-two .main .info-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 60px;
}
.card-login-box .step-two .main .info-box .order-infoBox {
  width: 20%;
  padding: 15px 35px;
  padding-bottom: 0px;
  border: 1px solid rgba(153, 153, 153, 1);
  border-radius: 20px;
  transform: scale(0.88);
}
.card-login-box .step-two .main .info-box .order-infoBox .title {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: bold;
  color: #222;
  text-align: center;
}
/* .card-login-box .step-two .main .info-box .order-infoBox .m {} */
.card-login-box .step-two .main .info-box .order-infoBox .m>.item {
  margin-bottom: 10px;
}
.card-login-box .step-two .main .info-box .order-infoBox .m>.item>p {
  line-height: 25px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-two .main .info-box .order-infoBox .m>.item>span {
  display: inline-block;
  width: 100%;
  line-height: 22px;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  white-space: normal;
}
.card-login-box .step-two .main .info-box .acquire-box {
  width: 30%;
  padding-top: 24px;
  border: 1px solid rgba(153, 153, 153, 1);
  border-radius: 20px;
}
.card-login-box .step-two .main .info-box .acquire-box .title {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: bold;
  color: #222;
  text-align: center;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper {
  width: 100%;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m .img {
  width: 100%;
  max-width: 191px;
  max-height: 220px;
  margin-bottom: 15px;
  position: relative;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m .img img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m p {
  margin-bottom: 24px;
  line-height: 25px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-prev.swiper-button-disabled,
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-next.swiper-button-disabled {
  width: 40px;
  height: 40px;
  opacity: 1;
  background-image: url('../img/card-j.png');
  background-size: cover;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-prev,
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background-image: url('../img/card-j-avt.png');
  background-size: cover;
  top: 40%;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-prev {
  transform: rotate(180deg);
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-prev.swiper-button-disabled {
  transform: rotate(0deg);
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swiper-button-next.swiper-button-disabled {
  transform: rotate(180deg);
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m .img .huobi {
  position: absolute;
  top: 14px;
  right: 18px;
  color: #fff;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m .img .huobi span.symbol {
  font-size: 14px;
}
.card-login-box .step-two .main .info-box .acquire-box #card-Swiper .swi-m .img .huobi span.nub {
  font-size: 25px;
}
.card-login-box .step-two .main .info-box .order-giftBox {
  width: 20%;
  padding: 15px 35px;
  padding-bottom: 0px;
  border: 1px solid rgba(153, 153, 153, 1);
  border-radius: 20px;
  transform: scale(0.88);
}
.card-login-box .step-two .main .info-box .order-giftBox .title {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: bold;
  color: #222;
  text-align: center;
}
/* .card-login-box .step-two .main .info-box .order-giftBox .m {} */
.card-login-box .step-two .main .info-box .order-giftBox .m>.item {
  margin-bottom: 25px;
  line-height: 22px;
  font-size: 16px;
  color: #222;
}
.card-login-box .step-two .main .info-box .order-giftBox .m .item i{
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: rgba(249, 114, 0, 1);
}
.card-login-box .step-two .main .but-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(34, 34, 34, 1);
}
.card-login-box .step-two .main .but-box .but-item {
  width: 18%;
  height: 55px;
  line-height: 55px;
  margin: 0 55px;
  border: 1px solid rgba(34, 34, 34, 1);
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.card-login-box .step-two .main .but-box .but-item.next {
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}
.card-login-box .step-two .main .but-box .but-item.next:hover {
  background: rgba(249, 114, 0, 1);
  border-color: rgba(249, 114, 0, 1);
  color: #fff;
}
.card-login-box .step-two .main .but-box .but-item.prev:hover {
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}

.infoGathering-box .card-login-box .step-three.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-three.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-three {
  display: none;
  z-index: 0;
}
.infoGathering-box .card-login-box .step-three .head {
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-three .main {
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-three .main .info-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 146px;
  padding-top: 55px;
  padding-bottom: 63px;
  position: relative;
}

.card-login-box  .main .info-box .warn.animate_warnInLeft {
  -webkit-animation-name: warnInLeft;
  animation-name: warnInLeft;
  animation-duration: 1s;
}
.card-login-box  .main .info-box .warn {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px;
  background:rgba(0, 0, 0, .7);
  color:rgb(235, 235, 235);
  font-size: 14px;
}
    
.card-login-box .step-three .main .info-box .warn.animate_warnInLeft {
  -webkit-animation-name: warnInLeft;
  animation-name: warnInLeft;
  animation-duration: 1s;
}
.card-login-box .step-three .main .info-box .warn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px;
  background:rgba(0, 0, 0, .7);
  color:rgb(235, 235, 235);
  font-size: 14px;
}
.card-login-box .step-three .main .info-box .img{
  width: 100%;
  max-width: 300px;
  max-height: 375px;
  text-align: center;
}
.card-login-box .step-three .main .info-box .img p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card-login-box .step-three .main .info-box .img .img_ss {
  width: 210px;
  margin: auto;
}
.card-login-box .step-three .main .info-box .img .img_ss img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-three .main .info-box .optionStep-box {
  width: 65%;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span {} */
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span:nth-child(1) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-1.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-2.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span:nth-child(5) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-3.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span:nth-child(7) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-4.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span:nth-child(even) {
  flex: 1;
  height: 1px;
  background: url('../img/xian-b.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span:nth-child(2) {
  background: url('../img/xian-a.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are {
  width: 100%;
  padding: 28px 25px;
  max-height: 285px;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 3px;
  overflow-y: scroll;
  box-sizing: border-box;
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are>.item{
  margin-bottom: 15px;
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are .item>h6{
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are .item>p {
  line-height: 25px;
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are .item>p label{
  padding-left: 20px;
  font-size: 16px;
  color: rgba(153, 153, 153, 1);
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are .item>p label input{
  margin-right: 10px;
  -webkit-appearance: radio;
}
.card-login-box .step-three .main .but-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(34, 34, 34, 1);
}
.card-login-box .step-three .main .but-box .but-item{
  width: 18%;
  height: 55px;
  line-height: 55px;
  margin: 0 55px;
  border: 1px solid rgba(34, 34, 34, 1);
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.card-login-box .step-three .main .but-box .but-item.next{
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}
.card-login-box .step-three .main .but-box .but-item.next:hover {
  background: rgba(249, 114, 0, 1);
  border-color: rgba(249, 114, 0, 1);
  color: #fff;
}
.card-login-box .step-three .main .but-box .but-item.prev:hover{
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}

.infoGathering-box .card-login-box .step-four.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-four.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-four {
  display: none;
}
.infoGathering-box .card-login-box .step-four .head{
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-four .main{
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-four .info-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 146px;
  padding-top: 45px;
  padding-bottom: 53px;
}
.card-login-box .step-four .main .info-box .warn.animate_warnInLeft {
  -webkit-animation-name: warnInLeft;
  animation-name: warnInLeft;
  animation-duration: 1s;
}
.card-login-box .step-four .main .info-box .warn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px;
  background:rgba(0, 0, 0, .7);
  color:rgb(235, 235, 235);
  font-size: 14px;
}
.card-login-box .step-four .main .info-box .img{
  width: 100%;
  max-width: 300px;
  max-height: 375px;
  text-align: center;
}
.card-login-box .step-four .main .info-box .img p{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card-login-box .step-four .main .info-box .img .img_ss {
  width: 210px;
  margin: 0 auto;
}
.card-login-box .step-four .main .info-box .img .img_ss img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-four .main .info-box .optionStep-box {
  width: 62%;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span {} */
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(1) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-1.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-2.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(5) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-3.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(7) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-4.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(even) {
  flex: 1;
  height: 1px;
  background: url('../img/xian-b.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(2),
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span:nth-child(4) {
  background: url('../img/xian-a.png') no-repeat;
}
.card-login-box .step-four .main .info-box .optionStep-box .score-box {
  margin-bottom: 20px;
}
.card-login-box .step-four .main .info-box .optionStep-box .score-box h6 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-four .main .info-box .optionStep-box .score-box h6>i {
  margin-right: 5px;
  color: rgba(249, 114, 0, 1);
}
/* .card-login-box .step-four .main .info-box .optionStep-box .score-box .xin {} */
.card-login-box .step-four .main .info-box .optionStep-box .score-box .xin span {
  display: inline-block;
  width: 67px;
  height: 68px;
  margin-right: 15px;
  background-size: cover;
  cursor: pointer;
}
/* .card-login-box .step-four .main .info-box .optionStep-box .opinion-box {} */
.card-login-box .step-four .main .info-box .optionStep-box .opinion-box h6 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
  text-indent: -16px;
  margin-left: 16px;
}
.card-login-box .step-four .main .info-box .optionStep-box .opinion-box h6>i {
  margin-right: 5px;
  color: rgba(249, 114, 0, 1);
}
.card-login-box .step-four .main .info-box .optionStep-box .opinion-box textarea {
  width: 100%;
  height: 109px;
  padding: 15px;
  border: 1px solid rgba(216, 216, 216, 1);
  border-radius: 5px;
  outline: none;
  resize: none;
  font-size: 16px;
  color: #222;
  box-sizing: border-box;
}
.card-login-box .step-four .main .info-box .optionStep-box .opinion-box textarea:focus {
  border-color:rgba(0, 0, 0, 1);
}
.card-login-box .step-four .main .but-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(34, 34, 34, 1);
}
.card-login-box .step-four .main .but-box .but-item{
  width: 18%;
  height: 55px;
  line-height: 55px;
  margin: 0 55px;
  border: 1px solid rgba(34, 34, 34, 1);
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.card-login-box .step-four .main .but-box .but-item.next{
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}
.card-login-box .step-four .main .but-box .but-item.next:hover {
  background: rgba(249, 114, 0, 1);
  border-color:rgb(249, 114, 0);
  color: #fff;
}
.card-login-box .step-four .main .but-box .but-item.prev:hover {
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}

.infoGathering-box .card-login-box .step-five.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-five.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-five {
  display: none;
}
.infoGathering-box .card-login-box .step-five .head{
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-five .main{
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-five .info-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 146px;
  padding-top: 55px;
  padding-bottom: 63px;
  position: relative;
}
.card-login-box .step-five .main .info-box .warn.animate_warnInLeft {
  -webkit-animation-name: warnInLeft;
  animation-name: warnInLeft;
  animation-duration: 1s;
}
.card-login-box .step-five .main .info-box .warn {
  display: none;
  position: absolute;
  top: 50%;
  left: 30%;
  padding: 5px;
  background:rgba(0, 0, 0, .7);
  color:rgb(235, 235, 235);
  font-size: 14px;
  transform: translate(-50%, 0);
}
.card-login-box .step-five .main .info-box .img{
  width: 100%;
  max-width: 300px;
  max-height: 375px;
  text-align: center;
}
.card-login-box .step-five .main .info-box .img p{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card-login-box .step-five .main .info-box .img .img_ss {
  width: 210px;
  margin: 0 auto;
}
.card-login-box .step-five .main .info-box .img .img_ss img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-five .main .info-box .optionStep-box {
  width: 62%;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span {} */
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span:nth-child(1) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-1.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-2.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span:nth-child(5) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-3.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span:nth-child(7) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-4.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span:nth-child(even) {
  flex: 1;
  height: 1px;
  background: url('../img/xian-a.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-five .main .info-box .optionStep-box .comment-box {
  margin-bottom: 20px;
}
.card-login-box .step-five .main .info-box .optionStep-box .comment-box h6 {
  margin-left: 20px;
  text-indent: -20px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-five .main .info-box .optionStep-box .comment-box h6>i{
  margin-right: 5px;
  color: rgba(249, 114, 0, 1);
}
/* .card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box {} */
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box h6 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box h6>i {
  margin-right: 5px;
  color: rgba(249, 114, 0, 1);
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box textarea {
  width: 100%;
  height: 109px;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid rgba(216, 216, 216, 1);
  border-radius: 5px;
  outline: none;
  resize: none;
  font-size: 16px;
  color: #222;
  box-sizing: border-box;
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box textarea:focus {
  border-color:rgba(0, 0, 0, 1);
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box label{
  font-size: 14px;
  color: #222;
  display: flex;
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box label>input {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background-color: #fff;
  -webkit-appearance:none;
  border: 1px solid #c9c9c9;
  border-radius: 2px;
  outline: none;
  transform: scale(.7)
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box label>input:checked {
  background: #f97200 url("../img/checkbox_icon.png") no-repeat 100%;
}
.card-login-box .step-five .main .but-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(34, 34, 34, 1);
}
.card-login-box .step-five .main .but-box .but-item{
  width: 20%;
  height: 55px;
  line-height: 55px;
  margin: 0 55px;
  border: 1px solid rgba(34, 34, 34, 1);
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.card-login-box .step-five .main .but-box .but-item.next{
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}
.card-login-box .step-five .main .but-box .but-item.next>div {
  font-size: 20px;
}
.card-login-box .step-five .main .but-box .but-item.next:hover {
  background: rgba(249, 114, 0, 1);
  border-color:rgb(249, 114, 0);
  color: #fff;
}
.card-login-box .step-five .main .but-box .but-item.prev:hover {
  background: rgba(0, 0, 0, 1);
  border-color: rgba(0, 0, 0, 1);
  color: #fff;
}

.infoGathering-box .card-login-box .step-six.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-six.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-six {
  display: none;
}
.infoGathering-box .card-login-box .step-six .head{
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-six .main{
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-six .info-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 146px;
  padding-top: 55px;
  padding-bottom: 63px;
}
.card-login-box .step-six .main .info-box .img{
  width: 100%;
  max-width: 300px;
  max-height: 375px;
}
.card-login-box .step-six .main .info-box .img p{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card-login-box .step-six .main .info-box .img .img_ss {
  width: 210px;
  margin: 0 auto;
}
.card-login-box .step-six .main .info-box .img .img_ss img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-six .main .info-box .optionStep-box {
  width: 62%;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span {} */
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span:nth-child(1) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-1.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-2.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span:nth-child(5) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-3.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span:nth-child(7) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-4.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span:nth-child(even) {
  flex: 1;
  height: 1px;
  background: url('../img/xian-a.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box {
  height: 285px;
  padding-top: 18px;
  padding-left: 25px;
  padding-right: 60px;
  overflow-y: scroll;
  border: 1px solid #D8D8D8;
  border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box h6 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
/* .card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box {} */
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(1) span {
  background: url('../img/f-1.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(2) span {
  background: url('../img/f-2.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(3) span {
  background: url('../img/f-3.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(5) span {
  background: url('../img/f-4.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(6) span {
  background: url('../img/f-5.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(7) span {
  background: url('../img/f-6.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(8) span {
  background: url('../img/f-7.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item:nth-child(9) span {
  background: url('../img/f-8.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item input {
  width: 100%;
  line-height: 55px;
  padding-left: 40px;
  border: 1px solid #D8D8D8;
  border-radius: 3px;
  font-size: 16px;
  color: #999; 
  box-sizing: border-box;
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .item input:focus {
  border-color:rgba(0, 0, 0, 1);
}
.card-login-box .step-six .main .info-box .optionStep-box .userSite-box .input-box .hint {
  font-size: 16px;
  line-height: 16px;
  color: red
}
/* .card-login-box .step-six .main .but-box {} */
.card-login-box .step-six .main .but-box .but-notarize {
  width: 20%;
  height: 54px;
  margin: auto;
  line-height: 54px;
  font-size: 19px;
  font-weight: bold;
  background: #000;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.card-login-box .step-six .main .but-box .but-notarize:hover {
  background: rgb(249, 114, 0);
}

.infoGathering-box .card-login-box .step-seven.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-seven.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-seven {
  display: none;
}
.infoGathering-box .card-login-box .step-seven .head{
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-seven .main{
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-seven .info-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 146px;
  padding-top: 55px;
  padding-bottom: 63px;
}
.card-login-box .step-seven .main .info-box .warn.animate_warnInLeft {
  -webkit-animation-name: warnInLeft;
  animation-name: warnInLeft;
  animation-duration: 1s;
}
.card-login-box .step-seven .main .info-box .warn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px;
  background:rgba(0, 0, 0, .7);
  color:rgb(235, 235, 235);
  font-size: 14px;
  transform: translate(-50%, 0);
}
.card-login-box .step-seven .main .info-box>.img{
  width: 100%;
  max-width: 300px;
  max-height: 375px;
}
.card-login-box .step-seven .main .info-box>.img p{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card-login-box .step-seven .main .info-box>.img .img_ss {
  width: 210px;
  margin: 0 auto;
}
.card-login-box .step-seven .main .info-box>.img>img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-seven .main .info-box .optionStep-box {
  width: 62%;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span {} */
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span:nth-child(1) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-1.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-2.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span:nth-child(5) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-3.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span:nth-child(7) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-4.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span:nth-child(even) {
  flex: 1;
  height: 1px;
  background: url('../img/xian-a.png') no-repeat;
  background-size: cover;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box {
  width: 100%;
  height: 285px;
  padding-top: 18px;
  padding-left: 25px;
  padding-right: 60px;
  overflow-y: scroll;
  border: 1px solid #D8D8D8;
  border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item {
  margin-bottom: 15px;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item h6 {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-left: 20px;
  text-indent: -20px;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item h6>i {
  margin-right: 5px;
  color:rgb(249, 114, 0);
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item .img {
  width: 100%;
  margin-left: 20px;
  margin-top: 10px;
  max-height: 130px;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item .img>img {
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item p {
  margin-left: 20px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item p>a {
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #F97200;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item .butUp-box {
  margin-left: 20px;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item .butUp-box .uploading {
  width: 80px;
  height: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: url('../img/up-img.png') no-repeat;
  background-size: cover;
  cursor: pointer;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item .butUp-box .upImg {
  width: 100%;
  max-height: 130px;
}
.card-login-box .step-seven .main .info-box .optionStep-box .userSiteImg-box .item .butUp-box .upImg>img {
  width: 26%;
  object-fit: contain;
}
/* .card-login-box .step-seven .main .but-box {} */
.card-login-box .step-seven .main .but-box .but-notarize {
  width: 20%;
  height: 54px;
  margin: auto;
  line-height: 54px;
  background: #000;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.card-login-box .step-seven .main .but-box .but-notarize:hover {
  background: rgb(249, 114, 0);
}

.infoGathering-box .card-login-box .step-eight.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-eight.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-eight {
  display: none;
}
.infoGathering-box .card-login-box .step-eight .head{
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-eight .main{
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-eight .info-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 146px;
  padding-top: 55px;
  padding-bottom: 63px;
}

.infoGathering-box .card-login-box .step-nine.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-nine.animate_bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  animation-duration: 1s;
}
.infoGathering-box .card-login-box .step-nine {
  display: none;
  margin-top: 10%;
}
.infoGathering-box .card-login-box .step-nine h6 {
  font-size: 20px;
}
.infoGathering-box .card-login-box .step-nine .head{
  line-height: 80px;
  padding-left: 30px;
  font-size: 25px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-sizing: border-box;
}
.infoGathering-box .card-login-box .step-nine .main{
  padding-bottom: 70px;
}
.infoGathering-box .card-login-box .step-nine .info-box{
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  /*padding: 0 146px;*/
  padding-top: 55px;
  padding-bottom: 63px;
  font-size: 20px;
  text-align: center;
}

.card-login-box .step-eight .main .info-box>.img{
  width: 100%;
  max-width: 300px;
  max-height: 375px;
}
.card-login-box .step-eight .main .info-box>.img p{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.card-login-box .step-eight .main .info-box>.img .img_ss {
  width: 210px;
  margin: 0 auto;
}
.card-login-box .step-eight .main .info-box>.img>img{
  width: 100%;
  object-fit: contain;
}
.card-login-box .step-eight .main .info-box .optionStep-box {
  width: 62%;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
/* .card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span {}/ */
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span:nth-child(1) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-1.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span:nth-child(3) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-2.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span:nth-child(5) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-3.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span:nth-child(7) {
  width: 58px;
  height: 58px;
  background: url("../img/hao-avt-4.png") no-repeat;
  background-size: cover;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span:nth-child(even) {
  flex: 1;
  height: 1px;
  background: url('../img/xian-a.png') no-repeat;
  background-size: cover;
}
/* .card-login-box .step-eight .main .info-box .optionStep-box .shipmentsInfo-box {} */
.card-login-box .step-eight .main .info-box .optionStep-box .shipmentsInfo-box .item {
  margin-bottom: 25px;
}
.card-login-box .step-eight .main .info-box .optionStep-box .shipmentsInfo-box .item>h6 {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-left: 20px;
  text-indent: -20px;
}
.card-login-box .step-eight .main .info-box .optionStep-box .shipmentsInfo-box .item>h6>i {
  margin-right: 5px;
  color:rgb(249, 114, 0);
}
/* .card-login-box .step-eight .main .but-box {} */
.card-login-box .step-eight .main .but-box .but-notarize, .card-login-box .step-nine .main .but-box .but-notarize {
  width: 20%;
  height: 54px;
  margin: auto;
  line-height: 54px;
  background: #000;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.card-login-box .step-nine .main .but-box .but-notarize {
  width: 50%;
}
.card-login-box .step-eight .main .but-box .but-notarize:hover, .card-login-box .step-nine .main .but-box .but-notarize:hover {
  background: rgb(249, 114, 0);
}
.card-login-box .step-eight .main .but-box .but-notarize:hover {
  background: rgb(249, 114, 0);
}

/*  轮播消失 每个步骤的背景、字体颜色 变化 */
/* 步骤 step-one */
.infoGathering-box .card-login-box .step-one.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-one .head .title.size-color {
  color: #fff;
}
.card-login-box .step-one .main .info-box .item.size-color {
  color: #fff;
}
.form-box.bg-white {
  background:#fff;
}

/* 步骤 step-two */
.infoGathering-box .card-login-box .step-two.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-two .head.size-color {
  color: #fff;
  border-color: #fff;
}
.card-login-box .step-two .main .info-box .order-infoBox.bg-white,
.card-login-box .step-two .main .info-box .acquire-box.bg-white,
.card-login-box .step-two .main .info-box .order-giftBox.bg-white {
  background:  #fff;
}
.card-login-box .step-two .main .but-box .but-item.next.but-color {
  background: rgb(249, 114, 0);
  border-color: rgb(249, 114, 0);
}
.card-login-box .step-two .main .but-box .but-item.next.but-color:hover {
  background: #000;
  border-color: #000;
}
.card-login-box .step-two .main .but-box .prev.size-color {
  color: #fff;
  border-color: #fff;
}

/* 步骤 step-three */
.infoGathering-box .card-login-box .step-three.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-three .head.size-color {
  color: #fff;
  border-color: #fff
}
.card-login-box .step-three .main .info-box .optionStep-box .option-are.bg-white {
  background:  #fff;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(1) {
  background: url('../img/hao-a-avt-1.png') no-repeat;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(3) {
  opacity: .2;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(5) {
  opacity: .2;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(7) {
  opacity: .2;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(even) {
  opacity: .2;
}
.card-login-box .step-three .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(2) {
  background: url('../img/xian-a-v.png') no-repeat;
  background-size: cover;
  opacity: 1;
}
.card-login-box .step-three .main .but-box .but-item.next.but-color {
  background: rgb(249, 114, 0);
}
.card-login-box .step-three .main .but-box .but-item.next.but-color:hover {
  background: #000;
  border-color: #000;
}
.card-login-box .step-three .main .but-box .prev.size-color {
  color: #fff;
  border-color: #fff;
}

/* 步骤 step-four */
.infoGathering-box .card-login-box .step-four.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-four .head.size-color {
  color: #fff;
  border-color: #fff
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(1) {
  background: url('../img/hao-a-avt-1.png') no-repeat;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(3) {
  background: url('../img/hao-a-avt-2.png') no-repeat;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(5) {
  opacity: .2;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(7) {
  opacity: .2;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(even) {
  opacity: .2;
}
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(2),
.card-login-box .step-four .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(4) {
  background: url('../img/xian-a-v.png') no-repeat;
  background-size: cover;
  opacity: 1;
}
.card-login-box .step-four .main .info-box .optionStep-box .score-box h6.size-color,
.card-login-box .step-four .main .info-box .optionStep-box .opinion-box h6.size-color {
  color: #fff;
}
.card-login-box .step-four .main .but-box .but-item.next.but-color {
  background: rgb(249, 114, 0);
}
.card-login-box .step-four .main .but-box .but-item.next.but-color:hover {
  background: #000;
  border-color: #000;
}
.card-login-box .step-four .main .but-box .prev.size-color {
  color: #fff;
  border-color: #fff;
}

/* 步骤 step-five */
.infoGathering-box .card-login-box .step-five.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-five .head.size-color {
  color: #fff;
  border-color: #fff
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(1) {
  background: url('../img/hao-a-avt-1.png') no-repeat;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(3) {
  background: url('../img/hao-a-avt-2.png') no-repeat;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(5) {
  background: url('../img/hao-a-avt-3.png') no-repeat;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(7) {
  opacity: .2;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(even) {
  opacity: .2;
}
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(2),
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(4),
.card-login-box .step-five .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(6) {
  background: url('../img/xian-a-v.png') no-repeat;
  background-size: cover;
  opacity: 1;
}
.card-login-box .step-five .main .info-box .optionStep-box .comment-box h6.size-color,
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box h6.size-color,
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box label.size-color {
  color: #fff;
}
.card-login-box .step-five .main .info-box .optionStep-box .acknowledgments-box label>input.size-color{
  border-color: rgb(235, 235, 235);
}
.card-login-box .step-five .main .but-box .but-item.next.but-color {
  background: rgb(249, 114, 0);
}
.card-login-box .step-five .main .but-box .but-item.next.but-color:hover {
  background: #000;
  border-color: #000;
}
.card-login-box .step-five .main .but-box .prev.size-color {
  color: #fff;
  border-color: #fff;
}

/* 步骤 step-six */
.infoGathering-box .card-login-box .step-six.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-six .head.size-color {
  color: #fff;
  border-color: #fff
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(1) {
  background: url('../img/hao-a-avt-1.png') no-repeat;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(3) {
  background: url('../img/hao-a-avt-2.png') no-repeat;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(5) {
  background: url('../img/hao-a-avt-3.png') no-repeat;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(7) {
  opacity: .2;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(even) {
  opacity: .2;
}
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(2),
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(4),
.card-login-box .step-six .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(6) {
  background: url('../img/xian-a-v.png') no-repeat;
  background-size: cover;
  opacity: 1;
}
.card-login-box .step-six .main .but-box .but-notarize.but-color {
  background:rgb(249, 114, 0);
}
.card-login-box .step-six .main .but-box .but-notarize.but-color:hover {
  background: #000;
}

/* 步骤 step-seven */
.infoGathering-box .card-login-box .step-seven.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-seven .head.size-color {
  color: #fff;
  border-color: #fff
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(1) {
  background: url('../img/hao-a-avt-1.png') no-repeat;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(3) {
  background: url('../img/hao-a-avt-2.png') no-repeat;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(5) {
  background: url('../img/hao-a-avt-3.png') no-repeat;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(7) {
  opacity: .2;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(even) {
  opacity: .2;
}
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(2),
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(4),
.card-login-box .step-seven .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(6) {
  background: url('../img/xian-a-v.png') no-repeat;
  background-size: cover;
  opacity: 1;
}
.card-login-box .step-seven .main .but-box .but-notarize.but-color {
  background:rgb(249, 114, 0);
}
.card-login-box .step-seven .main .but-box .but-notarize.but-color:hover {
  background: #000;
}

/* 步骤 step-eight */
.infoGathering-box .card-login-box .step-eight.step-bgcolor {
  background: none;
}
.infoGathering-box .card-login-box .step-eight .head.size-color {
  color: #fff;
  border-color: #fff
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(1) {
  background: url('../img/hao-a-avt-1.png') no-repeat;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(3) {
  background: url('../img/hao-a-avt-2.png') no-repeat;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(5) {
  background: url('../img/hao-a-avt-3.png') no-repeat;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(7) {
  background: url('../img/hao-a-avt-4.png') no-repeat;
}
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(2),
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(4),
.card-login-box .step-eight .main .info-box .optionStep-box .step-xuhao span.bg-img:nth-child(6) {
  background: url('../img/xian-a-v.png') no-repeat;
  background-size: cover;
  opacity: 1;
}
.card-login-box .step-eight .main .info-box .optionStep-box .shipmentsInfo-box .item>h6.size-color {
  color: #fff;
}
.card-login-box .step-eight .main .but-box .but-notarize.but-color {
  background:rgb(249, 114, 0);
}
.card-login-box .step-eight .main .but-box .but-notarize.but-color:hover {
  background: #000;
}

/* loding */
.infoGathering-box .over {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 102, 102, 0.53);
  z-index: 5;
}
.infoGathering-box .over .loading {
  width: 150px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.infoGathering-box .over .loading>span {
  display: inline-block;
  width: 15px;
  height: 100%;
  margin-right: 5px;
  background: #f9780b;
  -webkit-transform-origin: right bottom;
  -webkit-animation: load 1s ease infinite;
}
.infoGathering-box .over .loading>span:last-child {
  margin-right: 0px;
}
@-webkit-keyframes load{
  0%{
      opacity: 1;
  }
  100%{
      opacity: 0;
      -webkit-transform: rotate(90deg);
  }
}
.infoGathering-box .over .loading span:nth-child(1){
  -webkit-animation-delay:0.13s;
}
.infoGathering-box .over .loading span:nth-child(2){
  -webkit-animation-delay:0.26s;
}
.infoGathering-box .over .loading span:nth-child(3){
  -webkit-animation-delay:0.39s;
}
.infoGathering-box .over .loading span:nth-child(4){
  -webkit-animation-delay:0.52s;
}
.infoGathering-box .over .loading span:nth-child(5){
  -webkit-animation-delay:0.65s;
}

/* 询问小弹窗 */
.infoGathering-box .inquiry-box.bg-color {
  background: none;
}
.infoGathering-box .inquiry-box .title p.size-color {
  color: #fff;
}
.infoGathering-box .inquiry-box .but-box .yes.size-color {
  border-color: #fff;
  color: #fff;
}
.infoGathering-box .inquiry-box .but-box .yes.size-color:hover {
  border-color: #000;
}
.infoGathering-box .inquiry-box .but-box .no.bg-color {
  background: rgb(249, 114, 0);
  border-color:rgb(249, 114, 0)
}
.infoGathering-box .inquiry-box .but-box .no.bg-color:hover {
  background: #000;
  border-color: #000;
}



/* 询问语————inquiry-box */
.infoGathering-box  .typeA.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .inquiry-box.typeA {
  display: none
}
.infoGathering-box .typeB.animate_bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1s;
}
.infoGathering-box .inquiry-box.typeB {
  display: none
}
.infoGathering-box .inquiry-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  padding: 0 45px;
  padding-top: 87px;
  padding-bottom: 68px;
  background: #fff;
  border-radius: 3px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.infoGathering-box .inquiry-box .m {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infoGathering-box .inquiry-box .title {
  margin-bottom: 118px;
}
.infoGathering-box .inquiry-box .title p {
  font-size: 40px;
  font-weight: bold;
  color: #222;
  text-align: center;
}
.infoGathering-box .inquiry-box .but-box {
  display: flex;
  justify-content: space-evenly;
}
.infoGathering-box .inquiry-box .but-box .item {
  width: 26%;
  line-height: 55px;
  border: 1px solid #2222;
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  text-align: center;
  transition: all .2s;
  cursor: pointer;
}
.infoGathering-box .inquiry-box .item.no{
  background: #000;
  color: #fff;
}
.infoGathering-box .inquiry-box .item.no:hover {
  background:rgb(249, 114, 0);
  color: #fff;
}
.infoGathering-box .inquiry-box .item.yes:hover {
  background:#000;
  color: #fff;
}




/*   main    */
.main .about_box {
  padding-top: 150px;
  padding-bottom: 149px;
}
.main .about_box .about_bg {
  width: 1350px;
  height: 628px;
  margin: auto;
  /* background-color: royalblue; */
  background: url('../img/about_bg.png') no-repeat;
  background-size: cover;
  position: relative;
}
.about_box .about_bg .about_s {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 610px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 1);
  box-sizing: border-box;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 1);
}
.about_box .about_bg .about_s .wire {
  border: 1px dashed rgba(255, 255, 255, 1)
}
.about_box .about_bg .about_s .wire .head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
/* .about_box .about_bg .about_s .wire .head .left{} */
.about_box .about_bg .about_s .wire .head .left span,
.about_box .about_bg .about_s .wire .head .right span {
  display:inline-block;
  width: 22px;
  height: 22px;
}
.about_box .about_bg .about_s .wire .head .left span:nth-child(1){
  background: url('../img/rhombus_m.png') no-repeat center
}
.about_box .about_bg .about_s .wire .head .left span:nth-child(2){
  background: url('../img/rhombus_s.png') no-repeat center
}
.about_box .about_bg .about_s .wire .head p {
  margin: 0 15px;
  font-size: 30px;
  color: #fff;
}
.about_box .about_bg .about_s .wire .head .right span:nth-child(2){
  background: url('../img/rhombus_m.png') no-repeat center
}
.about_box .about_bg .about_s .wire .head .right span:nth-child(1){
  background: url('../img/rhombus_s.png') no-repeat center
}
.about_box .about_bg .about_s .wire .info {
  margin: 40px 85px 75px 85px;
  font-size: 25px;
  color: #fff;
  overflow: auto;
  -webkit-box-orient: horizontal;
  display: -webkit-box;
  height: 280px;
  padding: 10px;
  overflow-x: hidden;
}
/* scroll style */
.about_box .about_bg .about_s .wire .info::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 5px;  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.about_box .about_bg .about_s .wire .info::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  background   : #535353;
}
.about_box .about_bg .about_s .wire .info::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background   : #ededed;
}
.about_box .about_bg .about_s .wire .but {
  margin: 0 65px 80px 65px;
  padding: 14px 0px;
  border:1px solid rgba(255, 255, 255, 1);
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  transition: all .8s;
}
.about_box .about_bg .about_s .wire .but:hover {
  border-color: transparent;
  background:  rgba(249, 114, 0, 1);
  color: #fff;
}
.about_box .about_bg .login_area{
  display: none;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 610px;
  padding: 25px 25px 0 78px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid #D8D8D8;
  box-shadow: 10px 10px 14px rgba(0,0,0, 0.4);
  box-sizing: border-box;
}
.about_bg .login_area .form_area {
  position: relative;
  padding-right: 25px;
}
.about_bg .login_area .form_area .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  transition: all .5s;
}
.about_bg .login_area .form_area .close.trans {
  transform: rotate(180deg);
}
.about_bg .login_area .form_area .hea {
  padding-bottom: 106px;
  padding-top: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #222;
}
.about_bg .login_area .form_area .input_s {
  padding: 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(207, 207, 207, 1);
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.about_bg .login_area .form_area .input_s input{
  width: 100%;
  margin-left: 10px;
  background: none;
  outline: none;
  border: none;
  font-size: 16px;
}
.about_bg .login_area .form_area textarea {
  width: 100%;
  padding: 13px;
  height: 125px;
  border: 1px solid rgba(216, 216, 216, 1);
  border-radius: 3px;
  font-size: 16px;
  color: #999999;
  resize: none;
  outline:none;
  box-sizing: border-box;
}
.about_bg .login_area .form_area textarea:focus{
  border: 1px solid #222;
}
.about_bg .login_area .form_area .buttom {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 100px;
  line-height: 51px;
  background: rgba(0, 0, 0, 1);
  border: none;
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  transition: all .8s;
}
.about_bg .login_area .form_area .buttom:hover {
  /* border-color: transparent; */
  background: rgba(249, 114, 0, 1);
  color: #fff;
}
.main .our {
  padding: 60px 0 84px 0;
  background: rgba(241, 241, 241, 1);
}
.main .our .hea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.main .our .hea .title {
  height: 58px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #222;
  border-bottom: 1px solid rgb(196, 198, 203);
  position: relative;
}
.main .our .hea .title::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: -2px;
  width: 52px;
  height: 4px;
  margin: auto;
  background: rgba(249, 114, 0, 1);
}
.main .our .hea p {
  font-size: 20px;
  color: #222;
}
.main .our .m_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}
.main .our .m_box .item {
  width: 16.55%;
  margin: 0 11px;
  padding: 45px 43px 41px 43px;
  background: #fff;
  border: 1px solid rgba(216, 216, 216, 1);
  text-align: center;
}
.our .m_box .item img {
  margin-bottom: 42px;
}
/* .our .m_box .item .info_box {
} */
.our .m_box .item .info_box h5{
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 104px;
}
.our .m_box .item .info_box p{
  font-size: 18px;
  color: #666;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.our.product_s {
  background: #fff
}
.our.product_s .m_box {
  flex-wrap: wrap;
}
.our.product_s .m_box .item {
  width: 23.22%;
  margin-bottom: 31px;
  padding: 0;
  transition: all 0.6s;
}
.our.product_s .m_box .item:hover {
  box-shadow: 0px 0px 32px rgba(0, 0, 0, .3);
}
.our.product_s .m_box .item img {
  width: 100%;
  margin-bottom: 22px;
  height: 250px;
  object-fit: contain;
}
.our.product_s .m_box .item .info_box {
  margin: 0 22px;
}
.our.product_s .m_box .item .info_box h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.our.product_s .m_box .item .info_box .price_box {
  margin-bottom: 36px;
  border: 1px solid rgba(249, 114, 0, 1);
  display: flex;
}
.our.product_s .m_box .item .info_box .price_box span {
  line-height: 40px;
}
.our.product_s .m_box .item .info_box .price_box .miaosha{
  width: 60%;
  background: rgba(249, 114, 0, 1);
  font-size: 22px;
  font-weight: bold;
  color: #FFF;
  position: relative;
}
.our.product_s .m_box .item .info_box .price_box .miaosha::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-color: transparent white transparent transparent;
  border-style: solid;
  border-width: 40px 8px 0 0;
}
.our.product_s .m_box .item .info_box .price_box .miaosha i {
  font-size: 20px;
  font-style: normal;
}
.our.product_s .m_box .item .info_box .price_box .original{
  width: 40%;
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
}
.our.support_s {
  background: #fff;
}
.our.support_s .min_baner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our.support_s .min_baner .head{
  width: 930px;
  margin-bottom: 70px;
  display: flex;
}
.our.support_s .min_baner .head span{
  width: 33.33%;
  margin-right: -1px;
  line-height: 95px;
  border: 1px solid rgba(216, 216, 216, 1);
  font-size: 20px;
  color: rgba(102, 102, 102, 1);
  text-align: center;
  cursor: pointer;
}
.our.support_s .min_baner .head span.activate_xian {
  background: rgba(0, 0, 0, 1);
  color: #fff
}
.our.support_s .min_baner .info_list {
  width: 1420px;
}
.our.support_s .min_baner .info_list .item {
  height: 538px;
}
.our.support_s .min_baner .info_list .item .custom_swiper {
  height: 100%;
  text-align: center;
}
.our.support_s  #videos .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: url("../img/jiantou_act.png") no-repeat;
  background-size: cover;
  transform: rotate(0deg);
} 
.our.support_s  #videos .swiper-button-prev.swiper-button-disabled{
  opacity: 1;
  background: url("../img/jiantou_act.png") no-repeat;
  background-size: cover;
  transform: rotate(-180deg);
}
.our.support_s .min_baner .info_list .item .custom_swiper .custom_prev,
.our.support_s .min_baner .info_list .item .custom_swiper .custom_next {
  width: 80px;
  height: 80px;
  background: url("../img/jiantou.png") no-repeat;
  background-size: cover;
}
.our.support_s .min_baner .info_list .item .custom_swiper .custom_next {
  transform: rotate(-180deg);
}
.our.support_s .min_baner .info_list .item .video_w {
  width: 927px;
}
.our.support_s .min_baner .info_list .item .custom_swiper .download_box {
  width: 927px;
  margin: auto;
  margin-top: 100px;
}
.our.support_s .min_baner .info_list .item .custom_swiper .download_box .info p{
  margin-top: 20px;
  font-size: 25px;
  font-weight: bold;
  color: rgba(125, 202, 45, 1);
}
.our.customers {
  background: #fff
}
.our.customers .customers_ban_box {
  width: 100%;
  background: url("../img/urse_info_bg.png") no-repeat;
  background-size: 100%;
  position: relative;
}
.our.customers .customers_ban_box .urse_info {
  width: 42%;
  margin: auto;
  padding: 80px 0 64px 0;
}
.our.customers .customers_ban_box .urse_info p {
  height: 108px;
  line-height: 36px;
  text-align: justify;
  color: #fff;
  font-size: 25px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.our.customers .customers_ban_box #customers {
  width: 90%;
}
.our.customers .customers_ban_box #customers .cust_hg {
  height: 360px;
  margin-bottom: 12%;
}
.our.customers .customers_ban_box #customers .cus_alike {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 120px;
  height: 50px;
  line-height: 50px;
  border: 1px solid rgba(153, 153, 153, 1);
  box-sizing: border-box;
  background: none;
  top: 84%;
  outline: none;
}
.our.customers .customers_ban_box #customers .cus_alike p {
  font-size: 20px;
  font-weight: bold;
  color: rgba(153, 153, 153, 1);
}
.our.customers .customers_ban_box #customers .cus_alike:hover {
  border-color: rgba(249, 114, 0, 1)
}
.our.customers .customers_ban_box #customers .cus_alike:hover p{
  color:rgba(249, 114, 0, 1)
}
.our.customers .customers_ban_box #customers .cus_alike i{
  width: 25px;
  height: 100%;
}
.our.customers .customers_ban_box #customers .customers_prev {
  left: 40%;
}
.our.customers .customers_ban_box #customers .customers_next {
  right: 40%
}
.our.customers .customers_ban_box #customers .customers_prev i {
  background: url('../img/mor.png') no-repeat 50%;
}
.our.customers .customers_ban_box #customers .customers_next i {
  background: url('../img/mor.png') no-repeat 50%;
  transform: rotate(180deg);
}
.our.customers .customers_ban_box #customers .customers_prev:hover i {
  background: url('../img/mor_avc.png') no-repeat 50%;
  transform: rotate(180deg);
}
.our.customers .customers_ban_box #customers .customers_next:hover i {
  background: url('../img/mor_avc.png') no-repeat 50%;
  transform: rotate(0deg);
}
.our.customers img{
  width: 100%;
  margin-bottom: 20px;
}
.our.customers p {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.our.freevip_s {
  background: #fff;
}
.our.freevip_s .fre_warp {
  width: 1292px;
}
.our.freevip_s .hea p {
  width: 45%;
}
.our.freevip_s .freevip .item {
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
}
.our.freevip_s .freevip .item:nth-child(1) {
  margin-bottom: 25px;
}
.our.freevip_s .freevip .item:nth-child(2) {
  margin-bottom: 10px;
}
.our.freevip_s .freevip .item>div {
  width: 47%;
  display: flex;
  align-items: center;
  height: 58px;
  border: 1px solid rgba(207, 207, 207, 1);
  border-radius: 5px;
  box-sizing: border-box;
}
.our.freevip_s .freevip .item>div:nth-child(2) {
  border: 0;
}
.our.freevip_s .freevip .item input {
  width: 100%;
  margin-left: 20px;
  font-size: 16px;
  border: none;
}
.our.freevip_s .freevip .item .sels {
  position: relative;
  color: #999;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  font-size: 16px;

}
.our.freevip_s .freevip .item .sels .ico{
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 24px;
  height: 24px;
  transform: translate(0,-50%);
}
.our.freevip_s .freevip .item .select_1 .ico{
  background: url("../img/sex.png") no-repeat;
  background-size: cover;
}
.our.freevip_s .freevip .item .select_2 .ico{
  background: url("../img/wq.png") no-repeat;
  background-size: cover;
}
.our.freevip_s .freevip .item select {
  padding-left: 44px;
  width: 100%;
  height: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(207, 207, 207, 1);
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  background: url('../img/j.png') no-repeat 98%;
}
.our.freevip_s .freevip .item select:focus {
  border-color: #000;
}
.our.freevip_s .freevip .item .z_s_color {
  color: #222;
}
.our.freevip_s .freevip .explain {
  font-size: 12px;
  color: rgba(255, 0, 0, 1);
}
.our.freevip_s .freevip .buttom {
  width: 100%;
  line-height: 70px;
  margin-top: 88px;
  background:rgba(0, 0, 0, 1);
  border: 0;
  border-radius: 5px;
  font-size: 20px;
  color: #fff;
  transition: all .8s;
}
.our.freevip_s .freevip .buttom:hover {
  border-color: transparent;
  background: rgba(249, 114, 0, 1);
  color: #fff;
}
.main .amazon_box {
  width: 100%;
  line-height: 120px;
  background: url('../img/join_bg.png') no-repeat;
  background-size: 100% 100%;
}
.main .amazon_box .amazon_flx {
  width: 1292px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .amazon_box p {
  margin-left: 137px;
  font-size: 30px;
  font-weight: bold;
  color: rgba(249, 114, 0, 1)
}
.main .amazon_box a {
  width: 20%;
  line-height: 60px;
  border: 1px solid rgba(249, 114, 0, 1);
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: rgba(249, 114, 0, 1);
  text-align: center;
  box-sizing: border-box;
  transition: all .8s;
}
.main .amazon_box a:hover {
  border-color: transparent;
  background: rgba(249, 114, 0, 1);
  color: #fff; 
}
footer {
  background-color:rgba(0, 0, 0, 1)
}
footer .f_message_are {
  border-bottom: 1px solid rgba(51, 51, 51, .5);
}
footer .f_message_are .message_warp{
  width: 1292px;
  margin: 0 auto;
}
footer .f_message_are .info_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .f_message_are .message_warp .item {
  margin-top: 91px;
  margin-bottom: 69px;
  color: #fff;
}
footer .f_message_are .message_warp .item:nth-child(1) p:hover>a>span {
  text-decoration: underline;
}
footer .f_message_are .message_warp .item h3 {
  margin-bottom: 50px;
  font-size: 18px;
}
/* footer .f_message_are .message_warp .item .activ_color a {
  color: rgba(249, 114, 0, 1);
} */
footer .f_message_are .message_warp .item p {
  line-height: 33px;
  font-size: 16px;
  max-width: 300px;
}
footer .f_message_are .message_warp .item p:hover a {
  color: rgba(249, 114, 0, 1);
}
footer .f_message_are .message_warp .item p span {
  vertical-align: middle;
  margin-right: 14px;
}
footer .f_message_are .message_warp .item p:hover a>span:nth-child(2) {
  text-decoration: underline;
}
footer .f_message_are .message_warp .item i {
  display: inline-block;
  height: 150px;
  margin-top: 20px;
  border: 1px solid #fff;
}
footer .copyright_are {
  padding: 29px 0px;
  text-align: center;
}
footer .copyright_are span {
  font-size: 12px;
  color: #fff;
}




@keyframes bounceInRight {
  0% {
    opacity: 0;
    right: 1300px;
  }

  to {
    opacity: 1;
    right: 0;
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 1;
    right: 0;
  }

  to {
    opacity: 0;
    right: 1300px;
  }
}

@keyframes warnInLeft {
  0% {
    opacity: 0;
    left: 0;
  }

  to {
    opacity: 1;
    left: 50%;
  }
}


