/* 全局 */

* {
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 10px;
	height: 1px;
}

::-webkit-scrollbar-thumb {
	background: #555;
}

::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: #ddd;
}

body, html {
	width: 100%;
	min-width: 1200px;
	height: auto;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	background: #f5f5f5;
	overflow-x: hidden;
}

body, td, button, input, select, textarea {
	color: #333;
	font: 14px 微软雅黑, Microsoft Yahei;
	line-height: 24px;
	outline: none;
}

a:link, a:active, a:visited {
	color: #333;
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
	color: #000;
}

img {
	border: none;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select: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;
}

.hand, .linka {
	cursor: pointer;
}

.tips {
	height: auto;
	padding: 5px 20px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	line-height: 24px;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	FILTER: alpha(opacity=0);
	opacity: 0;
	font-size: 0.75em;
	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;
}

.coverimg img, .coverthis {
	transition: all 0.5s;
}

.coverimg:hover img {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.coverthis:hover {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.dalifit_cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dalifit_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: #999;
}

:-moz-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

/* loader样式 */
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 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);
	}
}


/* 头部 ----------------------------------------------------*/

.head {
	width: 100%;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}
.head.out {
	opacity: 0;
    top: -100px;
}

.logo {
	height: 38px;
	margin: 20px 0 0 130px;
	float: left;
	overflow: hidden;
}

.logo .svg {
	display: block;
	height: 100%;
	width: auto;
}
.logo .svg path, .logo .svg rect, .logo .svg polygon {
	fill: #5a3222;
}

.navi {
	width: calc(100% - 650px);
	float: left;
	padding-top: 20px;
	text-align: center;
	font-size: 0;
}

.navi a {
	display: block;
	text-decoration: none;
}

.navi>li {
	position: relative;
	margin: 0 10px;
	display: inline-block;
	vertical-align: top;
}

.navi>li>a {
	font-size: 15px;
	line-height: 40px;
	padding: 0 30px;
	position: relative;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-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;
}

.navi>li.on>a::before {
	content: '';
	width: 16px;
	height: 2px;
	background: #333;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 0;
	-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;
}

.navi>li:hover>a {
	background: #5a3222;
	color: #fff;
	font-weight: bold;
}

.navi>li.s:hover>a {
	background: none;
	color: #333;
}

.navi>li:hover>a::before {
	width: 30px;
	margin-left: -15px;
}

.navi>li>ul {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	-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);
	-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;

}

.navi>li>ul>li>a {
	height: 0;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	opacity: 0;
	-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;
}

.navi>li:hover>ul {
	padding-bottom: 20px;
	background: #5a3222;
}

.navi>li:hover>ul>li>a {
	height: 40px;
	opacity: 1;
}

.navi>li>ul>li>a:hover {
	background: #955223;
	color: #fff;
	font-weight: bold;
}

.seekbox {
	width: 200px;
	height: 30px;
	border-radius: 20px;
	float: right;
	margin: 22px 50px 0 0;
	background: rgba(0, 0, 0, 0.04);
}

.seekbox input {
	display: block;
	width: calc(100% - 70px);
	height: 30px;
	float: left;
	background: none;
	border: none;
	line-height: 30px;
	padding-left: 20px;
	font-size: 14px;
	color: #666;
}

.seekb {
	width: 45px;
	height: 30px;
	float: right;
	cursor: pointer;
}

.seekb .svg {
	display: block;
	width: 24px;
	height: 24px;
	margin: 3px 0 0 5px;
}

.seekb .svg path {
	fill: #333;
}

/* 通用轮播 */

.dalislide {
	width: 100%;
    height: auto;
	max-height: 100vh;
    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 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: 20px;
	position: absolute;
	z-index: 10;
	bottom: 0;
	text-align: center;
	font-size: 0;
}

.slideb em {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 4px;
	background: #ccc;
	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: #e06a24;
}
.slidebleft,.slidebright {
	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;
}
.slidebleft {
	left: 50px;
	background: url(/static/images/aleft.png) center no-repeat;
}
.slidebright {
	right: 50px;
	background: url(/static/images/aright.png) center no-repeat;
}
.slidebleft:hover,.slidebright:hover {
	opacity: 1;
}


/* 侧边 */
.rightbar {
	width: 50px;
	height: auto;
	overflow: hidden;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
}

.rightbar b {
	display: block;
	width: 48px;
	height: 48px;
	cursor: pointer;
	overflow: hidden;
}

.rightbar b img {
	display: block;
	margin: 15px auto;
}

.readbar {
	width: 60px;
	height: auto;
	position: fixed;
	left: 0;
	bottom: 40px;
	z-index: 100;
}

.readbart {
	display: block;
	height: 80px;
	overflow: hidden;
}

