/* 整体布局 */
* {
    font-size: 16px;
}
.login-container {
    max-width: 1920px;
    margin: 0 auto;
    height: 100vh;
    overflow: auto;
    position: relative;
}
.login-header {
    max-width: 1330px;
    padding: 0 50px;
    height: 110px;
    line-height: 110px;
    margin: 0 auto;
}
.login-logo {
    width: 180px;
    height: 80px;
    margin: 15px 0;
    display: inline-block;
}

.download-terminal {
    display: inline-block;
    margin-top: 14px;
    margin-right: 22px;
    width: 130px;
    height: 36px;
    background: rgba(173,180,202,0.1);
    border-radius: 20px 20px 20px 20px;
    text-align: center;
    line-height: 36px;
    color: #121212;
}
.download-terminal-hide{
    display: none;
}
.download-terminal:hover {
    background: rgba(173, 180, 202, 0.05);
    color: #121212;
}
.download-terminal:active {
    background: rgba(173, 180, 202, 0.15);
    color: #121212;
}
.download-img {
    position: relative;
    top: 3px;
    display: inline-block;
    margin-right: 4px;
    width: 18px;
    height: 18px;
}

.login-content {
    position: relative;
    min-height: 680px;
}
.login-footer {
    line-height: 90px;
    color: #B1B5BE;
    width: 100%;
    text-align: center;
}
.login-bg {
    width: 100%;
    height: 100%;
}
/* 登录方式 */
.login-box {
    width: 520px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 320px;
    transform: translate(0, -50%);
    padding: 48px 40px;
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.09)
}
.login-tip-box {
    background: rgba(86, 130, 247, 0.1);
    border-radius: 5px 5px 5px 5px;
    padding: 9px 15px;
}
.login-tip-text {
    font-size: 12px;
    color: #333333;
    /*line-height: 18px;*/
}
.line-border {
    display: inline-block;
    width: 5px;
    height: 36px;
    background-color: #117AF2;
    margin-right: 15px;
}
.select-pic {
    font-size: 50px;
    color: #1571FF;
    position: absolute;
    right: 0;
    top: -7px;
}
.trangle-down {
    color: #8D95A8;
    vertical-align: middle;
}
.form-label {
    color: #85888F;
    width: 60px;
    font-size: 14px;
}
.form-label.en {
    color: #85888F;
    width: 100px;
}
.form-item {
    border-bottom: #666666 1px solid;
    padding: 10px 0;
}
.login-input {
    border: none;
    width: calc(100% - 70px);
}
.pwd-box .login-input {
    width: calc(100% - 90px);
}
.eye-pic {
    color: #BFC5D1;
    margin-left: 5px;
}
.login-input.en {
    border: none;
    width: calc(100% - 110px);
}
.pwd-box .login-input.en {
    border: none;
    width: calc(100% - 130px);
}
.login-input::-webkit-input-placeholder {
    color: #BFC5D1;
    font-size: 14px;
}
.btn-box {
    width: 426px;
    margin-top: 40px;
}
.login-btn {
    background-color: #2178FF;
    /* box-shadow: 0 3px 12px rgba(14, 102, 255, 0.3); */
    height: 44px;
    line-height: 44px;
    font-size: 16px;
}
.dd-code-login iframe {
    transform: scale(0.715);
    transform-origin: top;
}
.qrcode-pic {
    display: block;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}
