*{
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-family: "微软雅黑";
}
body{
	color: #333;
	font-size: 14px;
	line-height: 26px;
}
a{
	color: #333;
	text-decoration: none;/*去掉文字下划线*/
}
a:hover{
	color: #0290b1;
	text-decoration: none;
}

.header{
	overflow: hidden;
}
.header .top{
	height: 29px;
	line-height: 29px;
	border-bottom: 1px solid #f1ff1;
	background: #f9f9f9;
	font-size: 12px;
}
.header .top dl{
	width: 1200px;
	margin: auto;
	overflow: hidden;
}
.header .top dl dt{
	float: left;
}
.header .top dl dd{
	float: right;
}
.header .top dl dd svg{
    float: left;
    width: 18px;
    height: 18px;
    margin: 6px 10px 0 0;
}
.header .top dl dd span{
	float: left;
}
.header .nav{
	width: 1200px;
	line-height: 40px;
	margin: 0px auto;
	overflow: hidden;
}
.header .nav .logo{
	float: left;
	margin:5px 0;
}
.header .nav .logo img{
	display: block;
	height: 70px;
}
.header .nav ul{
	float: right;
	margin: 20px 0;
	overflow: hidden;
}
.header .nav ul h1, /*, 代表“和”*/
.header .nav ul ol .icon-guanbi{/*针对的是电脑端*/
	display: none;
}
.header .nav ul li{
	float: left;
	font-size: 15px;
	background: url(../img/main01.png) no-repeat center right;
	padding-right: 7px;
}
.header .nav ul li a{
	display: block;
	padding: 0 15px;
}
.header .nav ul li a.clickclass{
    color: #0290b1;
}
.banner{
	position: relative;/*相对定位*/
	overflow: hidden;
}
.banner .bd ul li img{
	display: block;
	width: 100%;
}
.banner .hd{
	position: absolute;
	bottom: 5px;
	width: 100%;
	text-align: center;
}
.banner .hd ul li{
	display: inline-block;
	width: 60px;
	height: 6px;
	background: #f00;
	border-radius: 10px;
	cursor: pointer;/*鼠标手型*/
}
.banner .hd ul .on{
	background: #0290b1;
}
.banner span{
	position: absolute;/*绝对定位*/
	left: -60px;
	top: 50%;
	margin-top: -30px;
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 45px;
	font-family: "黑体";
	text-align: center;
	line-height: 60px;
	cursor: pointer;/*鼠标手型*/
	transition: all 0.5s;/*时间过滤动画*/
}
.banner:hover span{
	left: 5%;
}
.banner .next{
	right: -60px;
	left: initial;/*initial 取消原定义的属性*/
}
.banner:hover .next{
	left: initial;
	right: 5%;
}

