/* 全局 */

* {
	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%;
	height: auto;
	background: #f5f5f5;
	font-family: 微软雅黑, Microsoft Yahei, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	min-height: 100vh;
	overflow-x: hidden;
}

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: #333;
}

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;
}

.b {
	font-weight: bold;
}
.red {
	color: #d0000e;
}

.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;
}


/* 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);
	}
}


/* 头部 ----------------------------------------------------*/

.head {
	width: 100%;
	height: 90px;
	background: #3a3938;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
}

.logo {
	height: 35px;
	margin: 28px 0 0 100px;
	float: left;
	overflow: hidden;
}

.logo .svg {
	display: block;
	height: 100%;
	width: auto;
}
.logo .svg path {
	fill: #fff;
}

.navi {
	float: right;
}

.navi a {
	display: block;
}

.navi>li {
	height: 90px;
	position: relative;
	float: left;
}

.navi>li>a {
	line-height: 50px;
	margin: 20px 50px;
	font-size: 1rem;
	position: relative;
	z-index: 10;
	color: #fff;
}
.navi>li>a::after {
	content: '';
	width: 0;
	height: 1px;
	border-bottom: 1px solid #fff;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 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:hover>a::after, .navi>li.on>a::after {
	width: 100%;
	left: 0;
}

.navi>li>ul {
	width: 100%;
	height: 0;
	overflow: hidden;
	background: rgba(0, 0, 0, .7);
	position: fixed;
	left: 0;
	top: 90px;
	z-index: 8;
	-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;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.navi>li:hover>ul {
	height: 54px;
}
.navi>li>ul>li {
	float: left;
	height: 100%;
}
.navi>li>ul>li>a {
	line-height: 54px;
	font-size: 1rem;
	color: #fff;
	padding: 0 25px;
	margin: 0 25px;
}
.navi>li>ul>li>a:hover {
	background: rgba(255, 255, 255, .9);
    color: #3a3938;
}

.lang {
	display: block;
	width: 100px;
	height: auto;
	margin-top: 35px;
	float: right;
	text-align: center;
}
.lang a {
	display: inline-block;
	width: 20px;
	line-height: 20px;
	margin-right: 3px;
	color: #fff;
	font-size: 0.75rem;
}
.lang a.on {
	background: #fff;
    color: #3a3938;
	border-radius: 50%;
}

.seekbox {
	width: 80px;
	height: 100%;
	float: right;
	margin-right: 30px;
}
.seekbox .svg {
	display: block;
	width: 25px;
	height: 25px;
	object-fit: contain;
	cursor: pointer;
	margin: 33px auto 0 auto;
}
.seekbox .svg path {
	fill: #fff;
}

.head.out {
	height: 60px;
}
.head.out .logo {
	height: 25px;
	margin: 15px 0 0 120px;
}
.head.out .navi>li {
	height: 60px;
}
.head.out .navi>li>a {
	line-height: 35px;
	margin: 10px 50px;
	font-size: 0.875rem;
}
.head.out .navi>li>ul {
	top: 60px;
}
.head.out .navi>li:hover ul {
	height: 45px;
}
.head.out .navi>li>ul>li>a {
	line-height: 45px;
	font-size: 0.875rem;
}
.head.out .lang {
	margin-top: 15px;
}
.head.out .seekbox .svg {
	width: 20px;
	height: 20px;
	margin-top: 20px;
}

/* 通用轮播 */

.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 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: 50px;
	position: absolute;
	z-index: 10;
	bottom: 0;
	text-align: center;
}

.slideb em {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: rgba(0, 0, 0, .3);
	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(/static/images/aleft.png) center no-repeat;
}
.slideright {
	right: -50px;
	background: url(/static/images/aright.png) center no-repeat;
}
.slideleft:hover,.slideright:hover {
	opacity: 1;
}
.dalislide:hover .slideleft {
	left: 50px;
}
.dalislide:hover .slideright {
	right: 50px;
} */

.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: 45px;
	height: auto;
	position: fixed;
	right: 0;
	top: 50%;
	margin-top: -100px;
	z-index: 1000;
}
.rightbar p {
	display: block;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, .7);
	margin-bottom: 1px;
	position: relative;
	cursor: pointer;
}
.rightbar p img {
	display: block;
	width: 100%;
	height: 100%;
}
.rightbar p img:nth-child(2) {
	display: none;
	width: 120px;
	height: 120px;
	border: 8px solid #fff;
	position: absolute;
	right: 45px;
	top: 0;
	z-index: 1000;
}
.rightbar p:hover {
	background: #fff;
}
.rightbar p:hover img:nth-child(2) {
	display: block;
}


/* 页码 */
.pagebox {
	padding: 30px 0 80px 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;
	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 #ef9898 solid;
}

