@charset "utf-8";
img, video {
    max-width: 100%;
    vertical-align: middle;
}
.login-header {
    padding-right: 50px;
    transition: all 0.36s;
    background: #fff;
    line-height: 80px;
    border-bottom: 2px solid #E9F0F5;
}
.he_hd_close {
    display: none;
    width: 20px;
    height: 20px;
}
.he_hd_lo {
    width: 158px;
}

.he_hd_lan {
    position: relative;
}
.he_hd_te {
    padding-left: 10px;
    color: rgb(0, 104, 183);
    font-size: 16px;
}

.he_hd_lo a {
    width: 100%;
    display: inline-block;
}
.he_hd_lxa {
    position: absolute;
    top: 80px;
    left: 50%;
    font-size: 16px;
    width: 120px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    display: none;
    transform: translateX(-50%);
}
.he_hd_lj a:hover,
.he_hd_lj span:hover {
    color: rgb(0, 104, 183);
}

.he_hd_lj {
    margin: 5px 0;
}

.he_hd_lj a {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.36s;
    display: block;
}

@media screen and (max-width: 1440px) {
    .he_hd_lo {
        width: 136px;
        line-height: 70px;
    }
}
@media screen and (max-width: 1200px) {
    .login-header {
        padding: 0 20px;
        line-height: 64px;
    }
    .he_hd_lxa {
        top: 64px;
    }
    .he_hd_close {
        display: block;
    }
    .he_hd_lo {
        width: 136px;
    }
}
/* 弹框样式 */
.common-dialog {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.26);
    z-index: 999;
    display: none;
    color: #000;
}

.common-dialog .dialog-box {
    width: 450px;
    max-width: calc(100% - 20px);
    background: #fff;
    border-radius: 10px;
    padding: 25px 35px 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}
.common-dialog .dialog-title {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-align: center;
}
.common-dialog .dialog-content {
   text-align: center;
   min-height: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
}
.common-dialog .dialog-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}
.common-dialog .dialog-footer .dialog-btn{
    min-width: 90px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #cfd2da;
    color: #0068b7;
    cursor: pointer;
}
.common-dialog .dialog-footer .dialog-btn.confirm {
    color: #fff;
    background: #0068b7;
    border: none;
}