@charset "utf-8";
:root {
	--color-1: #212529;
	--color-2: #495057;
	--color-3: #1477b8;
	--color-4: #173e90;
	--color-5: #2cb8e3;
	--color-6: #f8f9fa;
	--color-7: #f1f3f5;
}
*,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}
a{text-decoration:none;outline:none;background: transparent;}
a:link{color:#333; text-decoration:none;}
a:focus,a:hover{color:#173e90;}
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: #f1f3f5;/* 滚动条的滑轨背景颜色 */}
::-webkit-scrollbar-thumb {background-color: var(--color-1);/* 滑块颜色 */}
::-webkit-scrollbar-button {background-color: #f1f3f5;/* 滑轨两头的监听按钮颜色 */}
::-webkit-scrollbar-corner {background-color: #f1f3f5;/* 横向滚动条和纵向滚动条相交处尖角的颜色 */}

.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: 1680px) {
	.container{padding: 0 100px;}
}
@media (max-width: 1440px) {
	.container{padding:0;width: 1200px;margin: 0 auto;}
}
@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: 10%;text-align: left;}
.header .nav-logo img {width: 220px;}
.header.scroll-down .nav-logo img {width:200px}
.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:flex-end;
	justify-content:flex-end;
	align-items:flex-end;
	width:70%;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 20px;
	display: block;
	color: #212529;
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	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-3);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: 120%;
	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: transparent!important;}
.header .nav-list > li .menu li a:hover:after{width: 0;}
.header .nav-list > li:hover .menu {height: auto;display: block}
.right-bar{width:20%;text-align: right}
.right-bar a{margin-right: 10px;}
.right-bar a:last-child{margin-right: 0;}
.right-bar a i{margin-right: 5px;}
.right-bar .login{position: relative;top:-2px;background-color:var(--color-3);display: inline-block;padding: 4px 15px;border-radius: 30px;color: #fff;font-size: 14px;font-weight: 400;}
.right-bar .right-bar-search{position: relative;top:2px;}
.right-bar .right-bar-search i{font-size: 2.5rem;color:var(--color-3)}
.right-bar .menu-tel{color:var(--color-2);}
.right-bar .menu-tel i{font-size:2.2rem!important;color:var(--color-3);font-weight:400;margin-right: 5px;}
.right-bar .menu-tel span{font-size:20px;font-weight:550;}
#navToggle{	display: none;}
@media (max-width: 1680px) {
	.header{height: 90px}
	.header.scroll-down{height: 90px;}
	.header .nav-logo {width: 10%;}
	.header .nav-logo img {width:200px;}
	.header .nav-list > li a{font-size: 18px;padding: 35px 15px;}
	.header.scroll-down .nav-list > li a{padding: 35px 15px;}
	.header .nav-list{width: 65%}
	.header .nav-list > li .menu {width: 120%}
	.header .nav-list > li .menu li a{font-size: 16px;line-height:45px;}
	.right-bar{width: 25%;}
	.right-bar .login{top:-2px;padding: 4px 12px;}
	.right-bar .menu-tel i{font-size:2rem!important;}
	.right-bar .menu-tel span{font-size:16px;}
}
@media (max-width: 1440px) {
	.header .nav-list{width: 70%}
	.header .nav-list > li a{font-size: 16px;}
	.header .nav-list > li .menu li a{font-size: 13px;line-height:40px;padding: 0 15px;}
	.right-bar{width: 15%;}
	.right-bar .menu-tel{display: none;}
}
@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 10px;}
	.header .nav-logo {width: 50%;text-align: left}
	.header .nav-logo img {width:150px;}
	.header.scroll-down .nav-logo img {width:140px;}
	.header .nav-list {display: none}
	.menu-tel{display: none}
	.right-bar{width:50%;}
	.right-bar .login{display: none;}
	.right-bar .right-bar-search{position: absolute;right:50px;top:13px;}
	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: 991px){
	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 {position: absolute;right: 20px;top:5px;display: block}
	nav #navToggle i{font-size:3.5rem;color:#868e96;}
	nav .nav{display: none;	}
}

.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"}
.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;}
}

