html {
	height:100%
}

/* ===== 登录页 v2（左图右表单） ===== */
body.signin.login-v2 {
	height: 100%;
	min-height: 100vh;
	background: #f5f7fb;
	overflow: hidden;
}
.login-v2-wrap {
	display: flex;
	height: 100vh;
	min-height: 640px;
}
.login-v2-left {
	flex: 1 1 50%;
	background: linear-gradient(135deg, #7b86ff 0%, #5b6bff 100%);
	color: #fff;
	position: relative;
}
.login-v2-left:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(600px 300px at 25% 35%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 60%),
		radial-gradient(520px 260px at 70% 65%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
	pointer-events: none;
}
.login-v2-left-inner {
	position: relative;
	height: 100%;
	padding: 80px 72px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.login-v2-brand-title {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 0 10px 0;
}
.login-v2-brand-sub {
	font-size: 16px;
	opacity: 0.9;
}
.login-v2-illu {
	max-width: 560px;
}
.login-v2-illu img {
	width: 100%;
	height: auto;
	display: block;
}

.login-v2-right {
	flex: 1 1 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px;
}
.login-v2-card {
	width: 430px;
	max-width: 100%;
}
.login-v2-title {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 8px;
}
.login-v2-name {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 28px;
}
.login-v2-form .form-control {
	border-radius: 8px !important;
	height: 44px !important;
	padding: 10px 14px !important;
	border: 1px solid #e5e7eb;
	box-shadow: none;
}
.login-v2-form .form-control:focus {
	border-color: #5b6bff !important;
	box-shadow: 0 0 0 4px rgba(91, 107, 255, 0.12) !important;
}
.login-v2-field + .login-v2-field {
	margin-top: 14px;
}
.login-v2-captcha {
	margin-top: 14px;
}
.login-v2-captcha .col-xs-6 {
	padding-left: 8px;
	padding-right: 8px;
}
.login-v2-captcha .imgcode {
	width: 100%;
	height: 44px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	display: block;
}
.login-v2-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	margin-bottom: 10px;
	position: relative;
	z-index: 3;
}
.login-v2-remember {
	margin: 0;
	padding: 0;
	color: #374151;
}
.login-v2-remember label { font-weight: 400; margin: 0; }
.login-v2-remember.checkbox-custom { margin-bottom: 0; }
.login-v2-remember.checkbox-custom label:before { border-color: #d1d5db; }
.login-v2-remember.checkbox-custom input[type="checkbox"]:checked + label:after { color: #111827; }
.login-v2-remember.checkbox-custom input[type="checkbox"] { left: 0; }
.login-v2-remember.checkbox-custom label { padding-left: 0; }
/* “忘记密码”入口已移除，如需恢复可再加回对应样式 */
.login-v2-btn {
	width: 100%;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: #5b6bff;
	color: #fff;
	font-weight: 700;
	position: relative;
	z-index: 1;
}
.login-v2-btn:hover, .login-v2-btn:focus {
	background: #4356ff;
	color: #fff;
}

@media screen and (max-width: 992px) {
	.login-v2-wrap { flex-direction: column; height: auto; min-height: 100vh; }
	.login-v2-left { flex: 0 0 auto; }
	.login-v2-left-inner { padding: 48px 24px; }
	.login-v2-illu { max-width: 520px; margin: 20px auto 0; }
	.login-v2-right { flex: 1 1 auto; padding: 28px 18px; }
}
@media screen and (max-width: 420px) {
	.login-v2-card { width: 100%; }
}

/*
登录界面check样式
*/
.checkbox-custom {
    position: relative;
    padding: 0 15px 0 25px;
    margin-bottom: 7px;
    display: inline-block;
}
/*
将初始的checkbox的样式改变
*/
.checkbox-custom input[type="checkbox"] {
    opacity: 0; /*将初始的checkbox隐藏起来*/
    position: absolute;
    cursor: pointer;
    z-index: 2;
    margin: -6px 0 0 0;
    top: 50%;
    left: 3px;
}
/*
设计新的checkbox，位置
*/
.checkbox-custom label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9px;
    width: 18px;
    height: 17px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #bbb;
    background: #fff;
}
/*
点击初始的checkbox，将新的checkbox关联起来
*/
.checkbox-custom input[type="checkbox"]:checked +label:after {
    position: absolute;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    content: "\e013";
    top: 42%;
    left: 3px;
    margin-top: -5px;
    font-size: 11px;
    line-height: 1;
    width: 16px;
    height: 16px;
    color: #333;
}
.checkbox-custom label {
    cursor: pointer;
    line-height: 1.2;
    font-weight: normal; /*改变了rememberme的字体*/
    margin-bottom: 0;
    text-align: left;
}

.form-control, .form-control:focus, .has-error .form-control:focus,  .has-success .form-control:focus, .has-warning .form-control:focus,  .navbar-collapse, .navbar-form, .navbar-form-custom .form-control:focus,  .navbar-form-custom .form-control:hover, .open .btn.dropdown-toggle,  .panel, .popover, .progress, .progress-bar {
    box-shadow: none;
}

.form-control {
    border-radius: 1px!important;
    padding: 6px 12px!important;
    height: 34px!important;
}

.form-control:focus {
    border-color: #1ab394 !important;
}

body .layer-ext-moon-msg[type="dialog"]{
    min-width: 100px !important;
}
body .layer-ext-moon-msg { 
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
}

body .layer-ext-moon-msg .layui-layer-content{ 
    padding: 12px 25px;
    text-align: center;
}