* {
	margin: 0;
	padding: 0;
	font-size: 14px;
	--color_main: #eaeaea;
	--com_radius: 10px;
	--bg_main:linear-gradient(to right, #1890ff, #3875C6);
}

.box {
	position: relative;
	height: 240px;
}

.home_top {
	width: 100%;
	height: 200px;
	position: relative;
	z-index: -1;
	overflow: hidden;
	text-align: center;
	background-color: white;
}

.home_top:after {
	content: '';
	width: 120%;
	height: 180px;
	position: absolute;
	left: -10%;
	top: 0;
	z-index: -1;
	border-radius: 0 0 80% 80%;
	background-color: #3875C6;
}

.logo-item {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}

.logo-img {
	width: 84px;
	height: 84px;
	background-color: white;
	border-radius: 10px;
	border: 1px solid #F0F2F5;
}

.logo-txt {
	display: flex;
	font-size: 16px;
	margin-top: 10px;
	font-weight: 500;
	justify-content: center;
}

.input-row {
	display: flex;
	flex-direction: row;
	margin: 20px 20px 0;
	padding: 10px;
	border: 1px solid #DEE1E6;
	border-radius: 10px;
	align-items: center;
}

.input-style {
	outline: 0;
	border: 0;
	padding: 5px 10px;
	flex: 1;
}

.input_icon {
	width: 20px;
	height: 20px;
}

.input-clear {
	margin-left: 10px;
	width: 28px;
	height: 28px;
	display: none;
}

.input-tips {
	color: red;
	font-size: 10px;
	margin-left: 60px;
	display: none;
}

.login-submit {
	background: linear-gradient(to right, #b7ccc6, #3875C6);
	border-radius: 10px;
	padding: 12px;
	margin: 20px;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vcode_box {
	margin: 20px 20px 0;
	height: 36px;
	width: 200px;
	border-radius: var(--com_radius);
	border: 1px solid var(--color_main);
}

