@charset "utf-8";
body{
	margin:auto;
	display:block;
	overflow:auto;
	width:100%;
	height:100%;
	position:relative;
	box-sizing:border-box;
}
#quan{
	display:grid;
	grid-template-rows: 50px auto;
	width:100%;
	height:100%;
}
#quan_head{
	display:grid;
	grid-template-columns:auto auto;
	align-items:center;
	justify-content:space-between;
	width:auto;
	height:auto;
	overflow:hidden;
	border-bottom:1px solid #ddd;
}
#quan_body{
	display:grid;
	grid-template-rows:40px auto;
	overflow:hidden;
	width:100%;
	height:100%;
}
#main{
	display: block;
	width: 100%;
	height:100%;
	overflow: hidden;
}
#cate{
	display:block;
	margin:auto;
	width:auto;
	height:100%;
	box-sizing:border-box;
	padding:10px;
}

a.cate_name{
	display:flex;
	display: -webkit-flex;
	overflow:hidden;
	width:auto;
	height:auto;
	font-size: 14px;
}
a.cate_tree{
	font-weight: bold;
}
.cate_thead{
	display:flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
	overflow:hidden;
	width:auto;
	height:auto;
	padding:8px;
}

.cate_more{
	font-weight: normal;
	font-size: 12px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
}

.cate_tb{
	display:block;
	margin:auto;
	width:auto;
	height:auto;
	position: relative;
}

.cate_tbody{
	display:none;
	width:100%;
	height:auto;
	padding: 10px;
	position: absolute;
	top:0px;
	left: 100%;
	height:auto;
	background-color: #fff;
	transition: all 0.4s;
	box-sizing: border-box;
	border: 1px solid #ddd;
}
@media (max-width:767px){
	.cate_tbody{
		position: static;
		border:none;
		padding: unset;
		padding-left: 10px;
	}
}
.cate_tb:hover>.cate_tbody{display:block;}
.cate_tb:hover>a.cate_thead{background-color: #f5f5f5;}
@media (max-width:767px){
	.cate_tb:hover>a.cate_thead{background-color: unset;}
}
.top_tb{
	display:grid;
	grid-template-columns:50px auto;
	column-gap:10px;
	align-items:center;
	width:auto;
	height:auto;
}
.tb_right{
	display:flex;
	display: -webkit-flex;
	column-gap:5px;
}
@media (max-width:767px){
	.tb_right{display:none;}
}

#mm{
	font-size:20px;
	cursor:pointer;
	display:block;
	margin:auto;
	overflow:hidden;
	text-align:center;
	width:50px;
	height:50px;
	line-height:50px;
	border-right:1px solid #ddd;
}
#logo{
	display:block;
	margin:auto;
	overflow:hidden;
	width:auto;
	height:auto;
	font-size:18px;
	font-weight:100;
	line-height:50px;
	white-space:nowrap;
	-webkit-font-smoothing: subpixel-antialiased;
}
#loc{
	display: flex;
	display: -webkit-flex;
	align-items:center;
	justify-content: space-between;
	overflow:hidden;
	width:auto;
	height:20px;
	line-height:20px;
	padding:10px;
	border-bottom:1px solid #ddd;
	text-align:left;
}
@media (max-width:767px){
	#loc{
		flex-direction: column;
		align-items: unset;
		justify-content:unset;
	}
}
#loc_left{
	display: flex;
	display: -webkit-flex;
	column-gap: 10px;
	align-items: center;
	width: auto;
	height: auto;
	overflow: hidden;
}
a.mbt{
	display:inline-block;
	margin:auto;
	overflow:hidden;
	width:auto;
	vertical-align:middle;
	padding-left:5px;
	padding-right:5px;
}
a.mbt:before{
	font-family: 'FontAwesome';
    display:inline-block;
	margin:auto;
	overflow:hidden;
	width:12px;
	height:12px;
	line-height:12px;
	vertical-align:middle;
	text-align:center;
	margin-right:5px;
}
a#site_name{
	display:inline-block;
	margin:auto;
	overflow:hidden;
	width:auto;
	vertical-align:middle;
	padding-left:5px;
	padding-right:5px;
	color:#F90;
	font-weight:bold;
	white-space:nowrap;
}
#mm_thead{
	display: flex;
	display: -webkit-flex;
	white-space: nowrap;
	border-bottom: 1px solid #ddd;
	height: 50px;
	box-sizing: border-box;
}
#mm_thead:before{
	width:50px;
	height: 50px;
	font-size:20px;
	display: flex;
	display: -webkit-flex;
	justify-content:center;
	align-items:center;
	font-family: 'FontAwesome';
	border-right: 1px solid #ddd;
}
#mm_thead:hover:before{background-color:#f5f5f5;}
#mm_left{
	display:grid;
	grid-template-rows: 50px auto;
	width: auto;
	height: 100%;
	background-color: #fff;
	border-right:1px solid #ddd;
}
@media (max-width:767px)
{
	#mm_left{
		grid-template-rows: 50px auto 60px;
	}
}
#mm_tb{
	display:grid;
	grid-template-columns:250px auto;
	width:0px;
	height:100%;
	top:0px;
	bottom: 0px;
	left: 0px;
	position: fixed;
	margin:auto;
	transition: all 0.4s;
	overflow: hidden;
}
@media (max-width:767px){
	#mm_tb{grid-template-columns:auto;}
	#mm_right{display:none;}
}
#mm_tool{
	display:grid;
	grid-template-columns:auto auto auto;
	column-gap:5px;	
	border-top:1px dotted #ddd; 
	background-image: linear-gradient(0deg,#f5f5f5,#fff);
}
#mm_tfoot{
	display:none;
	border-top:1px solid #ddd; 
}
@media (max-width:767px)
{
	#mm_tfoot{display:block;}
}
#mm_tool>a{
	display:flex;
	display: -webkit-flex;
	justify-content: center;
	align-content:center;
	align-items:center;
	text-align:center;
	font-size: 12px;
	line-height:30px;
}
#mm_tool>a:hover{
	background-color:#333;
	color: #fff;
}
#mm_tool>a:before{margin-right:5px;}

.site_name{
	font-size: 14px;
	display: block;
	width: auto;
	height: auto;
	text-align: center;
	padding: 5px;
	white-space: nowrap;
}
.version{
	font-size: 12px;
	color: #0CF;
	font-weight:normal;
}
#site_cates{
	border: 1px solid #ddd;
	height: 30px;
	font-size: 12px;
	display: block;
	width:150px;
	outline: none;
}
@media (max-width:767px){
	#site_cates{
		width:100%;
	}
}