@charset "utf-8";

/* CSS Document */

/*css初始化*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
button,
input,
textarea,
p,
table,
th,
td,
em {

	margin: 0;

	padding: 0;

}

body {

	font-size: 14px;

	font-family: "Microsoft YaHei", "微软雅黑", "Heiti SC", "黑体-简";

	color: #333;

}

img,
input,
button {

	border: 0;

	vertical-align: middle;

}

ul,
ol,
li {

	list-style: none;

}

a {

	text-decoration: none;

	color: #333;

	transition: all 0.3s ease-in-out;

	-webkit-transition: all 0.3s ease-in-out;

	-moz-transition: all 0.3s ease-in-out;

	-o-transition: all 0.3s ease-in-out;

}

a:hover {

	color: #02b2b5;

}

p {

	text-align: justify;

}

em {

	font-style: normal;

}

.clearfix:after {

	content: ".";

	display: block;

	height: 0;

	clear: both;

	visibility: hidden;

	*zoom: 1;

}

.w1200 {

	max-width: 1200px;

	margin: 0 auto;
	width: 100%;
}

.fl {

	float: left;

}

.fr {

	float: right;

}

/*头部开始*/

.header {

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;

}

.header .logo img {
	max-width: 100%;
}

.header .language {

	/* width: 750px; */

	/* height: 120px; */

	overflow: hidden;
	display: flex;
	flex-direction: column;

}

.header .language-web {

	padding: 10px 0;

}

.header .language-web span {

	padding-left: 20px;

	font-size: 14px;

	margin-left: 30px;

	background: url(../img/icon.png) 0 3px no-repeat;

}

.header .language-web .en {

	background-position: 0 -29px;

}

.header .language-web .eyu {

	background-position: 0 -61px;

}

.header .language-web .yueyu {

	background-position: 0 -90px;

}

.header .language-web .cn {

	background-position: 0 -120px;

}

.header .language-hotline {

	text-align: right;

	/* width: 750px; */

	font-size: 18px;

	overflow: hidden;

	padding-top: 10px;

}

.header .language-hotline span {

	font-size: 26px;

	color: #02b2b5;

}

/*导航*/

.nav {

	width: 100%;

	height: 52px;

	background-color: #02b2b5;

}

.nav .w1200 {

	max-width: 1190px;
	/* white-space: nowrap; */
	/* overflow: scroll; */

}

.nav .w1200 ul {
	/* display: flex; */
	/* justify-content: space-between; */
}

.nav ul .onli {

	float: left;

	width: calc(100% / 7);

	height: 50px;

	line-height: 50px;

	border-top: 1px solid #02b2b5;

	border-bottom: 1px solid #02b2b5;

	position: relative;

}

.nav ul .onli>a {

	width: 100%;

	height: 50px;

	display: block;

	font-size: 16px;

	text-align: center;

	line-height: 50px;

	color: #fff;

	padding: 0 15px;

}

.nav ul li.on>a {

	background-color: #fff;

	color: #333;

}

.nav ul li.on>a:hover {

	color: #02b2b5;

}

.nav .onli .nav-show {

	display: none;

	position: absolute;

	top: 51px;

	left: 0;

	z-index: 1;

}

.nav .onli .nav-show li {

	text-align: center;

	width: 170px;

	height: 40px;

	line-height: 40px;

	background-color: rgba(0, 0, 0, 0.4);

}

.nav .onli .nav-show li a {

	width: 170px;

	height: 40px;

	line-height: 40px;

	display: block;

	color: #fff;

	font-size: 15px;

}

.nav .onli .nav-show li:hover {

	background-color: rgba(0, 0, 0, 0.7);

}

/*底部版权*/

.footer {

	margin-top: 50px;

	background-color: #333;
	padding: 30px 0;

}

.footer ul {

	max-width: 1200px;

	margin: 0 auto;

	display: flex;

	justify-content: space-between;
	align-items: center;

}

.footer ul li {

	text-align: center;

	float: left;


	/* line-height: 100px; */

	/*padding-left: 40px;*/

	color: #777;

	width: 32%;

}


.footer ul li p a {

	color: #777;

}

.footer ul li i {

	width: 20px;

	height: 20px;

	margin-right: 10px;

	vertical-align: middle;

	display: inline-block;

	background: url(../img/icon.png) 5px -157px no-repeat;

}

.footer ul li i.icon-phone {

	background: url(../img/icon.png) 0px -194px no-repeat;

}

@media screen and (max-width:1080px) {
	.fl {
		width: 45%
	}

	.header .language {
		width: 53%;
	}

}


@media screen and (max-width:768px) {
	.nav .w1200 {
		white-space: nowrap;
		overflow: scroll;
	}

	.nav .w1200 ul {
		display: flex;
		justify-content: space-between;
	}

	.nav ul .onli {
		width: auto;
	}

	.footer ul {
		flex-wrap: wrap;
		padding: 0 20px;
	}

	.footer ul li {
		width: 100%;
	}

	.fl {
		width: 100%;
		text-align: center;
	}

	.header .language {
		width: 100%;
	}

	.header .language-hotline {
		text-align: center;
	}

	.header .language-web {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.header .language-web span {
		margin: 0 15px;
	}

}