.readbart p {
	display: block;
	width: 45px;
	height: 45px;
	margin: 0 auto;
	border-radius: 50%;
	background: #104eae;
	overflow: hidden;
	cursor: pointer;
}

.readbart p:hover, .readbart p.on {
	background: #d72c28
}

.readbart span {
	display: block;
	line-height: 26px;
	text-align: center;
	font-size: 12px;
	color: #555;
}

.readbart .svg {
	width: 20px;
	height: 20px;
	margin: 12px;
	display: block;
	object-fit: contain;
}

.readbart .svg path {
	fill: #fff;
}

.readbart p#zan .svg {
	display: none;
}

.readbart i {
	display: block;
	line-height: 45px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
}

.readbart:hover p#zan .svg {
	display: block;
}

.readbart:hover p#zan i {
	display: none;
}

/* 页码 */
.pagebox {
	padding: 30px 0 50px 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 #ddd solid;
	background: #fff;
	text-decoration: none;
	color: #808080;
	font-size: 14px;
	line-height: 40px;
	border-radius: 3px;
}

.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;
}

.pagination input {
	display: inline-block;
	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 {
	background: white;
	border: 1px #666 solid;
}

.pagination a.cur, .pagination p.cur {
	border: none;
	background: #955223;
	border: 1px solid #955223;
	color: #fff;
}

.pagination p.pageRemark {
	display: block;
	margin: 10px auto 0 auto;
	border: none;
	background: none;
	color: #666;
}

.pagination p.pageEllipsis {
	border: none;
	background: none;
	color: #808080;
	padding: 0 12px;
}

/* 脚板 */
.footbox {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: url(/static/images/footer.jpg) center no-repeat;
	background-size: cover;
	color: #fff;
}

.footrow {
	width: 1400px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}

.flogo {
	display: block;
	height: 30px;
	margin-top: 40px;
}
.footrow .svg path, .footrow .svg rect, .footrow .svg polygon {
	fill: #fff;
}

.foota {
	float: left;
	margin: 20px 0 30px 80px;
	overflow: hidden;
}
.foota:nth-child(1) {
	margin-left: 10px;
}

.foota a {
	display: block;
	line-height: 36px;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	opacity: .7;
}

.foota a:nth-child(1) {
	font-size: 18px;
	line-height: 70px;
	font-weight: bold;
	opacity: 1;
}

.foota a:hover {
	opacity: 1;
}

.footb {
	width: 120px;
	height: auto;
	overflow: hidden;
	float: right;
	margin-top: 40px;
}

.footb img {
	display: block;
	width: 100%;
	height: auto;
}

.footb span {
	display: block;
	text-align: center;
	font-size: 14px;
	line-height: 20px;
	margin-top: 15px;
}

.foott {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0;
	opacity: .8;
}

.footbq {
	text-align: center;
	line-height: 30px;
}

.footbq a {
	color: #fff;
}
.footbq img {
	vertical-align: middle;
}

.foottel {
	text-align: center;
	font-size: 0;
	margin-top: 10px;
}

.tel {
	display: inline-block;
	width: 40%;
	height: auto;
	overflow: hidden;
	vertical-align: top;
}

.tel span {
	display: block;
}

.tel span:nth-child(1) {
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
}

.tel span:nth-child(2) {
	font-size: 30px;
	color: #955223;
	line-height: 40px;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
}

.tel:nth-child(1) {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	padding-right: 20px;
}

.tel:nth-child(1) span {
	text-align: right;
}

.tel:nth-child(2) {
	padding-left: 20px;
}

.tel:nth-child(2) span {
	text-align: left;
}


.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;
}

.secban, .secban img {
	width: 100%;
	height: auto;
	display: block;
}

.secbar {
	width: 100%;
	height: 70px;
	background: #e5e5e5;
	text-align: center;
	font-size: 0;
}

