@charset "UTF-8";

html, body {
    width: 100%;
    height: 100%;
}

/** 整个页面 */
.login-div {
    height: 100%;
    min-width: 600px;
    min-height: 700px;
    position: relative;
}

/* 背景图片 */
.bg-login-img {
    width: 100%;
    height: 100%;
    user-select: none;
    -webkit-user-select: none;
    position: absolute;
}

/** logo及form区域 */
.login-form-area {
    width: 360px;
    height: 475px;
    position: absolute;
    left: calc(50% - 180px);
    bottom: 29.5%;
    user-select: none;
}

/* logo区域 */
.logo-area{
    padding-bottom: 5px;
}

.logo-area img{
    vertical-align: top;
}

/** form 表单 */
.form-signin {
    height: 450px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

/** 表单中的项目名 */
.form-signin-heading {
    font-size: 16px;
    font-weight: bold;
    font-family: Source Han Sans CN;
    color: #0077A0;
    padding-top: 30px;
    line-height: 18px;
    text-align: center;
    line-height: 18px
}

/* 标题 */
.form-signin-heading+.form-signin-heading {
    color: #000000;
    font-size: 20px;
    padding: 20px 0 20px 0;
    text-align: center;
}

/* 分隔线 */
hr.split-line{
    margin: 0 30px 20px;
    background-color: #000000;
    opacity: 0.2;
}

/** 输入框区域 */
.form-item-area {
    padding: 0 30px;
    opacity: 0.7;
}

.form-item-area+.form-item-area {
    margin-top: 20px;
}

/** 输入框 */
.form-item-area .form-item {
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 2px 12px;
    color: #000000;
    border-radius: 8px;
    user-select: text;
    border: 1px solid #cccccc;
    font-size: 12px;
}

/** 登录按钮 */
.form-item-area button {
    width: 100%;
    height: 36px;
    opacity: 100%;
    color: #FFFFFF;
    font-size: 14px;
    background-color: #0077A0;
    border-radius: 8px;
}

/* 记住密码区域 */
.remember-me-area {
    font-size: 12px;
    line-height: 18px;
    display: inline-block;
    user-select: none;
}

/* 记住密码 */
.remember-me-area label, .remember-me-area input{
    vertical-align: middle;
    cursor: pointer;
}

/** 忘记密码 */
.password-forgot {
    float: right;
    color: #000000; font-size : 12px;
    line-height: 24px;
    font-size: 12px;
}

/* 注册区域 */
.register-area{
    margin: 36px 30px 0;
    opacity: 0.7;
    text-align: center;
}

/* 注册按钮 */
.register-area a{
    color: #DD3E3B;
    font-size: 12px;
    display: inline-block;
    margin: auto;
}

/** 版权信息 */
.footer {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    font-family: Source Han Sans CN;
    display: inline-block;
    position: absolute;
    left: calc(50% - 290px);
    bottom: 30px;
}
.validate-code{
	display: flex;
	flex-wrap: no-wrap;
}
.validate-code .form-item{
	flex: 1;
	border-radius: 4px 0 0 4px;
}
.validate-code .re-send{
	width: 60px;
    font-size: 14px;
    line-height: 32px;
	border: 1px solid #cccccc;
	border-left: 0;
	background-color: #fff;
	border-radius: 0 4px 4px 0 ;
}