/* 全局 */

* {
	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: Arial, sans-serif, 微软雅黑, Microsoft Yahei, msyh, PingFangSC-Regular, Helvetica;
	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, sans-serif;
	outline: none;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover, a:focus {
	color: #fd6601;
    text-decoration: none;
}

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;
}

.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.5);
	display: none;
	overflow: hidden;
}

.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;
}

/* 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;
}

/* 头部 ----------------------------------------------------*/

.logo, .logot, .logoc, nav {
	height: auto;
    overflow: hidden;
    font-size: 1.125rem;
    line-height: 180%;
    text-align: center;
}
.logo img {
	display: block;
	height: 3.2vw;
	width: auto;
    margin: 1vw auto 0 auto;
}
.logoc {
    margin-top: 1vw;
}
.m1 {
    margin-top: 3vw;
    font-size: 1rem;
}
.m2 {
    margin: 1.5vw 0;
    font-size: 1rem;
    background: #f8f8f8;
    height: auto;
    overflow: hidden;
}
.m1 a, .m1 span {
    display: inline-block;
    margin: 5px 15px;
    line-height: 110%;
    cursor: pointer;
    position: relative;
}
.m1 a:nth-child(1)::after, .m1 span:nth-child(1)::after {
    display: none;
}
.m1 a:hover, .m1 span:hover {
    color: #fd6601;
}
.m1 a.on, .m1 span.on {
    font-weight: bold;
    color: #fd6601;
}
.m1 a.on::before, .m1 span.on::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #fd6601;
    position: absolute;
    left: 0;
    top: -20px;
}
.m2 a {
    display: inline-block;
    padding: 0 20px;
    line-height: 110%;
    position: relative;
}
.m2 a::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #999;
    position: absolute;
    left: 0;
    top: 0;
}
.m2 a:nth-child(1)::after {
    display: none;
}
.m2 a:hover {
    text-decoration: underline;
}
.m2 a.on {
    font-weight: bold;
    text-decoration: underline;
    color: #fd6601;
}
.secrow {
    display: none;
    margin: 0.5vw 0 1vw 0;
}
.secrow.on {
    display: block;
}

.title {
    font-size: 1.5rem;
    line-height: 180%;
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}
.controw {
    /* width: 950px; */
    width: 1000px;
    height: auto;
    margin: 1.5vw auto 0 auto;
    line-height: 160%;
}
.controw:nth-last-child(1) {
    margin-bottom: 4vw;
}
.sect {
    font-weight: bold;
    font-size: 1.125rem;
    position: relative;
}
.sect::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 1.125rem;
    background: #fd6601;
    margin-right: 15px;
}
.secc, .secp {
    margin-top: 1rem;
    font-size: 0.875rem;
    padding-left: 1vw;
    height: auto;
    overflow: hidden;
}
.secp {
    padding-left: 0;
}
.secc img {
    max-width: 100%;
}
.vod, .vodp {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.vod {
    margin-top: 1vw;
}
.vod.vodframe {
    height: 590px;
}
.vodp {
    cursor: pointer;
}
.vodp2 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}
.vodb {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
}
.vod video {
    display: block;
    width: 100%;
    height: auto;
}
/* .pro {
    width: 200px;
    height: auto;
    overflow: hidden;
    float: left;
    margin: 10px 30px 10px 0;
    cursor: pointer;
} */
.pro {
    width: 300px;
    height: auto;
    overflow: hidden;
    float: left;
    margin: 10px 0 10px 40px;
    cursor: pointer;
}
.pro:nth-child(3n+1) {
    margin-left: 0;
}
.pro img {
    display: block;
    width: 260px;
    height: 260px;
    margin: 10px 20px;
    object-fit: contain;
}
.pro span {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
}
.pro:hover span {
    font-weight: bold;
}

