/* 响应式导航 */
.topBar {position: fixed; z-index: 999; width: 100%; top: 0; left: 0; right: 0; background: #FFF; box-shadow: 0 0 5px rgba(0,0,0,.5);}
.topBar .logo {float: left; display: inline;}
.topBar .logo img {display: block;}
.topBar .row{overflow:inherit}

/* 导航-未展开 */
.topBar .nav {float: right; display: inline;}
.topBar .nav li { float: left; display: inline-block; text-align: center;position: relative}
.topBar .nav a {display: block; font-weight: bold; padding: 0 30px; font-size: 16px;}
.topBar .nav li:hover > a, .topBar .nav li.active > a{background: #0c67b6; color: #FFF;}

/* 导航-下拉 */
.topBar .nav li .menu-child{
	position: absolute;
	width:100%;
	border:1px solid #eee;
	background-color: #fff;
	-moz-opacity: 0;
	opacity: 0;
	-moz-visibility: hidden; -ms-visibility: hidden; visibility: hidden;
	-webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s;
}
.topBar .nav li:hover .menu-child{
	-moz-opacity: 1;
	opacity: 1;
	-moz-visibility: visible; -ms-visibility: visible; visibility: visible;
}
.topBar .nav li .menu-child a{
	display: block;
	border-bottom:1px solid #eee;
	line-height: 40px;
	color:#666;
}
.topBar .nav li .menu-child a:hover{
	color:#fff;
	background-color: #0c67b6;
}
.topBar .nav li .menu-child a:last-child{
	border-bottom:0;
}

/* 菜单-展开图标 */
.topBar .btnOpen {overflow: hidden; float: right; width: 20px; margin: 12px 0 0 0; cursor: pointer;}
.topBar .btnOpen > div {width: 100%; height: 3px; margin-bottom: 3px; background: #000;}
.topBar .btnOpen > div:last-of-type {margin: 0;}

/* 菜单-已展开 */
.topBar .menu {overflow: hidden; position: fixed; top: 0; left: 0; width: 100%; background: #000;}
.topBar .menu li {border-bottom: 1px solid #222}
.topBar .menu a {display: block; text-align: center; color: #fff;	padding: 10px 0;}

/* 菜单-收起图标 */
.topBar .btnClose {overflow: hidden;}
.topBar .btnClose > div {float: right; margin: 0 10px 0 0;}
.topBar .btnClose > div:after {font-size: 36px; content: '\00d7'; color: #FFF; cursor: pointer;}

/* 全屏遮挡 */
/*.topBar .zhe {position: fixed; top: 0; left: 0; width: 100%; height: 100%}*/


/* 移动设备（小于960px） */
@media screen and (max-width:959px) {
.topBar {height: 40px; line-height: 40px;}
.topBar .logo img {height: 40px;}
	.topBar .nav{display: none}
	.topBar .nav li .menu-child{
		top:35px;
	}
	.topBar .nav li:hover .menu-child{
		top:40px;
	}
}

/* 1100分辨率（大于960px，小于1199px） */
@media screen and (min-width: 960px) and (max-width: 1199px) {
.topBar {height: 60px; line-height: 60px;}
.topBar .logo img {height: 60px;}
.topBar .nav a {padding: 0 24px; font-size: 14px;}
	.topBar .nav li .menu-child{
		top:50px;
	}
	.topBar .nav li:hover .menu-child{
		top:60px;
	}
}

/* 1280分辨率以上（大于1200px） */
@media screen and (min-width:1200px){
.topBar {height: 80px; line-height: 80px;}
.topBar .logo img {height: 80px;}
.topBar .nav a {padding: 0 30px; font-size: 16px;}
	.topBar .nav li .menu-child{
		top:70px;
	}
	.topBar .nav li:hover .menu-child{
		top:80px;
	}
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                