.footer{
	background: #0290b1;
	color: #fff;
	font-size: 13px;
	overflow: hidden;
}
.footer .bottom{
	width: 1200px;
	margin: auto;
	margin-top: 30px;
	overflow: hidden;
}
.footer .bottom ul{
	float: left;
	width: 200px;
	line-height: 35px;
	overflow: hidden;
}
.footer .bottom ul b{
	display: block;
	margin-bottom: 5px;
}
.footer .bottom ul li a{
	color: #fff;
	max-width: 75%;
	float: left;
	display: block;/*转换为行内块元素*/
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.footer .bottom ul li{
	overflow: hidden;
}
.footer .bottom ul li a:hover{
	text-decoration: underline;/*文字添加下划线*/
}
.footer .bottom ul li span{
	float: left;
	width: 25px;
}
.footer .bottom ul li font{
	width: 175px;
	float: left;
	line-height: 26px;
	padding-top: 5px;
}
.footer .bottom ul:last-child{
	width: 280px;
	float: right;
}
.footer .bottom ul:last-child li{
	width: 120px;
	margin: 50px 0 0 20px;
	text-align: center;
	font-size: 12px;
	float: left;
}
.footer .bottom ul:last-child li img{
	display: block;
	width: 120px;
	height: 120px;
	margin-bottom: 5px;
}
.footer p{
	background: rgba(0, 0, 0, 0.05);
	padding: 5px 0;
	text-align: center;
}

/*媒体查询*/
@media (max-width: 1080px){/*最大宽度为1080；(屏幕小于1080宽度的将被以下css定义)*/
	body{
		font-size: 0.740741rem;/*40px*/
		line-height: 1.296296rem;/*70px*/
	}
	.header{
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 9999;
		background: #fff;
		box-shadow: 0 3px 3px #dedede;/*盒子阴影：*/
	}
	.header .top{
		height: 1.111111rem;/*60px*/
		line-height: 1.111111rem;/*60px*/
		font-size: 0.648148rem;/*35px*/
	}
	.header .top dl{
		width: 94%;
	}
	.header .top dl dd svg{
	    height: 0.7rem;
	    width:0.7rem;
	    margin: 0.2rem 0.2rem;
	}
	.header .top dl dd span{
		font-size: 0.648148rem;/*35px*/
	}
	.header .nav{
		width: 94%;
		line-height: 1.296296rem;/*70px*/
	}
	.header .nav .logo img{
		height: 2rem;/*108px*/
	}
	.header .nav ul{
	    margin:5px 0;
	}
	.header .nav ul h1{
		width: 1.3rem;/*70px*/
		height: 1.3rem;
		padding: 0.35rem 0;
		display: block;/*显示*/
		font-size: 1.3rem;/*54px*/
		font-weight: 500;
	}
	.header .nav ul ol{
		position: fixed;/*固定定位*/
		right: -5rem;
		top: 0;
		height: 100vh;
		background: rgba(0,0,0,0.8);
		overflow: auto;
		width: 4rem;
		z-index: 9;
		transition: all 0.5s;
	}
	.header .nav ul:hover ol{
		right: 0;
	}
	.header .nav ul ol .icon-guanbi{
		display: block;
		width: 1.296296rem;/*70px*/
		height: 1.296296rem;
		color: #fff;
		font-size: 1rem;
		text-align: center;
		margin: 1.481481rem auto 0.8rem auto;
	}
	.header .nav ul li{
		font-size: 0.740741rem;/*40px*/
		background: none;
		padding-right:0;
		width: 100%;
	}
	.header .nav ul li a{
		color: #fff;
		padding: 0;
		text-align: center;
		line-height: 2rem;
	}
	
	.banner{
		margin-top: 3.611111rem;/*195px*/
	}
	.banner .hd{
		bottom: 0.1rem;
	}
	.banner .hd ul li{
		width: 1.111111rem;
		height: 0.185185rem;/*10px*/
		border-radius: 0.185185rem;
	}
	.banner span{
		left: 2%;
		margin-top: -0.7rem;/*1rem=51px*/
		width: 0.7rem;
		height: 1.4rem;
		background: rgba(0, 0, 0, 0.2);
		font-size: 0.6rem;
		line-height: 1.4rem;
	}
	.banner:hover span{
		left: 2%;
	}
	.banner .next{
		right: 2%;
	}
	.banner:hover .next{
		right: 2%;
	}
	
	.footer{
		font-size: 0.648148rem;/*35px*/
	}
	.footer .bottom{
		width: 94%;
		margin-top: 0.555556rem;/*30px*/
	}
	.footer .bottom ul{
		width: 60%;
		line-height: 1.296296rem;/*70px*/
	}
	.footer .bottom ul:nth-child(1),
	.footer .bottom ul:nth-child(2),
	.footer .bottom ul:nth-child(3){
		display: none;
	}
	.footer .bottom ul b{
		margin-bottom: 0.2rem;
	}
	.footer .bottom ul li span{
		width: 10%;
		font-size: 0.740741rem;/*40px*/
	}
	.footer .bottom ul li font{
		width: 90%;
		line-height: 1.296296rem;
		padding-top: 0;
	}
	.footer .bottom ul:last-child{
		width: 20%;
	}
	.footer .bottom ul:last-child li{
		width: 100%;
		margin:0.2rem 0 0 0;/*10.8px*/
		font-size: 0.648148rem;/*35px*/
	}
	.footer .bottom ul:last-child li img{
		width: 100%;
		height: 3.759259rem;
		margin-bottom: 0;/*10.8px*/
	}
	.footer .bottom ul:last-child li:last-child{
		display: none;
	}
}