html , body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei","微软雅黑";
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.loginBackground {
    width: 100%;
    height: 100%;
    background: url(/images/login_bg.png) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wxLoginQrCode {
    width: 380px;
    height: 538px;
    background: #ffffff;
    padding-top: 75px;
}
.doubleTab {
    width: 100%;
    height: 56px;
    display: flex;
    margin-bottom: 42px;
}
.firstTab, .secondTab {
    color: #101010;
    width: 200px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.disableTab {
    width: 180px;
    color: #BBBBBB;
    cursor: pointer;
    border-bottom: 1px solid #ebeced;
    position: relative;
}
.firstTab.disableTab::after {
    content: '';
    position: absolute;
    right: -21px;
    top: -21px;
    width: 65px;
    height: 65px;
    border-right: 1px solid #ebeced;
    transform: rotate(30deg);
}
.secondTab.disableTab::before {
    content: '';
    position: absolute;
    left: -21px;
    top: -21px;
    width: 65px;
    height: 65px;
    border-left: 1px solid #ebeced;
    transform: rotate(-30deg);
}
.loginTitle {
    width: 228px;
    height: 34px;
    overflow: unset;
    white-space: nowrap;
    margin: 0 auto 0;
    line-height: 34px;
    font-size: 22px;
    color: #333333;
    text-align: center;
}
.iconWrapper {
    width: 34px;
    height: 34px;
    margin-right: 10px;
    float: left;
}
.iconWrapper > img {
    width: 34px;
    height: 34px;
    float: left;
}
.loginWay1 {
    position: relative;
}
.qrCodeWrapper {
    text-align: center;
}
.statusText {
    width: 100%;
    height: 18px;
    line-height: 18px;
    font-size: 18px;
    color: #666666;
    text-align: center;
    position: absolute;
    bottom: 86px;
    left: 0;
}

/* 顶部弹窗提示 */
.topPrompt {
    width: 600px;
    height: auto;
    position: fixed;
    top: 36px;
    left: 50%;
    margin-left: -300px;
    z-index: 9100;
}
.topPromptContent {
    padding: 10px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.noDisplay {
    display: none;
}
.loginWay2 {
    padding-top: 45px;
    position: relative;
}
.loginLine1 {
    width: 230px;
    margin: 0 auto;
    position: relative;
}
.closeIcon {
    position: absolute;
    top: 11px;
    right: 10px;
    width: 16px;
    height: 16px;
    background: url(../images/icon_close.png);
    background-size: contain;
    cursor: pointer;
}
.captchaLine {
    width: 230px;
    height: 36px;
    margin: 20px auto;
    background: #f7f9fa;
    border: 1px solid #e4e7eb;
    display: flex;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.captchaLine:hover {
    color: #2A75ED;
    font-weight: bold;
}
.captchaSuccess {
    border-color: #52ccba;
    background: #d2f4ef;
}
.sliderArrow {
    width: 36px;
    line-height: 32px;
    text-align: center;
    font-family: cursive;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.captchaSuccess .sliderArrow {
    color: #ffffff;
    background: #52ccba;
}
.sliderText {
    font-size: 14px;
    line-height: 36px;
    padding-left: 10px;
}
.captchaBox {
    position: absolute;
    top: 158px;
    left: 10px;
    z-index: 200;
    padding: 20px 20px 0;
    width: 360px;
    height: 180px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(115, 115, 115, 0.2);
}
.captchaBoxHeader {
    display: flex;
    justify-content: space-between;
    line-height: 36px;
    margin-bottom: 10px;
}
.captchaBoxTitle {
    color: #333333;
    font-size: 16px;
    margin: 0;
}
.captchaBoxClose {
    width: 16px;
    height: 16px;
    background: url(../images/icon_close.png);
    background-size: contain;
    cursor: pointer;
}
.captchaBoxContent {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.captchaBoxInput {
    height: 40px;
    width: 160px;
    padding: 0 10px;
    border: 1px solid #ebeced;
    font-size: 16px;
    font-family: 'Monaco';
}
.captchaBoxInput:focus, .captchaBoxInput:hover {
    outline: 1px solid #44A8E8;
}
.captchaBoxPic {
    width: 150px;
    height: 40px;
    border: 1px solid #ebeced;
    cursor: pointer;
}
.captchaBoxFooter {
    display: flex;
    justify-content: flex-end;
}
.captchaBoxConfirm {
    width: 104px;
    height: 36px;
}
.loginLine2 {
    width: 230px;
    margin: 0 auto;
    position: relative;
}
.loginInput1, .loginInput2 {
    line-height: 36px;
    width: 100%;
    border: 1px solid #ebeced;
    font-size: 14px;
    font-family: 'Monaco';
}
.loginInput1:focus, .loginInput2:focus, .loginInput1:hover, .loginInput2:hover {
    outline: 1px solid #44A8E8;
}
.loginInput1 {
    padding: 0 30px 0 10px;
}
.loginInput2 {
    padding: 0 80px 0 10px;
}
.errorInput {
    outline: 1px solid #fd5722;
}
.disableBtn, .disableBtn:hover {
    color: #BBBBBB;
    cursor: not-allowed;
}
.footerBtn {
    display: block;
    width: 230px;
    height: 36px;
    margin: 30px auto 0;
}
.xiaoeBtn {
    text-align: center;
    line-height: 36px;
    background: #44A8E8;
    color: #ffffff;
    font-size: 14px;
    border: none;
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}
.xiaoeBtn:hover {
    font-weight: bold;
    background: #2A75ED;
}
.xiaoeBtn:active {
    transform: translate(1px,1px);
}
.errorText {
    width: 230px;
    margin: 10px auto 0;
    color: #fd5722;
    font-size: 12px;
    line-height: 20px;
}
/* loading动画 */
.pageLoading {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    background: hsla(0, 0%, 100%, .8);
    text-align: center;
    overflow: hidden;
}
.loadingContent {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
}
.loadingText {
    text-align: center;
    color: #44A8E8;
    font-size: 16px;
}
.loadingCircular {
    width: 56px;
    height: 56px;
    -webkit-animation: loading-rotate 2s linear infinite;
    animation: loading-rotate 2s linear infinite;
}
.loadingPath {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 3;
    stroke: #44A8E8;
    stroke-linecap: round;
    -webkit-animation: loading-dash 1.5s ease-in-out infinite;
    animation: loading-dash 1.5s ease-in-out infinite;
}

@keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px;
    }
}
@-webkit-keyframes loading-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40px;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120px;
    }
}
@keyframes loading-rotate {
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@-webkit-keyframes loading-rotate {
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}