@charset "UTF-8";
@import "icon/pi/primeicons.css";
@import "../../common/layui/css/layui.css";
html,body{
    height: 100%;
    width: 100%;
}
body{
    background-image: url("../img/dl_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.dl-container{
    position: fixed;
    width: 400px;
    height: 400px;
    top:calc(50% - 300px);
    border-radius: 10px;
    overflow: hidden;
    right: 400px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.dl-container::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(255, 255, 255, 0.3);*/
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: -2;
}
.dl-container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(255, 255, 255, 0.4);*/
    backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
    z-index: -1;
}
.dl-header{
    height: 100px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.dl-header img{
    width: 90px;
    height: 90px;
    margin-right: 10px;
}
.dl-header text{
    display: inline-block;
    font-size: 30px;
    line-height: 55px;
}
.dl-header .dl-header-text-sub{
    font-weight: bold;
    text-align: right;
}
.dl-content{
    width: calc(100% - 40px);
    height: calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dl-content .layui-form{
    width: calc(100% - 20px);
    padding: 0 10px;
}
.dl-content .layui-input{
    padding-left: 36px;
    font-size: 15px;
}
.dl-content .layui-input:focus{
    border-color: #1e9fff!important;
    box-shadow: 0 0 0 3px rgba(30,159,255,.08)!important;
}
.dl-login-item{
    position: relative;
    margin: 10px 0 20px 0;
}
.dl-login-item button{
    width: 100%;
}
.dl-login-item i.dl-icon{
    position: absolute;
    width: 36px;
    height: 36px;
    line-height: 38px;
    text-align: center;
    top:1px;
    left: 1px;
    color: rgba(0,0,0,.45);
    font-weight: 600;
    font-size: 16px!important;
}
.verifyCodeImg{
    position: absolute;
    height: 36px;
    width: 155px;
    top:1px;
    right: 1px;
    cursor: pointer;
}
@media screen and (max-width: 1920px){
    .dl-container{
        right: 330px;
    }
}
@media screen and (max-width: 1440px){
    .dl-container{
        right: 300px;
    }
}
@media screen and (max-width: 960px) {
    .dl-container{
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 600px) {
    .dl-container{
        width: 350px;
        height: 350px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .dl-header{
        height: 80px;
        margin-top: 0;
    }
    .dl-header img{
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }
    .dl-header text{
        font-size: 25px;
    }
    .dl-content{
        margin-top: 18px;
    }
}