@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

/* 按钮样式 */
.z-btn {
  display: block;
  width: 240px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  background: #39A0F5;
  border-radius: 4px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.z-btn.loading span {
  display: inline-block;
  padding-left: 34px;
  background: url(../image/Spinner.gif) no-repeat left center;
  background-size: 30px 30px;
}

.z-btn:hover {
  background: #2391EC;
}

.z-btn.loading {
  opacity: 0.4;
  background: #39A0F5;
}

/*.z-form-group {
    position: relative;
    margin-bottom: 30px;

    label, .label {
        float: left;
        font-size: 16px;
        color: #444B57;
        width: 84px;
        height: 40px;
        line-height: 40px;
    }

    input {
        display: block;
        box-sizing: border-box;
        border: 1px solid #EEEEEE;
        box-shadow: inset 0 1px 2px 0 rgba(0,0,0,0.10);
        border-radius: 4px;
        outline: none;
        appearance: none;
        -moz-appearance: none;
        -ms-progress-appearance: none;
        -webkit-appearance: none;
        width: 400px;
        height: 40px;
        padding-left: 13px;
        margin-left: 84px;
        font-size: 14px;
        color: rgba(68,75,87);
        transition: border-color ease-in-out .15s;
        -webkit-transition: border-color ease-in-out .15s;
        -moz-transition: border-color ease-in-out .15s;

        &:focus {
            border: 2px solid #39A0F5;
            padding-left: 12px;
        }

        &.error {
            border: 2px solid #F25643;
            padding-left: 12px;
        }
    }

    .error-tip {
        padding-left: 114px;
        background-position: 84px center;
    }

    .select {
        position: relative;
        width: 400px;
        height: 40px;
        line-height: 38px;
        margin-left: 84px;
        font-size: 14px;
        color: rgba(68,75,87,.7);
        border: 1px solid #EEEEEE;
        box-shadow: inset 0 1px 2px 0 rgba(0,0,0,0.10);
        border-radius: 4px;
        cursor: pointer;
        padding: 0 24px 0 13px;
        z-index: 99;
        transition: border-color ease-in-out .15s;
        -webkit-transition: border-color ease-in-out .15s;
        -moz-transition: border-color ease-in-out .15s;
    }

    .select.error {
        border: 2px solid #F25643;
        padding: 0 23px 0 12px;
        line-height: 36px;
    }

    .select .s-content {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .select::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        margin-top: -4px;
        width: 12px;
        height: 8px;
        background: url(../image/select_arrow.png) no-repeat center;
        background-size: contain;
    }

    .z-select-group {
        margin-left: 84px;
        height: 40px;
        margin-bottom: 10px;
    }

    input::-webkit-input-placeholder {
    color: rgba(68,75,87);
}

    textarea {
    resize: none;
    width: 400px;
    height: 200px;
    border: 1px solid #EEEEEE;
    box-shadow: inset 0 1px 2px 0 rgba(0,0,0,0.10);
    border-radius: 4px;
    padding: 13px;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -ms-progress-appearance: none;
    -webkit-appearance: none;
    display: block;
    margin-left: 84px;
    font-size: 14px;
    color: rgba(68,75,87);
    transition: border-color ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s;
}
}*/
/* 弹窗内input */
.mask-panel-content input:focus {
  border: 2px solid #39A0F5 !important;
  padding-left: 12px;
}
.mask-panel-content input.error {
  border: 2px solid #F25643;
  padding-left: 12px;
}

.error-tip {
  font-size: 14px;
  color: #F25643;
  line-height: 20px;
  margin-top: 10px;
  padding-left: 30px;
  background: url(../image/icon_error_tip.png) no-repeat left center;
  background-size: 20px 20px;
}

.select .select-drop {
  display: none;
  z-index: 99;
  position: absolute;
  top: 40px;
  left: 0;
  width: 400px;
  height: 200px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  overflow-y: auto;
}

.select .select-drop::-webkit-scrollbar-thumb {
  background: #39A0F5;
  border-radius: 8px;
}

.select .select-drop::-webkit-scrollbar {
  background: transparent;
  width: 6px;
}

.select .select-drop .select-option {
  font-size: 14px;
  color: #7A7E89;
  height: 30px;
  line-height: 30px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  padding-left: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select .select-drop .select-option:hover {
  background: #F2F9FE;
  color: #39A0F5;
}

.z-select-group .select {
  float: left;
  width: 120px;
  margin-left: 0;
}

.z-select-group .select-drop {
  width: 120px;
}

.z-select-group .select:last-child {
  width: 140px;
}

.z-select-group .select:last-child .select-drop {
  width: 140px;
}

.z-select-group .select:not(:last-child) {
  margin-right: 10px;
}

.z-form-group textarea:focus {
  border: 2px solid #39A0F5 !important;
  padding: 12px;
}

.z-form-group textarea.error {
  border: 2px solid #F25643;
  padding: 12px;
}

body {
  font-size: 14px;
  overflow: hidden;
  /* 加载背景图 */
  background: url(../image/logo_bg.png);
  /* 背景图垂直、水平均居中 */
  background-position: center center;
  /* 背景图不平铺 */
  background-repeat: no-repeat;
  /* 当内容高度大于图片高度时，背景图像的位置相对于viewport固定 */
  background-attachment: fixed;
  /* 让背景图基于容器大小伸缩 */
  background-size: cover;
  /* 设置背景颜色，背景图加载过程中会显示背景色 */
  background-color: #464646;
}

.login-wrap {
  position: absolute;
  left: 76%;
  top: 50%;
  margin: -300px 0 0 -288px;
  z-index: 1;
  width: 472px;
  height: 542px;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 5px 8px 11px 0px rgba(0, 0, 0, 0.17);
}
.login-wrap .logo-tag {
  position: absolute;
  width: 118px;
  height: 40px;
  background: url(../image/logo_d.png) no-repeat center;
  background-size: contain;
  left: 40px;
  top: 40px;
}

.logo {
  width: 140px;
  height: 70px;
  left: 80px;
  top: 40px;
  margin: 0 auto 12px;
  background: url(../image/logo_d.png) no-repeat center;
  background-size: contain;
  position: absolute;
}

.form-wrap {
  margin: 0 auto;
  padding: 60px;
}
.form-wrap .login-title {
  width: 120px;
  margin: 0 auto;
  height: 28px;
  font-size: 20px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #222222;
  line-height: 28px;
}
.form-wrap .login-title-line {
  margin: 0 auto;
  width: 32px;
  height: 4px;
  background: #187FFF;
  margin-top: 10px;
}
.form-wrap .login-sub-title {
  margin: 0 -100px;
  font-family: PingFangSC-Light;
  font-size: 20px;
  color: #485C77;
  text-align: center;
  margin: 0 -100px;
}
.form-wrap .z-btn {
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  margin-top: 50px;
}
.form-wrap .form:nth-child(1) .z-btn {
  margin-bottom: 40px;
}
.form-wrap .btn-smscode {
  right: 0;
  bottom: 7px;
  position: absolute;
  width: 100px;
  height: 30px;
  line-height: 30px;
  background: #B5C3D7;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.form-wrap .btn-smscode.active {
  background: #39A0F5;
}

.forms {
  /* width: 1120px; */
  position: relative;
  margin-top: 20px;
}

.forms > .form {
  display: none;
}

.forms > .form.active {
  display: block;
}

.forms.animate {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.forms.form-1 {
  left: 0;
}

.forms.form-2 {
  left: -280px;
}

.forms.form-3 {
  left: -560px;
}

.forms.form-4 {
  left: -840px;
}

.forms .form:last-child {
  /* margin-left: 840px; */
}

.login-form-group {
  position: relative;
  margin-bottom: 30px;
}

.form:nth-child(1) .login-form-group {
  margin-bottom: 20px;
}

.login-form-group .label {
  opacity: 0.5;
  font-family: PingFangSC-Light;
  font-size: 12px;
  color: #6482AB;
  line-height: 1;
  margin-bottom: 8px;
}

.error .label {
  color: #F4553C;
  opacity: 0.8;
}

.form:nth-child(1) .login-form-group .label {
  margin-bottom: 10px;
}

.login-form-group input {
  display: block;
  width: 100%;
  font-family: PingFangSC-Light;
  font-size: 18px;
  color: #6482AB;
  border: 0;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(100, 130, 171, 0.3);
  transition: border-color ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s;
}

.error input {
  color: #F4553C;
  border-bottom-color: #F4553C;
}

.form:nth-child(1) .login-form-group input {
  padding-bottom: 10px;
}

.login-form-group input:focus {
  border-bottom-color: #6482AB !important;
}

.login-form-group img {
  position: absolute;
  width: 60px;
  height: 30px;
  right: 0;
  bottom: 6px;
  background: #eee;
}

.login-form-group .radio {
  font-size: 14px;
  color: rgba(100, 130, 171, 0.5);
  height: 16px;
  line-height: 16px;
  padding-left: 26px;
  background: url(../image/checkbox_off.png) no-repeat left center;
  background-size: 16px 16px;
}

.login-form-group .radio.checked {
  background-image: url(../image/checkbox_on.png);
}

.login-form-group .link {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #39A0F5;
  height: 16px;
  line-height: 16px;
}

.form .desc {
  font-family: PingFangSC-Light;
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}

.form .desc span {
  color: #39A0F5;
}

.code-btn {
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 80px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
  border: 1px solid rgb(57, 160, 245);
  font-size: 12px;
  color: rgb(57, 160, 245);
  line-height: 30px;
  text-align: center;
}

#loginUserForm input.submit {
  margin-top: 20px;
  border: 0 none;
}

#loginForm input.submit {
  margin-top: 20px;
  border: 0 none;
}
#loginForm .sms-sent {
  font-size: 12px;
  color: #FF4A59;
  visibility: hidden;
  position: relative;
  top: -12px;
}
#loginForm .sms-sent.send {
  visibility: visible;
}

.login-tab {
  margin-top: 10px;
  text-align: center;
}

.login-tab > a {
  color: #7F7F7F;
  margin: 0 10px;
  text-decoration: none;
  cursor: pointer;
}

.login-tab > a.active {
  color: #02A7F0;
}/*# sourceMappingURL=login.css.map */