body{
	margin: 0px;
	padding: 0px;
}
ul,li{
	list-style: none;
	padding: 0px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
a{
	text-decoration: none;
}
p{
	margin: 0px;
}
.main{
	width: 1140px;
	margin: auto;
}
.flexBox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.header{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 999;
	background: linear-gradient(to right,#e9f8fb,#e9f8fb);
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.header ul{
	display: flex;
	justify-content: space-between;
}
.header ul li{
	flex-grow: 1;
	text-align: center;
	position: relative;
}
.show-pc{
	display: flex;
	align-items: center;
}
.show-pc .left{
	padding-right: 20px;
	border-right: 1px solid #555;
}
.show-pc .right{
	padding-left: 60px;
}
.show-pc .right a{
	width: 150px;
	display: block;
}
.header .left{
	width: 200px;
	font-size: 0px;
}
.header .left img{
	height: 42px;
	width: auto;
}
.header .right{
	/* width: calc(100% - 200px); */
}
.header .right li>.down{
	width: 100%;
	position: absolute;
	background-color: rgba(255,255,255,1);
	border-top: 6px solid #45baff;
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
	display: none;
}
.header .right li>.down a{
	display: block;
	line-height: 38px;
	color: #333;
}
.header .right li>.down a:hover{
	background-color: #f6f6f6;
}
.header .right li>p a{
	color: #333;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 40px;
}
.header .right li>p:hover~.down{
	display: block;
}
.header .right li>.down:hover{
	display: block;
}
.toTop{
	position: fixed;
	right: 15px;
	bottom: 20vh;
	background-color: #888;
	text-align: center;
	padding: 15px;
	border-radius: 6px;
	z-index: 999;
}
.toTop img{
	width: 34px;
}
.toTop p{
	color: #fff;
}
.show-wrap{
	display: none;
}
.header .show-wrap svg{
	width: 18px;
	height: 18px;
}
.header .show-wrap .flexBox{
	padding: 15px;
	position: relative;
	z-index: 999;
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
	transition-duration: 0.4s;
}
.header .show-wrap .left{
	width: auto;
}
.header .show-wrap .right{
	width: auto;
}
.header .show-wrap>input{
	position: absolute;
	opacity: 0;
}
.header .show-wrap>input:checked ~ .nav{
	top: 72px;
}
.header .show-wrap .nav{
	position: fixed;
	top: -100%;
	left: 0px;
	right: 0px;
	background-color: #fff;
	z-index: 998;
	padding: 10px 0px;
	transition-duration: 0.4s;
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.header .show-wrap .nav>div{
	padding: 10px 15px;
}
.header .show-wrap .nav>div>input{
	position: absolute;
	opacity: 0;
}
.header .show-wrap .nav>div>a{
	color: #333;
}
.header .show-wrap .nav>div>a label{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .show-wrap .nav>div>a svg{
	width: 14px;
	height: 14px;
	transition-duration: 0.2s;
}
.header .show-wrap .nav>div input:checked ~a svg{
	transform: rotate(45deg);
}
.header .show-wrap .nav>div input:checked ~a~ul{
	display: block;
}
.header .show-wrap .nav ul{
	display: none;
	margin: 0px;
	margin-top: 5px;
}
.header .show-wrap .nav ul li{
	text-align: left;
	display: block;
}
.header .show-wrap .nav ul li>a{
	color: #999;
	display: block;
	line-height: 34px;
}
body{
	padding-top: 70px;
}
footer{
	background-color: #fafafa;
	text-align: center;
	padding: 40px 0px;
	position: relative;
	overflow: hidden;
}
footer .mk1{
	padding-bottom: 30px;
	display: flex;
	justify-content: center;
	padding: 0px 15px;
}
footer .mk1 a{
	width: 150px;
	color: #333;
}
footer .mk2{
	color: #333;
	line-height: 30px;
	padding: 0px 15px;
}
footer::after{
	content: '';
	display: block;
	position: absolute;
	height: 3px;
	left: 0px;
	right: 0px;
	bottom: -3px;
	box-shadow: 0px -10px 8px rgba(0,0,0,.15);
}
@media screen and (max-width:780px){
	.main{
		width: 100%;
	}
	.show-pc{
		display: none;
	}
	.show-wrap{
		display: block;
	}
	
	.toTop{
		padding: 10px;
		right: 0px;
		opacity: 0.6;
	}
	.toTop img{
		width: 24px;
	}
	.toTop p{
		display: none;
	}
	footer .mk1 a{width: 100px;}
}