.pagination a.cur, .pagination p.cur {
	border: 1px solid #3a3938;
	color: #3a3938;
	font-weight: bold;
}

.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;
}

.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;
}

.footbox {
	width: 100%;
	height: auto;
	padding: 70px 0;
	overflow: hidden;
	background: #3a3938;
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: 0;
}

.fbq {
	display: inline-block;
	width: 22%;
	height: auto;
	vertical-align: top;
}
.fbq .flogo {
	height: 26px;
	width: auto;
	display: block;
}
.fbq .flogo path {
	fill: #fff;
}
.fico {
	margin-top: 40px;
	height: auto;
}
.fico::after {
	content: '';
	display: block;
	clear: both;
	visibility: hidden;
}
.fico p {
	display: block;
	height: auto;
	float: left;
	margin-left: 45px;
	position: relative;
}
.fico p img {
	display: block;
}
.fico p img:nth-child(1) {
	height: 30px;
}
.fico p img:nth-child(2) {
	display: none;
	width: 80px;
	height: 80px;
	border: 5px solid #fff;
	position: absolute;
	left: -30px;
	bottom: 35px;
	z-index: 100;
}
.fico p:nth-child(1) {
	margin-left: 0;
}
.fico p:hover img:nth-child(2) {
	display: block;
}

.fc {
	height: auto;
	overflow: hidden;
	margin-top: 30px;
	line-height: 150%;
	text-align: left;
	font-size: 0.875rem;
	color: #fff;
}
.fc a {
	color: #fff;
}
.fc a:hover {
	text-decoration: underline;
}

.fnav {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	height: auto;
	overflow: hidden;
	margin-right: 130px;
}
.fnav_en {
    margin-right: 100px;
}
.fnav a {
	display: block;
	font-size: 0.875rem;
	line-height: 200%;
	color: rgba(255, 255, 255, .6);
}
.fnav.fnav_en a {
    font-size: 0.75rem;
}
.fnav a:hover {
	color: #fff;
}
.fnav a:nth-child(1) {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 15px;
}
.fnav.fnav_en a:nth-child(1) {
    font-size: 1rem;
    font-family: 'Times New Roman', Times, serif;
}

.ftel {
	width: 17%;
	height: auto;
	overflow: hidden;
	display: inline-block;
	vertical-align: top;
	color: #fff;
	text-align: left;
}
.ftel.ftel_en {
    width: 25%;
}
.telt {
	font-size: 0.875rem;
	font-weight: bold;
}
.ftel_en .telt {
    font-size: 0.75rem;
}
.tel {
	font-size: 2rem;
	margin-top: 20px;
	font-weight: bold;
}
.lx {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, .6);
	line-height: 250%;
	margin-top: 40px;
}
.ftel_en .lx {
    font-size: 0.75rem;
    line-height: 200%;
}

