.main {
  text-align: center;
}
.kd-modal-main-login {
  padding: 66px 75px;
}
/* 弹窗 */
.react-kd-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  user-select: none;
}
.react-kd-modal .react-kd-modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.react-kd-modal .react-kd-modal-body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid 1px transparent;
  border-radius: 10px;
  background-color: #fff;
}
/* 公共 */
/* 设置滚动条的样式 */
::-webkit-scrollbar {
  width: 8px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 0, 0, 0.4);
}
ul,
li,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
button {
  outline: none;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
button:hover {
  opacity: 0.7;
}
.input {
  box-sizing: border-box;
  width: 330px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  background: #f7f7f7;
  transition: all 0.3s;
}
.input:focus {
  border-color: #317ee7;
  background: #fff;
}
.item-content {
  position: relative;
  display: inline-block;
}
.item-content .icon {
  position: absolute;
  right: 15px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-top: solid 1px #878787;
  border-right: solid 1px #878787;
  transform: rotate(135deg);
}
.item-content .drowpdown-box {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 1px 5px gray;
  transition: all 0.3s;
  opacity: 0;
  font-size: 15px;
  color: #888;
}
.item-content .drowpdown-box.drowpdown-visible {
  opacity: 1;
}
.item-content .drowpdown-box .input-search {
  box-sizing: border-box;
  display: block;
  width: 95%;
  height: 36px;
  padding: 0 15px;
  border: 1px solid #d7d7d7;
  margin: 5px auto;
  line-height: 36px;
  outline: none;
}
.item-content .drowpdown-box .drowpdown-list {
  max-height: 300px;
  overflow-y: auto;
}
.item-content .drowpdown-box .drowpdown-item {
  height: 36px;
  padding: 0 10px;
  line-height: 36px;
  transition: all 0.3s;
  cursor: pointer;
}
.item-content .drowpdown-box .drowpdown-item:hover {
  color: #317ee7;
  font-weight: bold;
}
.blue {
  color: #317ee7;
}
.pointer {
  cursor: pointer;
}
.code-input-box {
  position: relative;
}
.code-input-box .btn-code {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translatey(-50%);
  font-size: 15px;
  color: #317ee7;
  cursor: pointer;
}
.code-input-box .btn-code:hover {
  opacity: 0.7;
}
/* 登录弹窗 */
.login-modal-body {
  padding: 75px;
  width: 480px;
  box-sizing: border-box;
}
.login-modal-body .tabs {
  position: relative;
  height: 28px;
  margin-bottom: 36px;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
}
.login-modal-body .tabs .tab {
  display: inline-block;
  width: 150px;
  text-align: center;
  padding-bottom: 5px;
  cursor: pointer;
}
.login-modal-body .tabs .tab:hover {
  opacity: 0.7;
}
.login-modal-body .tabs .tab.tab-1 {
  margin-right: 20px;
  letter-spacing: 1px;
}
.login-modal-body .tabs .border-bottom {
  position: absolute;
  width: 150px;
  height: 4px;
  background: #317ee7;
  border-radius: 2px;
  left: 0;
  bottom: -5px;
  transition: left 0.3s;
}
.login-modal-body .login-form .mobile-input-box {
  position: relative;
  margin-bottom: 38px;
}
.login-modal-body .login-form .btn-box {
  height: 50px;
}
.login-modal-body .login-form .btn-box .btn-forget,
.login-modal-body .login-form .btn-box .btn-register {
  font-size: 14px;
  margin-top: 14px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #317ee7;
}
.login-modal-body .login-form .btn-box .btn-forget:hover,
.login-modal-body .login-form .btn-box .btn-register:hover {
  opacity: 0.7;
}
.login-modal-body .login-form .btn-box .btn-forget {
  float: left;
}
.login-modal-body .login-form .btn-box .btn-register {
  float: right;
}
.login-modal-body .login-form .btn-login-box {
  margin-top: 30px;
}
.login-modal-body .login-form .btn-login-box .error-text {
  min-height: 36px;
  line-height: 22px;
  color: red;
  font-size: 15px;
}
.login-modal-body .login-form .btn-login-box .btn-login {
  width: 330px;
  height: 48px;
  border-radius: 4px;
  border: solid 1px #ff7f02;
  background: #ff7f02;
  font-size: 20px;
  color: #fff;
}
.login-modal-body .login-form .img-code {
  position: absolute;
  right: -1px;
  top: 1px;
  height: 42px;
}
/* 注册弹窗 */
.register-modal-body {
  padding: 10px 20px;
}
.register-modal-body .header .link-back {
  cursor: pointer;
}
.register-modal-body .header .link-login {
  float: right;
  font-size: 14px;
  color: #317ee7;
  cursor: pointer;
}
.register-modal-body .kd100-icon {
  display: block;
  margin: 0 auto;
}
.register-modal-body .h3-title {
  text-align: center;
  font-size: 28px;
}
.register-modal-body .register-form {
  padding: 0 55px;
  font-size: 16px;
}
.register-modal-body .register-form > li {
  margin-bottom: 18px;
  box-sizing: border-box;
}
.register-modal-body .register-form .btn-getcode {
  font-size: 16px;
  color: #317ee7;
  cursor: pointer;
}
.register-modal-body .register-form .btn-register {
  height: 48px;
  width: 330px;
  background-color: #ff7f02;
  border-color: #ff7f02;
  font-size: 20px;
  color: #fff;
}
.register-modal-body .register-form .register-form-footer {
  font-size: 14px;
  color: #888880;
}
.register-modal-body .register-form .register-form-footer .checkbox {
  vertical-align: middle;
  position: relative;
}
.register-modal-body .register-form .register-form-footer .checkbox .tooltip {
  position: absolute;
  top: -20px;
}
.register-modal-body .register-form .register-form-footer .checkbox .checkbox-inner {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #ffffff;
  border: 1px solid #888888;
  cursor: pointer;
  transition: all 0.3s;
}
.register-modal-body .register-form .register-form-footer .checkbox .checkbox-inner.checked {
  background: #317ee7;
  border-color: #317ee7;
}
.register-modal-body .register-form .register-form-footer .checkbox .checkbox-inner.checked::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
  margin: 2px;
  transform: rotate(-45deg);
}
/* 完善信息弹窗 */
.info-modal-body {
  width: 550px;
  text-align: left;
}
.info-modal-body .header {
  text-align: center;
  margin: 40px 0 30px 0;
}
.info-modal-body .header .p1 {
  height: 28px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
}
.info-modal-body .header .p2 {
  height: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
}
.info-modal-body .info-form {
  padding-left: 60px;
  text-align: left;
}
.info-modal-body .info-form .form-item {
  margin-bottom: 20px;
}
.info-modal-body .info-form .form-item .form-label {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
}
.info-modal-body .info-form .form-item .item-content {
  display: inline-block;
}
.info-modal-body .btn-save {
  width: 330px;
  height: 48px;
  border-color: #ff7f02;
  border-radius: 4px;
  margin-bottom: 56px;
  margin-left: 144px;
  background: #ff7f02;
  font-size: 20px;
  line-height: 48px;
  color: #fff;
}
.info-modal-body .err-text {
  width: 330px;
  margin-left: 144px;
  color: red;
  font-size: 16px;
  margin-bottom: 20px;
}
/* 地址组件 */
.division-wrapper {
  position: relative;
  z-index: 1;
}
.division-wrapper .mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.division-wrapper .division-box {
  position: absolute;
  left: 0;
  top: 120%;
  width: 440px;
}
.division-wrapper .tabs {
  border: 1px solid #c5c5c5;
  background-color: #fff;
  color: #000;
}
.division-wrapper .tabs .tab {
  box-sizing: border-box;
  display: inline-block;
  width: 25%;
  height: 28px;
  line-height: 28px;
  background-color: #f4f4f4;
  font-size: 0;
  text-align: center;
  cursor: pointer;
}
.division-wrapper .tabs .tab  + .tab {
  border-left: 1px solid #c5c5c5;
}
.division-wrapper .tabs .tab.selected {
  color: #39f;
  background-color: #fff;
  cursor: default;
}
.division-wrapper .tabs .tab span {
  font-size: 12px;
}
.division-wrapper .item-list {
  background-color: #fff;
  padding: 8px 10px;
  border: 1px solid #c5c5c5;
  border-top: 0;
}
.division-wrapper .item-list .item {
  display: inline-block;
  width: 44px;
  margin: 2px 3px;
  padding: 0 3px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}
.division-wrapper .item-list .item.selected {
  background-color: #4890f0;
  color: #fff;
  cursor: default;
}
.division-wrapper .item-list .item:hover {
  color: #fff;
  background-color: #86b4f1;
}
.division-wrapper .item-list dt.item {
  margin-top: 4px;
}
.division-wrapper .item-list dt {
  vertical-align: top;
}
.division-wrapper .item-list dl {
  display: inline-block;
  width: 85%;
}
.division-wrapper .item-list .city,
.division-wrapper .item-list .district {
  width: auto;
}
.hidden {
  display: none;
}
