@charset "utf-8";

*,
body {
	margin: 0;
	padding: 0;
	text-decoration: none;
}

body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji
}

html {
	font-family: MiSans, system-ui, 微软雅黑, sans-serif;
	line-height: 1.5
}

body {
	font-family: inherit;
	line-height: inherit
}

html,
body {
	width: 100%;
	height: 100%;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	/*修正手持设备字体变化*/
}

blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
img,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
	padding: 0;
	margin: 0
}

fieldset,
img {
	border: 0
}

li,
ol,
ul {
	list-style: none
}

caption,
th {
	text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	font-size: 100%
}

q:after,
q:before {
	content: ""
}

abbr,
acronym {
	border: 0
}

:root {
	--color-1: #212529;
	--color-2: #495057;
	--color-3: #003399;
	--color-4: #FF9933;
	--color-5: #dbe4ff;
	--color-6: #f8f9fa;
	--color-7: #f1f3f5;
}

a {
	text-decoration: none;
	outline: none;
	background: transparent;
}

a:link {
	color: #333;
	text-decoration: none;
}

a:focus,
a:hover {
	color: var(--color-3);
}

a:visited {
	color: #333
}

input {
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
i,
span,
a,
.img,
img,
li {
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
}

::-webkit-scrollbar {
	width: 6px;
	/* 这是针对缺省样式 (必须的) */
}

::-webkit-scrollbar-track {
	background-color: #fff;
	/* 滚动条的滑轨背景颜色 */
}

::-webkit-scrollbar-thumb {
	background-color: var(--color-3);
	/* 滑块颜色 */
}

::-webkit-scrollbar-button {
	background-color: #fff;
	/* 滑轨两头的监听按钮颜色 */
}

::-webkit-scrollbar-corner {
	background-color: #fff;
	/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
}

.flex-sb {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.flex-ce {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

.flex-fs {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.flex-fe {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.container {
	width: 100%;
	padding: 0 150px;
}

@media (max-width: 1440px) {
	.container {
		padding: 0;
		width: 1280px;
		margin: 0 auto;
	}
}

@media (max-width: 1366px) {
	.container {
		width: 1180px;
	}
}

@media (max-width: 1280px) {
	.container {
		padding: 0 60px;
		width: 100%;
	}
}

@media (max-width: 991px) {
	.container {
		padding: 0 20px;
	}
}

/*header初始*/
.header {
	width: 100%;
	height: 100px;
	z-index: 9999;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
}

.subpage .header,
.header.scroll-up {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
}

.header.scroll-down {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	height: 100px;
}

.header .container {
	height: 100%;
	align-items: center;
	padding: 0 50px;
	width: 100%
}

.header .nav-logo {
	width: 25%;
}

.header .nav-logo img {
	width: 350px;
}

.header.scroll-down .nav-logo img {
	width: 320px
}

.header ::-webkit-scrollbar {
	display: none;
}

.header .nav-list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 100%;
}

.header .nav-list>li {
	position: relative;
	list-style: none;
	text-align: center;
	height: 100%;
}

.header .nav-list>li a {
	position: relative;
	padding: 40px 25px;
	display: block;
	color: #212529;
	font-size: 20px;
	line-height: 20px;
	font-weight: 450;
	text-align: center;
	text-decoration: none;
	height: 100%;
	text-transform: uppercase;
}

.header .nav-list>li:after,
.header .nav-list>li a:after {
	content: '';
	width: 0;
	height: 3px;
	background-color: var(--color-4);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.header.scroll-down .nav-list>li a {
	padding: 40px 20px;
}

.header .nav-list>li a i {
	display: none;
}

.header .nav-list>li:hover {
	color: var(--color-3);
}

.header .nav-list>li:hover:after {
	width: 100%;
}

.header .nav-list>li:hover a,
.header .nav-list>li a:hover {
	color: var(--color-3);
	font-weight: 550
}

.header .nav-list>li a.cur {
	color: var(--color-3);
	font-weight: 550
}

.header .nav-list>li a.cur:after {
	width: 100%;
}

.header .nav-list>li .menu {
	width: 100%;
	position: absolute;
	white-space: nowrap;
	left: 0;
	display: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header .nav-list>li {
	position: relative;
}

.header .nav-list>li .menu li a {
	display: block;
	margin: 0;
	padding: 0;
	height: auto;
	line-height: 50px;
	text-align: center;
	font-size: 14px;
	font-weight: 450;
	background-image: none;
	background-color: var(--color-3);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header .nav-list>li .menu li a.cur:after {
	display: none;
}

.header .nav-list>li .menu li:last-child a {
	border-bottom: none;
}

.header .nav-list>li .menu li a i {
	display: block;
	position: absolute;
	right: 10px;
	font-size: 0.88rem;
	top: 1px;
}

.header .nav-list>li .menu li:hover {
	background-color: rgba(0, 0, 0, 0.45);
}

.header .nav-list>li .menu li a:hover {
	color: #fff;
	background-color: var(--color-4);
}

.header .nav-list>li .menu li a:hover:after {
	width: 0;
}

.header .nav-list>li:hover .menu {
	height: auto;
	display: block
}

.right-bar {
	width: 25%;
	text-align: right;
	align-items: center;
}

.right-bar a {
	margin-right: 10px;
}

.right-bar a:last-child {
	margin-right: 0;
}

.right-bar a i {
	margin-right: 5px;
}

.right-bar .right-bar-search {
	width: 50%;
	align-items: center
}

.right-bar .right-bar-search input {
	font-size: 15px;
	font-weight: 400;
	padding: 0 20px;
	border: 1px solid #ddd;
	border-radius: 25px;
	height: 40px;
	line-height: 40px;
	width: 85%;
	display: inline-block
}

.right-bar .right-bar-search i {
	font-size: 2.2rem;
	color: var(--color-3);
	width: 15%;
	text-align: right
}

.right-bar .menu-tel {
	color: var(--color-2);
	width: 50%;
	align-items: center;
	font-size: 14px;
	font-weight: 400
}

.right-bar .menu-tel i {
	font-size: 1.8rem !important;
	color: var(--color-4);
	font-weight: 400;
	margin-right: 5px
}

.right-bar .menu-tel span {
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	color: var(--color-4);
}

#navToggle {
	display: none;
}

@media (max-width: 1680px) {
	.header {
		height: 90px
	}

	.header.scroll-down {
		height: 90px;
	}
}

@media (max-width: 1440px) {
	.header .nav-logo {
		width: 20%;
	}

	.header .nav-logo img {
		width: 100%;
	}

	.header.scroll-down .nav-logo img {
		width: 95%
	}

	.header .nav-list>li a {
		font-size: 16px;
		padding: 35px 15px;
	}

	.header.scroll-down .nav-list>li a {
		padding: 35px 15px;
	}

	.header .nav-list>li .menu li a {
		font-size: 14px;
		line-height: 45px;
	}

	.right-bar {
		width: 30%;
	}

	.right-bar .right-bar-search input {
		font-size: 14px;
		padding: 0 15px;
		height: 35px;
		line-height: 35px;
	}

	.right-bar .right-bar-search i {
		font-size: 2rem;
	}

	.right-bar .menu-tel i {
		font-size: 2.2rem !important;
	}

	.right-bar .menu-tel span {
		font-size: 18px;
		line-height: 18px;
	}
}

@media (max-width: 991px) {
	.header {
		height: 60px !important;
		box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.08);
		z-index: 9999;
	}

	.header .container {
		width: 100%;
		padding: 0 20px;
	}

	.header .nav-logo {
		width: 100%;
		text-align: center !important;
	}

	.header .nav-logo img {
		width: 60%;
		padding: 5px 0 0 0;
	}

	.header.scroll-down .nav-logo img {
		width: 55%
	}

	.header .nav-list {
		display: none
	}

	.menu-tel {
		display: none
	}

	.right-bar {
		width: 100%;
		position: absolute;
		left: 0;
		top: 0
	}

	.right-bar .right-bar-search {}

	.right-bar .right-bar-search i {
		font-size: 2.8rem;
		position: absolute;
		left: -10px;
		top: 10px;
	}

	.right-bar .right-bar-search input {
		display: none;
	}

	nav {
		padding: 0;
		background-color: #fff;
		height: 60px;
		overflow: hidden;
		box-shadow: 0 5px 10px rgba(130, 177, 255, 0.25);
		-webkit-box-shadow: 0 5px 10px rgba(130, 177, 255, 0.25);
	}

	nav #navToggle {
		display: block;
		position: absolute;
		right: 0 !important;
		top: 5px;
	}

	nav #navToggle i {
		font-size: 3.5rem;
		color: var(--color-3) !important;
	}
}

.m_nav {
	position: fixed;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 80%;
	height: 100%;
	background-color: #fff;
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	overflow-y: auto;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	top: 0;
	right: -80%;
	transform: translateX(100%);
	padding: 5% 0 0 0;
}

.m_nav.open {
	transform: translateX(0);
	right: 0
}

.m_nav .closed {
	width: 30px;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	cursor: pointer;
	font-size: 2.8rem;
	color: #999;
	position: absolute;
	right: 30px;
	top: 30px;
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul {
	margin-top: 25px;
}

.m_nav .ul li {
	padding: 0 25px !important;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	opacity: 0;
}

.m_nav.open .ul li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
	-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
	-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
	-webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(7) {
	-webkit-transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li a {
	display: block;
	text-decoration: none;
	color: #666;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 60px;
	width: 100%;
	border-bottom: 1px solid #eaeaea;
}

.m_nav .ul li a i {
	color: #999;
	font-size: 3rem;
	margin-right: 10px;
	font-weight: 500;
}

.m_nav .ul li .dropdown_menu {
	display: none;
	padding: 0 0 15px 0;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
	display: block;
}

.m_nav .ul li .dropdown_menu a {
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	color: #999;
	height: 40px;
	line-height: 40px;
	padding: 0 25px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a i {
	font-size: 1.3rem;
	margin-right: 0
}

.m_nav .ul li .dropdown_menu a:last-child {
	border: none;
}

@media screen and (max-width: 992px) {
	nav {
		padding: 0;
		background-color: #fff;
		height: 60px;
		overflow: hidden;
		box-shadow: 0 5px 10px rgba(130, 177, 255, 0.25);
		-webkit-box-shadow: 0 5px 10px rgba(130, 177, 255, 0.25);
	}

	#m_logo {
		display: block;
		float: left;
	}

	#m_logo img {
		width: 260px;
		display: inline-block;
		vertical-align: middle;
		margin: 10px 0 0 0;
	}

	nav #navToggle {
		position: absolute;
		right: 20px;
		top: 5px;
		display: block
	}

	nav #navToggle i {
		font-size: 3.5rem;
		color: #868e96;
	}

	nav .nav {
		display: none;
	}
}

/*footer*/
.footer {
	clear: both;
	width: 100%;
	background-color: var(--color-3);
	border-radius: 0 300px 0 0;
}

.footer .footer_top {
	padding: 100px 0 50px 0
}

.footer .footer_top .footer_top_menu {
	display: flex;
	justify-content: space-between;
}

.footer .footer_top .footer_top_menu li {
	width: 15%;
}

.footer .footer_top .footer_top_menu li span {
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	display: block;
	text-transform: uppercase
}

.footer .footer_top .footer_top_menu li a {
	display: block;
	line-height: 30px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 350;
}

.footer .footer_top .footer_top_menu li a:hover {
	color: #fff;
}

.footer .footer_top .footer_top_menu .newsletter {
	width: 30%
}

.footer .footer_top .footer_top_menu .newsletter button {
	position: relative;
	top: -2px;
	background-color: #f8f9fa;
	height: 34px;
	margin: 0;
	border-left: none;
	line-height: 20px;
	font-size: 14px;
	font-weight: 500;
	color: #495057
}

.footer .footer_top .footer_top_menu .newsletter input {
	color: #495057;
	font-size: 14px;
	text-transform: uppercase;
}

.footer .footer_top .footer_top_menu .newsletter p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
}

.footer .footer_top .footer_top_menu .hottel {
	width: 35%;
	margin-right: 5%
}

.footer .footer_top .footer_top_menu .hottel div {
	margin-bottom: 20px;
	padding-left: 35px;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

.footer .footer_top .footer_top_menu .hottel i {
	color: rgba(255, 255, 255, 0.6);
	display: inline-block;
	font-size: 2.2rem;
	position: absolute;
	left: 0;
	top: 0
}

.footer .footer_top .footer_top_menu .hottel b {
	display: block;
	font-size: 15px;
	font-weight: 400;
}

.footer .footer_top .footer_top_menu .weixin {
	width: 100%;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.footer .footer_top .footer_top_menu .weixin img {
	display: block;
	width: 120px;
	margin-bottom: 10px;
}

.footer .footer_bot {
	font-size: 18px;
	color: #868e96;
	font-weight: 500;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 10px 0;
}

.footer .footer_bot .link {
	width: 100%;
	height: 30px;
	line-height: 22px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

.footer .footer_bot .link a {
	margin: 0 6px;
	color: rgba(255, 255, 255, 0.3);
	font-size: 14px;
	font-weight: 400
}

.footer .footer_bot .copyright {
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: rgba(255, 255, 255, 0.3);
	text-transform: uppercase;
	font-weight: 300;
}

.footer .footer_bot .copyright span {
	display: block;
	width: 50%;
	padding: 0;
	font-size: 14px;
}

.footer .footer_bot .copyright a {
	font-size: 14px;
	color: #999;
	padding: 0 10px;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 300;
}

@media (max-width: 1440px) {
	footer {
		border-radius: 0 250px 0 0;
	}
}

@media (max-width: 992px) {
	.footer {
		margin-bottom: 0;
		padding-bottom: 60px;
		border-radius: 0 100px 0 0
	}

	.footer .footer_top {
		padding: 20px 0 0 0;
	}

	.footer .footer_top .footer_top_menu li {
		display: none;
	}

	.footer .footer_top .footer_top_menu .hottel {
		width: 100%;
		margin-left: 0;
		display: block;
	}

	.footer .footer_top .footer_top_menu .hottel p {
		margin-bottom: 20px;
		padding-left: 0;
		position: relative;
		color: #999;
		text-align: center;
		font-size: 1.8rem;
	}

	.footer .footer_top .footer_top_menu .hottel div {
		padding-left: 0;
		margin-bottom: 20px;
	}

	.footer .footer_top .footer_top_menu .hottel div:after {
		display: none;
	}

	.footer .footer_top .footer_top_menu .hottel i {
		font-size: 2rem;
		position: relative;
		top: auto;
		left: auto;
	}

	.footer .footer_top .footer_top_menu .hottel span {
		font-size: 2.2rem;
	}

	.footer .footer_top .footer_top_menu .hottel p:last-child {
		display: none;
	}

	.footer .footer_bot {
		height: auto;
		font-size: 1.2rem;
		margin-top: 0;
	}

	.footer .footer_bot .link {
		padding-top: 5px;
		display: none;
	}

	.footer .footer_bot .copyright {
		border-top: none;
		line-height: 1.6rem;
		padding: 5px 0;
	}

	.footer .footer_bot .copyright .container {
		flex-wrap: wrap;
	}

	.footer .footer_bot .copyright span {
		width: 100%;
		text-align: center;
		font-size: 1.2rem;
		line-height: 2rem;
	}

	.footer .footer_bot .copyright a {
		font-size: 1.2rem;
		padding: 0 3px;
	}
}

/*err*/
.err {
	width: 50%;
	text-align: center;
	margin: 10% auto;
	padding: 2% 0;
	border: 1px solid rgba(0, 0, 0, 0.07);
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url(../images/noinfo.svg);
	background-repeat: no-repeat;
	background-size: auto 50%;
	background-position: center 30px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	background-color: #f8f9fa;
}

.err p {
	color: rgba(0, 0, 0, 0.3);
	line-height: 30px;
	font-size: 16px;
	display: block;
	padding: 100px 0 0 0;
}

/*分页样式*/
.pagination {
	width: 100%;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 35px;
	text-transform: uppercase;
	color: #868e96;
	font-size: 14px;
	align-items: center;
	margin-bottom: 20px;
}

.pagination a {
	display: block;
	text-transform: uppercase;
	text-align: center;
	font-size: 14px;
	color: #495057;
	line-height: 26px;
	padding: 0 10px;
	height: 28px;
	margin-right: 10px;
	margin-bottom: 10px;
	border: 1px solid var(--color-3);
	border-radius: 25px;
}

.pagination a:last-child {
	margin-right: 0;
}

.pagination a:hover,
.pagination a:focus,
.pagination a.active,
.pagination .active span {
	color: #fff !important;
	background-color: var(--color-3)
}

.pagination a:last-child {
	margin-right: 20px;
}

@media (max-width: 991px) {
	.pagination {
		padding: 0;
		line-height: 2rem;
		margin: 20px auto;
		;
		font-size: 1.4rem;
	}

	.pagination a {
		font-size: 1.3rem;
		line-height: 2.8rem;
		height: 3rem;
		margin-right: 5px;
		margin-bottom: 5px;
	}

	.pagination a:last-child,
	.pagination a:first-child {
		display: none
	}

	.err {
		margin: 5% auto;
		width: 80%;
	}

	.err p {
		line-height: 3rem;
		font-size: 1.3rem;
	}
}

/*圆点*/
@-webkit-keyframes sdb10 {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	80% {
		-webkit-transform: translate(0, -20px);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@keyframes sdb10 {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	80% {
		transform: translate(0, -20px);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

/*banner背景动画*/
@-webkit-keyframes scale-bg {
	from {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale-bg {
	from {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/*banner文字动画*/
@-webkit-keyframes Slick-FastSwipeIn {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
		transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
	}

	100% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
		transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
	}
}

@keyframes Slick-FastSwipeIn {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
		transform: rotate3d(0, 1, 0, 150deg) scale(0) perspective(400px);
	}

	100% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
		transform: rotate3d(0, 1, 0, 0deg) scale(1) perspective(400px);
	}
}

/* bounce-animate */
.bounce-animate {
	animation-name: float-bob;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-moz-animation-name: float-bob;
	-moz-animation-duration: 2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: float-bob;
	-ms-animation-duration: 2s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: float-bob;
	-o-animation-duration: 2s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
	backface-visibility: hidden;
}

@-webkit-keyframes float-bob {
	0% {
		-webkit-transform: translate3d(0px, -25px, 0px);
		transform: translate3d(0px, -25px, 0px);
	}

	50% {
		-webkit-transform: translate3d(0px, -10px, 0px);
		transform: translate3d(0px, -10px, 0px);
	}

	100% {
		-webkit-transform: translate3d(0px, -25px, 0px);
		transform: translate3d(0px, -25px, 0px);
	}
}

.video-back {
	height: 100%;
	z-index: 1;
	position: relative;
}

.video-back:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.vidbacking {
	width: 100% !important;
	height: auto;
}

.vidbacking-active-body-back {
	position: fixed;
	z-index: -100;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	background-size: cover;
	overflow: hidden;
	opacity: 1;
	transition: 2s opacity;
	transform: translateX(-50%) translateY(-50%);
}

.vidbacking-active-block-back {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	height: auto;
	width: auto;
	z-index: -100;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.vidbacking {
	display: none;
}

.vidmask-body-back {
	background: url(../images/videooverlay1.png) repeat;
	opacity: 0.4;
	min-height: 100%;
	min-width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -50;
	display: block;
}

.vidmask-block-back {
	background: url(../images/videooverlay1.png) repeat;
	opacity: 1;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	width: auto;
	z-index: -50;
	display: block;
}

.zmb {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: black;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	z-index: 99999;
}

.tc_video {
	width: 1000px;
	height: 560px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin: -280px 0 0 -500px;
	background: transparent;
	display: none;
	z-index: 100000;
}

.tc_video video,
.tc_video p {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.tc_video p iframe {
	width: 100%;
	height: 100%;
}

@media screen and (max-width:991px) {
	.tc_video {
		width: 760px;
		height: 300px;
		margin: -150px 0 0 -380px;
	}
}

@media screen and (max-width:767px) {
	.tc_video {
		width: 90%;
		height: 250px;
		margin: -125px 0 0 0;
		left: 5%;
	}
}

#dialogBg {
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: .6;
	filter: alpha(opacity=60);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}

#dialog {
	width: 500px;
	height: 500px;
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -250px 0 0 -250px;
	z-index: 10000;
}

.show {
	background-color: #fff;
	border-radius: 20px;
	height: 500px;
	overflow: hidden;
}

.show h4 {}

.dialogTop {
	width: 100%;
	padding: 0;
	position: relative;
}

.claseDialogBtn {
	position: absolute;
	right: -20px;
	top: -55px;
}

.claseDialogBtn i {
	font-size: 3.6rem;
	color: #fff;
}

@media (max-width: 991px) {
	#dialog {
		width: 80%;
		height: 360px;
		margin: -180px 0 0 -40%;
	}

	.show {
		padding: 20px;
		height: 100%;
		border-radius: 20px;
	}

	.claseDialogBtn {
		right: -10px;
		top: -45px;
	}

	.claseDialogBtn i {
		font-size: 3rem;
	}
}

.offcanvas-search {
	position: fixed;
	top: 0;
	left: 0;
	right: auto;
	height: 100vh;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transition-duration: 700ms;
	-o-transition-duration: 700ms;
	transition-duration: 700ms;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.75);
}

.offcanvas-search.open {
	opacity: 1;
	visibility: visible
}

.offcanvas-search.open .offcanvas-search-inner {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none
}

.offcanvas-search-inner {
	width: 80%;
	height: 50%;
	margin: 10% auto;
	background-color: #fff;
	padding: 50px;
	box-shadow: 5px 10px 20px rgba(75, 45, 2, 0.2);
	-webkit-box-shadow: 5px 10px 20px rgba(75, 45, 2, 0.2);
	-moz-box-shadow: 5px 10px 20px rgba(75, 45, 2, 0.2);
	border-radius: 6px;
	position: relative;
	-webkit-transform: translateX(calc(100% - 0px));
	-ms-transform: translateX(calc(100% - 0px));
	transform: translateX(calc(100% - 0px));
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transition-duration: 700ms;
	-o-transition-duration: 700ms;
	transition-duration: 700ms;
	overflow: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-flow: row-reverse;
	-ms-flex-flow: row-reverse;
	flex-flow: row-reverse
}

.offcanvas-search-inner .btn-close-bar {
	opacity: 1;
	position: absolute;
	right: 20px;
	top: 20px;
}

.offcanvas-search-inner .btn-close-bar i {
	font-size: 4rem;
	cursor: pointer;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s
}

.offcanvas-search-inner .btn-close-bar i:hover {
	color: var(--color-3);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.offcanvas-search-form {
	width: 100%;
}

.offcanvas-search-form input {
	width: 80%;
	border: 2px solid var(--color-3);
	font-size: 20px;
	line-height: 60px;
	height: 60px;
	padding: 0 20px;
	color: #495057;
	font-family: "Microsoft Yahei";
	-webkit-appearance: none;
	border-radius: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.offcanvas-search-form input:focus {
	outline: none;
}

.offcanvas-search-form button {
	width: 20%;
	background-color: var(--color-3);
	border: none;
	line-height: 60px;
	height: 60px;
	font-size: 22px;
	color: #fff;
	outline: none;
}

.offcanvas-search-form button i {
	margin-right: 10px;
	font-size: 2.5rem;
}

@media (max-width: 991px) {
	.offcanvas-search-inner {
		width: 90%;
		height: 40%;
		padding: 20px;
	}

	.offcanvas-search-inner .btn-close-bar {
		right: 10px;
		top: 10px;
	}

	.offcanvas-search-inner .btn-close-bar i {
		font-size: 3rem;
	}

	.offcanvas-search-form input {
		font-size: 1.4rem;
		width: 75%;
		line-height: 50px;
		height: 50px;
	}

	.offcanvas-search-form button {
		font-size: 1.6rem;
		width: 25%;
		line-height: 50px;
		height: 50px;
	}

	.offcanvas-search-form button i {
		margin-right: 5px;
		font-size: 1.8rem;
	}
}

.foot-bar,
.daoyi {
	display: none;
}

.floating_ck {
	position: fixed;
	transition: all .5s;
	transform: translateY(-50%);
	right: -100px;
	bottom: 0;
	z-index: 999;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
	border-top-left-radius: 30px;
}

.floating_ck.on {
	right: 0;
	bottom: 0;
}

.floating_ck dl {
	padding: 10px 0;
	margin: 0;
	width: 80px;
}

.floating_ck dl dd {
	position: relative;
	margin: 0 10px;
	padding: 10px 0;
	text-align: center;
	cursor: pointer;
	border-bottom: 1px solid #eaeaea;
}

.floating_ck dl dd:last-child {
	border-bottom: none;
}

.floating_ck dl dd i {
	font-size: 3.6rem;
	line-height: 3.6rem;
	display: block;
	color: var(--color-3);
	padding: 0;
	margin: 0 0 5px 0;
}

.floating_ck dl dd a {
	color: #868e96;
	font-size: 14px;
	display: block;
}

.floating_ck dl dd a:hover {
	color: #fff;
}

.floating_ck dd span {
	font-size: 14px;
	color: #495057;
	font-family: "Microsoft YaHei";
	display: block;
	padding: 0;
	line-height: 20px;
}

.floating_ck dl dd:hover .floating_left {
	display: block;
}

.floating_left {
	position: absolute;
	left: -180px;
	top: 0;
	width: 160px;
	height: 160px;
	display: none;
	text-align: center;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.08);
}

.floating_left a {
	color: #fff;
	line-height: 80px;
}

.floating_ewm {
	top: 0;
	padding: 10px 10px 0 10px;
	text-align: center;
}

.floating_ewm img {
	width: 100%;
}

.floating_ewm p {
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	display: block;
	text-align: center;
}

@media (max-width: 1440px) {
	.floating_ck dl {
		width: 70px;
	}

	.floating_ck dl dd i {
		font-size: 3.2rem;
		line-height: 3.2rem;
	}

	.floating_ck dl dd a {
		font-size: 12px;
	}

	.floating_ck dd span {
		font-size: 12px;
	}
}

@media screen and (max-width: 991px) {
	.floating_ck {
		display: none;
	}

	.foot-bar {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		-moz-justify-content: space-between;
		-ms-justify-content: space-between;
		-o-justify-content: space-between;
		justify-content: space-between;
		background-color: #fff;
		width: 100%;
		-webkit-box-shadow: 0 12px 40px 8px rgba(0, 0, 0, 0.08);
		box-shadow: 0 12px 40px 8px rgba(0, 0, 0, 0.08);
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 9999;
	}

	.foot-bar .foot-nav {
		width: 100%;
		height: 60px;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.foot-bar .foot-nav li {
		border-right: 1px solid #eee;
		width: 33.3%;
	}

	.foot-bar .foot-nav li:last-child {
		border-right: none;
	}

	.foot-bar .foot-nav li a {
		display: block;
		text-align: center;
		text-transform: uppercase
	}

	.foot-bar .foot-nav li a i {
		color: var(--color-3);
		font-size: 2.5rem;
		display: block;
		margin: 2px auto 0 auto;
	}

	.foot-bar .foot-nav li a span {
		font-size: 1.4rem;
		color: #666;
		font-weight: 500;
		display: block;
		margin: 0 auto;
		line-height: 1.4rem;
	}
}

.title {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.title b {
	font-size: 30px;
	position: relative;
	color: #495057;
	font-weight: 600;
	text-transform: uppercase;
}

.title b i {
	font-size: 3rem;
	font-weight: 500;
	color: var(--color-3);
}

.title p {
	font-size: 18px;
	color: var(--color-2);
	text-transform: uppercase;
	font-weight: 400;
	padding: 5px 0;
}

.title span a {
	margin-left: 30px;
}

.title a {
	font-size: 16px;
	color: var(--color-2);
	margin: 0 0 0 auto;
	text-transform: uppercase;
}

.title a i {
	font-size: 1.4rem;
	margin-left: 5px;
	position: relative;
	top: 0;
	color: #adb5bd
}

.title a:hover {
	color: var(--color-1);
}

@media (max-width: 992px) {
	.title {
		margin-bottom: 10px;
	}

	.title b {
		font-size: 2rem;
		letter-spacing: 0;
		font-weight: 600;
	}

	.title b i {
		font-size: 2.2rem;
		margin-right: 5px;
	}

	.title p {
		font-size: 1.3rem;
		padding: 5px 0 0 0;
		font-weight: 400;
		display: none
	}

	.title span a {
		display: none;
	}

	.title span a:last-child {
		display: block;
	}

	.title a {
		font-size: 1.3rem;
		margin-top: 12px;
		height: 30px;
	}

	.title a i {
		font-size: 1.3rem;
		margin-left: 5px;
	}
}

/*section-title*/
.section-title {
	padding: 0;
}

.section-title h4 {
	font-weight: 600;
	font-size: 40px;
	text-transform: uppercase;
	color: var(--color-3);
	position: relative;
}

.section-title h4:after {
	content: '';
	width: 50px;
	height: 3px;
	background-color: var(--color-3);
	position: absolute;
	left: 0;
	top: -20px;
}

.section-title h4 span {
	color: var(--color-3);
}

.section-title p {
	font-size: 20px;
	font-weight: 400;
	color: #495057;
	text-transform: uppercase;
	padding: 10px 0 0 0;
}

@media screen and (max-width: 1440px) {
	.section-title h4 {
		font-size: 30px;
	}

	.section-title p {
		font-size: 18px;
		padding: 5px 0 0 0;
	}
}

@media screen and (max-width: 991px) {
	.section-title {
		padding: 30px 0 0 0;
	}

	.section-title h4 {
		font-size: 2.5rem;
	}

	.section-title h4:after {
		height: 2px;
		width: 45px;
		top: -15px;
	}

	.section-title p {
		font-size: 1.3rem;
	}
}

/* 咨询组件 */
.bt-form-layer{
    position: fixed;
    background:rgba(0,0,0,.7);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bt-form{
    margin: auto;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 20px;
    width: 85%;
	max-width: 300px;
	padding-top: 15px;
    padding-bottom: 30px;
}
.bt-form .form-close{
    text-align: right;
    padding:5px 15px;
    font-size: 16px;
}
.bt-form h3{
    text-align: center;
    font-size: 18px;
    padding: 0 15px;
    margin-bottom: 10px;
    font-weight:normal;
}
.bt-form form{
    display:-webkit-flex;
    display:flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
}
.bt-form form input{
    font-size:16px;
    margin-bottom: 10px;
    line-height: 2.2;
    padding:0 15px;
    border: solid 1px #d4d5d6;
}
.bt-form form select{
    padding: 9px 15px;
    margin-bottom: 10px;
    border: solid 1px #d4d5d6;
    font-size:16px;
}
.bt-form form button{
    font-size: 16px;
    line-height: 2.2;
    cursor:pointer;
    background-color:#05ad8f;
    border:solid 1px #333;
    color: #fff;
}