/*footer*/
.footer{clear:both;width:100%;background-color:var(--color-3)}
.footer .footer_top{padding: 50px 0 30px 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: 992px) {
	.footer{margin-bottom:0;padding-bottom:50px;}
	.footer .footer_top{padding: 30px 20px 0 20px;}
	.footer .footer_top .footer_top_menu li{display: none;}
	.footer .footer_top .footer_top_menu .hottel{width:70%;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;
}
.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 #495057;
}
.pagination a:last-child{margin-right: 0;}
.pagination a:hover,
.pagination a:focus,
.pagination a.active,
.pagination .active span {color: #fff !important;background-color:#495057}
.pagination a:last-child{margin-right: 20px;}
@media (max-width: 992px) {
	.pagination {padding:0 20px;line-height:2rem;margin: 10px auto 20px auto;;font-size: 1.4rem;}
	.pagination a{font-size: 1.4rem;line-height:2.2rem;height:2.6rem;}
	.err{margin:5% auto;width:80%;}
	.err p{line-height:3rem;font-size:1.3rem;}
}
.partner{background-color:var(--color-7);padding:80px 0;position: relative;}
.partner-list{flex-wrap: wrap;position: relative;z-index: 3;padding: 30px 0 0 0}
.partner-list li{width: 19.2%;margin-right:1%;margin-bottom:1%;overflow: hidden;text-align: center;padding:15px 50px;background-color: #fff;}
.partner-list li:nth-child(5n){margin-right: 0;}
.partner-list li img{width: auto;max-width: 100%;}
.partner-list li:hover img{
	transform:scale(1.2);
	-webkit-transform:scale(1.2);
}
@media (max-width: 1440px) {
	.partner{padding:50px 0;}
	.partner h4{font-size: 30px;}
	.partner p{font-size: 18px}
	.partner-list{padding:30px 0;}
	.partner-list li{padding:10px 40px;background-color: #fff;}
}
@media (max-width: 991px) {
	.partner{padding:20px 0;}
	.partner:after{display: none;}
	.partner:before{display: none;}
	.partner-list{padding:20px 0 0 0;}
	.partner-list li{padding:5px;width: 32%;margin-right: 2%;margin-bottom: 2%;}
	.partner-list li:nth-child(3n){margin-right: 0;}
	.partner-list li:nth-child(5n){margin-right:2%;}
	.partner-list li:nth-child(15){margin-right: 0}
	.partner-list li:last-child{margin-right: 0;}
	.partner-list li:nth-child(25){display: none}
	.partner-list li img{height:36px;width: auto;max-width: 100%;}
}
/*contact-form*/
.contact-form{padding:100px 0;position: relative;}
.contact-form:after{content: '';width:100%;height: 100%;position: absolute;background-color: rgba(0,0,0,.5);left: 0;top:0;z-index: 1;}
.contact-form .container{position: relative;z-index: 2}
.contact-form form{width:50%;position: relative;background-color: #fff;padding:40px;border-radius: 8px;}
.contact-form form h4{font-size: 30px;font-weight:550;color:var(--color-2);margin-bottom:20px;text-transform: uppercase }
.contact-form form h4 i{font-size: 3.2rem;font-weight: 400;margin-right:10px;}
.contact-form form label{display: block;width:100%;margin:10px 0;}
.contact-form form input{width: 100%!important;font-weight: 400;border: 1px solid #ccc;text-indent: 20px;line-height:40px;height:40px;background-color:rgba(0,0,0,0);color:var(--color-2);font-size: 14px;}
.contact-form form textarea{font-weight: 400;width: 100%;border: 1px solid #ccc;height:80px;background-color: transparent;outline: none;color:var(--color-1);font-size: 14px;}
.contact-form form textarea{padding: 20px;}
.contact-form form .flex-sb{width: 100%;flex-wrap: wrap}
.contact-form form .flex-sb p{width: 49%;margin-right: 2%;margin-bottom: 1%}
.contact-form form .flex-sb p:nth-child(2n){margin-right: 0;}
.contact-form form b{font-size: 16px;font-weight: 500;color:var(--color-2);margin-bottom: 5px;display: block}
.contact-form form span{color:var(--color-3);font-size: 16px;margin-left: 5px;position: relative;top:4px;font-weight: 400;}
.contact-form form button{
	border: none;text-transform: uppercase;
	width: 180px;height:50px;line-height: 45px;color: #fff;font-size:18px;
	font-weight: 500;outline: none;border-radius:4px;
	background-image:-webkit-gradient(linear,0% 100%,0% 100%, from(var(--color-5)), to(var(--color-4)));
	background-image:-webkit-linear-gradient(45deg, var(--color-5), var(--color-4));
	background-image:-o-linear-gradient(45deg, var(--color-5), var(--color-4));
	background-image:linear-gradient(45deg, var(--color-5), var(--color-4));
	box-shadow:0 10px 20px rgba(3,110,184,0.3);
	-webkit-box-shadow:0 10px 20px rgba(49,75,159,0.3);
	-moz-box-shadow:0 10px 20px rgba(49,75,159,0.3);
}
.contact-form form button i{font-size: 2.2rem;margin-left: 10px;}
.contact-form .info{width:50%;padding: 0 0 0 80px;}
.contact-form .info h4{font-size: 40px;line-height: 60px;font-weight:550;letter-spacing: 1px;color: #fff;margin-bottom:30px;text-transform: uppercase}
.contact-form .info h4 i{font-size: 3.5rem;font-weight: 400;margin-right:10px;}
.contact-form .info hr{border-top: 1px dashed rgba(255,255,255,0.2);border-bottom: 1px dashed rgba(255,255,255,0.6);margin:30px 0;}
.contact-form .info p{font-size: 20px;line-height: 40px;color:rgba(255,255,255,0.9);font-weight: 400;}
.contact-form .info h6{font-size: 20px;line-height: 40px;color:rgba(255,255,255,0.9);}
.contact-form .info a{color:rgba(255,255,255,0.8);}
.contact-form .info h6 i{font-size: 1.8rem;margin-right: 5px;display: inline-block;width: 30px;}
@media (max-width: 1440px) {
	.contact-form{padding:80px 0;}
	.contact-form form h4{font-size: 25px;}
	.contact-form .info h4{font-size: 30px;}
}
@media (max-width: 991px) {
	.contact-form{padding:30px 0;}
	.contact-form .container{flex-wrap: wrap;}
	.contact-form form{padding: 25px!important;width: 100%!important;}
	.contact-form form h4{font-size: 2.2rem;margin-bottom:20px;}
	.contact-form form h4 i{font-size: 2.5rem;}
	.contact-form form button{width: 100%;}
	.contact-form form button i{color: #fff;}
	.contact-form .container .info{width: 100%;padding:20px 0 0 0!important;margin-bottom: 0;}
	.contact-form .info h4{font-size: 2rem!important;line-height: 2.2rem;margin-bottom:10px!important;}
	.contact-form .info h4 i{font-size: 2.5rem!important;}
	.contact-form .info p{font-size: 1.4rem!important;line-height: 2.2rem!important;}
	.contact-form .info h6{font-size: 1.4rem;line-height: 2.2rem;}
	.contact-form .info h6 i{font-size: 1.6rem;width:25px;}
	.contact-form .info hr{margin:15px 0;}
	.contact-form form .form{width: 100%;padding: 25px;}
	.contact-form form .form label{display: block;width:100%;margin:0;flex-wrap: wrap;}
	.contact-form form .form input{text-indent:5px!important;width:100%;font-size: 1.4rem!important;border: 1px solid #eee;}
	.contact-form form .form textarea{height:100px;font-size: 1.4rem;margin-bottom: 10px;border: 1px solid #eee;padding:10px;}
	.contact-form form .flex-sb p{width: 100%;margin-right:0;margin-bottom: 3%}
	.contact-form form .flex-sb p:last-child{margin-bottom: 0}
	.contact-form form b{display: none}
	.contact-form form .form button{width: 50%;height: 40px;line-height: 40px;font-size:1.4rem;}
	.contact-form form .form button i{font-size:1.8rem;}
	.contact-form form .form input::-webkit-input-placeholder{font-size:1.4rem;}
	.contact-form form .form input::-moz-placeholder{font-size:1.4rem;}
	.contact-form form .form input:-ms-input-placeholder{font-size: 1.4rem;}
}

#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{font-family: "FZLANTY_CUJW--GB1-0";}
.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;}
}

.myform{padding:50px;}
.myform h4{font-size: 30px;font-weight: 500;margin-bottom: 30px;border-bottom: 1px dashed #ddd;color: #495057;padding-bottom: 20px;text-align: center}
.myform h4 i{font-size: 3.2rem;margin-right: 10px;font-weight: 500;color:#314b9f; }
.myform label{font-size: 16px;font-family: "Microsoft Yahei";color: #495057;font-weight: 500;display: block;margin-bottom:15px;}
.myform input{line-height: 40px;border:solid 1px #dfdfdf;border-radius: 4px;padding: 0 20px;font-size: 16px;font-family: "Microsoft Yahei";background-color: #fff;width: 100%;}
.myform button{
	border:none;color: #fff;
	line-height:45px;
	border-radius: 25px;
	width:60%;
	font-size: 18px;
	display: block;
	background-image: linear-gradient(125deg,#bccbfa,#314b9f);
	box-shadow: 0 10px 25px rgba(49, 75, 159, 0.38);
	-webkit-box-shadow: 0 10px 25px rgba(49, 75, 159, 0.38);
	margin:20px auto;
}
.myform button i{font-size: 2rem;color: #fff;margin-left: 15px;}
.myform  p{text-align: center;font-size: 14px;line-height: 25px;color: #868e96;font-family: "Microsoft YaHei", "Roboto", sans-serif}
@media (max-width: 992px) {
	.myform{padding:10px 20px;}
	.myform h4{font-size: 2rem;margin-bottom: 20px;padding-bottom:10px;}
	.myform h4 i{font-size: 2.2rem;margin-right:5px;}
	.myform label{font-size: 1.4rem;margin-bottom:10px;}
	.myform input{font-size: 1.4rem;}
	.myform button{line-height:40px;width:80%;font-size:1.6rem;margin:20px auto;}
	.myform button i{font-size: 1.8rem;margin-left:10px;}
	.myform  p{font-size:1.2rem;line-height:2rem;}
}
.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:18px;font-weight: 500;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:16px;}
}
@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:40px;margin-left: -20px;}
	.section-title p{font-size:1.3rem;}
}