.secbar a {
	display: inline-block;
	padding: 0 45px;
	text-decoration: none;
	font-size: 16px;
	line-height: 70px;
	position: relative;
}
.secbar a::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c4c4c4;
	position: absolute;
	left: 22px;
	top: 32px;
}
.secbar a.on {
	background: #5a3222;
	color: #fff;
	font-weight: bold;
}
.secbar a.on::before{
	width: 0;
    height: 0;
	border-radius: 0;
	background: none;
    border-top: 12px solid #5a3222;
    border-right: 12px solid transparent;
	left: 15px;
	top: 100%;
}
.subbar {
	width: 100%;
	height: 65px;
	position: relative;
}
.subbar1 {
	width: 100%;
	height: 100%;
	border-bottom: 1px solid #cecece;
	text-align: center;
	font-size: 0;
}
.subbar1 a {
	display: inline-block;
	margin: 0 35px;
	text-decoration: none;
	font-size: 16px;
	line-height: 65px;
	position: relative;
}
.subbar1 a.on {
	color: #955223;
}
.subbar1 a.on::after {
	content: '';
	width: 100%;
	height: 3px;
	background: #955223;
	position: absolute;
	left: 0;
	bottom: -1px;
}
.subbar2 {
	width: 150px;
	height: auto;
	padding: 10px 0 50px 0;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 10;
}
.subbar2.fixed {
	position: fixed;
}
.subbar2::after {
	content: '';
	width: 1px;
	height: 50px;
	border-left: 1px solid #cecece;
	position: absolute;
	right:30px;
	bottom: 0;
	z-index: 10;
}
.subbar2 a {
	display: block;
	height: 50px;
	margin-top: 35px;
	text-decoration: none;
	text-align: right;
	font-size: 16px;
	line-height: 50px;
	position: relative;
}
.subbar2 a::after {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #666;
	position: absolute;
	top: 0;
	right: 28px;
	z-index: 11;
}
.subbar2 a::before {
	content: '';
	width: 1px;
	height: 40px;
	border-left: 1px solid #cecece;
	position: absolute;
	right:30px;
	top: -40px;
	z-index: 10; 
}
.subbar2 a:hover {
	border-left: 5px solid #bbb;
	font-weight: bold;
}
.subbar2 a.on {
	color: #e06b24;
	border-left: 5px solid #e06b24;
}



@media screen and (max-width: 1680px) {
	.head {
		height: 75px;
	}

	.logo {
		height: 33px;
		margin: 22px 0 0 60px;
	}

	.navi {
		width: calc(100% - 550px);
	}

	.navi>li {
		margin: 0 5px;
	}

	.navi>li>a {
		font-size: 14px;
		padding: 0 26px;
	}

	.navi>li.on>a::before {
		width: 14px;
		margin-left: -7px;
	}

	.navi>li:hover>a::before {
		width: 28px;
		margin-left: -14px;
	}

	.footrow {
		width: 1200px;
	}
	
	.flogo {
		height: 28px;
		margin-top: 30px;
	}
	
	.foota {
		margin: 20px 70px 40px 10px;
	}
	
	.foota a {
		line-height: 30px;
	}
	
	.foota a:nth-child(1) {
		font-size: 16px;
		line-height: 60px;
	}
	.footb {
		margin-top: 15px;
	}
	
	.foott {
		padding: 15px 0;
	}
	
	.footbq {
		text-align: center;
		line-height: 30px;
	}
	
	.tel span:nth-child(2) {
		font-size: 26px;
	}

}

@media screen and (max-width: 1440px) {
	.head {
		height: 70px;
	}

	.logo {
		height: 30px;
		margin: 22px 0 0 50px;
	}

	.navi {
		width: calc(100% - 480px);
		padding-top: 18px;
	}

	.navi>li {
		margin: 0 5px;
	}

	.navi>li>a {
		font-size: 14px;
		padding: 0 24px;
	}

	.navi>li.on>a::before {
		width: 14px;
		margin-left: -7px;
	}

	.navi>li:hover>a::before {
		width: 24px;
		margin-left: -12px;
	}

	.seekbox {
		width: 180px;
		margin: 22px 40px 0 0;
	}
	.seekbox input {
		font-size: 12px;
	}
	.footrow {
		width: 1100px;
	}
	.footbq {
		line-height: 26px;
	}
	.tel span:nth-child(1) {
		font-size: 14px;
		line-height: 26px;
	}
	
	.tel span:nth-child(2) {
		font-size: 26px;
		line-height: 36px;
		margin-top: 5px;
	}
	.footb {
		width: 100px;
	}

	.subbar2 {
		width: 100px;
	}

}

@media screen and (max-width: 1366px) {
	.head {
		height: 65px;
	}

	.logo {
		height: 30px;
		margin: 20px 0 0 40px;
	}
	.navi {
		width: calc(100% - 450px);
		padding-top: 16px;
	}
	.navi>li {
		margin: 0 3px;
	}
	.navi>li>a {
		font-size: 12px;
		padding: 0 24px;
	}
	.seekbox {
		width: 180px;
		margin: 18px 40px 0 0;
	}
	.seekb .svg {
		width: 22px;
		height: 22px;
		margin: 4px 0 0 5px;
	}
}

@media screen and (max-width: 1280px) {
	.head {
		height: 60px;
	}

	.logo {
		height: 26px;
		margin: 20px 0 0 20px;
	}
	.navi {
		width: calc(100% - 400px);
		padding-top: 14px;
	}
	.navi>li {
		margin: 0 2px;
	}
	.navi>li>a {
		font-size: 12px;
		padding: 0 24px;
	}
	.seekbox {
		width: 180px;
		margin: 15px 30px 0 0;
	}
	.seekb .svg {
		width: 22px;
		height: 22px;
		margin: 4px 0 0 5px;
	}
}