/* 全局共用 */

* {
	padding: 0;
	margin: 0;
	/* box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; */
}

::-webkit-scrollbar {
	width : 10px; height: 1px;
}
::-webkit-scrollbar-thumb {
	background   : #555;
}
::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background   : #ddd;
}

body, html {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow-x: hidden;
}

body, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
	border: medium none;
	outline: none;
}

body, td, button, input, select, textarea {
	color: #444;
	font: 12px 微软雅黑, Microsoft Yahei;
	line-height: 24px;
	outline: none;
	font-smooth: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}

a:link, a:active, a:visited {
	color: #444;
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
	color: #222;
}

img {
	border: none;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus {
	outline: none;
}

ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.hand {
	cursor: pointer;
}

.tips {
	height: auto;
	padding: 5px 20px;
	background: #666;
	color: #fff;
	line-height: 18px;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	FILTER: alpha(opacity=0);
	opacity: 0;
	font-size: 0.75em;
	text-align: center;
	border-radius: 15px;
}

.trans3 {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.trans5 {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.maskbg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	overflow: auto;
}

.coverimg img {
	transition: all 0.5s;
}
.coverimg:hover img {
    transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.shadow {
	-moz-box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
    box-shadow:10px 10px 10px rgba(0,0,0,0.1);
}

/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}



.head {
	width: 100%;
	height: 100px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	/* background: rgba(60, 155,235, 0.85); */
	background-image: linear-gradient(rgba(18,21,24,.95), rgba(136,139,141,.8));
	text-align: center;
	font-size: 0;
}

.logo {
	display: inline-block;
	height: 100%;
	overflow: hidden;
	margin-right: 8%;
}
.logo img {
	display: block;
	height: 60px;
	margin: 20px 0;
}

.navi, .navi ul, .navi ul li, .navi ul li a {
	display: block;
	position: relative;
}

.navi {
	display: inline-block;
	height: 100%;
}

.navi>ul>li {
	float: left;
	margin: 0 30px;
}

.navi>ul>li:after {
	content: "";
	position: absolute;
	width: 1px;
	height: 3px;
	left: 50%;
	top: 0;
	z-index: 9;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navi>ul>li:hover, .navi>ul>li.on {
    color: #fff;
}

.navi>ul>li:hover:after,.navi>ul>li.on:after {
	width: 100%;
	left: 0;
}
.navi>ul>li:hover:after, .navi>ul>li.on:after {
	background: #3c9beb;
}

.navi>ul>li>a {
	font-size: 18px;
	line-height: 100px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-ms-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}



/* 页脚 */

.foot {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #121212;
}
.footc {
	height: auto;
	padding: 10px 0;
	overflow: hidden;
	text-align: center;
}

.footc span {
	display: inline-block;
	line-height: 30px;
	margin: 0 15px;
	font-size: 12px;
	color: #ddd;
}
.footc span img {
	height: 20px;
	margin-right: 15px;
	vertical-align: middle;
	opacity: .7;
}

.footc a {
	color: #ccc;
}

.footm {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #181818;
	padding: 30px 0;
	text-align: center;
	font-size: 0;
}
.mli {
	width: 170px;
	padding-left: 40px;
	height: auto;
	overflow: hidden;
	display: inline-block;
	vertical-align: top;
}
.mli a {
	display: block;
	line-height: 26px;
	font-size: 12px;
	color: #ccc;
	text-decoration: none;
	text-align: left;
}
.mli a:nth-child(1) {
	margin-bottom: 10px;
	font-weight: bold;
	color: #fff;
	font-size: 14px;
}
.mli a:hover {
	color: #3c9beb;
}

/* 页码 */

.page {
	width: 100%;
	height: auto;
	padding: 60px 0 80px 0;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}

.total {
	display: inline-block;
	height: 40px;
	color: #333;
	background: #e9ecf0;
	font-size: 14px;
	line-height: 40px;
	padding: 0 20px;
	vertical-align: top;
}

.page a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #333;
	background: #e9ecf0;
	font-size: 14px;
	text-decoration: none;
	vertical-align: top;
	margin-left: 4px;
}

.page a.cur {
	background: #3c9beb;
	color: #fff;
}

.page a img {
	margin-top: 5px;
}

.secpagetz {
	width: 100px;
	height: 38px;
	display: inline-block;
	border: 1px solid #e5e5e5;
	color: #999999;
	line-height: 38px;
	overflow: hidden;
	font-size: 14px;
	vertical-align: top;
	margin-left: 4px;
}
.secpagetz input {
	width: 38px;
	height: 38px;
	line-height: 38px;
	border: 0;
	font-size: 14px;
	padding: 0;
	margin: 0;
}

.secpagebtn {
	width: 40px;
	height: 40px;
	background: #e9ecf0;
	text-align: center;
	line-height: 40px;
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	vertical-align: top;
}

.gotop {
	width: 50px;
	height: 50px;
	background: rgba(255, 255,255, 1);
	border-radius: 50%;
	position: fixed;
	right: 30px;
	bottom: 60px;
	cursor: pointer;
	display: none;
}
.gotop img {
	display: block;
	width: 25px;
	height: 7px;
	margin: 22px auto;
	transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);

}

.secban {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.secban img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1680px) {
    .head {
		height: 90px;
	}
	.logo img {
		height: 50px;
	}
	
	.navi>ul>li {
		margin: 0 25px;
	}
	
	.navi>ul>li>a {
		font-size: 16px;
		line-height: 90px;
	}
}
@media screen and (max-width: 1280px) {
    .head {
		height: 80px;
	}
	.logo img {
		height: 40px;
	}
	
	.navi>ul>li {
		margin: 0 20px;
	}
	
	.navi>ul>li>a {
		font-size: 14px;
		line-height: 80px;
	}
}
@media screen and (max-width: 1024px) {
    .head {
		height: 70px;
	}
	.logo img {
		height: 30px;
	}
	
	.navi>ul>li {
		margin: 0 15px;
	}
	
	.navi>ul>li>a {
		font-size: 12px;
		line-height: 70px;
	}
	.mli {
		width: 140px;
		padding-left: 30px;
	}
}