/* 全局 */

* {
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-thumb {
	background: #555;
}

::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: #ddd;
}

/* @font-face {
    font-family: 'en';
    src: url('../fonts/en.eot'),url('../fonts/en.woff') format('woff'),url('../fonts/en.ttf') format('truetype'),url('../fonts/en.svg') format('svg');
    font-weight: normal;
    font-style: normal;
} */

body, html {
	width: 100%;
	min-width: 1200px;
	height: auto;
	min-height: 100vh;
	background: #fff;
	font-family: 微软雅黑, Microsoft Yahei, msyh, PingFangSC-Regular, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	-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);
}

header, section, footer, aside, nav, main, article, figure { 
    display: block; 
}

button, input, select, textarea {
	color: #333;
	font: 0.875rem 微软雅黑, Microsoft Yahei, PingFangSC-Regular, Helvetica, Arial, sans-serif;
	outline: none;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover, a:focus {
	color: #0c345c;
}

img {
	border: none;
}
/* .svg图片先占位隐藏，待格式化后再显示，避免格式化前因为填充色不一致显示的问题 */
.svg {
 
}

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;
}

.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.7);
	display: none;
	overflow: auto;
}

.coverimg img, .coverthis {
	transition: all 0.5s;
}

.coverimg:hover img, .coverthis:hover {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.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;
}

.border-box {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 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: -100px;
	margin-top: -100px;
	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);
	}
}

/* 自定义alert/confirm */

.alertbox,
.confirmbox {
    display: block;
}
.alert {
    width: 460px;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    margin: calc(50vh - 150px) auto 0 auto;
}
.alert_title {
    width: 100%;
    line-height: 45px;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #e0e0e0;
}
.alert_cont {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.875rem;
    line-height: 180%;
}
.alert_btn {
    width: 80px;
    line-height: 28px;
    border: 1px solid #999;
    font-size: 0.875rem;
    border-radius: 3px;
    margin: 0 auto 30px auto;
    cursor: pointer;
    text-align: center;
}
.confirm_btn {
    height: auto;
    overflow: hidden;
    text-align: center;
}
.confirm_btn span {
    display: inline-block;
    line-height: 28px;
    border: 1px solid #999;
    font-size: 0.875rem;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 10px 30px 10px;
    padding: 0 20px;
    vertical-align: top;
}

/* 头部 ----------------------------------------------------*/

.headbox {
	width: 100%;
	height:0;
}
.head {
	width: 100%;
	height: 5vw;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 200;
	background: rgba(255, 255, 255, 0);
}
.logo {
	width: auto;
	height: 30px;
	margin: 35px 0 0 10%;
	float: left;
	overflow: hidden;
}
.logo .svg {
	display: block;
	height: 100%;
	width: auto;
}
.logo .svg path {
	fill: #fff;
}
.navi {
	float: right;
}
.navi a {
	display: block;
	text-decoration: none;
}
.navi>li {
	position: relative;
	float: left;
	position: relative;
}
.navi>li>a {
	font-size: 1rem;
	line-height: 60px;
	padding: 20px 20px 0 20px;
	color: #fff;
}
.navi>li>a:hover {
	font-weight: bold;
}
.navi>li.on>a {
	font-weight: bold;
}
.navi>li>ul {
	width: 100px;
	position: absolute;
	left: calc(50% - 50px);
	top: 100%;
	z-index: 10;
	height: auto;
	overflow: hidden;
	background: none;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
}
.navi>li>ul>li>a {
	height: 0;
	line-height: 40px;
	font-size: 0.75rem;
	text-align: center;
	opacity: 0;
}
.navi>li:hover>ul {
	padding: 15px 0;
	background: #e8e8e8;
}
.navi>li:hover>ul>li>a {
	height: 40px;
	opacity: 1;
}
.navi>li>ul>li>a:hover {
	background: #0c345c;
    color: #fff;
}

