html,body {
	width: 100%;
	height: 100%;
	padding:0;
	margin:0;
	background-color: #efebe2;
}

[v-cloak] {
	display: none;
}

#app {
	width: 100%;
	height: 100%;
	background-image: url('../img/login_bg.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
	
}

.top-area{
	width: 100%;
	/* height: 10%; */
	
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
}

.logo-area{
	width: 250px;
	position: absolute;
	left: 50px;
	top:5px;
}

.aqnu-logo{
	width: 250px;
}

.title-area{
	font-size: 30px;
	font-weight: bold;
	color: #ad3633;
	height: 60px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-left: 0;
}

.middle-area{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	height: calc(100% - 60px - 10px);
	min-height: min-content;
	overflow: visible;
	
	align-items: center;
	
	overflow-y: auto;
	overflow-x: hidden;
	
}

.login-bottom-area{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.tip-area{
	/* width: 10%; */
	/* width: 80%; */
	margin-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 5px;
	background-color: white;
	border-left: #ad3633;
	
}

.tip-1{
	font-weight: bold;
	color: #ad3633;
	font-size: 18px;
}

.tip-2{
	margin-top: 5px;
	font-weight: bold;
	color: red;
	font-size: 16px;
}

.login-box-area{
	width: 400px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #f8f6f3;
	border-radius: 5px;
	border: 3px solid #b6a791;
}

.login-title{
	width: 100%;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	color: #896235;
}

.login-form-area{
	width: 80%;
	margin-left: 10%;
	margin-top: 20px;
}


.bottom-area{
	width: 100%;
	position: absolute;
	height: 70px;
	background-color: #962e2b;
	bottom: 0;

}


.el-input__inner {
	border-color: #b2a38e; /* 修改边框颜色 */
}

.el-input__inner:focus{
	border-color: #bc3836; /* 修改边框颜色 */
	border-width: 0.1rem;
}

::placeholder {
  color: #b2a38e !important; /* 使用 !important 确保样式覆盖 */
}

.el-input__icon{
	color: #b2a38e;
}

.form-item-yzm {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.login-input-yzm {
	width: 60%;
}

.yzm-img {
	margin-left: 3%;
	width: 37%;
	height: 40px;
}

.yzm-btn {
	margin-left: 3%;
	width: 37%;
	height: 40px;
}

.login-submit-btn{
	width: 100%;
	color: white !important;
	font-weight: bold;
	background-color: #bf3a38 !important;
}

.login-submit-btn:hover {
	color: antiquewhite;
	border-color: #952d2b;
	background-color: #952d2b;
}


.zhuce-area{
	margin-top: 8px;
	width: 50%;
	text-align: left;
	
}

.forget-pwd-area{
	margin-top: 8px;
	width: 50%;
	text-align: right;
	
}

.relogin-area{
	width: 100%;
	text-align: right;
}

.zhuce-class{
	font-size: 13px;
	font-weight: bold;
	color: red;
	cursor: pointer;
}

.cichu{
	font-weight: bold;
	font-size: 24px;
	color: #952d2b;
	cursor: pointer;
}

.cichu:hover{
	color: red;
	border-bottom: 1px solid #962e2b;
}


.forget-pwd-class{
	font-size: 13px;
	font-weight: bold;
	color: red;
	color: #8c673d;
	cursor: pointer;
}

.forget-pwd-class:hover{
	color: #962e2b;
	border-bottom: 1px solid #962e2b;
}

.zhuce-class:hover{
	color: #962e2b;
	border-bottom: 1px solid #962e2b;
}

.el-form-item{
	margin-bottom: 15px;
}
.el-form-item__error{
	font-size: 10px;
}


/************************************/



/* ***********  中屏设备 ********** */
@media (max-width: 1200px) {
	
	.title-area{
		margin-left: 300px;
		width: calc(100% - 300px);
	}
}

@media (max-width: 840px) {
	
	.top-area{
		display: flex;
		flex-direction: column;
		justify-content: center;
		flex-wrap: nowrap;
		align-items: center;
	}
	
	.logo-area{
		position: relative;
		margin-top: 5px;
		left:0;
	}
	
	.title-area{
		margin-top: 10px;
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	
	.middle-area{
		height: calc(100% - 140px - 10px);
	}
}

/* ***********  小屏设备 ********** */
@media (max-width: 480px) {
	.title-area{
		margin-top: 15px;
		margin-left: 0;
		width: 94%;
		left: 3%;
		text-align: center;
	}
	
	.login-box-area{
		width: 94%;
		padding-top: 20px;
		padding-bottom: 20px;
		background-color: #f8f6f3;
		border-radius: 5px;
		border: 3px solid #b6a791;
	}
	
}