.tip-modal {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 30px 40px;
    width: 20%;
    line-height: 1.5;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tip-show {
    display: block;
    transition: display ease-in-out 1s;
}
.tip-hide {
    display: none;
    transition: display ease-in-out 1s;
}
/* 扫码登录 二维码 */
.login_qrcode_content {
    margin-top: 0 !important;
}

/* 短信获取次数过多，验证码弹框 */
.verify-input {
    width: calc(100% - 120px);
    margin-right: 10px;
    border: #D7DAE0 1px solid;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    padding: 0 10px;
    vertical-align: bottom;
}
.verify-input::-webkit-input-placeholder {
    color: #BFC5D1;
}

/* 快捷登录 */
.fast-login-box {
    margin-top: 30px;
}
.avatar-border {
    width: 100px;
    height: 100px;
    border: #DADFED 1px solid;
    border-radius: 8px;
}
.avatar-border:hover {
    border: none;
    box-shadow: 0px 3px 12px rgba(14,102,255,0.3);
}
.avatar-border.visited:hover {
    border: #DADFED 1px solid;
    box-shadow: none;
}

.avatar-border .user-avatar {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(360deg, #2178FB 0%, #5C9CFF 100%);
}
.avatar-border.expired:hover {
    border: none;
    box-shadow: 0px 3px 12px rgba(198,198,198,0.3);
}

.freepwd-content {
    width: 80%;
    margin-top: 23px;
    padding: 30px 0 10px;
    position: relative;
}

.refresh-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E6E6E6;
    z-index: 10;
    border-radius: 8px;
    /* visibility: hidden; */
}
.refresh-mask:active {
    background-color: #D9D9D9;
}
.token-expired {
    font-size: 14px;
    color: #707176;
}

.agent-username.visited {
    opacity: 0.5;
}

.hover-mask {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: absolute;
    visibility: hidden;
}
.avatar-border:hover .hover-mask {
    background-color: rgba(5, 22, 74, 0.5);
    visibility: visible;
}
.avatar-border:active .hover-mask {
    background-color: rgba(5, 22, 74, 0.65);
}
.avatar-border.visited {
    opacity: 0.5;
    cursor: progress;
}
.avatar-border.visited .hover-mask {
    background-color: none;
}
.avatar-border.visited:hover .hover-mask {
    visibility: hidden;
}

.circular {
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.loader .path {
    stroke-dasharray: 50 80;
    stroke-dashoffset: 0;
    stroke-linecap: round;
}
.freepwd-loading {
    margin-top: 8px;
    visibility: hidden;
}
.freepwd-loading .loader {
    width: 20px;
    height: 20px;
    position: relative;
}

.change-login-btn {
    color: #4880FC;
    margin-top: 20px;
    padding: 4px 6px;
    border-radius: 3px;
}
.change-login-btn:hover {
    color: #3371FC;
    background-color: rgba(51, 115, 252, 0.1);
}
.change-login-btn:active {
    color: #3371FC;
    background-color: rgba(51, 115, 252, 0.2);
}
.change-login-btn.disabled,
.change-login-btn.disabled:hover,
.change-login-btn.disabled:active {
    color: #4880FC;
    background-color: #fff;
    opacity: 0.5;
    cursor: not-allowed;
}


/* layui */
.login-box .layui-tab,
.login-box .layui-tab-content
 {
    margin: 0;
    padding: 0;
}
.login-box .layui-tab-brief>.layui-tab-title .layui-this {
    color: #1571FF;
    font-weight: bold;
}
.login-box .layui-tab-title li {
    font-size: 18px;
    padding: 0;
    width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.login-box .layui-tab-brief>.layui-tab-more li.layui-this:after,
.login-box .layui-tab-brief>.layui-tab-title .layui-this:after {
    border-color: #1571FF;
}
.layui-tab-title .layui-this:after {
    height: 40px;
}
.login-box .layui-tab-title {
    border-color: transparent;
}
.layui-carousel-ind ul,
.layui-carousel-ind ul:hover {
    background-color: transparent;
}
.layui-carousel-ind li,
.layui-carousel-ind li:hover {
    width: 50px;
    height: 8px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
}
.layui-carousel-ind li.layui-this {
    background-color: rgba(0, 0, 0, 0.5);
}
.layui-btn, .layui-edge, .layui-inline, img {
    vertical-align: baseline;
}
.layui-form {
    overflow: hidden;
}
.layui-form-item {
    margin-bottom: 24px;
}
.layui-form-label {
    float: none;
    width: auto;
    text-align: left;
    padding: 0 0 10px 0;
    line-height: unset;
}
.layui-input-block {
    margin-left: 0;
}
.layui-input, .layui-select, .layui-textarea {
    height: 36px;
}
.layui-select-disabled .layui-disabled {
    background-color: #F0F2F5;
    color: #121212 !important;
}
input:disabled {
    cursor: not-allowed;
    background-color: #F0F2F5 !important;
}
.layui-form-select dl dd.layui-this {
    background-color: #fff;
    color: #2178FF;
    font-weight: bold;
}
.layui-anim-upbit {
    animation-name: none;
}
.layui-input {
    border-color: #D7DAE0;
}
.layui-input::-webkit-input-placeholder {
    color: #BFC5D1;
    font-size: 14px;
}
.layui-btn {
    background-color: #2178FF;
}
.layui-btn-primary,
.layui-btn-primary:hover {
    background-color: #fff;
    border-color: #D7DAE0;
    color: #3A424F;
}




/******************************authorize*****************************/
.authorize-container {
    position: relative;
    margin: 10% 30% 0;
}
.user-uid {
    font-size: 2em;
    font-weight: bold;
}
.left-indent {
    margin-left: 5%;
}
.left-indent-double {
    margin-left: 8%;
}
.gourl {
    color: #117AF2;
}
.oauth_item_title {
    margin-left: 5px;
}
.submit-btn,
.submit-btn:active {
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background: #117AF2;
    border: none;
    border-color: #117AF2;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 100px;
    right: 0;
}


/*********************************忘记密码*****************************/
.border-top {
    border-top: #D7DAE0 1px solid;
}
.forget-container,
.reset-container {
    width: 600px;
    margin: 0 auto;
    padding-top: 50px;
}
.forget-container *,
.reset-container * {
    font-size: 16px;
}

.forget-container .layui-btn,
.reset-container .layui-btn  {
    height: 48px;
    line-height: 48px;
}

.forget-tips {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
    background-color: #fff8d2;
    padding: 15px 38px;
}
/* 错误提示信息 */
.color-danger {
    color: #FB575D;
}

.layui-form-checkbox[lay-skin=primary] {
    padding-left: 22px;
}
.layui-form-checkbox[lay-skin=primary] i {
    width: 14px;
    height: 14px;
    line-height: 12px;
}
.layui-form-checked[lay-skin=primary] i {
    border-color:#AAAAAA !important;
    background-color: #AAAAAA;
}
.layui-checkbox-disabled, .layui-checkbox-disabled i {
    border-color: #AAAAAA;
}
.layui-checkbox-disabled[lay-skin=primary] span {
    color: #595959;
    padding-right: 24px;
}

.privacy-box .layui-form-checked[lay-skin=primary] i {
    border-color:#117AF2 !important;
    background-color: #117AF2;
}
.layui-form-checkbox[lay-skin=primary]:hover i {
    border-color:#117AF2;
}

/* 自定义提交按钮的弹出框 */
.page-dialog .layui-layer-content {
    padding: 0 40px;
}
.page-dialog .layui-layer-btn {
    margin-top: 0;
}
.change-errorTip {
    color: red;
    position: absolute;
    font-size: 12px;
}
.page-dialog .layui-form-item {
    margin-bottom: 30px;
}
.page-dialog .layui-layer-btn0 {
    border-color: #2178FF !important;
    background-color: #2178FF !important;
    color: #fff !important;
}
.change-submit-btn {
    font-size: 16px;
    height: auto;
    line-height: auto;
    box-sizing: border-box;
    padding: 3px 40px;
}
.loading-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
}
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.loading img {
    width: 40px;
    display: inline-block;
}
.smsDisabled,
.smsDisabled:hover {
    color: #aaa;
    cursor: not-allowed;
}

/* 网络准入 */
.access-container {
    width: 100%;
}
.access-content {
    position: relative;
    height: calc(100vh - 181px);
    background-color: #FAFAFA;
}
.info-content {
    background-color: #fff;
    box-shadow: 0 3px 24px rgba(8, 17, 53, 0.09);
    width: 542px;
    padding: 72px 68px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.access-title {
    font-size: 34px;
    line-height: 1.1;
    vertical-align: top;
    display: inline-block;
    width: calc(100% - 28px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.title-box {
    margin-top: 48px;
    margin-left: 39px;
}
.title-box img {
    display: inline-block;
    width: 32px;
}
.success-title {
    color: #15B41B;
    font-size: 20px;
    display: inline-block;
    line-height: 1.7;
    vertical-align: top;
    margin-left: 12px;
}
.access-footer {
    width: 100%;
    text-align: center;
    position: fixed;
    padding-bottom: 51px;
    background-color: #FAFAFA;
}
.divider {
    display: none;
}
.info-box {
    margin-left: 39px;
    margin-top: 40px;
}
.info-item {
    margin-bottom: 24px;
}
.info-item span:nth-of-type(2) {
    color: #999EA5;
}
.mb-header {
    display: none;
}

.img-box {
    margin-top: 94px;
    text-align: center;
}
.fail-img {
    display: inline-block;
    width: 61px;
}
.err-msg {
    color: #EE5656;
    text-align: center;
    line-height: 2;
    padding: 20px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 1160px) {
    .login-box {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media only screen and (max-width: 960px) {
    .access-header,
    .access-footer,
    .page-title-box {
        display: none;
    }
    .mb-header {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 4.8vw;
        line-height: 12.8vw;
    }
    .access-content {
        height: calc(100vh - 12.8vw);
        overflow: auto;
    }
    .title-box {
        margin-left: 12.8vw;
        margin-top: 17.6vw;
    }
    .title-box img {
        width: 7.47vw;
    }
    .success-title {
        margin-left: 0;
        width: calc(100% - 20vw);
        word-break: break-all;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .info-content {
        width: 86%;
        height: unset;
        padding: 0;
        background-color: #fff;
    }
    .info-box {
        margin-left: 0;
        margin-top: 0;
        padding: 10vw 10vw 10vw 13vw;
    }
    .info-item {
        margin-bottom: 6.4vw;
    }
    .info-item * {
        font-size: 4.26vw;
    }

    .img-box {
        margin-top: 24vw;
        text-align: center;
    }
    .fail-img {
        display: inline-block;
        width: 16vw;
    }
    .err-msg {
        color: #EE5656;
        padding: 5.34vw;
        margin-bottom: 20vw;
    }
}

/* 热聊扫码样式修改 */
.qr-code, .offLine {
    max-width: 300px !important;
    max-height: 220px !important;
    background-image: none !important;
}
.qr-code-c {
    height: 150px !important;
    padding: 0 !important;
}
.qr-code-img {
    width: 150px !important;
    height: 150px !important;
}
.refresh-icon {
    width: 29px !important;
    height: 34px !important;
}
.qr-code-des {
    color: #888 !important;
    padding: 0 !important;
}
.qr-code-des * {
    font-size: 13px !important;
}
.offLine-c {
    height: 220px !important;
}
.offLine-title,
.offLine-des {
    color: #888 !important;
}
.offLine-icon {
    margin-top: 30px !important;
    margin-bottom: 10px !important;
}

.pwdless-dialog .layui-layer-btn a {
    padding: 10px 16px !important;
    border-radius: 3px !important;
    background-color: #3371FC !important;
    color: #fff !important;
    border: none;
    font-size: 14px;
}

.privacy-box * {
    font-size: 14px;
}
.privacy-box {
    font-size: 12px;
    margin-top: 25px;
}
.privacy-checkbox {
    vertical-align: middle;
}
.privacy-iframe {
    border: none;
}
.privacy-dialog {
    height: 70%;
}
.privacy-dialog .layui-layer-btn {
    margin-top: 20px;
}
.privacy-dialog.layui-layer-dialog .layui-layer-content {
    height: calc(100% - 60px);
}
.input-content {
    max-height: 410px;
    overflow-y: auto;
    position: relative;
}