/* 全局共用 */
* {
	padding: 0;
	margin: 0;
}
body{
	margin: 0; padding: 0; border:0; background-color:#fff;
	width: 100%; height:100%; min-height: 100%;
    overflow-x:hidden;
    /*设置height:100%可以解决页面内容少撑不起手机屏幕高度及其他一些兼容性问题，但如果应用了滚动上拉触底加载时又不能触发$(window).scroll()，解决办法是height:auto或去掉overflow设置，根据页面布局影响来取舍*/
	font-family: 微软雅黑,Microsoft Yahei ,Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.231;
	color:#444; 
	-webkit-overflow-scrolling: touch;
	-webkit-box-orient: vertical;
	-webkit-box-align:stretch;
	-webkit-touch-callout:none;
	-webkit-text-size-adjust:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
	-webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a {text-decoration:none;outline:none;}
a:link, a:active, a:visited {
	color: #444;
}

a:hover, a:focus {
	text-decoration: none;
	color: #d10101;
}

img {
	border: none;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus {
	outline: none;
}

ul, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap,ul.nowrap li {
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.b {
	font-weight: bold;
}

.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;
}

.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;
}
.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);
}
.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;
}

/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #999;
}
:-moz-placeholder {
	color: #999;
}
::-moz-placeholder {
	color: #999;
}
:-ms-input-placeholder {
	color: #999;
}

.head {
	width: 100%;
	height: 45px;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	background: #fff;
	overflow: hidden;
	-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;
}
.head.out {
	top: -50px;
}
.head img.logo {
	display: block;
	height: 29px;
	width: auto;
	position: absolute;
	left: 3%;
	top: 8px;
}
.head img.mom {
	display: block;
	height: 15px;
	padding: 15px 4%;
	width: auto;
	position: fixed;
	right: 0;
	top: 0;
	cursor: pointer;
}
.head img.momf {
	display: none;
	height: 17px;
	width: auto;
	padding: 14px 4%;
	position: fixed;
	right: 0;
	top: 0;
	cursor: pointer;
}

.navihide {
	width: 110px;
	height: calc(100vh - 45px);
	position: fixed;
	right: -110px;
	top: 45px;
	z-index: 1001;
	background: #fff;
	padding-bottom: 20px;
}
.navien {
	width: 150px;
	right: -150px;
}
.navihide a {
	display: block;
	height: 40px;
	text-decoration: none;
	line-height: 40px;
	font-size: 0.7em;
	text-align: center;
}
.navihide a.lang {
	width: 40px;
	margin-left: 70px;
	background: #518cbf;
	color: #fff;
	margin-bottom: 15px;
}
.navien a.lang {
	margin-left: 110px;
}

.foot {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 20px 0;
	background: #f5f5f5;
}
.foot span {
	display: block;
	height: auto;
	overflow: hidden;
	color: #ccc;
	text-align: center;
}
.foot a>span:nth-child(1) {
	font-size: 0.8em;
}
.foot a>span:nth-child(2) {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: bold;
}
.foot>span {
	font-size: 0.625em;
	padding-top: 5px;
	color: #bbb;
}

.ftel {
	width: 80%;
	height: 30px;
	line-height: 30px;
	background: rgba(50, 200, 200, 1);
	position: fixed;
	left: 10%;
	bottom: 10px;
	z-index: 1000;
	border-radius: 15px;
	font-size: 1em;
}
.ftel a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-align: center;
	color: #fff;
}
.ftel img {
	display: inline-block;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
}
.ftelen {
	height: 40px;
	border-radius: 25px;
	padding: 5px 0;
	line-height: 20px;
	bottom: 5px;
}

.secban,.secban2 {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 45px;
	position: relative;
}
.secban img {
	width: 100%;
	height: auto;
	display: block;
}
.secban2 img {
	width: 140%;
	height: auto;
	display: block;
	margin-left: -20%;
}
.secbar {
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 0.7em;
	overflow: auto;
	background: #518cbf;
}
.secm {
	width: 500%;
	height: 100%;
}
.secm a {
	height: 100%;
	display: block;
	padding: 0 15px;
	text-decoration: none;
	color: #fff;
	float: left;
}
.secm a.on {
	background-image: linear-gradient(#deebf5,#fff);
	color: #518cbf;
	font-weight: bold;
}

.secbar_en {
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 20px 0;
	background: #f5f5f5;
}
.secbar_en a {
	display: block;
	height: 26px;
	line-height: 26px;
	padding: 0 10px;
	background: #fff;
	float: left;
	margin: 0 0 5px 10px;
	font-size: 0.7em;
	text-decoration: none;
}
.secbar_en a.on {
	background: #518cbf;
	color: #fff;
}<!--0.00012993812561035-->