.seekbox {
	height: 40px;
	overflow: hidden;
	float: right;
	margin: 36px 10% 0 20px;
	font-size: 0;
	text-align: left;
}
.seekbox.on {
	margin-right: 6%;
}
.seekbox form {
	display: inline-block;
}
.seekbox a {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px;
	font-size: 1.125rem;
	color: #fff;
	line-height: 30px;
	border-radius: 20px;
	margin: 0 20px;
	font-family: Arial, Helvetica, sans-serif;
}
.seekbox p {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	height: 30px;
	overflow: hidden;
	cursor: pointer;
}
.seekbox p .svg {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
	margin: 4px;
}
.seekbox p .svg path {
	fill: #fff;
}
.seekbox input {
	display: inline-block;
	vertical-align: top;
	color: #fff;
	font-size: 0.875rem;
}
.seekbox input.inp {
	width: 0;
	height: 29px;
	line-height: 100%;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, .7);
	background: none;
}
.seekbox.on .inp {
	width: 150px;
}

.head.out {
    height: 70px;
	background: #fff;
	-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.head.out .logo {
	height: 25px;
	margin-top: 25px;
}
.head.out .logo .svg path {
	fill: #006550;
}
.head.out .navi>li>a {
	color: #333;
	line-height: 40px;
	padding-top: 15px;
}
.head.out .seekbox {
	margin-top: 20px;
}
.head.out .seekbox a {
	color: #333;
}
.head.out .seekbox p .svg path {
	fill: #666;
}
.head.out .seekbox input {
	color: #666;
}
.head.out .seekbox input.inp {
	border-bottom: 1px solid #999;
}

section {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.bkbox {
	width: 80%;
	margin: 5vw auto 0 auto;
}
img.bgp {
	display: block;
	width: 100%;
	height: auto;
}
.noban {
    padding-top: 5vw;
}

/* 通用轮播 */

.dalislide {
	width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.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;
}
/* 需要图片自动裁切的html端给slidep加上cover类，不加就是自适应宽高比例 */
.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: 12px;
	height: 12px;
	margin: 0 5px;
	background: rgba(255, 255, 255, .7);
	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);
}
.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;
}
.slideleft {
	left: -50px;
	background: url(../images/aleft.png) center no-repeat;
}
.slideright {
	right: -50px;
	background: url(../images/aright.png) center no-repeat;
}
.dalislide:hover .slideleft {
	left: 50px;
	opacity: .6;
}
.dalislide:hover .slideright {
	left: calc(100% - 100px);
	opacity: .6;
}
.dalislide:hover .slideleft:hover, .dalislide:hover .slideright:hover {
	opacity: 1;
}

/* 通用滚动 */
.scrollbox {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.scrollu {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
}

/* 独立视频，dalislide轮播内用playbtn，其他用vodbtn */

.playbtn, .vodbtn {
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -35px 0 0 -35px;
    z-index: 20;
    opacity: .7;
    background: url(../images/play.png) center no-repeat;
	background-size: contain;
}
.playbtn:hover, .vodbtn:hover {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    opacity: 1;
}
.playbox, .vodbox {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    display: none;
    background: #000;
    overflow: hidden;
}
.playbox video, .vodbox video {
    width: 100%;
    height: 100%;
}

.playbox img.closevod, .vodbox img.vodclose {
    display: block;
    width: 37px;
    height: 37px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 200;
}

/* 侧边 */
.rightbar {
	width: 50px;
	height: auto;
	overflow: hidden;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}

.rightbar img {
	display: block;
	width: 50px;
	height: 50px;
	cursor: pointer;
}


/* 页码 */
.pagebox {
	padding: 4vw 0;
}

.pagination {
	height: auto;
	padding: 10px 0px;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}

.pagination a, .pagination p, .pagination span {
	display: inline-block;
	margin-right: 3px;
	padding: 0 15px;
	border: 1px #f0f0f0 solid;
	text-decoration: none;
	color: #808080;
	font-size: 1rem;
	line-height: 40px;
	border-radius: 3px;
}
.pagination a#pagefirst, .pagination a#pagelast {
	display: none;
}

.pagination span {
	cursor: pointer;
}

.pagination p.pageGo {
	border-left: 0;
	cursor: pointer;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-left: 5px;
	display: none;
}

