/*适配不同手机屏幕*/
@media screen and (min-width: 320px) and (max-width: 359px) {
    html,body {font-size: 12px !important;}
}
@media screen and (min-width: 360px) and (max-width: 399px) {
    html,body {font-size: 14px !important;}
}
@media screen and (min-width: 400px) and (max-width: 439px) {
    html,body {font-size: 16px!important;}
}
@media screen and (min-width: 440px) and (max-width: 479px) {
    html,body {font-size: 18px !important;}
}
@media screen and (min-width: 480px) and (max-width: 639px) {
    html,body {font-size: 20px !important;}
}
@media screen and (min-width: 640px) and (max-width: 750px) {
    html,body {font-size: 24px !important;}
}

/*自定义提示图标*/
.layui-layer-icomyoa1,.layui-layer-icomyoa2,.layui-layer-icomyoa3{
    background-image:url(../../../../static/images/myoa_icon.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover!important;
}
.layui-layer-icomyoa2{background-position: -40px 0!important;}
.layui-layer-icomyoa3 {background-position: -80px -1px!important;}
.layui-layer-icomyoaloading{
    background-image:url(../../../../static/images/loading.gif) !important;
    background-repeat: no-repeat !important;
    background-size: 206% auto !important;
    background-position: -16px -16px !important;
}
body{margin: 0;padding: 0;font-family: "Microsoft Yahei","微软雅黑";}
/*背景*/
.background{
    width: 100%;
    height: 13rem;
    position: absolute;
    background-image: url(../../../../static/images/background_login.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*logo图案*/
.logo{
    width: 100%;
    text-align: center;
    padding-top: 11rem;
    padding-bottom: 1rem;
}
.logo img{
    width: 5rem;
}
/*账号、密码、验证码*/
.div-eve{
    display: flex;
    display: -webkit-flex;
    width: 75%;
    height: 2.25rem;
    line-height: 2.25rem;
    margin: 0.75rem auto;
    border-bottom: 1px solid #b7b7b7;
}
.login-input{
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.5rem;
    margin-right: 1rem;
}
.input-s{
    width: 75%;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
}
input::-webkit-input-placeholder{
    color: #d4d4d4;
}
input::-ms-input-placeholder{
    color: #d4d4d4;
}
input::-moz-placeholder{
    color: #d4d4d4;
}
input:-moz-placeholder{
    color: #d4d4d4;
}
/*登录按钮*/
.btn-blue{
    width: 80%;
    margin: 2.5rem auto 0;
    color: #ffffff;
    background-color: #0697e8;
    text-align: center;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
}
.hidden{
    display: none;
}