body {
	font: 400 1em/1.8 Merriweather, -apple-system, BlinkMacSystemFont, Microsoft Yahei, Avenir, Segoe UI, Hiragino Sans GB, STHeiti, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
	font-size: 16px;
	overflow-x: hidden;
	/* -webkit-font-smoothing: antialiased; */
	-moz-osx-font-smoothing: grayscale;

	color:black;
	--s-font-size: 1rem;

	--dark-primary-color: #455A64;
	--light-primary-color: #CFD8DC;
	--primary-color: #607D8B;

	--accent-color: #FF9800;

	--primary-text-color: #212121;
	--secondary-text-color: #757575;
	--divider-color: #eef2ff;

	--gray-1: #666;
	--gray-2:#EEEEEE;
	--black: #191919;
	--blue: #0a72ba;

	--page-width: 1200px;
}

a {
	color: var(--secondary-text-color);
	text-decoration: none;
}

.page-header-wrapper {
	color: var(--light-text-color);

	/* shadow */
	box-shadow: 0 1px 15px rgba(0,0,0,.3);
	-webkit-box-shadow: 0 1px 15px rgba(0,0,0,.3);
	background-color: white;
	width: 100%;
	box-sizing: border-box;
	z-index: 999;
	
}

.page-header-notice {
	background-color: red;
	color:white;
	width: var(--page-width);
	text-align: center;
	font-size: 1.1rem;
	padding: 8px 0;
	width:100%;
}
.page-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 68px;
	width: var(--page-width);
	margin: 0 auto;
}

.page-header-menu {
	display: flex;
	flex-direction: row;
	padding-left:30px;
}

.page-header-menu a {
	display: inline-block;
	height: 100%;
	padding: 0 15px;
	line-height: 40px;
	color: var(--gray-1);
	font-size: 1rem;
}

.page-header-menu a:hover {
	color: black;
}

.page-header-mobile-menu {
	display: none;
}
.mobile-menu-icon {
	display: none;
}

.mobile-menus {
	display: none;
}

.logo {
	display: inline-block;
	height: 100%;
}

.logo img {
	height: 100%;
}

.logo-text{
	font-size: 1.3rem;
	margin-left:20px;
	color:black;
}

.header-menus {
	display: flex;
	flex-direction: row;
}

.header-menus a {
	display: inline-block;
	height: 100%;
	padding: 0 20px;
	line-height: 40px;
	color: var(--light-text-color);
	font-size: 1rem;
}

.header-menus a:hover {
	background-color: white;
	color: var(--accent-color);
}
.header-cart-container {
	flex:1;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.header-cart {
	display: flex;
	flex-direction: row;
	border-radius: 30px;
	background-color: black;
	color:white;
	font-size: .8rem;
	align-items: center;
	padding: 10px 30px;
	/* distance between children */
	justify-content: space-between;
	width: 120px;
	cursor: pointer;
	box-sizing: border-box;
	margin-right: 40px;
}

.cart-icon {
	width:16px;
	height: 16px;
	color:white;
	fill: white;
}

.header-cates {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: var(--page-width);
	margin: 0 auto;
	padding: 5px 0;
}

.body-wrapper {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	min-height: calc(100vh - 68px - 100px);
	padding-top: 68px;
}

.footer-container {
	background-color: #f7f7f7;
	box-sizing: border-box;
	overflow: hidden;
	padding: 10px 0;
	height: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.footer {
	width: var(--page-width);
	color: var(--gray-1);
	margin: 0 auto;
	font-size: .8rem;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;
}

.common-body-container {
	width: var(--page-width);
	margin: 0 auto;
	box-sizing: border-box;
	padding: 20px 0;
}

.index-container {
	display: flex;
	flex-direction: column;
	width: var(--page-width);
	box-sizing: border-box;
	margin: 0 auto;
}

.index-body-container {
	display: flex;
	flex-direction: row;
}

.index-error {
	width: 100%;
	text-align: center;
	padding: 50px;
	font-size: 1rem;
}



@media (max-width: 768px) {

	.body-wrapper {
		width: 100%;
		margin: 0 auto;
		min-height: calc(100vh - 68px - 68px - 20px);
		box-sizing: border-box;
	}

	.footer-container {
		box-sizing: border-box;
		overflow: hidden;
		margin-top: 20px;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.footer {
		width: 100%;
		margin: 0 auto;
		padding: 8px 0px;
		font-size: 1rem;
		text-align: center;
		box-sizing: border-box;
		flex-direction: column;
	}

	.footer-item {
		align-items: center;
		justify-content: center;
	}

	.footer-notice {
		width: 100%;
		padding: 10px;
		font-size: .8rem;
		box-sizing: border-box;
	}
	.header-menus{
		display: none;
	}

	.page-header-mobile-menu {
		width:40px;
		display: block;
	}

	.mobile-menus {
		background-color: white;
		color: white;
		flex-direction: column;
		position: fixed;
		display: block;
		right: -100%;
		z-index: 999;
		transition: right 0.3s ease-in-out;
		overflow-y: scroll;
		height: 100%;
		-webkit-box-shadow: 0 8px 20px 10px rgba(0,0,0,.2);
		box-shadow: 0 8px 20px 10px rgba(0,0,0,.2);
		top:68px;
	}

	.mobile-menu-item {
		font-size: 1rem;
	}

	.mobile-menu-item a {
		color: black;
		width: 100%;
		display: inline-block;
		padding:20px 40px;
		box-sizing: border-box;
	}


	.page-header {
		display: flex;
		flex-direction: row;
		align-items: center;
		height: 68px;
		width: 100%;
		box-sizing: border-box;
		padding: 0px 10px;
		margin: 0 auto;
	}

	.page-header-notice {
		font-size: 1rem;
	}

	.logo-text {
		font-size: 1.2rem;
		margin-left: 10px;
		color: white;
		flex:1;
	}

	.page-header-menu {
		display: none;
	}

	.logo-text {
		color:black;
	}

	.common-body-container {
		width:100%;
		padding-top:0px;
	}

	.index-container {
		width: 100%;
	}

	
}
