
.header_root {
	padding:20px 40px;
}
.header_base {
	padding:15px 30px;
}
.header_title {
	font-size: 24px;
}
.header_center_table_td {

}
.header_query_td {

}
@media screen and (max-width: 1000px) {
	.header_root {
		padding:20px 20px;
	}
	.header_base {
		padding:15px 15px;
	}
	.header_title {
		font-size: 20px;
	}
	.header_center_table_td {
		display: none;
	}
	.header_query_td {
		display: none;
	}
}

.query_button {
	color: #fff !important;
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: block;
	background: #0E6F93;
	border: 1px solid #0E6F93;
	text-align: center;
	border-radius: 8px;
	font-weight: 700;
	letter-spacing: 1px;
}
.query_button::after {
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s;
	z-index: -1;
}
.query_button:hover {
	color: #0E6F93 !important;
}
.query_button:hover::after {
	transform: scale(1, 1);
}

.apply_button {
	color: #fff !important;
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: block;
	background: #D44D0D;
	border: 1px solid #D44D0D;
	text-align: center;
	border-radius: 8px;
	font-weight: 700;
	letter-spacing: 1px;
}
.apply_button::after {
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s;
	z-index: -1;
}
.apply_button:hover {
	color: #D44D0D !important;
}
.apply_button:hover::after {
	transform: scale(1, 1);
}

.root {
	width: 900px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	padding: 30px 40px;
}
@media screen and (max-width: 990px) {
	.root {
		width: 80%;
	}
}

.title {
	font-size: 18px;
	font-weight: 500;
	margin-top: 30px;
}
.content {
	margin-top: 10px;
	line-height: 30px;
}
.content td {
	line-height: 30px;
}
