@font-face {
  font-family: 'SemiBold';
  src: url('../../font/Poppins-SemiBold.otf');
}
@font-face {
  font-family: 'Roboto';
  src: url('../../font/Roboto-Medium.ttf');
}
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-weight: normal;
  line-height: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-style: normal;
}
p {
  line-height: 1.5;
}
*[o-fb] {
  cursor: pointer;
  transition: all ease 0.25s;
}
*[o-fb]:not(.active):hover {
  opacity: 0.7;
}
.box {
  width: 1580px;
  margin: 0 auto;
}
img {
  object-fit: cover;
}
strong {
  display: block;
}
.y-center {
  display: flex;
  align-items: center;
}
.x-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.xy-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.m-title {
  font-weight: 600;
  font-size: 64px;
  text-align: center;
  display: block;
  color: #1d1d25;
  font-family: 'SemiBold';
}
.m-title span {
  color: #F96017;
}
button,
.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 10rpx;
  font-size: 30rpx;
  color: #ffffff;
  outline: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
button::after,
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 6px;
  transition: all ease 0.25s;
}
button:hover::after,
.btn:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
button:active::after,
.btn:active::after {
  background: rgba(0, 0, 0, 0.2);
}
button[disabled],
.btn[disabled],
button.disabled,
.btn.disabled {
  opacity: 0.6;
  color: #fff;
}
button[disabled],
.btn[disabled],
button[loading],
.btn[loading],
button.disabled,
.btn.disabled {
  pointer-events: none;
}
button[disabled]:active:after,
.btn[disabled]:active:after,
button.disabled:active:after,
.btn.disabled:active:after {
  display: none;
}
button.link,
.btn.link {
  width: fit-content;
  height: fit-content;
  background: transparent;
}
button.link:active:after,
.btn.link:active:after {
  display: none;
}
button.link:not([disabled]):active,
.btn.link:not([disabled]):active,
button.link:not(.disabled):active,
.btn.link:not(.disabled):active {
  opacity: 0.7;
}
body {
  max-width: 2560px;
  margin: 0 auto!important;
  padding-top: 120px;
}
body header {
  transition: all ease 0.25s;
}
body header .top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}
body header .top .box {
  display: flex;
  align-items: center;
  height: 120px;
}
body header .top .box .logo {
  width: 185px;
  height: 64px;
}
body header .top .box .search {
  margin-left: 60px;
  flex: 1;
  height: 56px;
  background: #f3f3f3;
  border-radius: 100px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
body header .top .box .search .searchIcon {
  width: 32px;
  height: 32px;
}
body header .top .box .search input {
  background: transparent;
  border: 0;
  margin-left: 20px;
  height: 56px;
  flex: 1;
  font-size: 20px;
  color: #2E3192;
  outline: none;
}
body header .top .box .icons {
  display: flex;
  align-items: center;
  margin-left: 28px;
}
body header .top .box .icons a > img {
  width: 44px;
  height: 44px;
  margin-left: 32px;
}
body header .top .box .icons .cart {
  position: relative;
}
body header .top .box .icons .cart .badge {
  right: 0;
  top: 0;
  position: absolute;
  background-image: url('../../images/header/badge.png');
  width: 32px;
  height: 32px;
  transform: translate(50%, -50%);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
body header .top .box .icons .cart .badge:empty {
  display: none;
}
body header .top .box .icons .cart .cartPopup {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(calc(100% + 10px));
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.25s;
}
body header .top .box .icons .cart .cartPopup ul {
  max-height: 60vh;
  overflow: auto;
  padding: 0 20px;
  width: 500px;
}
body header .top .box .icons .cart .cartPopup ul li {
  padding: 20px 0;
  display: flex;
  align-items: center;
}
body header .top .box .icons .cart .cartPopup ul li + li {
  border-top: 1px solid #eee;
}
body header .top .box .icons .cart .cartPopup ul li img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
body header .top .box .icons .cart .cartPopup ul li .right {
  margin-left: 20px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body header .top .box .icons .cart .cartPopup ul li .right span {
  font-size: 16px;
  color: #333;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body header .top .box .icons .cart .cartPopup ul li .right .set {
  display: flex;
  align-items: center;
}
body header .top .box .icons .cart .cartPopup ul li .right .set .stepper {
  margin-top: auto;
  zoom: 0.9;
  display: flex;
  align-items: center;
}
body header .top .box .icons .cart .cartPopup ul li .right .set .stepper .icon-reduce {
  width: 40px;
  height: 40px;
  background: #BEBEC3;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
body header .top .box .icons .cart .cartPopup ul li .right .set .stepper input {
  width: 100px;
  margin: 0 20px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  font-size: 18px;
  color: #1D1D25;
  text-align: center;
  outline: 0;
}
body header .top .box .icons .cart .cartPopup ul li .right .set .stepper .icon-add {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  font-size: 20px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
body header .top .box .icons .cart .cartPopup ul li .right .set .icon-delete {
  margin-left: auto;
  font-size: 26px;
  color: orange;
}
body header .top .box .icons .cart:hover .cartPopup {
  opacity: 1;
  visibility: visible;
}
body header .bottom {
  background: #2E3192;
  position: relative;
}
body header .bottom .box {
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;
}
body header .bottom .box .moreMenus {
  width: 40px;
  height: 40px;
}
body header .bottom .box .menus {
  transition: all ease 0.25s;
  display: flex;
  align-items: center;
  height: 100%;
}
body header .bottom .box .menus .item {
  position: relative;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f3f3f3;
  transition: all ease 0.25s;
  width: fit-content;
}
body header .bottom .box .menus .item span {
  padding: 0 32px;
  margin: 0 -32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body header .bottom .box .menus .item:hover,
body header .bottom .box .menus .item.active {
  color: #F96017;
}
body header .bottom .box .menus .item .floatMenus {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.25s;
  bottom: 0;
  left: 32px;
  position: absolute;
  z-index: 9999;
  transform: translateY(calc(100% + 4px));
  display: flex;
}
body header .bottom .box .menus .item .floatMenus ul {
  background: #F8F8F8;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  width: 464px;
}
body header .bottom .box .menus .item .floatMenus ul li {
  padding: 0 40px;
  cursor: pointer;
  position: relative;
}
body header .bottom .box .menus .item .floatMenus ul li + li .content {
  border-top: 1px solid #fff;
}
body header .bottom .box .menus .item .floatMenus ul li .content {
  height: 68px;
  display: flex;
  align-items: center;
}
body header .bottom .box .menus .item .floatMenus ul li .content img {
  width: 35px;
  margin-right: 15px;
}
body header .bottom .box .menus .item .floatMenus ul li .content label {
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  color: #67677B;
  transform: all ease 0.25s;
  flex: 1;
}
body header .bottom .box .menus .item .floatMenus ul li .content .iconfont {
  font-size: 22px;
  color: #67677B;
  transform: all ease 0.25s;
  margin-right: -4px;
  font-weight: bold;
}
body header .bottom .box .menus .item .floatMenus ul li:hover > .content label,
body header .bottom .box .menus .item .floatMenus ul li:hover > .content .iconfont {
  color: #F96017;
}
body header .bottom .box .menus .item .floatMenus ul li:hover > ul {
  opacity: 1;
  visibility: visible;
}
body header .bottom .box .menus .item .floatMenus ul ul {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.25s;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(calc(100% + 10px));
}
body header .bottom .box .menus .item .floatMenus ul ul:hover {
  opacity: 1;
  visibility: visible;
}
body header .bottom .box .menus .item .floatMenus:hover {
  opacity: 1;
  visibility: visible;
}
body header .bottom .box .menus .item:first-child:hover .floatMenus {
  opacity: 1;
  visibility: visible;
}
body header .bottom .box .menus .item.active span {
  color: #F96017;
}
body .headBanner {
  width: 100%;
  height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
body .headBanner::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  content: '';
}
body .headBanner label {
  position: relative;
  z-index: 1;
  height: 144px;
  font-weight: 600;
  font-size: 120px;
  color: #FFFFFF;
  line-height: 144px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  text-transform: uppercase;
}
body .headBanner p {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  width: 700px;
  text-align: center;
  font-size: 36px;
  color: #FFFFFF;
}
body .headBanner p span {
  color: #F96017;
}
body .breadCrumbs {
  height: 60px;
  background: #1C1977;
}
body .breadCrumbs:has(.tab) {
  height: 114px;
}
body .breadCrumbs .box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .breadCrumbs .box .tab {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: -36px;
}
body .breadCrumbs .box .tab li {
  font-weight: 600;
  padding: 0 36px;
  line-height: 1;
  position: relative;
  cursor: pointer;
  font-size: 28px;
  color: #FFFFFF;
}
body .breadCrumbs .box .tab li + li {
  border-left: 1px solid #fff;
}
body .breadCrumbs .box .tab li a {
  font-size: inherit;
  color: inherit;
}
body .breadCrumbs .box .tab li::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 50%;
  bottom: -15px;
  height: 2px;
  background: #fff;
  content: '';
  transition: all ease 0.25s;
  opacity: 0;
}
body .breadCrumbs .box .tab li:hover::after,
body .breadCrumbs .box .tab li.active::after {
  opacity: 1;
}
body .breadCrumbs .box .bread {
  display: flex;
  align-items: center;
}
body .breadCrumbs .box .bread .item {
  width: fit-content !important;
}
body .breadCrumbs .box .bread .item .icon-home {
  font-size: 20px;
  color: #fff;
}
body .breadCrumbs .box .bread .item span {
  font-size: 20px;
  color: #FFFFFF;
  padding: 0 8px;
}
body .breadCrumbs .box .bread .icon-you {
  color: #fff;
  font-size: 14px;
}
body footer {
  background: #eeeeee;
  position: relative;
  display: flex;
  flex-direction: column;
}
body footer .content {
  width: 1580px;
  padding: 100px 0;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
body footer .content a:hover {
  opacity: 0.7;
}
body footer .content .left {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
body footer .content .left .logo {
  width: 185px;
  margin-bottom: auto;
}
body footer .content .left h2 {
  margin-top: 40px;
  font-weight: 600;
  font-size: 28px;
  color: #1d1d25;
  font-family: 'SemiBold';
}
body footer .content .left p {
  display: flex;
  margin-top: 22px;
  width: 400px;
}
body footer .content .left p img {
  width: 28px;
  height: 28px;
}
body footer .content .left p a,
body footer .content .left p span {
  position: relative;
  top: 5px;
  margin-left: 14px;
  font-size: 16px;
  color: #67677b;
  line-height: 1.2;
}
body footer .content .left p a:hover {
  color: #67677b;
  text-decoration: underline;
}
body footer .content .right {
  margin-left: auto;
  display: flex;
}
body footer .content .right .linkList {
  display: flex;
}
body footer .content .right .linkList > li + li {
  margin-left: 88px;
}
body footer .content .right .linkList > li label {
  font-weight: 600;
  font-size: 28px;
  color: #1d1d25;
  font-family: 'SemiBold';
}
body footer .content .right .linkList > li ul {
  margin-top: 12px;
}
body footer .content .right .linkList > li ul a {
  display: block;
  margin-top: 36px;
  font-size: 16px;
  color: #67677b;
}
body footer .content .right .linkList > li ul a:hover {
  text-decoration: underline;
}
body footer .footerBottom {
  background: #2E3192;
  height: 144px;
  display: flex;
  align-items: center;
}
body footer .footerBottom .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body footer .footerBottom .box p {
  font-size: 16px;
  color: #ffffff;
}
body footer .footerBottom .box .icons {
  display: flex;
  align-items: center;
}
body footer .footerBottom .box .icons img {
  width: 64px;
  height: 64px;
  margin-left: 68px;
}
body .page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
body .page li {
  margin: 0 10px;
  width: fit-content;
}
body .page li a {
  width: 68px;
  height: 68px;
  background: #F3F3F3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #67677B;
}
body .page li:hover a,
body .page li.active a {
  background: #2E3192;
  color: #fff;
}
@media only screen and (max-width: 980px) and (orientation: portrait) {
  body .box {
    width: 100%;
    max-width: 100%;
  }
  body header .top.top .box {
    padding: 0 30px;
  }
  body header .top.top .box .logo {
    width: 140px;
    object-fit: contain;
  }
  body header .top.top .box .search {
    margin-left: 20px;
  }
  body header .top.top .box .icons > img {
    width: 36px;
    height: 36px;
    margin-left: 16px;
  }
  body header .bottom {
    background: #2E3192;
    width: 100vw;
  }
  body header .bottom .box {
    padding-left: 30px;
  }
  body header .bottom .box .menus {
    margin-left: 20px;
  }
  body header .bottom .box .menus .item {
    padding: 0 26px!important;
  }
  body header .bottom .box .menus .item span {
    padding: 0 26px!important;
  }
  body header .bottom .box .menus .item .floatMenus.floatMenus {
    left: 6px;
  }
  body header .bottom .box .menus .item .floatMenus.floatMenus ul {
    width: 200px;
  }
  body header .bottom .box .menus .item .floatMenus.floatMenus ul li {
    padding: 0 20px;
  }
  body header .bottom .box .menus .item .floatMenus.floatMenus ul li .content {
    height: 40px;
  }
  body header .bottom .box .menus .item .floatMenus.floatMenus ul li .content label {
    font-size: 16px;
  }
  body header .bottom .box .menus .item .floatMenus.floatMenus ul li .content .iconfont {
    font-size: 16px;
  }
  body footer .content.content {
    width: 100vw;
    padding: 60px;
    flex-direction: column;
  }
  body footer .content.content a:hover {
    opacity: 0.7;
  }
  body footer .content.content .left p {
    width: 100%;
  }
  body footer .content.content .right {
    margin: 60px 0 0;
  }
  body footer .footerBottom.footerBottom {
    padding: 0 60px;
    height: 144px;
    display: flex;
    align-items: center;
  }
  body footer .footerBottom.footerBottom .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body footer .footerBottom.footerBottom .box p {
    font-size: 24px;
  }
  body footer .footerBottom.footerBottom .box .icons {
    display: flex;
    align-items: center;
  }
  body footer .footerBottom.footerBottom .box .icons img {
    width: 54px;
    height: 54px;
    margin-left: 34px;
  }
}
.breadCrumbs {
  height: 60px!important;
  background: #1C1977 !important;
}
section {
  padding: 80px 0;
  background: #F3F3F3;
}
section .box {
  display: flex;
}
section .box .main {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #CCCCCC;
  padding: 40px;
}
section .box .main .steps .progress {
  height: 10px;
  width: 100%;
  border-radius: 100px;
  background: #f3f3f3;
  display: block;
  overflow: hidden;
  position: relative;
}
section .box .main .steps .progress .innerProgress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 100px;
  transition: all ease 0.25s;
  width: 0;
  background: #F96017;
}
section .box .main .steps ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
section .box .main .steps ul li {
  flex: 1;
  display: flex;
  align-items: center;
}
section .box .main .steps ul li .index {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  background: #BEBEC3;
}
section .box .main .steps ul li span {
  font-weight: 600;
  font-size: 16px;
  margin-left: 12px;
  color: #BEBEC3;
}
section .box .main .steps ul li.active .index {
  background: #F96017;
}
section .box .main .steps ul li.active span {
  color: #1D1D25;
}
section .box .main .bottom {
  margin-top: 100px;
  display: flex;
}
section .box .main .bottom .left {
  margin-right: 120px;
}
section .box .main .bottom .left label {
  font-weight: 600;
  font-size: 36px;
  color: #1D1D25;
  font-family: 'SemiBold';
}
section .box .main .bottom .left p {
  width: 240px;
  font-weight: 600;
  font-size: 16px;
  color: #67677B;
  display: block;
  margin-top: 12px;
}
section .box .main .bottom .left p span {
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
section .box .main .bottom .form {
  margin-top: -40px;
  display: none;
  flex: 1;
}
section .box .main .bottom .form .form-item {
  margin-top: 40px;
}
section .box .main .bottom .form .form-item label {
  /* font-weight: 600; */
  font-size: 18px;
  color: #67677B;
}
section .box .main .bottom .form .form-item .radios {
  margin-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 12px;
  border: 2px solid #1D1D25;
  padding: 0 28px 20px;
}
section .box .main .bottom .form .form-item .radios li {
  color: #1D1D25;
  margin-top: 20px;
  cursor: pointer;
  width: 50%;
  display: flex;
  align-items: center;
}
section .box .main .bottom .form .form-item .radios li .iconfont {
  font-size: 20px;
  display: none;
  color: #67677B;
  font-weight: bold;
}
section .box .main .bottom .form .form-item .radios li .iconfont.icon-checkbox {
  display: block;
}
section .box .main .bottom .form .form-item .radios li span {
  margin-left: 6px;
  font-size: 14px;
  color: #67677B;
}
section .box .main .bottom .form .form-item .radios li.active .icon-checkboxs {
  display: block;
  color: #F96017;
}
section .box .main .bottom .form .form-item .radios li.active .icon-checkbox {
  display: none;
}
section .box .main .bottom .form .form-item .radios li.active span {
  color: #F96017;
}
section .box .main .bottom .form .form-item .radios li input {
  width: 30px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  font-size: 16px;
  padding: 0 15px;
  margin-top: 0;
}
section .box .main .bottom .form .form-item .uploader {
  margin-top: 12px;
  height: 160px;
  border-radius: 12px;
  border: 2px solid #67677B;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 40px;
  transition: all ease 0.25s;
}
section .box .main .bottom .form .form-item .uploader input {
  display: none;
}
section .box .main .bottom .form .form-item .uploader img {
  width: 80px;
  height: 80px;
}
section .box .main .bottom .form .form-item .uploader .right {
  margin-left: 20px;
}
section .box .main .bottom .form .form-item .uploader .right label {
  font-weight: 600;
  font-size: 18px;
  color: #2E3192;
}
section .box .main .bottom .form .form-item .uploader .right p {
  font-weight: 500;
  font-size: 14px;
  color: #67677B;
  margin-top: 12px;
}
section .box .main .bottom .form .form-item .uploader:hover {
  background: #f8f8f8;
}
section .box .main .bottom .form .form-item .pic {
  font-size: 0;
  position: relative;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
  border: 2px solid #67677B;
  height: 160px;
}
section .box .main .bottom .form .form-item .pic:empty {
  display: none;
}
section .box .main .bottom .form .form-item .pic img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
section .box .main .bottom .form .form-item .pic .icon-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F96017;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all ease 0.25s;
  cursor: pointer;
}
section .box .main .bottom .form .form-item .pic .icon-close:hover {
  background: #ddd;
}
section .box .main .bottom .form .form-item .pic:not(:empty) + .uploader {
  display: none;
}
section .box .main .bottom .form .form-item input,
section .box .main .bottom .form .form-item select,
section .box .main .bottom .form .form-item textarea {
  width: 100%;
  height: 66px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 2px solid #1D1D25;
  padding: 0 28px;
  font-weight: 600;
  font-size: 20px;
  color: #1D1D25;
  margin-top: 12px;
  outline: 0;
}
section .box .main .bottom .form .form-item textarea {
  padding: 20px 28px;
  height: 160px;
  width: 100%;
}
section .box .main .bottom .form .form-item .select {
  height: 66px;
  position: relative;
  margin-top: 12px;
}
section .box .main .bottom .form .form-item .select select {
  margin-top: 0;
}
section .box .main .bottom .form .form-item .select::after {
  content: '\e80b';
  font-family: 'iconfont';
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 20px;
  background: #fff;
  font-size: 20px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section .box .main .bottom .form .form-item p {
  font-size: 14px;
  color: #F96017;
  margin-top: 12px;
}
section .box .main .bottom .form .form-item .success {
  width: 100%;
  height: 359px;
  border-radius: 12px;
  margin-bottom: 20px;
}
section .box .main .bottom .form .form-item .successTips {
  font-weight: 600;
  font-size: 36px;
  color: #1D1D25;
  text-align: center;
}
section .box .main .bottom .form .form-item:last-child {
  display: flex;
  align-items: center;
  margin-top: 84px;
  justify-content: space-between;
}
section .box .main .bottom .form .form-item:last-child button {
  justify-content: center;
  padding: 0 20px;
  width: 280px;
  height: 64px;
  background: #2E3192;
  border-radius: 12px;
  margin-left: auto;
}
section .box .main .bottom .form .form-item:last-child button span {
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
}
section .box .main .bottom .form .form-item:last-child button img {
  width: 32px;
  height: 32px;
  margin-left: 20px;
}
section .box .main .bottom .form .form-item:last-child button.back {
  background: #fff;
  border: 2px solid #2E3192;
  margin-left: initial;
}
section .box .main .bottom .form .form-item:last-child button.back span {
  color: #67677B;
}
section .box .main .bottom .form .form-item:last-child button.back img {
  margin: 0 20px 0 0;
}
section .box aside {
  width: 510px;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
}
section .box aside .top {
  padding: 0 28px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #CCCCCC;
}
section .box aside .top label {
  display: block;
  padding: 40px 0;
  font-weight: 600;
  font-size: 24px;
  color: #1D1D25;
  border-bottom: 1px solid #CCCCCC;
}
section .box aside .top .steps2 {
  padding-top: 40px;
}
section .box aside .top .steps2 li {
  display: flex;
  padding-bottom: 40px;
  position: relative;
}
section .box aside .top .steps2 li .icon img {
  width: 40px;
  height: 40px;
}
section .box aside .top .steps2 li .icon::after {
  position: absolute;
  bottom: 10px;
  top: 50px;
  width: 2px;
  content: '';
  left: 20px;
  border-left: 2px dashed #67677B;
  transform: translate(-50%);
}
section .box aside .top .steps2 li .info {
  margin-left: 12px;
}
section .box aside .top .steps2 li .info span {
  font-weight: bold;
  font-size: 16px;
  color: #1D1D25;
}
section .box aside .top .steps2 li .info p {
  margin-top: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #67677B;
}
section .box aside .top .steps2 li:last-child .icon::after {
  display: none;
}
section .box aside .bottom {
  flex: 1;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #CCCCCC;
  margin-top: 40px;
  padding: 0 28px;
}
section .box aside .bottom label {
  display: block;
  padding: 40px 0;
  font-weight: 600;
  font-size: 24px;
  color: #1D1D25;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
}
section .box aside .bottom p {
  padding-top: 20px;
  display: flex;
  align-items: center;
}
section .box aside .bottom p img {
  width: 20px;
}
section .box aside .bottom p a {
  margin-left: 12px;
  font-size: 16px;
  color: #1D1D25;
}
section .box aside .bottom p a:hover {
  text-decoration: underline;
}
section .box aside .bottom .safe {
  padding: 40px 0;
  display: flex;
  align-items: center;
}
section .box aside .bottom .safe li {
  flex: 1;
}
section .box aside .bottom .safe li span {
  font-weight: 600;
  font-size: 16px;
  color: #1D1D25;
  display: block;
}
section .box aside .bottom .safe li img {
  margin-top: 12px;
  width: 200px;
  border-radius: 6px;
}
@media only screen and (max-width: 980px) and (orientation: portrait) {
  .breadCrumbs {
    padding-right: 30px;
  }
  section {
    padding: 30px;
  }
  section .box {
    display: flex;
    flex-direction: column;
  }
  section .box .main .bottom {
    margin-top: 50px;
    flex-direction: column;
  }
  section .box .main .bottom .left {
    margin-bottom: 50px;
  }
  section .box .main .bottom .left p {
    width: 100%;
  }
  section .box .main .bottom .form {
    margin-left: 0;
  }
  section .box .main .bottom .form .form-item:last-child {
    justify-content: space-between;
  }
  section .box .main .bottom .form .form-item:last-child button {
    zoom: 1.3;
  }
  section .box aside {
    width: 100%;
    margin: 30px 0 0;
  }
  section .box aside .bottom {
    margin-top: 30px;
  }
  section .box aside .bottom .safe li {
    margin-right: 80px;
    flex: initial;
  }
}
