/* 全局 */

* {
	padding: 0;
	margin: 0;
}

body, html{
	background-color:#fff;
	width: 100%; height:auto; 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;
}

header, section, footer, aside, nav, main, article, figure { 
    display: block; 
}

button, input, select, textarea {
	color: #333;
	font: 0.875rem 微软雅黑, Microsoft Yahei, Helvetica, Arial, sans-serif;
	outline: none;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover, a:focus {
	color: #000;
}

img {
	border: none;
}
/* .svg图片先占位隐藏，待格式化后再显示，避免格式化前因为填充色不一致显示的问题 */
.svg {
	visibility: hidden;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus, button:focus {
	outline: none;
}

ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap, ul.nowraps 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;
}

.center {
	text-align: center;
}

.bold, .b {
	font-weight: bold;
}

.borderbox, .border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.hand, .linka {
	cursor: pointer;
}

.tips {
	max-width: 80%;
	height: auto;
	padding: 5px 20px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 0.875rem;
	line-height: 180%;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	opacity: 0;
	text-align: center;
	border-radius: 20px;
}

.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;
}

.fit_cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fit_contain {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.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);
}

.shadow2 {
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.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;
}

.trans10 {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}


/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #bbb;
}

:-moz-placeholder {
	color: #bbb;
}

::-moz-placeholder {
	color: #bbb;
}

:-ms-input-placeholder {
	color: #bbb;
}

.placeholder_white::-webkit-input-placeholder {
	color: #fff;
}
.placeholder_white:-moz-placeholder {
	color: #fff;
}
.placeholder_white::-moz-placeholder {
	color: #fff;
}
.placeholder_white:-ms-input-placeholder {
	color: #fff;
}

/* loader样式 */
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, .5);
}

