* {
  box-sizing: border-box;
}
.rc-select {
  display: inline-block;
  font-size: 14px;
  width: 100px;
  position: relative;
}
.rc-select-disabled,
.rc-select-disabled input {
  cursor: not-allowed;
}
.rc-select-disabled .rc-select-selector {
  opacity: 0.3;
}
.rc-select-show-arrow.rc-select-loading .rc-select-arrow-icon::after {
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #999;
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: none;
  margin-top: 4px;
  animation: rcSelectLoadingIcon 0.5s infinite;
}
.rc-select .rc-select-selection-placeholder {
  pointer-events: none;
  padding-left: 10px;
  line-height: 42px;
}
.rc-select .rc-select-selection-search-input {
  appearance: none;
}
.rc-select .rc-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  appearance: none;
}
.rc-select-single .rc-select-selector {
  display: flex;
  position: relative;
}
.rc-select-single .rc-select-selector .rc-select-selection-search {
  width: 100%;
}
.rc-select-single .rc-select-selector .rc-select-selection-search-input {
  width: 100%;
}
.rc-select-single .rc-select-selector .rc-select-selection-item,
.rc-select-single .rc-select-selector .rc-select-selection-placeholder {
  position: absolute;
  top: 1px;
  left: 3px;
  pointer-events: none;
}
.rc-select-single:not(.rc-select-customize-input) .rc-select-selector {
  padding: 1px;
  border: 1px solid #E0E0E0;
}
.rc-select-single:not(.rc-select-customize-input) .rc-select-selector .rc-select-selection-search-input {
  border: none;
  outline: none;
  background: rgba(255, 0, 0, 0.2);
  width: 100%;
}
.rc-select-multiple .rc-select-selector {
  display: flex;
  flex-wrap: wrap;
  padding: 1px;
  border: 1px solid #E0E0E0;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-item {
  flex: none;
  background: #bbb;
  border-radius: 4px;
  margin-right: 2px;
  padding: 0 8px;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-item-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-overflow {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-overflow-item {
  flex: none;
  max-width: 100%;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-search {
  position: relative;
  max-width: 100%;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-search-input,
.rc-select-multiple .rc-select-selector .rc-select-selection-search-mirror {
  padding: 1px;
  font-family: system-ui;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-search-mirror {
  position: absolute;
  z-index: 999;
  white-space: nowrap;
  position: none;
  left: 0;
  top: 0;
  visibility: hidden;
}
.rc-select-multiple .rc-select-selector .rc-select-selection-search-input {
  border: none;
  outline: none;
  background: rgba(255, 0, 0, 0.2);
  width: 100%;
}
.rc-select-allow-clear.rc-select-multiple .rc-select-selector {
  padding-right: 20px;
}
.rc-select-allow-clear .rc-select-clear {
  position: absolute;
  right: 20px;
  top: 0;
}
.rc-select-show-arrow.rc-select-multiple .rc-select-selector {
  padding-right: 20px;
}
.rc-select-show-arrow .rc-select-arrow {
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 0;
}
.rc-select-show-arrow .rc-select-arrow-icon::after {
  content: '';
  border: 5px solid transparent;
  width: 0;
  height: 0;
  display: inline-block;
  border-top-color: #666;
  transform: translateY(5px);
}
.rc-select-focused .rc-select-selector {
  border-color: #E0E0E0 !important;
}
.rc-select-focused.rc-select-open {
  background-color: #F3F5F8;
}
.rc-select-dropdown {
  min-height: 100px;
  position: absolute;
  background: #fff;
  cursor: pointer;
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.20); 
  border-radius: 2px;
}
.rc-select-dropdown-hidden {
  display: none;
}
.rc-select-item {
  font-size: 14px;
  line-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #E5E5E5;
}
.rc-select-item-group {
  color: #999;
  font-weight: bold;
  font-size: 80%;
}
.rc-select-item-option {
  position: relative;
}
.rc-select-item-option-grouped {
  padding-left: 24px;
}
.rc-select-item-option .rc-select-item-option-state {
  position: absolute;
  right: 0;
  top: 4px;
  pointer-events: none;
}
.rc-select-item-option-active {
  background: #DB0000;
  color: #ffffff;
}
.rc-select-item-option-disabled {
  color: #999;
}
.rc-select-item-empty {
  text-align: center;
  color: #999;
}
.rc-select-selection__choice-zoom {
  transition: all 0.3s;
}
.rc-select-selection__choice-zoom-appear {
  opacity: 0;
  transform: scale(0.5);
}
.rc-select-selection__choice-zoom-appear.rc-select-selection__choice-zoom-appear-active {
  opacity: 1;
  transform: scale(1);
}
.rc-select-selection__choice-zoom-leave {
  opacity: 1;
  transform: scale(1);
}
.rc-select-selection__choice-zoom-leave.rc-select-selection__choice-zoom-leave-active {
  opacity: 0;
  transform: scale(0.5);
}
.rc-select-dropdown-slide-up-enter,
.rc-select-dropdown-slide-up-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.rc-select-dropdown-slide-up-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.rc-select-dropdown-slide-up-enter.rc-select-dropdown-slide-up-enter-active.rc-select-dropdown-placement-bottomLeft,
.rc-select-dropdown-slide-up-appear.rc-select-dropdown-slide-up-appear-active.rc-select-dropdown-placement-bottomLeft {
  animation-name: rcSelectDropdownSlideUpIn;
  animation-play-state: running;
}
.rc-select-dropdown-slide-up-leave.rc-select-dropdown-slide-up-leave-active.rc-select-dropdown-placement-bottomLeft {
  animation-name: rcSelectDropdownSlideUpOut;
  animation-play-state: running;
}
.rc-select-dropdown-slide-up-enter.rc-select-dropdown-slide-up-enter-active.rc-select-dropdown-placement-topLeft,
.rc-select-dropdown-slide-up-appear.rc-select-dropdown-slide-up-appear-active.rc-select-dropdown-placement-topLeft {
  animation-name: rcSelectDropdownSlideDownIn;
  animation-play-state: running;
}
.rc-select-dropdown-slide-up-leave.rc-select-dropdown-slide-up-leave-active.rc-select-dropdown-placement-topLeft {
  animation-name: rcSelectDropdownSlideDownOut;
  animation-play-state: running;
}
@keyframes rcSelectDropdownSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}
@keyframes rcSelectDropdownSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
@keyframes rcSelectLoadingIcon {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form .field{margin-bottom:30px}.form input:not([type=submit]){border:1px solid #e0e0e0;width:100%;padding:13px;outline:none;border-radius:2px}.form input:not([type=submit]):hover,.form input:not([type=submit]):focus{border-color:#b3b3b3}.form input:not([type=submit]):focus+.animation-placehloder{top:-10px;left:8px;opacity:1}.form input:not([type=submit]):focus+.animation-placehloder+.required{display:none}.form input:not([type=submit]):focus+.required{display:none}.form input[type=submit]{width:100%;color:#fff;background-color:#333;border-radius:2px;padding:14px 0;border:none}.form input[type=submit]:hover{background-color:#4d4d4d}.form input[type=submit]:disabled{background-color:rgba(51,51,51,.3);cursor:default}.form input[type=submit]:focus{outline:none}.form .animation-label{transition:all .2s linear;background-color:#fff;position:absolute;font-size:12px;color:#666;line-height:19px;padding:0 6px;top:-10px;left:8px;opacity:1}.form .animation-label+.required{display:none}.form .animation-placehloder{position:absolute;font-size:12px;color:#666;line-height:19px;padding:0 6px;top:17px;left:8px;opacity:0;transition:all .2s linear;background-color:#fff}.form .passward-box{position:relative}.form .passward-box input{padding-right:54px}.form .passward-box .display-switch{display:inline-block;width:54px;height:47px;background:url(/assets/bf99989eadef30e44a99b46b9bea5bed.svg) no-repeat center;position:absolute;top:0;right:0;cursor:pointer}.form .passward-box .hide-pwd{background:url(/assets/e29bc8e8f7c512eacb4964142ca22056.svg) no-repeat center}.form .passward-box .pwdValidTip{box-sizing:border-box;width:300px;height:76px;border-radius:3px;box-shadow:0px 1px 6px 0px rgba(0,0,0,.2);position:absolute;top:-90px;left:0;background:#fff;font-size:12px;text-align:LEFT;color:#666;padding:16px 0}.form .passward-box .pwdValidTip::after{width:0;height:0;position:absolute;z-index:99;left:50px;bottom:-8px;content:"";border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-top:8px solid #fff;filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2))}.form .passward-box .pwdValidTip p{position:relative;padding:0 0 12px 42px;margin:0}.form .passward-box .pwdValidTip p::before{content:"";width:16px;height:16px;background:url(/assets/3480c706847d1caf48f84ec810ace24c.svg) no-repeat center;position:absolute;top:0;left:15px}.form .passward-box .pwdValidTip .pwdError::before{content:"";width:16px;height:16px;background:url(/assets/6617d9142f03dc1c977be195c886ca76.svg) no-repeat center;position:absolute;top:0;left:15px}.form .control{position:relative}.form .control.error .error-tip{display:block}.form .control.error input:not([type=submit]){border-color:#e62e2e}.form .control .required{position:absolute;right:1px;top:7px;padding:6px 13px;color:#b3b3b3;background-color:#fff}.form .control .error-tip{position:absolute;font-size:12px;color:#e62e2e;right:0;top:-18px;display:none}.form .control .error-tip a{color:#e62e2e}.form .control input::-webkit-input-placeholder,.form .control textarea::-webkit-input-placeholder{color:#b3b3b3}.form .control input::-moz-placeholder,.form .control textarea::-moz-placeholder{color:#b3b3b3}.form .control input:-moz-placeholder,.form .control textarea:-moz-placeholder{color:#b3b3b3}.form .control input:-ms-input-placeholder,.form .control textarea:-ms-input-placeholder{color:#b3b3b3}.form .control input:-webkit-autofill{box-shadow:0 0 0px 1000px #fff inset;-webkit-box-shadow:0 0 0px 1000px #fff inset}.form .iconWrap{position:absolute;right:0;top:0;display:flex}.form .iconWrap .succIcon{margin:14px 15px 0 0;width:18px;height:18px;background:url(/assets/62f8e2b652ced5546e86cf600e3f06b5.svg) no-repeat}.form .iconWrap .display-switch{display:inline-block;width:54px;height:47px;background:url(/assets/bf99989eadef30e44a99b46b9bea5bed.svg) no-repeat center;position:static;cursor:pointer}.form .iconWrap .hide-pwd{background:url(/assets/e29bc8e8f7c512eacb4964142ca22056.svg) no-repeat center}.flex-wrapper .right-part{padding-top:110px;height:100%;margin-left:530px}.flex-wrapper .content-wrapper{min-width:640px;max-width:1180px}.flex-wrapper .left-part{background-color:#f7350a;width:530px;display:flex;flex-direction:column;justify-content:space-between;position:fixed;top:0;left:0;height:100%;min-height:620px}.flex-wrapper .left-part .desc-box{flex:1;display:inline-flex;align-items:center;position:relative}.flex-wrapper .left-part .product-desc{width:342px;height:80px;background-image:url(/assets/7ceb9e21b3d0ae3888aa6def3407b5bc.png);background-size:342px 80px;background-repeat:no-repeat;margin:0 auto;position:absolute;top:110px;left:50%;transform:translateX(-50%)}.flex-wrapper .left-part .product-img{width:530px;height:450px;background-image:url(/assets/e7c9813af97563f3de874ec0dc96925f.png);background-size:530px 450px;background-repeat:no-repeat;margin-bottom:20px}.flex-wrapper .content{max-width:480px;width:100%;text-align:center;color:#333;margin:0 auto}.flex-wrapper .content .logo-img{background:url(/assets/9128645e58d76dc73c544785aa0d9c7d.svg) no-repeat;width:124px;height:28px;margin:0 auto;background-size:124px 28px}.flex-wrapper .content .title{font-size:23px;margin-top:16px;margin-bottom:30px}@media screen and (max-width: 1120px){.flex-wrapper .left-part{display:none}.flex-wrapper .right-part{margin-left:0}.flex-wrapper .content-wrapper{margin:0 auto}}@media screen and (max-width: 660px){.flex-wrapper .content-wrapper{min-width:300px;padding:0 20px}}@media screen and (min-height: 860px){.flex-wrapper .left-part .product-img{margin-bottom:120px}}@media screen and (min-height: 1080px){.flex-wrapper .left-part .product-img{margin-bottom:180px}}:root{--maxWidth: 1440px}html,body{font-family:Arial,"PingFang SC","Microsoft YaHei","\5FAE\8F6F\96C5\9ED1",Georgia,tahoma,simsun,"\5B8B\4F53" !important;color:#333}html input,body input{font-family:Arial,"PingFang SC","Microsoft YaHei","\5FAE\8F6F\96C5\9ED1",Georgia,tahoma,simsun,"\5B8B\4F53" !important}.pure-button-primary{background-color:#337bf7;transition:all .2s ease}.pure-button-primary[disabled]{background-color:#cfcfcf;opacity:1}.pure-button-primary:hover{background-color:#176cff;background-image:none}.pure-button{border-radius:2px}.content{max-width:var(--maxWidth);margin:0 auto}input:focus{outline:none;border-color:#337bf7}input:hover{border-color:#999}.captcha-zone .geetest_holder.geetest_wind .geetest_radar_btn{border-color:#e5e5e5;border-radius:0}.close-link{font-size:0;color:#337bf7;text-align:right;cursor:pointer;position:relative}.close-link span{display:inline-block;width:30px;height:30px;position:absolute;top:0;right:20px;background:url(/assets/df6dd808a9557777f9b553d2a5cbee4d.svg) no-repeat}.close-link span:hover{background-image:url(/assets/e5d6f9da1c123f0b88aa153fafba3367.svg)}.page-title{font-size:23px;color:#333;margin:70px 0 50px 0;display:flex;align-items:center;justify-content:center}.frame-container .page-title{margin-top:20px}.check-label input{margin-right:6px}.check-label .checkbox{display:inline-block;width:14px;height:14px;border:1px solid #d9d9d9;border-radius:3px;position:relative;top:2px;margin-right:6px;cursor:pointer}.check-label .checked::before{content:"";width:14px;height:14px;display:inline-block;background:url(/assets/231b4846a9ac5c78c747bb2b15a6eda7.svg) no-repeat;position:absolute;top:0;left:0}.page-container{max-width:600px;padding:30px;box-sizing:border-box;margin:0 auto}.page-container .content{max-width:420px}.tip-txt{font-size:12px;color:#333;margin-bottom:10px}.link{color:#db0000;cursor:pointer;text-decoration:underline}::-webkit-input-placeholder{color:#999;font-size:12px}::-moz-placeholder{color:#999;font-size:12px}.react-pop-tooltip{box-shadow:0 2px 10px 0 rgba(0,0,0,.15);font-size:12px;line-height:20px;color:#666}.react-pop-tooltip .ul-tip{margin:0;padding:18px 10px;list-style-position:inside}.react-pop-tooltip .ul-tip.no-li-style{list-style:none}.react-pop-tooltip .ul-tip li{margin-bottom:11px}.react-pop-tooltip .ul-tip li:last-child{margin-bottom:0}.react-pop-tooltip .ul-tip li .success{display:inline-block;width:14px;height:14px;margin-right:10px;position:relative;top:2px;background-image:url(/assets/bb1543d201ffabdbee66c9ff24b53375.svg)}.react-pop-tooltip .ul-tip li .failure{display:inline-block;width:14px;height:14px;position:relative;top:2px;margin-right:10px;background-image:url(/assets/369b762c6ded5634ffd75284ec5c663c.svg)}.react-pop-tooltip .type-tip{width:144px;position:relative;padding:8px 0 8px 22px}.react-pop-tooltip .type-tip::before{content:"";display:inline-block;width:14px;height:14px;background:url(/assets/c950af4c9a412c99c15e0b8d06614d41.svg) no-repeat;position:absolute;top:11px;left:0}.x-service .pure-button-primary{background-color:#337bf7}.x-service .pure-button-primary:hover{background-color:#176cff;background-image:none}.x-service input:focus{outline:none;border-color:#337bf7}.x-service .close-link{color:#337bf7}.x-service .page-title{color:#337bf7}.x-service .link{color:#337bf7}.logo div{margin:0 auto}.logo .logo-img{background:url(/assets/9128645e58d76dc73c544785aa0d9c7d.svg) no-repeat;width:124px;height:28px;background-size:124px 28px}.logo .logo-txt{font-size:16px;width:198px;color:#999;margin-top:9px;margin-bottom:28px;text-align:center;letter-spacing:6px}input::-webkit-input-placeholder{font-size:14px;color:#aaa}input:-moz-placeholder{font-size:14px;color:#aaa}input::-ms-input-placeholder{font-size:14px;color:#aaa}input::-ms-clear{width:0;height:0}input::-ms-reveal,input::-o-clear{width:0;height:0}.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;background:rgba(0,0,0,0);-o-text-overflow:ellipsis;height:auto}input::-webkit-contacts-auto-fill-button{visibility:hidden;display:none !important;pointer-events:none;position:absolute;right:0}input:focus::-webkit-contacts-auto-fill-button{opacity:0}.register-container{font-size:14px}.register-container .flex-wrapper{min-height:810px}.register-container .flex-wrapper .right-part{height:auto}.register-container .content{height:750px}.register-container .left-part.company .product-desc{width:342px;height:80px;background-image:url(/assets/3f67e4c6829aceeae5f13fa628421a82.png);background-size:342px 80px}.register-container .left-part.company .product-img{background-image:url(/assets/6c073db38188cf97d83ba0ba74607c43.png)}.register-container .form.personal{padding-top:20px}.register-container .form.company .name-field{padding-right:10px;box-sizing:border-box}.register-container .form.company .phone-field{padding-left:10px;box-sizing:border-box}.register-container .form.company .tip{color:#666;text-align:left;margin-bottom:30px}.register-container .agreement-clause{color:#666;margin-top:-10px;display:flex;align-items:center;justify-content:center}.register-container .agreement-clause .checkbox{display:inline-block;width:12px;height:12px;border:1px solid #ccc;box-sizing:content-box;margin-right:10px;cursor:pointer}.register-container .agreement-clause .checkbox:hover{border:1px solid #666}.register-container .agreement-clause .checkbox-ckecked{border:none;width:14px;height:14px;background:url(/assets/231b4846a9ac5c78c747bb2b15a6eda7.svg) no-repeat}.register-container .agreement-clause .checkbox-ckecked:hover{border:none}.register-container .agreement-clause a{color:#666;text-decoration:none;font-size:14px}.register-container .agreement-clause a:hover{text-decoration:underline}.register-container .to-login{color:#666;margin-top:30px;display:flex;justify-content:center}.register-container .to-login a{color:#db0000;text-decoration:none}.register-container .to-login a:hover{text-decoration:underline}.register-container .to-login .signType{position:relative;cursor:pointer}.register-container .to-login .signType::before{content:"";position:absolute;width:18px;height:18px;left:-27px;top:0}.register-container .to-login .signType:hover{color:#db0000;text-decoration:underline}.register-container .to-login .spaceLine{margin:0 30px;width:1px;height:18px;opacity:1;background:#e5e5e5}.register-container .desc{margin-bottom:10px;color:#666;font-size:13px}.register-container .products{font-size:12px;margin-bottom:30px}.register-container .products .check-label{margin-right:30px}.register-container .check-label .checkbox{top:3px}.register-container .website-filed{margin-top:-10px}.register-container .text-left{text-align:left}.register-container .desc{margin-bottom:10px;color:#666;font-size:13px}.register-container .products{font-size:12px;margin-bottom:30px}.register-container .products .check-label{margin-right:30px}.register-container .check-label .checkbox{top:3px}.register-container .website-filed{margin-top:-10px}.register-container .text-left{text-align:left}.register-container .type-controller{margin-bottom:30px;border-bottom:1px solid #d1d1d1}.register-container .type-controller>div{padding:15px 0;cursor:pointer}.register-container .type-controller>div.active{color:#1a1a1a;position:relative}.register-container .type-controller>div.active::before{content:"";display:block;width:100%;height:3px;background:#db0000;position:absolute;bottom:-2px;left:0}.register-container .type-controller>div:hover{color:#db0000}@keyframes move{0%{top:220px;opacity:0}100%{top:196px;opacity:1}}.select .rc-select{width:100%}.select .rc-select-single:not(.rc-select-customize-input) .rc-select-selector .rc-select-selection-search-input{cursor:pointer}.select .rc-select-selection-item{line-height:43px;padding-left:13px}.select .rc-select-show-arrow .rc-select-arrow{top:16px;right:20px}.select .rc-select-single:not(.rc-select-customize-input) .rc-select-selector{border-radius:3px}.select .rc-select-item:last-child{border-bottom:none}.rc-select-item-option .rc-select-item-option-state{display:none}.captcha-control{position:relative}.captcha-control .resend-captcha{position:absolute;right:10px;top:14px;font-size:12px;color:#337bf7;cursor:pointer}.captcha-control .resend-captcha:hover{color:#db0000;text-decoration:underline}.captcha-control .error-tip{position:static;line-height:12px}.hide-box{display:none}.company-code-toast-mask{display:flex;align-items:center;justify-content:center;position:fixed;width:100%;height:100%;left:0;top:0;right:0;bottom:0;background-color:rgba(0,0,0,.45)}.company-code_con{position:relative;width:400px;border-radius:10px;box-shadow:0px 4px 10px 0px rgba(0,0,0,.1),0px 1px 2px 0px rgba(0,0,0,.05);background-color:#fff}.company-code-close{display:inline-block;width:24px;height:24px;position:absolute;top:12px;right:24px;background:url(/assets/df6dd808a9557777f9b553d2a5cbee4d.svg) no-repeat;cursor:pointer}.company-code-close:hover{background-image:url(/assets/e5d6f9da1c123f0b88aa153fafba3367.svg)}.company-code-header{border-bottom:1px solid #e9e9eb;margin:0 24px;padding:18px 0}.company-code-body{padding:19px 24px 21px}.company-code-title{margin:0;font-size:14px;color:#1a1a1a}.company-code-desc{margin-top:0;font-size:14px;line-height:18px;margin-bottom:14px}
