/* CSS Document */
body, h1, h2, h3, h4, h5, h6, hr, p,blockquote,dl, dt, dd, ul, ol, li,pre,form, fieldset, legend, button, input, textarea,th, td,img{border:medium none;margin: 0;padding: 0;}
body{ font: 16px/20px "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;}
img {border:0;display: block;}
a{cursor:pointer; text-decoration:none;}
p{word-break:break-all; word-wrap:break-word;}
ul{list-style: none;}
/* clear */
.clearfix:before,.clearfix:after{content:"";display:table;}
.clearfix:after {clear:both;}
.clearfix{*zoom:1;}

.fl{float:left;}
.fr{float:right;}
.clearflr{clear:both;}

*{
    box-sizing: border-box;
}

select {   /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/   border: solid 1px #ddd;
    /*很关键：将默认的select选择框样式清除,ie10+,ie9需要模拟*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("/images/index/arrow.png") no-repeat scroll  transparent;
    background-position: right 50%;
    background-size: 13px auto;
    padding-right: 14px;
    background: none\9;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
select::-webkit-expand { display: none; }
select::-moz-expand { display: none; }
button{cursor: pointer;}

.flexContainer{
    display: flex;
}
.flexCenter{
    align-items: center;
    justify-content: center;
}
.flexBetween{
    justify-content: space-between;
    align-items: center;
}
.flexColumn{
    flex-direction: column;
}
.flexAuto{
    flex: 1;
}

.login-container{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("/images/index/login-bg.png") no-repeat;
    background-size: cover;
}
.login-border{
    width: 100%;
    max-width: 600px;
    margin-bottom: 50px;
}
.login-header{
    width: 100%;
    background: url(/images/index/login-head.png) no-repeat; 
    background-size: 100% 100%;
    height: 125px;
    padding: 0 6%;
    padding-top: 75px;
    line-height: 25px;
    font-size: 24px;
    color: #fff;
	position:relative;
}
.login-header .logo-box { position:absolute; left:35px; top:25px; display:inline-block; width:222px; height:35px; background:url(/images/index/reglogin_logo.png) no-repeat;}
.login-header .txt { text-align:right; padding-right:105px;}
.login-header .txt span {font-size: 18px;}
.login-main{
    width: 100%;
    background: #fff;
    padding: 6% 6%;
}
.logininput-container{
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}
.login-head{
    width: 64px;
    height: 64px;
    background: #F8F8F8;
}
.login-head img{
    width: 28px;
    height: 28px;
}
.logininput{
    height: 64px;
    line-height: 64px;
    outline: none;
    font-size: 14px;
    padding-left: 10px;
}
.logininput::placeholder{
    color: #AFAFAF;
}
.logininput-code img{
    width: 150px;
    height: 64px;
}
.login-btn{
    width: 100%;
    height: 64px;
    line-height: 64px;
    text-align: center;
    background: #005198;
    color: #fff;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
}
.login-link{
    text-align: right;
    font-size: 14px;
    color: #6A6A6A;
    height: 25px;
    line-height: 25px;
}
.login-link .backhome { line-height:25px; float:left;}
.login-link a{
    color: #005198;
}
.login-link img{
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}
.login-footer{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    color: #5F6679;
    height: 16px;
    line-height: 16px;
}
.maxheight{
    width: 100%;
    max-height: 500px;
    overflow: auto;
}
.maxheight::-webkit-scrollbar {
    /*滚动条整体样式*/
    width : 5px;  /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
    }
    .maxheight::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background   : #535353;
    }
    .maxheight::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 10px;
    }
	
/*20210303新增发送邮件按钮*/
.sendEmail { background:#7DE5D5; padding:0;}
.sendEmail .btn { width:100%; padding:0 16px; color:#fff; display:inline-block; line-height:64px; font-size:14px; border:0; background:none;}

/*协议*/
.agreement_row { line-height:24px; color:#969696;}

/*响应式兼容*/
@media screen and (max-width: 996px){
        .login-header{
            height: 80px;
            padding-top: 45px;
        }
        .login-head{
            width: 44px;
            height: 44px;
        }
        .login-head img{
            width: 14px;
            height: 14px;
        }
        .logininput{
            height: 44px;
            line-height: 44px;
        }
        .logininput-code img{
            width: 80px;
            height: 44px;
        }
        .login-btn{
            height: 44px;
            line-height: 44px;
            font-size: 16px;
            margin-top: 10px;
        }
        .login-link{
            font-size: 12px;
        }
        .login-footer{
            bottom: 46px;
        }
    }