.pagination input {
	/* display: inline-block; */
	display: none;
	padding: 0;
	border: 1px solid #ddd;
	border-right: 0;
	background: #fff;
	color: #808080;
	font-size: 14px;
	line-height: 40px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	width: 40px;
	text-align: center;
}

.pagination a:hover {
	border: 1px #abb9c9 solid;
}

.pagination a.page-num-current, .pagination p.page-num-current {
	border: 1px solid #0c345c;
	color: #0c345c;
	font-weight: bold;
}

.pagination p.pageRemark {
	display: none;
	margin: 10px auto 0 auto;
	border: none;
	background: none;
	color: #666;
}

.pagination p.pageEllipsis {
	border: none;
	background: none;
	color: #808080;
	padding: 0 12px;
}

.ckbox_remove {
	width: 90px;
	line-height: 26px;
	background: rgba(16, 140, 255, 0.6);
	color: #fff;
	font-size: 14px;
	text-align: center;
	border-radius: 15px;
	position: absolute;
	right: 200px;
	bottom: 10px;
	cursor: pointer;
}

footer {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.frow1 {
	height: auto;
	overflow: hidden;
	padding: 5vw 10% 2vw 10%;
	background: #f4f4f4;
}
.frow2 {
	height: auto;
	overflow: hidden;
	text-align: center;
	font-size: 0.875rem;
	line-height: 150%;
	padding: 10px 0;
	color: #999;
}
.frow2 a {
	color: #999;
}
.fadr {
	float: left;
	font-size: 0.75rem;
	line-height: 180%;
}
.fnavs {
	float: left;
}
.fnav {
	float: left;
	margin-left: 5vw;
	height: auto;
	overflow: hidden;
}
.fnav span {
	display: block;
	line-height: 30px;
	font-size: 0.875rem;
}
.fnav span:nth-child(1) {
	margin-bottom: 10px;
	font-weight: bold;
}
.fnav span.ftel {
	color: #aaa;
	font-weight: bold;
	padding-left: 20px;
}
.fnav span img {
	display: inline-block;
	vertical-align: middle;
	height: 20px;
	margin-right: 5px;
}
.fnav span a {
	display: inline-block;
	color: #999;
	vertical-align: middle;
}
.fnav span a:hover {
	color: #333;
}
.flogo {
	float: right;
	height: 3.5vw;
	margin-top: 30px;
}
.flogo .svg {
	display: block;
	height: 100%;
	width: auto;
}

.fico {
	height: auto;
	font-size: 0;
	margin-top: 3vw;
	margin-left: 5vw;
}
.ficop {
	width: 35px;
	height: 35px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	margin: 0 10px;
}
.ficop img.ico, .ficop img.ico2 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ficop img.ico2 {
	display: none;
}
.ficop:hover img.ico {
	display: none;
}
.ficop:hover img.ico2 {
	display: block;
}
.ficop p {
	display: none;
	width: 100px;
	height: 100px;
	padding: 5px;
	background: #fff;
	position: absolute;
	left: 50%;
	margin-left: -60px;
	top: -120px;
	z-index: 10;
	-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:hover 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: -3px;
	top: 100%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}


@media screen and (max-width: 1680px) {
	body, html {
		font-size: 15px;
	}
	.logo {
		height: 25px;
		margin: 30px 0 0 8%;
	}
	.head.out .logo {
		height: 22px;
		margin-top: 25px;
	}
	.navi>li>a {
		line-height: 50px;
	}
	.seekbox {
		margin: 30px 8% 0 20px;
	}
	
}

@media screen and (max-width: 1440px) {
	body, html {
		font-size: 14px;
	}
	.logo {
		height: 20px;
		margin: 28px 0 0 8%;
	}
	.head.out .logo {
		height: 20px;
		margin-top: 25px;
	}
	.navi>li>a {
		line-height: 40px;
	}
	.seekbox {
		margin: 26px 8% 0 20px;
	}
}

@media screen and (max-width: 1280px) {
	body, html {
		font-size: 12px;
	}
}