.nb-spinner {
	width: 70px;
	height: 70px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: transparent;
	border-top: 3px solid #64b4f6;
	border-right: 3px solid transparent;
	border-radius: 50%;
	-webkit-animation: 1s spin linear infinite;
	animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* 头部 ----------------------------------------------------*/

.headbox {
	width: 100%;
	height: 50px;
}
.head {
	width: 100%;
	height: 50px;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	background: #fff;
	overflow: hidden;
	-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
.head.on {
    height: 100vh;
}
.logo {
    height: 50px;
    overflow: hidden;
}
.logo img {
	display: block;
    width: auto;
	height: 27px;
    float: left;
    margin: 11.5px 0 0 6%;
}

/* 面包导航图标 */
.navbtn {
    width: 60px;
    height: 60px;
    margin: -5px -5px 0 0;
    float: right;
    cursor: pointer;
}
.navline {
    fill: none;
    stroke: #000;
    stroke-width: 2px;
    transition: 500ms ease-out;
}
.line_1 {
    stroke-dasharray: 21 100;
    stroke-dashoffset: 85;
    transition: 500ms ease-out;
}
.navbtn.on .line_1 {
    stroke-dashoffset: 26;
}
.line_2 {
    stroke-dasharray: 25 100;
    stroke-dashoffset: 83;
    transition: 700ms ease-out;
}
.navbtn.on .line_2 {
    stroke-dashoffset: 26;
}
.line_3 {
    stroke-dasharray: 21 100;
    stroke-dashoffset: 85;
    transition: 900ms ease-out;
}
.navbtn.on .line_3 {
    stroke-dashoffset: 26;
}

/* 搜索 */
.seek {
    width: 90%;
    height: auto;
    overflow: hidden;
    margin: 100px auto 0 auto;
}
.head.on .seek {
    margin-top: 20px;
}
.seekbar {
    height: 40px;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}
.seekbar input {
    width: calc(100% - 50px);
    height: 40px;
    line-height: 40px;
    border: 0;
    float: left;
    font-size: 0.875rem;
    background: none;
}
.seekbar button {
    display: block;
	width: 40px;
	height: 40px;
	cursor: pointer;
	float: right;
	border: 0;
	background: none;
	overflow: hidden;
}
.seekbar button .svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px;
}
.seekbar button .svg path {
	fill: #000;
}

/* 一级菜单 */
.navi {
    width: 90%;
    height: calc(100vh - 140px);
    overflow: auto;
    margin: 100px auto 0 auto;
}
.head.on .navi {
    margin-top: 30px;
}
.navi>li {
	height: auto;
	overflow: hidden;
	border-bottom: 1px solid #e5e5e5;
}
.navi>li>a {
	display: block;
	line-height: 40px;
	overflow: hidden;
	font-size: 0.875rem;
	text-decoration: none;
}
.navi>li.on {
	border-bottom: 1px solid #00634f;
}
.navi>li.on>a {
	color: #00634f;
	font-weight: bold;
}

/* 二三级菜单 */
.navi>li ul {
	height: auto;
	overflow: hidden;
	display: none;
}
.navi>li ul>li {
	height: auto;
}
.navi>li ul>li>a {
	display: block;
	line-height: 40px;
	font-size: 0.75rem;
	text-decoration: none;
}
.navi>li>ul>li>a {
	padding-left: 25px;
	background: url(../images/aright.gif) 5px center no-repeat;
	background-size: 5px;
}
.navi>li>ul>li>ul>li>a {
	padding-left: 50px;
	background: url(../images/aro1.gif) 30px center no-repeat;
}

section {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.bkbox {
	margin: 10vw auto 0 auto;
}
img.bgp {
	display: block;
	width: 100%;
	height: auto;
}
.bkt {
    margin: 0 3%;
    height: auto;
    overflow: hidden;
    padding-bottom: 5vw;
}
.bkt span {
    display: block;
    float: left;
    font-size: 1.375rem;
    line-height: 120%;
    margin-right: 10px;
}

.footbox {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #f4f4f4;
	padding: 0 4%;
}
.flogo {
	display: block;
	height: 30px;
	margin: 10px 0 0 34.2%;
}

.frow {
	height: auto;
	overflow: hidden;
	margin-top: 10px;
	text-align: center;
}
.fnav {
	width: 45%;
	height: auto;
	overflow: hidden;
	float: left;
}
.fnav span {
	display: block;
	line-height: 30px;
	font-size: 0.875rem;
}
.fnav span:nth-child(1) {
	margin-bottom: 10px;
	font-weight: bold;
}
.fnav span img {
	display: inline-block;
	vertical-align: middle;
	height: 15px;
	margin-right: 5px;
}
.fnav span a {
	display: inline-block;
	color: #999;
	vertical-align: middle;
}
.fnav span.ftel {
	color: #999;
	font-weight: bold;
}

.fico {
	height: auto;
	overflow: hidden;
	margin-top: 20px;
	text-align: center;
	font-size: 0;
}
.ficop {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 15px;
	padding-top: 140px;
	vertical-align: bottom;
	position: relative;
}
.ficop img.ico, .ficop img.ico2 {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ficop img.ico {
	display: block;
}
.ficop img.ico2 {
	display: none;
}
.ficop.on img.ico {
	display: none;
}
.ficop.on img.ico2 {
	display: block;
}
.ficop p {
	display: none;
	width: 100px;
	height: 100px;
	padding: 5px;
	background: #fff;
	position: absolute;
	left: 50%;
	margin-left: -55px;
	top: 0;
	z-index: 100;
	-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);
}
.ficop.on p {
	display: block;
}
.ficop p img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ficop p::after {
	content: '';
	width: 0;
    height: 0;
	position: absolute;
	left: 50%;
	margin-left: -4px;
	top: 100%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
}
.frow2 {
	height: auto;
	overflow: hidden;
	margin-top: 20px;
	border-top: 1px solid #ddd;
	font-size: 0.625rem;
	line-height: 150%;
	padding: 20px 0;
	text-align: center;
}


/* 通用轮播 */

.swipebox {
    width: 100%;
    height: auto;
	padding-bottom: 30px;
    position: relative;
}

.swipe {
    width: 100vw;
    visibility: hidden;
    overflow: hidden;
    position: relative;
}

.swipeli {
    float: left;
    position: relative;
}

.swipelip {
    width: 100%;
	height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.swipelip img {
    display: block;
    width: 100%;
    height: auto;
}

.swipenavi {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.pager em {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, .2);
    margin: 0 5px;
    font-style: normal;
    overflow: hidden;
    font-size: 0px;
    border-radius: 50%;
	cursor: pointer;
}

.pager em.on {
    background: rgba(0, 0, 0, 1);
}


.dalislide {
	width: 100%;
	height: auto;
	position: relative;
    overflow: hidden;
}

.slidep {
    width: 100%;
    height: 100%;
    position: relative;
	overflow: hidden;
}

.slidep li {
    width: 100%;
    height: auto;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    z-index: 0;
    display: none;
}
/* 第一张图静态定位撑开盒子高度 */
.slidep li.static {
	position: static;
	display: block;
}
.slidep li img, .slidep li video {
    width: 100%;
    height: auto;
    display: block;
}
.slidep.cover li {
	height: 100%;
}
.slidep.cover li img, .slidep.cover li video {
	height: 100%;
	object-fit: cover;
}

.slideb {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 10;
	bottom: 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.slideb em {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 4px;
	background: rgba(221, 221, 221, .6);
	cursor: pointer;
	border-radius: 50%;
	-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;
}

.slideb em.on {
	background: rgba(0, 0, 0, 1);
}

.playbtn, .vodbtn {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -25px 0 0 -25px;
	z-index: 20;
	cursor: pointer;
	background: url(../images/play.png) center no-repeat;
	background-size: contain;
	opacity: .7;
}

.playbox, .vodbox {
	width: 100%;
	height: 100%;
	position: fixed;
    background: #000;
	left: 0;
	top: 0;
	z-index: 2000;
	display: none;
	overflow: hidden;
}
.playbox video, .vodbox video {
	display: block;
	width: 100%;
	height: calc(100% - 80px);
	margin: 40px 0;
}
.playbox img.closevod, .vodbox img.vodclose {
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 200;
	cursor: pointer;
}

.slideleft, .slideright {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	opacity: .5;
	z-index: 100;
	cursor: pointer;
	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;
    display: none;
}

/* 页码 */
.pagebox {
	padding: 30px 0;
	height: auto;
	overflow: hidden;
}

.pagination {
	height: auto;
	overflow: hidden;
	text-align: center;
}

.pagination a, .pagination p, .pagination span {
	display: inline-block;
	margin-right: 5px;
	padding: 0 20px;
	border: 1px #ddd solid;
	background: #fff;
	text-decoration: none;
	color: #666;
	font-size: 0.75rem;
	line-height: 35px;
	border-radius: 3px;
	vertical-align: top;
}

.pagination span {
	cursor: pointer;
}

.pagination p.pageRemark {
	display: block;
	margin-bottom: 10px;
	border: none;
	background: none;
	color: #666;
}

.pagination_all {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 20px;
	display: none;
	text-align: center;
}
.pagination_all a {
	display: inline-block;
	width: 10%;
	line-height: 30px;
	background: #f5f5f5;
	border-radius: 3px;
	margin: 0 1% 5px 1%;
	text-decoration: none;
	overflow: hidden;
	font-size: 0.7em;
	color: #999;
}
.pagination_all a.on {
	background: #00634f;
	color: #fff;
}