@charset "UTF-8";

/*
2017-12-2
为了工作和平时项目的需要，在自己工作空余时间自己写的一个css样式
同时也是为了巩固css和sass的知识
目的是为了：适应每一个项目自己重置样式,创造属于自己的style
虽然目前已有很多流行和成熟的css框架，如bootstrap,Semantic UI,Pure...都有各的优点
但还是决定做更加适合前端工作的css样式，我并没说是css框架，因为还需要不断更新
自己在空余时间也会不断的去优化，学习和进步
*/
* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
}

body,
html {
	height: 100%;
	/* overflow: hidden; */
}

.container-fluid {
	width: 100%;
	padding-bottom: 10px;
}

.carect {
	position: relative;
	width: 0;
	height: 0;
	margin-left: 5px;
	margin-bottom: 2px;
	border-top: 6px solid;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-radius: 10px;
	display: inline-block;
}

/*
    导航组件
*/
nav {
	width: 100%;
	height: 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 2px 4px #ccc;
	box-shadow: 0 2px 4px #ccc;
	/* padding: 10px 0; */
	line-height: 60px;
	background-color: #2b71ac;
	/* overflow: hidden; */
	z-index: 99;
}

nav li,
nav a {
	text-decoration: none;
	list-style: none;
}

nav .nav-logo {
	width: auto;
	height: 100%;
	margin-left: 20px;
	float: left;
}

nav .nav-logo a,
nav .nav-logo li,
nav .nav-logo ol,
nav .nav-logo span,
nav .nav-logo p {
	font-size: 30px;
	font-weight: bold;
	list-style: none;
	color: #1f79ec;
	text-decoration: none;
}

nav .nav-logo img {
	max-width: 100%;
	max-height: 100%;
}

nav ::-webkit-scrollbar {
	display: none;
}

nav .nav-list {
	/*nav-list*/
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* float: right; */
	margin-right: 20px;
	width: 1200px;
	margin: 0 auto;
	height: 60px;z-index: 999;
}

@media (max-width: 1200px) {
	nav .nav-list {
		position: fixed;
		height: 100%;
		top: 0;
		padding-top: 10px;
		width: 60%;
		background: #2b71ac;
		left: -60%;
		-webkit-transition: 1s;
		transition: 1s;
		-webkit-box-shadow: 3px 0px 10px #f0eded;
		box-shadow: 3px 0px 10px #f0eded;
	}
}

nav .nav-list>li {
	position: relative;
	list-style: none;
	float: left;
	text-align: center;
	width: auto;
	display: block;

}

@media (max-width: 1200px) {
	nav .nav-list>li {
		width: 100%;
		margin: 0;
		overflow: hidden;
	}

	nav .nav-list>li {
		/* margin-bottom: 15px; */
	}
}

nav .nav-list>li .active {
	color: #fff;
	/* background: #094fb7; */
}

nav .nav-list>li a {
	width: 100%;
	color: #FFFFFF;
	display: inline-block;
	line-height: 60px;
	padding: 0 25px;
	/* margin: 0 5px; */
	font-size: 16px;
	/* border-radius: 5px; */
	text-decoration: none;
	display: block;
	z-index: 99;
	box-sizing: border-box;
}
nav .nav-list>li a.menu-a{
	line-height: 40px;
}

@media (max-width: 1200px) {
	nav .nav-list>li a {
		width: 100%;
		border-radius: 0;
		margin: 0;
		background-color: #2b71ac;
	}
}

nav .nav-list>li a:hover {
	color: #fff;
	/* background-color: #094fb7; */
}

nav .nav-list>li .menu {
	width: 100%;
	background: #2b71ac;
	/* -webkit-box-shadow: 0 2px 10px #ccc; */
	/* box-shadow: 0 2px 10px #ccc; */
	position: absolute;
	/* border-radius: 5px; */
	/* white-space: nowrap; */
	left: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: 1s;
	transition: 1s;
	text-align: center;
}

@media (max-width: 1200px) {
	nav .nav-list>li .menu {
		position: relative;
		width: 100%;
		text-align: center;
		border-radius: 0;
		-webkit-box-shadow: 0 -1px 7px #ccc inset;
		box-shadow: 0 -1px 7px #ccc inset;
	}
}

.menu li {
	text-align: center !important;

}

nav .nav-list>li .menu li a {
	/* display: -webkit-box; */
	display: -ms-flexbox;
	/* display: flex; */
	margin: 0;
	width: 100%;
	padding: 0;
	text-align: center;
}

nav .nav-list>li:hover .menu {
	height: auto;
}

nav .nav-menu {
	display: none;
	z-index: 19;
	background: #fff;
	cursor: pointer;
}

@media (max-width: 1200px) {
	nav .nav-menu {
		display: block;
		float: right;
		padding: 8px 5px;
		position: relative;
		top: 10px;
		border: 1px solid #ccc;
		border-radius: 5px;
		margin-right: 15px;
		z-index: 1;
	}
	.menuDh,.menuText{
		display: block;
	}

	nav .nav-menu span {
		height: 2px;
		width: 25px;
		display: block;
		background: #CCC;
		border-radius: 10px;
	}

	nav .nav-menu span+span {
		margin-top: 6px;
	}
}

nav .open {
	left: 0%;
	overflow: auto;
}

/*# sourceMappingURL=zd-1.0.css.map */