.probox {
    width: 800px;
    height: 100vh;
    padding: 2vw;
    background: #fff;
    position: absolute;
    right: -800px;
    top: 0;
    z-index: 100;
    overflow: auto;
    overflow-x: hidden;
}
.proclose {
    display: block;
    width: 25px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.prot {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 150%;
}
.proc {
    height: auto;
    overflow: hidden;
    font-size: 0.875rem;
    line-height: 180%;
    margin-top: 1vw;
}
.proc img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.proc table {
    border-collapse: collapse;
}
.probox::-webkit-scrollbar-thumb {
	background: #222;
    border-radius: 5px;
}


section {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}



/* 通用轮播 */

.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;
    font-size: 0;
	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: #b4926a;
}
.slideleft,.slideright {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	opacity: 0;
	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(/static/images/aleft.png) center no-repeat;
}
.slideright {
	left: calc(100% + 50px);
	background: url(/static/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(/static/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: 60px;
	height: auto;
	overflow: hidden;
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 100;
}

.rightbar img {
	display: block;
	width: 60px;
	height: 60px;
	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 #efefef solid;
	text-decoration: none;
	color: #808080;
	font-size: 1.125rem;
	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 #098576 solid;
	color: #098576;
}

.pagination a.cur, .pagination p.cur {
	color: #098576;
	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;
}


footer {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #f0f0f0;
	position: relative;
	z-index: 100;
}
.footb {
    width: 10vw;
    line-height: 2.5vw;
    background: #fd6601;
    color: #fff;
    text-align: center;
    font-size: 1.25rem;
    border-radius: 1.25vw;
    position: fixed;
    left: calc(50% + 275px);
    bottom: 25px;
    cursor: pointer;
}
.footbox {
    height: auto;
    overflow: hidden;
    margin: 4vw 0 3vw 0;
}
.lxbox, .formbox {
    height: auto;
    overflow: hidden;
    float: left;
}
.lxbox {
    width: 28%;
    margin-left: 15%;
}
.formbox {
    width: 34%;
    margin-left: 8%;
}
.lxt, .lxc, .lxi {
    float: left;
    height: auto;
    overflow: hidden;
    line-height: 150%;
}
.lxt {
    border-bottom: 2px solid #fd6601;
    font-size: 1rem;
    font-weight: bold;
    padding-bottom: 10px;
}
.lxc, .lxi {
    width: 100%;
}
.lxc {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}
.lxi {
    font-size: 1rem;
    margin-top: 1rem;
}
.lxi .svg {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    float: left;
}
.lxi .svg path {
    fill: #666;
}
.lxi span {
    display: block;
    float: left;
    width: calc(100% - 40px);
    margin-left: 20px;
}
.inprow {
    height: auto;
    overflow: hidden;
    margin-bottom: 0.7vw;
}
.inprow span {
    display: block;
    float: left;
    width: 90px;
    font-size: 1rem;
    line-height: 2vw;
}
.inprow input.inp, .inprow textarea {
    width: calc(100% - 100px);
    float: left;
    border: 1px solid #ddd;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
} 
.inprow input.inp {
    line-height: 2vw;
    height: 2vw;
    padding: 0 10px;
}
.inprow textarea {
    height: 150px;
    line-height: 150%;
    padding: 5px 10px;
}
.formbtn {
    width: 150px;
    line-height: 40px;
    border-radius: 20px;
    background: #fd6601;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    cursor: pointer;
    margin: 15px 0 0 90px;
}


@media screen and (max-width: 1680px) {
	body, html {
		font-size: 15px;
	}
	.rightbar {
		width: 50px;
	}
	.rightbar img {
		width: 50px;
		height: 50px;
	}
}

@media screen and (max-width: 1440px) {
	body, html {
		font-size: 14px;
	}
	.rightbar {
		width: 40px;
		right: 20px;
	}
	.rightbar img {
		width: 40px;
		height: 40px;
	}
}

@media screen and (max-width: 1280px) {
	body, html {
		font-size: 12px;
	}
}