/* 预约 */
.yrow {
    height: auto;
    overflow: hidden;
}
.yy {
    border: 1px solid #ddd;
    height: auto;
    line-height: 40px;
    border-radius: 3px;
    float: left;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.yy.y1 {
    width: calc(50% - 10px);
}
.yy.y2 {
    width: calc(50% - 10px);
    margin-left: 20px;
}
.yy.y3 {
    width: 100%;
}
.yy span {
    line-height: 40px;
    margin: 0 15px;
    float: left;
}
.yy input {
    width: calc(100% - 120px);
    height: 40px;
    border: 0;
    font-size: 1rem;
    line-height: 40px;
    float: left;
    color: #999;
	background: none;
}
.y2 select {
    width: calc(100% - 120px);
    height: 38px;
    line-height: 38px;
    border: 0;
    font-size: 1rem;
    float: left;
    color: #999;
	background: none;
}
.y3 select {
    width: 25%;
    margin-left: 20px;
    height: 38px;
    border: 0;
    font-size: 1rem;
    line-height: 38px;
    float: left;
    color: #999;
	background: none;
}
.y3 textarea {
    width: calc(100% - 40px);
    height: 100px;
    float: left;
    margin-left: 15px;
    border: 0;
    font-size: 1rem;
    line-height: 180%;
    color: #999;
	background: none;
}
.yb {
    width: 180px;
    line-height: 35px;
    text-align: center;
    background: #d0000e;
    color: #fff;
    border-radius: 3px;
    margin: 20px auto;
    cursor: pointer;
}

.ys {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 0.875rem;
    border: 0;
}
.yy.ys input[type=checkbox] {
    width: 18px;
    height: 18px;
    float: none;
    vertical-align: middle;
    margin-left: 5px;
}
.ys a {
    color: #d0000e;
    text-decoration: underline;
}


@media screen and (max-width: 1680px) {
	body, html {
		font-size: 15px;
	}
	.head {
		height: 75px;
	}
	.logo {
		height: 30px;
		margin: 20px 0 0 80px;
	}
	.navi>li {
		height: 75px;
	}
	.navi>li>a {
		line-height: 40px;
		margin: 15px 40px;
	}
	.navi>li>ul {
		top: 75px;
	}
	.navi>li:hover>ul {
		height: 45px;
	}
	.navi>li>ul>li>a {
		line-height: 45px;
		padding: 0 20px;
		margin: 0 20px;
	}
	.lang {
		width: 80px;
		margin-top: 25px;
	}
	.seekbox .svg {
		width: 20px;
		height: 20px;
		margin: 25px auto 0 auto;
	}
	.head.out .navi>li>a {
		margin: 10px 40px;
	}
	.head.out .seekbox .svg {
		width: 16px;
		height: 16px;
		margin-top: 20px;
	}
	.footbox {
		padding: 60px 0;
	}
	.fbq {
		width: 22%;
	}
	.fbq .flogo {
		height: 22px;
	}
	.fico {
		margin-top: 30px;
	}
	.fico p {
		margin-left: 30px;
	}
	.fico p img:nth-child(1) {
		height: 24px;
	}
	.fc {
		font-size: 0.8rem;
	}
	.fnav {
		margin-right: 100px;
	}
	.ftel {
		width: 17%;
	}
	.tel {
		font-size: 1.8rem;
	}
	.lx {
		font-size: 0.8rem;
		margin-top: 30px;
	}
	.rightbar {
		width: 45px;
	}
	.rightbar img {
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width: 1440px) {
	body, html {
		font-size: 14px;
	}
	.head {
		height: 65px;
	}
	.logo {
		height: 25px;
		margin: 20px 0 0 80px;
	}
	.navi>li {
		height: 65px;
	}
	.navi>li>a {
		line-height: 35px;
		margin: 15px 35px;
	}
	.navi>li>ul {
		top: 65px;
	}
	.navi>li:hover>ul {
		height: 40px;
	}
	.navi>li>ul>li>a {
		line-height: 40px;
		padding: 0 20px;
		margin: 0 20px;
	}
	.head.out {
		height: 50px;
	}
	.head.out .logo {
		height: 20px;
		margin: 15px 0 0 100px;
	}
	.head.out .navi>li {
		height: 50px;
	}
	.head.out .navi>li>a {
		line-height: 30px;
		margin: 10px 30px;
	}
	.head.out .navi>li>ul {
		top: 50px;
	}
	.head.out .navi>li:hover ul {
		height: 40px;
	}
	.head.out .navi>li>ul>li>a {
		line-height: 40px;
		font-size: 0.875rem;
	}
	.head.out .seekbox .svg {
		margin-top: 18px;
	}
	.footbox {
		padding: 50px 0;
	}
	.fbq {
		width: 24%;
	}
	.fbq .flogo {
		height: 20px;
	}
	.fc {
		font-size: 0.75rem;
	}
	.fnav {
		margin-right: 80px;
	}
	.ftel {
		width: 18%;
	}
	.tel {
		font-size: 1.8rem;
	}
	.lx {
		font-size: 0.8rem;
		margin-top: 30px;
	}
	.rightbar {
		width: 40px;
	}
	.rightbar img {
		width: 40px;
		height: 40px;
	}
}

@media screen and (max-width: 1280px) {
	body, html {
		font-size: 12px;
	}
	.head {
		height: 50px;
	}
	.logo {
		height: 20px;
		margin: 15px 0 0 30px;
	}
	.navi>li {
		height: 50px;
	}
	.navi>li>a {
		line-height: 30px;
		margin: 10px 25px;
	}
	.navi>li>ul {
		top: 50px;
	}
	.navi>li:hover>ul {
		height: 35px;
	}
	.navi>li>ul>li>a {
		line-height: 35px;
		padding: 0 15px;
		margin: 0 15px;
	}
	.head.out {
		height: 40px;
	}
	.head.out .logo {
		height: 16px;
		margin: 10px 0 0 50px;
	}
	.head.out .navi>li {
		height: 40px;
	}
	.head.out .navi>li>a {
		margin: 5px 20px;
	}
	.head.out .navi>li>ul {
		top: 40px;
	}
	.head.out .navi>li:hover ul {
		height: 30px;
	}
	.head.out .navi>li>ul>li>a {
		line-height: 30px;
	}
	.lang {
		width: 60px;
		margin-top: 15px;
	}
	.seekbox {
		width: 60px;
		margin-right: 0;
	}
	.seekbox .svg {
		width: 16px;
		height: 16px;
		margin: 20px auto 0 auto;
	}
}
