* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}


html,
body {
	font-size: 16px !important;
	-webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
}

/* body 禁止滚动时 */
.no-scroll {
	position: fixed;
	width: 100%;
	overflow: hidden;
}

.home {
	width: 100vw;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
}

.header {
	width: 100%;
	height: 6rem;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 99;
	background: #FFFFFF;
	box-shadow: 0px 8px 24px 0px rgba(204, 204, 204, 0.2);
	border-bottom: 1px solid #E7E7E7;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2.5rem;
}

.header .logo {
	height: 1.875rem;
}

.header .open {
	font-size: 1.875rem;
	color: #333333;
}

.header .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0);
	display: none;
	z-index: 1000;
	overflow: auto;
	opacity: 0;
	transition: background 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header .menu.show {
	background: rgba(0, 0, 0, 0.3);
	opacity: 1;
}

.header .menu .menu_content {
	width: 31.25rem;
	height: 100%;
	background-color: #FFFFFF;
	float: right;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}

.header .menu.show .menu_content {
	transform: translateX(0);
}

.header .menu .menu_header {
	width: 100%;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 2.5rem;
}

.header .menu .menu_header .close {
	font-size: 1.875rem;
	color: #333333;
	height: 6rem;
	display: contents;
}

.header .menu .menu_content .menu_list .menu_item {
	color: #333333;
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 0 0 5rem;
	font-size: 2rem;
	color: #000000;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-transform: uppercase;
}

.header .menu .menu_content .menu_list .menu_item:hover {
	background-color: #f5f5f5;
}

.footer {
	width: 100%;
	padding: 0 2.5rem;
}

.footer .copyright {
	height: 14rem;
	border-top: 0.0625rem solid #EAEAEA;
	padding-top: 2.5rem;
	font-size: 1.875rem;
	color: #999999;
	line-height: 2.5rem;
}

.footer .footer_menu_list {
	border-top: 0.0625rem solid #EAEAEA;
	padding: 1.875rem 0;
}

.footer .footer_menu_list .footer_menu_item {
	height: 3.75rem;
	line-height: 3.75rem;
	font-size: 1.875rem;
	color: #666666;
	cursor: pointer;
	transition: color 0.2s ease;
	text-transform: uppercase;
}

.footer .footer_menu_list .footer_menu_item:hover {
	color: #333333;
}

.footer .footer_icon {
	padding: 5rem 0 2.5rem 0;
}

.footer .footer_icon .logo {
	height: 1.875rem;
}

.content {
	flex: 1;
	background: #FFFFFF;
}