@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

em,
i {
	font-style: normal;
}

img {
	width: 100%;
	height: 100%;
	border: 0;
	vertical-align: top;
}

input,
select,
textarea {
	font-size: 100%;
	border: 0;
	outline: none;
	resize: none;
	background: transparent;
}

/* 获取焦点时，去掉黄色背景 */
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px white inset !important;
}

input:disabled {
	background-color: #eee;
	color: #fff;
	cursor: no-drop;
}

button {
	border: 0;
	background: none;
}

/*清除css中select的下拉箭头样式*/
select {
	border: 0;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}

select::-ms-expand {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/**清除浮动**/

.fl {
	float: left;
}

.fr {
	float: right;
}

.clearfix:after,
.clf:after {
	font-size: 0;
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ' ';
}

.clearfix,
.clf,
.zoom {
	zoom: 1;
}

.clear {
	clear: both;
	font-size: 0;
	height: 0;
	visibility: hidden;
	overflow: hidden
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease 0s;
}

a:hover {
	text-decoration: none;
	color: #4E8DDF;
}

body,
html {
	font-family: PingFang SC-Regular, microsoft yahei, Helvetica Neue, Helvetica, arial, STHeiTi, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #4C4C4C;
}

.wrap {
	width: 1260px;
	margin: 0 auto;
}

/* 导航 */
.wxHeader_box {
	width: 100%;
	height: 90px;
	background-color: rgba(0, 197, 176, 0.9);
	overflow: hidden;
}

.wxHeader_fixed{
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
}

.wxLogo_con {
	float: left;
	color: #fff;
}

.wxLogo_con h1 {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 3px;
	margin-top: 20px;
}

.wxLogo_con .logoEng {
	font-size: 13px;
}

.wxNav_con {
	float: right;
}

.wxNav_con .navUl{
	margin-top: 22px;
}

.wxNav_con li{
	float: left;
	/* width: 80px; */
	width: 95px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin-right: 20px;
	position: relative;
}

.wxNav_con li .navTit{
	font-size: 16px;
	font-weight: bold;
}

.wxNav_con li .navEng{
	font-size: 10px;
}


.wxNav_con li::after{
	content: '';
	width: 40px;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	bottom: -10px;
	z-index: 10;
	margin-left: -20px;
	visibility: hidden;
}

.wxNav_con li:hover a{
	color: #fff;
}

.wxNav_con li.active::after,
.wxNav_con li:hover::after{
	visibility: visible;
}