@charset "UTF-8";

html,
body {
	moz-user-select: -moz-none;
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
	font-family: "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei", Arial, Helvetica, sans-serif;
	font-size: 1.6rem;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
a,
a:hover {
	outline: 0;
}

.container-fluid {
	padding-left: 0px;
	padding-right: 0px;
}


@media (min-width: 1200px) {
	.container {
		width: 1230px;
	}
}

body {
	color: #333;
}

body a {
	text-decoration: none;
	outline: none;
}

body a:hover {
	color: #1090d6;
	outline: none;
}

body a.focus {
	outline: none;
}

@keyframes rt_fx_1 {
	0% {
		transform: translateX(-10px)
	}

	100% {
		transform: translateX(0)
	}
}



/*  箭头 @include arrow(direction,size,color);
**/
/* 超出省略号 @include ell(); */
/* inline-block @include inline_block(); */
/* font-size of REM @include font_size(fz); */
@font-face {
	font-family: 'SourceHanSansCNExtraLight';
	src: url("fonts/SourceHanSansCN-ExtraLight.ttf"), url("fonts/SourceHanSansCN-ExtraLight.otf");
	font-weight: normal;
	font-style: normal;
}

body {
	background-color: #fff;
}

header {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 24;
	background-color: rgba(7, 8, 15, .73);
	height: 72px;
	padding: 0 30px;
	transition: all linear .3s;
}

header a.logo {
	float: left;
	width: 126px;
	height: 72px;
	background: url(../images/common/logo.svg) no-repeat center;
	background-size: 95% auto;
}

header nav {
	padding-left: 20px;
	float: left;
}

header nav a {
	display: inline-block;
	font-size: 18px;
	padding: 0 25px;
	line-height: 72px;
	color: #fff;
	text-decoration: none;
	margin-left: 20px;
	transition: all linear .3s;
	font-weight: bold;
	position: relative;
}

header nav a:focus {
	color: #fff;
}

header nav a:hover,
header nav a.active {
	background-color: #2e6557;
	color: #fff;
	text-decoration: none;
}

header nav a.cur::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background-color: #a21231;
}

header .btn_gp {
	float: right;
	padding-top: 16px;
}

header .btn_gp a.search {
	line-height: 40px;
	width: 40px;
	height: 40px;
	float: left;
	text-align: center;
	margin-right: 20px;
	cursor: pointer;
}

header .btn_gp a.search i {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/common/icon_search.png) no-repeat center;
}

header .btn_gp a.lang {
	font-size: 20px;
	line-height: 40px;
	width: 40px;
	color: #fff;
	float: left;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	margin-right: 20px;
}

header .btn_gp a.login {
	line-height: 40px;
	width: 40px;
	height: 40px;
	float: left;
	text-align: center;
	margin-right: 20px;
}

header .btn_gp a.login i {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/common/icon_login.png) no-repeat center;
}

header .btn_gp a.login:hover,
header .btn_gp a.search:hover,
header .btn_gp a.lang:hover {
	background: #a21231;
}

header .btn_gp a.joinus {
	font-size: 16px;
	line-height: 40px;
	padding: 0 10px 0 18px;
	color: #fff;
	float: left;
	text-align: center;
	text-decoration: none;
	background: #a21231;
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

header .btn_gp a.joinus span {
	display: block;
	padding-right: 30px;
	background: url(../images/common/icon_joinus.png) no-repeat right center;
	position: relative;
	z-index: 2;
}

header .btn_gp a.joinus::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #2e6557;
	width: 0;
	transition: all ease-out .3s;
}

header .btn_gp a.joinus:hover::after {
	width: 100%;
	z-index: 1;
}



header.open,
header:hover {
	background-color: #f3f3f3;
	border-bottom: 1px solid #ededed;
}

header.open a.logo,
header:hover a.logo {
	background: url(../images/common/logo_open.svg) no-repeat center;
	background-size: 95% auto;
}

header.open nav a,
header:hover nav a {
	color: #666666;
}

header.open nav a:hover,
header.open nav a.active {
	color: #fff;
}

header.open .btn_gp a.search i,
header:hover .btn_gp a.search i {
	background: url(../images/common/open_icon_search.png) no-repeat center;
}

header.open .btn_gp a.lang,
header:hover .btn_gp a.lang {
	color: #666;
}

header.open .btn_gp a.login i,
header:hover .btn_gp a.login i {
	background: url(../images/common/open_icon_login.png) no-repeat center;
}

header.open .btn_gp a.search:hover i,
header:hover .btn_gp a.search:hover i {
	background: url(../images/common/icon_search.png) no-repeat center;
}

header.open .btn_gp a.login:hover i,
header:hover .btn_gp a.login:hover i {
	background: url(../images/common/icon_login.png) no-repeat center;
}

header.open .btn_gp a.lang:hover,
header:hover .btn_gp a.lang:hover {
	color: #fff;
}

header .sub_nav_body {
	background-color: #fff;
	position: fixed;
	left: 0;
	right: 0;
	top: 72px;
	z-index: 23;
	display: none;
	box-shadow: 0 0 20px rgba(125, 130, 183, .35);
}

header .sub_nav_body .navBy {
	padding-left: 220px;
	display: flex;
}

header .sub_nav_body .navBy ul.indlist {
	width: calc(100% - 431px);
	display: flex;
	padding-top: 40px;
}

header .sub_nav_body .navBy ul.indlist li {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	width: 33.333%
}

header .sub_nav_body .navBy ul.indlist li h3 {
	padding-bottom: 15px;
}

header .sub_nav_body .navBy ul.indlist li h3 a {
	font-size: 18px;
	font-size: 1.8rem;
	color: #2e6557;
	font-weight: bold;
	text-decoration: none;
}

header .sub_nav_body .navBy ul.indlist li p a {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 28px;
	color: #919392;
	display: inline-block;
	position: relative;
	text-decoration: none;
}

header .sub_nav_body .navBy ul.indlist li p a::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: #a21231;
	transition: all ease-out .3s;
	width: 0;
}

header .sub_nav_body .navBy ul.indlist li p a:hover::after {
	width: 100%;
}

header .sub_nav_body .navBy .serlist {
	width: calc(100% - 431px);
	padding-top: 40px;
	padding-bottom: 30px;
}

header .sub_nav_body .navBy .serlist h3 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #2e6557;
	padding-bottom: 15px;
	padding-top: 30px;
	font-weight: bold;
}

header .sub_nav_body .navBy .serlist h3:first-child {
	padding-top: 0;
}

header .sub_nav_body .navBy .serlist h3 a {
	color: #2e6557;
	text-decoration: none;
}

header .sub_nav_body .navBy .serlist ul {
	font-size: 0;
	width: 100%;
	vertical-align: top
}

header .sub_nav_body .navBy .serlist ul li {
	display: inline-block;
	width: 33.333%;
	vertical-align: top;
}

header .sub_nav_body .navBy .serlist ul li a {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 28px;
	color: #919392;
	display: inline-block;
	position: relative;
	text-decoration: none;
}

header .sub_nav_body .navBy .serlist ul li a::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: #a21231;
	transition: all ease-out .3s;
	width: 0;
}

header .sub_nav_body .navBy .serlist ul li a:hover::after {
	width: 100%;
}

header .sub_nav_body .navBy ul.ablist {
	width: calc(100% - 431px);
	font-size: 0;
	padding-bottom: 70px;
	padding-top: 40px;
}

header .sub_nav_body .navBy ul.ablist li {
	display: inline-block;
	width: 33.33333%;
	vertical-align: top;
}

header .sub_nav_body .navBy ul.ablist li h3 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #2e6557;
	font-weight: bold;
	margin-bottom: 15px;
}

header .sub_nav_body .navBy ul.ablist li h3 a {
	color: #2e6557;
	text-decoration: none;
	font-weight: 700;
}

/*header .sub_nav_body .navBy ul.ablist li p a{font-size:18px;font-size:1.8rem;color:#303030;display:inline-block;text-decoration:none;position: relative;}
header .sub_nav_body .navBy ul.ablist li p a::after{content:"";display:inline-block;position: absolute;left:0;bottom:0;height:1px;background-color:#a21231;transition:all ease-out .3s;width:0;}
header .sub_nav_body .navBy ul.ablist li p a:hover::after{width:100%;}*/
header .sub_nav_body .navBy ul.ablist li p a {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 28px;
	color: #919392;
	display: inline-block;
	position: relative;
	text-decoration: none;
}

header .sub_nav_body .navBy ul.ablist li p a::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: #a21231;
	transition: all ease-out .3s;
	width: 0;
}

header .sub_nav_body .navBy ul.ablist li p a:hover::after {
	width: 100%;
}



header .sub_nav_body .navBy .advert {
	padding: 40px 40px 60px;
	border-left: 1px solid #efefef;
	width: 431px;
}

header .sub_nav_body .navBy .advert h3 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #2e6557;
	margin-bottom: 15px;
	font-weight: bold;
}

header .sub_nav_body .navBy .advert .tu {
	width: 350px;
	height: 200px;
	overflow: hidden;
	margin-bottom: 20px;
}

header .sub_nav_body .navBy .advert .tu img {
	display: block;
	width: 100%;
}

header .sub_nav_body .navBy .advert p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 26px;
	color: #333333;
}

header .sub_nav_body .navBy .advert a.more {
	font-size: 16px;
	line-height: 40px;
	padding: 0 10px 0 18px;
	color: #fff;
	float: left;
	text-align: center;
	text-decoration: none;
	background: #2e6557;
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	z-index: 3;
	margin-top: 15px;
}

header .sub_nav_body .navBy .advert a.more span {
	display: block;
	padding-right: 30px;
	background: url(../images/common/icon_joinus.png) no-repeat right center;
	position: relative;
	z-index: 2;
}

header .sub_nav_body .navBy .advert a.more::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #a21231;
	width: 0;
	transition: all ease-out .3s;
}

header .sub_nav_body .navBy .advert a.more:hover::after {
	width: 100%;
	z-index: 1;
}

/*header #nav__about .navBy .advert h3{font-size:28px;font-size:2.8rem;color:#666666}
header #nav__about .navBy .advert{padding-top:60px;}
*/

header .sub_nav_body .navBy ul.bslist {
	width: 100%;
	font-size: 0;
	padding-top: 40px;
}

header .sub_nav_body .navBy ul.bslist li {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	padding-right: 10px;
	width: 25%;
	margin-bottom: 50px;
}

header .sub_nav_body .navBy ul.bslist li h3 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #2e6557;
	padding-bottom: 15px;
	font-weight: 700;
}

header .sub_nav_body .navBy ul.bslist li h3 a {
	color: #2e6557;
	text-decoration: none;
	font-weight: 700;
}

header .sub_nav_body .navBy ul.bslist li p a {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 28px;
	color: #919392;
	display: inline-block;
	position: relative;
	text-decoration: none;
}

header .sub_nav_body .navBy ul.bslist li p a::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: #a21231;
	transition: all ease-out .3s;
	width: 0;
}

header .sub_nav_body .navBy ul.bslist li p a:hover::after {
	width: 100%;
}

header .search_nav {
	position: fixed;
	left: 0;
	right: 0;
	top: 72px;
	z-index: 23;
	box-shadow: 0 0 20px rgba(125, 130, 183, .35);
	background-color: #006757;
	padding: 30px 0 40px;
	display: none;
}

header .search_nav .txt_body {
	position: relative;
}

header .search_nav input {
	display: block;
	width: 100%;
	background: none;
	border: 0;
	border-bottom: 1px solid #ffffff;
	font-size: 24px;
	font-size: 2.4rem;
	color: #fff;
	padding: 10px 0;
}

header .search_nav input::placeholder {
	color: #fff;
}

header .search_nav a.search_btn {
	position: absolute;
	right: 0;
	width: 30px;
	height: 55px;
	text-align: center;
	top: 0;
	text-decoration: none;
	line-height: 55px;
	font-size: 2.8px;
	font-size: 2.8rem;
	color: #fff;
}


.foot-lx {
	padding: 50px 0;
	background-color: #2e6557;
	border-radius: 200px 0 0 0;
	overflow: hidden;
	text-align: center;
}

.foot-lx h2 {
	font-size: 32px;
	font-size: 3.2rem;
	line-height: 42px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;
}

.foot-lx h3 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 22px;
	color: #fff;
	font-weight: bold;
}

.foot-lx ul {
	display: inline-block;
	margin: 0 auto;
	margin-top: 30px;
}

.foot-lx ul li {
	display: inline-block;
	width: 400px;
}

.foot-lx ul li a {
	text-decoration: none;
}

.foot-lx ul li a i {
	display: inline-block;
	width: 60px;
	height: 60px;
}

.foot-lx ul li a i.mail {
	background: url(../images/common/foot-lx-icon-1.png) no-repeat center;
	background-size: 42px auto;
}

.foot-lx ul li a i.message {
	background: url(../images/common/foot-lx-icon-2.png) no-repeat center;
	background-size: 40px auto
}

.foot-lx ul li a i.tel {
	background: url(../images/common/foot-lx-icon-3.png) no-repeat center;
	background-size: 36px auto;
}

.foot-lx ul li a p {
	font-size: 20px;
	font-size: 2rem;
	line-height: 26px;
	line-height: 2.6rem;
	color: #fff;
}

.foot-lx ul li a p span {
	font-size: 18px;
	font-size: 1.8rem;
	color: #fff;
	padding-left: 10px;
}




.footer-1 {
	padding: 65px 0;
	background-color: #323236;
}

.footer-1 .top-lt {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #515154;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.footer-1 .top-lt a.ft-logo {
	float: left;
	width: 126px;
	height: 47px;
	background: url(../images/common/footer-logo.png) no-repeat;
}

.footer-1 .top-lt .share {
	float: right;
}

.footer-1 .top-lt .share a {
	float: left;
	width: 46px;
	line-height: 46px;
	height: 46px;
	text-decoration: none;
	text-align: center;
	margin-left: 10px;
}

.footer-1 .top-lt .share a i {
	font-size: 26px;
	line-height: 46px;
	color: #cbcbcb;
}

.footer-1 .top-lt .share a.youku i {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/common/share-youku.png) no-repeat center;
}

.footer-1 .top-lt .share a:hover i {
	color: #fff;
}

.footer-1 .top-lt .share a.youku:hover i {
	background: url(../images/common/share-youku-h.png) no-repeat center;
	;
}


.footer-1 .list-lt {
	width: 100%;
	display: inline-block;
}

.footer-1 .list-lt ul.list {
	float: left;
}

.footer-1 .list-lt ul.list li {
	width: 180px;
	float: left;
}

.footer-1 .list-lt ul.list li h3 {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.footer-1 .list-lt ul.list li h3::after {
	content: "";
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #2e6557;
	position: absolute;
	left: 0;
	bottom: 0;
}

.footer-1 .list-lt ul.list li h3 a {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 26px;
	line-height: 2.6rem;
	color: #fff;
	text-decoration: none;
	transition: all ease-out .5s;
}

.footer-1 .list-lt ul.list li h3 a:hover {
	opacity: .5;
}

.footer-1 .list-lt ul.list li p a {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 30px;
	line-height: 3.rem;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	transition: all ease-out .5s;
}

.footer-1 .list-lt ul.list li p a:hover {
	color: #fff;
}

.footer-1 .list-lt .fr {
	text-align: right;
}

.footer-1 .list-lt .wx {
	margin-bottom: 10px;
	width: 120px;
	float: right;
	text-align: center;
}

.footer-1 .list-lt .wx img {
	display: inline-block;
	width: 110px;
}

.footer-1 .list-lt .wx span {
	display: block;
	font-size: 13px;
	font-size: 1.3rem;
	color: rgba(255, 255, 255, .5);
	padding-top: 20px;
}

.footer-1 .list-lt .fr p {
	text-align: right;
	display: inline-block;
	width: 100%;
}

.footer-1 .list-lt .fr p a {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 26px;
	line-height: 2.6rem;
	color: rgba(255, 255, 255, .5);
	margin-left: 15px;
	text-decoration: none;
	transition: all ease-out .5s;
}

.footer-1 .list-lt .fr p a:hover {
	color: #fff;
}

.footer-2 {
	background-color: #282828;
	padding: 35px 0;
}

.footer-2 .foot-nr {
	display: inline-block;
	width: 100%;
}

.footer-2 .foot-nr span.fl {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 26px;
	line-height: 2.6rem;
	color: rgba(255, 255, 255, .5);
	cursor: pointer;
	padding-right: 25px;
	position: relative;
}

.footer-2 .foot-nr span.fl::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 7px;
	background: url(../images/common/span_after.png) no-repeat;
	position: absolute;
	right: 0;
	top: 12px;
	transition: all ease-out .5s;
}

.footer-2 .foot-nr span.cur::after {
	transform: rotate(180deg)
}

.footer-2 .foot-nr span.fr,
.footer-2 .foot-nr span.fr a {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 26px;
	line-height: 2.6rem;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
}

.footer-2 .foot-nr span.fr a {
	margin-left: 15px;
	transition: all ease-out .5s;
}

.footer-2 .foot-nr span.fr a:hover {
	color: #fff;
}

.footer-2 .foot-nr span.fr a.beian {
	display: inline-block;
}

.footer-2 .foot-nr span.fr a.beian img {
	margin-top: -3px;
	margin-right: 5px;
}

.footer-2 .links {
	border-top: 1px solid #484848;
	padding: 15px 0;
	margin-top: 10px;
	display: none;
}

.footer-2 .links a {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 30px;
	line-height: 3rem;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	transition: all ease-out .5s;
	margin-right: 45px;
}

.footer-2 .links a:hover {
	color: #fff;
}

.footer-2 .links a:last-child {
	margin-right: 0;
}


.pageKv {
	overflow: hidden;
	position: relative;
}

.pageKv img {
	display: block;
	width: 100%;
}

.pageKv .txt_body {
	position: absolute;
	left: 0;
	right: 0;
	top: 72px;
	bottom: 0;
}

/*background-color:rgba(0,0,0,.41);*/
.pageKv .txt_body .box {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.pageKv .txt_body .box h1 {
	font-size: 48px;
	font-size: 4.8rem;
	color: #fff;
	line-height: 52px;
	font-weight: 700;
}

.pageKv .txt_body .box h3 {
	font-size: 48px;
	font-size: 4.8rem;
	color: #fff;
	line-height: 52px;
	font-weight: 700;
}

.pageKv .txt_body .box h4 {
	font-size: 22px;
	font-size: 2.2rem;
	color: #fff;
	margin-top: 25px;
	width: 750px;
	line-height: 1.7;
}

.pageKv .txt_body .box a {
	display: inline-block;
	padding: 0 15px 0 35px;
	line-height: 50px;
	line-height: 5rem;
	font-size: 16px;
	font-size: 1.6rem;
	color: #fff;
	background-color: #a21231;
	text-decoration: none;
	border-radius: 50px;
	overflow: hidden;
	margin-top: 25px;
	position: relative;
}

.pageKv .txt_body .box a span {
	display: block;
	padding-right: 54px;
	background: url(../images/index/more_span.png) no-repeat right center;
	position: relative;
	z-index: 2;
}

.pageKv .txt_body .box a::after {
	content: "";
	width: 0;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: #2e6557;
	transition: all ease-out .3s;
}

.pageKv .txt_body .box a:hover::after {
	width: 100%;
}

.page_tit {
	text-align: center;
	font-size: 32px;
	font-size: 3.2rem;
	line-height: 42px;
	line-height: 4.2rem;
	font-weight: bold;
	color: #414358;
	padding-bottom: 20px;
	position: relative;
	margin-bottom: 40px;
}

.page_tit::after {
	content: "";
	display: inline-block;
	width: 60px;
	height: 4px;
	background-color: #a21231;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}


.swiper-four-wrap {
	position: relative;
	margin-top: 110px;
	padding-bottom: 30px;
}

.swiper-four-wrap .swiper-container {
	padding: 0 10px;
}

.swiper-four-wrap a.box {
	display: block;
	background-color: #fff;
	padding: 25px 0 40px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(56, 72, 67, .16);
	text-align: center;
	text-decoration: none;
	margin: 20px 0;
	transition: all ease-out .3s;
}

.swiper-four-wrap a.box i {
	display: block;
	width: 100%;
	height: 160px;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 10px;
}

.swiper-four-wrap a.box p {
	font-size: 20px;
	font-size: 2rem;
	line-height: 36px;
	line-height: 3rem;
	height: 72px;
	overflow: hidden;
	color: #333333
}

.swiper-four-wrap a.box:hover {
	transform: translateY(-15px)
}

.swiper-four-wrap .dot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 4;
}

.swiper-four-wrap .dot span {
	display: inline-block;
	width: 11px;
	height: 11px;
	background-color: #bcc5c2;
	cursor: pointer;
	border-radius: 50%;
	opacity: 1;
	margin: 0 8px;
}

.swiper-four-wrap .dot span.swiper-pagination-bullet-active {
	background-color: #036453;
}

.caselit_body .swiper-container {
	padding: 0 20px 50px;
}

/*padding:0 30px 50px;*/
.caselit_body .swiper-slide {
	width: 360px;
	margin: 20px 0;
	box-shadow: 0 0 20px rgba(94, 106, 102, .16);
}

.caselit_body .swiper-slide .box {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 400px;
}

.caselit_body .swiper-slide .box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all ease-out .3s;
}

.page .mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.0)); /* 渐变黑色遮罩 */
	z-index: 1;
}

.caselit_body .swiper-slide .box .mask {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(46, 52, 50, .37);
	padding: 70px 45px 0;
}

.caselit_body .swiper-slide .box .mask h3 {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 36px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 15px;
}

.caselit_body .swiper-slide .box .mask h4 {
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 24px;
	;
	color: #fff;
}

.caselit_body .swiper-slide .box .drop {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(1, 103, 89, .78);
	display: none;
}

.caselit_body .swiper-slide .box .drop .txt {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.caselit_body .swiper-slide .box .drop .txt .qrCode {
	display: inline-block;
	background-color: #f3f3f3;
	padding: 10px;
	width: 110px;
	height: 110px;
	margin-bottom: 10px;
}

.caselit_body .swiper-slide .box .drop .txt .qrCode img {
	display: block;
	width: 90px;
	height: 90px;
}

.caselit_body .swiper-slide .box .drop .txt p {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 28px;
	color: #fff;
}


.caselit_body .btn_link {
	position: absolute;
	left: 3.5%;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	z-index: 2;
	display: none;
}

.caselit_body .btn_link span {
	display: inline-block;
	border: 1px solid #e6e6e6;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background-color: #fff;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	color: #000;
	margin: 10px 0;
	cursor: pointer;
	transition: all ease-out .4s;
}

.caselit_body .btn_link span.left-btn {
	border: 1px solid #2e6557;
	background-color: #2e6557;
	color: #fff;
}

.caselit_body .btn_link span:hover {
	background-color: #a21231;
	color: #fff;
	border: 1px solid #a21231;
}

.caselit_body .dot {
	position: absolute;
	width: 400px;
	bottom: 30px;
	left: 50%;
	margin-left: -200px;
	height: 30px;
	padding-top: 14px;
	cursor: pointer;
	z-index: 2;
}

.caselit_body .dot::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	width: 100%;
	height: 2px;
	background-color: #E6E6E6;
}

.caselit_body .dot .swiper-scrollbar-drag {
	height: 2px;
	border-radius: 0;
	z-index: 1;
	background-color: #2e6557;
}





.charaSlider {
	padding-bottom: 40px;
	position: relative;
	display: flex;
	width: 100%;
}

.charaSlider .dot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 4;
}

.charaSlider .dot span {
	display: inline-block;
	width: 11px;
	height: 11px;
	background-color: #bcc5c2;
	cursor: pointer;
	border-radius: 50%;
	opacity: 1;
	margin: 0 8px;
}

.charaSlider .dot span.swiper-pagination-bullet-active {
	background-color: #036453;
}

.charaSlider .swiper-container {
	padding: 20px;
}

.charaSlider .swiper-slide {
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	border: 1px solid #e2e2e2;
	background-color: #fff;
	min-width: 265.5px;
}

.charaSlider .swiper-slide .box {
	padding: 40px 30px;
	box-sizing: border-box;
	text-align: center;
	min-width: 265.5px;
}

.charaSlider .swiper-slide .box .icon {
	display: inline-block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	background: url(../images/business/90x90.png) no-repeat;
	margin-bottom: 5px;
}

.charaSlider .swiper-slide .box .icon img {
	display: block;
	width: 100%;
}

.charaSlider .swiper-slide .box h4 {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 30px;
	color: #016759;
	font-weight: 700;
	margin-bottom: 20px;
}

.charaSlider .swiper-slide .box p {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 30px;
	color: #666;
	margn-top: 5px;
}


.pageNav {
	height: 64px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(144, 147, 147, .26);
	text-align: center;
}

.pageNav a {
	display: inline-block;
	padding: 0 45px;
	font-size: 20px;
	font-size: 2rem;
	color: #333;
	line-height: 64px;
	text-decoration: none;
	transition: all linear .3s;
}

.pageNav a:hover,
.pageNav a.cur {
	background-color: #016759;
	color: #fff;
}

.otherlinks {
	margin-bottom: 80px;
}

.otherlinks .list {
	width: 100%;
	font-size: 0;
	display: flex;
	flex-wrap: wrap;
}

.otherlinks .list .box {
	width: calc((100% - 40px)/2);
	display: inline-block;
	box-sizing: border-box;
	padding: 50px 75px 50px 25px;
	margin-top: 30px;
	border: 1px solid #dfedeb;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(1, 103, 89, .16);
	background: #fff url(../images/common/otherlinks_bg.jpg) no-repeat right bottom;
}

.otherlinks .list .box:nth-child(odd) {
	margin-right: 40px;
}

.otherlinks .list .box .txt {
	padding-left: 35px;
	padding-bottom: 20px;
	background: url(../images/common/otherlinks_dot.png) no-repeat left 4px;
	;
}

.otherlinks .list .box .txt h4 {
	font-size: 20px;
	font-size: 2rem;
	color: #4a6860;
	margin-bottom: 15px;
}

.otherlinks .list .box .txt p {
	font-size: 20px;
	font-size: 2rem;
	line-height: 32px;
	color: #666;
}

.otherlinks .list .box .txt a {
	margin-top: 25px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	color: #016759;
	display: inline-block;
	text-decoration: none;
	transition: all ease-out .5s;
}

.otherlinks .list .box .txt a span {
	font-size: 28px;
	font-size: 2.8rem;
	color: #016759;
	line-height: 28px;
	margin-left: 10px;
	float: right;
}

.otherlinks .list .box .txt a:hover,
.otherlinks .list .box .txt a:hover span {
	color: #a21231;
}


.downBy {
	background-color: #fff;
}

.downBy .contBy {
	padding: 0 0 60px;
	text-align: center;
}

.downBy .contBy h3 {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 28px;
	margin-bottom: 30px;
}

.downBy .contBy a {
	display: inline-block;
	padding: 0 10px 0 18px;
	height: 50px;
	line-height: 50px;
	border: 1px solid #e5e5e5;
	color: #016759;
	font-size: 16px;
	font-size: 1.6rem;
	background-color: #fff;
	text-decoration: none;
	transition: all ease-out .5s;
	margin: 0 10px;
	border-radius: 50px;
}

.downBy .contBy a span {
	padding-right: 30px;
	background: url(../images/common/icon_joinus.png) no-repeat right center;
	position: relative;
}

.downBy .contBy a:hover {
	border: 1px solid #a21231;
	background-color: #a21231;
	color: #fff;
}

.downBy .contBy a.softtrail {
	border: 1px solid #a21231;
	background-color: #a21231;
	color: #fff;
}



.popBody,
.popDown,
.popBack {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 9999;
	display: none;
}

.popBody .container,
.popDown .container,
.popBack .container {
	width: 970px;
	height: 100%;
	max-height: 720px;
	padding: 0;
	background: #fff url(../images/common/popFree.jpg) no-repeat left bottom;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	overflow-y: auto;
}

.popBody .container a.close,
.popDown .container a.close,
.popBack .container a.close {
	display: inline-block;
	width: 19px;
	height: 19px;
	background: url(../images/common/popClose.png) no-repeat;
	cursor: pointer;
	position: absolute;
	top: 25px;
	right: 30px;
	opacity: 1;
}

.popBody .container .popContent,
.popDown .container .popContent,
.popBack .container .popContent {
	padding: 25px 230px 0;
}

.popBody .container .popContent .tit,
.popDown .container .popContent .tit,
.popBack .container .popContent .tit {
	text-align: center;
	padding-bottom: 20px;
}

.popBody .container .popContent .tit h3,
.popDown .container .popContent .tit h3,
.popBack .container .popContent .tit h3 {
	font-size: 30px;
	color: #333;
	font-family: microsoft yahei;
	padding-bottom: 20px;
}

.popBody .container .popContent .tit h4,
.popDown .container .popContent .tit h4,
.popBack .container .popContent .tit h4 {
	font-size: 16px;
	color: #666;
}

.popBody .container .popContent .tit h4 a,
.popDown .container .popContent .tit h4 a,
.popBack .container .popContent .tit h4 a {
	color: #007260;
	padding-right: 22px;
	background: url(../images/common/feedbak.svg) no-repeat right center;
	text-decoration: none;
	margin-right: 30px;
}

.popBody .container .popContent ul.list,
.popDown .container .popContent ul.list,
.popBack .container .popContent ul.list {
	margin-top: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

.popBody .container .popContent ul.list li,
.popDown .container .popContent ul.list li,
.popBack .container .popContent ul.list li {
	display: inline-block;
	width: 100%;
	padding: 8px 0;
	min-height: 46px;
	margin-bottom: 0;
}

.popBody .container .popContent ul.list li .box,
.popDown .container .popContent ul.list li .box,
.popBack .container .popContent ul.list li .box {
	width: 480px;
	height: 46px;
	border: 1px solid #c7c7c7;
	border-radius: 4px;
	margin-left: 0;
	position: relative;
}

.popBody .container .popContent ul.list li .box.feedbox,
.popDown .container .popContent ul.list li .box.feedbox,
.popBack .container .popContent ul.list li .box.feedbox {
	height: 96px;
}

.popBody .container .popContent ul.list li .box h3,
.popDown .container .popContent ul.list li .box h3,
.popBack .container .popContent ul.list li .box h3 {
	float: left;
	width: 95px;
	height: 44px;
	line-height: 44px;
	font-size: 16px;
	color: #333;
	padding-left: 15px;
}

.popBody .container .popContent ul.list li .box input,
.popDown .container .popContent ul.list li .box input,
.popBack .container .popContent ul.list li .box input {
	float: left;
	width: 370px;
	height: 44px;
	padding: 9px 15px 9px 0;
	border: 0;
	background: #fff;
	font-size: 16px;
	line-height: 26px;
	color: #666;
}

.popBody .container .popContent ul.list li .box textarea,
.popDown .container .popContent ul.list li .box textarea,
.popBack .container .popContent ul.list li .box textarea {
	float: left;
	width: 370px;
	height: 94px;
	padding: 8px 15px 8px 0;
	border: 0;
	background: #fff;
	font-size: 16px;
	line-height: 26px;
	color: #666;
}

.popBody .container .popContent ul.list li .box a.fbBtn,
.popDown .container .popContent ul.list li .box a.fbBtn,
.popBack .container .popContent ul.list li .box a.fbBtn {
	position: absolute;
	right: 0;
	top: 0;
	height: 44px;
	line-height: 44px;
	width: 100px;
	text-decoration: none;
	cursor: pointer;
	background-color: #d31749;
	color: #fff;
	text-align: center;
}

.popBody .container .popContent ul.list li em,
.popDown .container .popContent ul.list li em,
.popBack .container .popContent ul.list li em {
	float: left;
	color: #d31749;
	font-size: 16px;
	padding-left: 15px;
	padding-top: 15px;
}

.popBody .container .popContent ul.list li .slider,
.popDown .container .popContent ul.list li .slider,
.popBack .container .popContent ul.list li .slider {
	height: 44px;
	overflow: hidden;
}

.popBody .container .popContent .link,
.popDown .container .popContent .link,
.popBack .container .popContent .link {
	padding-top: 20px;
	text-align: center;
}

.popBody .container .popContent .link a,
.popDown .container .popContent .link a,
.popBack .container .popContent .link a {
	display: inline-block;
	width: 138px;
	height: 38px;
	line-height: 38px;
	color: #fff;
	background: #d31749;
	font-size: 16px;
	border-radius: 4px;
	box-shadow: 0 0 6px #666;
	text-decoration: none;
}

.ui-slider-wrap {
	background: #e8e8e8;
	position: relative;
}

.ui-slider-wrap .ui-slider-bg {
	width: 0;
}

.ui-slider-wrap .ui-slider-btn {
	position: absolute;
	top: 0;
	left: 0;
	cursor: move;
	text-align: center;
	border: 1px solid #ccc;
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.ui-slider-wrap .ui-slider-btn {
	background: #fff url(../images/common/slider.png) no-repeat center;
}

.ui-slider-wrap .ui-slider-btn.success {
	background-image: url(../images/common/success.png);
}

.ui-slider-wrap .ui-slider-text {
	width: 100%;
	height: 100%;
	font-size: 16px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
}

.ui-slider-wrap .ui-slider-no-select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}


.Pager {
	border-top: 1px dashed #c3c3c3;
	padding: 70px 0;
	text-align: center;
	position: relative;
}

.Pager ul.pagination {
	display: inline-block;
}

.Pager ul.pagination li {
	display: inline-block;
	margin: 0 15px;
}

.Pager ul.pagination li a,
.Pager ul.pagination li span {
	font-size: 16px;
	font-size: 1.6rem;
	color: #000;
	line-height: 30px;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	border: 0;
	background: none;
	border-radius: 0;
}

.Pager ul.pagination li.active a,
.Pager ul.pagination li.active span {
	color: #016759;
	;
	background: none;
}

.Pager ul.pagination li a:hover,
.Pager ul.pagination li span:hover {
	color: #a21231;
}

.Pager ul.pagination li:first-child a,
.Pager ul.pagination li:first-child span {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	width: 60px;
	height: 60px;
	text-indent: -9999em;
	overflow: hidden;
	background-color: #2e6557;
	background-image: url(../images/about/prev.png);
	transition: all ease-out .5s
}

.Pager ul.pagination li:last-child a,
.Pager ul.pagination li:last-child span {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	width: 60px;
	height: 60px;
	text-indent: -9999em;
	overflow: hidden;
	background-color: #2e6557;
	background-image: url(../images/about/next.png);
	transition: all ease-out .5s
}

.Pager ul.pagination li:first-child a:hover,
.Pager ul.pagination li:first-child span:hover,
.Pager ul.pagination li:last-child a:hover,
.Pager ul.pagination li:last-child span:hover {
	background-color: #a21231;
}




.fixRt {
	position: fixed;
	right: 0;
	top: 80%;
	transform: translateY(-50%);
	width: 60px;
	font-size: 0;
	z-index: 23;
	box-shadow: 0 0 20px rgba(125, 130, 183, .35);
}

.fixRt .box {
	display: inline-block;
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	position: relative;
}

.fixRt .box span {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}

.fixRt .box span i {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.fixRt .box span i.ico_1 {
	background-image: url(../images/common/fxrt_1.svg);
	background-size: 32px auto;
	border-radius: 10px 0 0 0;
}

.fixRt .box span i.ico_2 {
	background-image: url(../images/common/fxrt_2.svg);
	background-size: 32px auto;
}

.fixRt .box span i.ico_3 {
	background-image: url(../images/common/fxrt_3.svg);
	background-size: 40px auto;
}

.fixRt .box span i.ico_4 {
	background-image: url(../images/common/fxrt_4.svg);
	background-size: 32px auto;
	border-radius: 0 0 0 10px;
}

.fixRt .box span i.ico_5 {
	background-image: url(../images/common/fxrt_5.svg);
	background-size: 36px auto;
	border-radius: 0 0 0 10px;
}

.fixRt .box.box_5,
.fixRt .box.box_5 span {
	border-radius: 10px 0 0 0;
}

.fixRt .box:last-child {
	border-bottom: 0;
	border-radius: 0 0 0 10px;
}

.fixRt .box_1 .mask {
	display: none;
}

.fixRt .box_1 .mask a.closed {
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	top: 0;
	background: #386355 url(../images/common/ft_close.png) no-repeat center;
	overflow: hidden;
	cursor: pointer;
	display: none;
}

.fixRt .box_1 .mask .mask_body {
	padding: 30px 15px;
	background-color: #fff;
	border-radius: 8px;
	right: 65px;
	position: absolute;
	top: -15px;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(125, 130, 183, .35);
}

.fixRt .box_1 .mask .mask_body::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 23px;
	background: url(../images/common/ft_mask_before.png) no-repeat;
	position: absolute;
	right: -12px;
	top: 35px;
}

.fixRt .box_1 .mask .mask_body h3 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #000000;
	font-weight: bold;
	line-height: 36px;
	width: 260px;
}

.fixRt .box_1 .mask .mask_body ul li {
	padding-left: 35px;
	margin-top: 10px;
}

.fixRt .box_1 .mask .mask_body ul li.lx_1 {
	background: url(../images/common/ft_tel.png) no-repeat left center;
}

.fixRt .box_1 .mask .mask_body ul li h4 {
	font-size: 14px;
	font-size: 1.4rem;
	color: #717171;
	font-weight: 700;
}

.fixRt .box_1 .mask .mask_body ul li .p_1 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #386355;
	line-height: 36px;
	font-weight: bold;
}

.fixRt .box_1 .mask .mask_body ul li p a {
	font-size: 15px;
	font-size: 1.5rem;
	color: #386355;
	line-height: 36px;
	text-decoration: none;
	font-weight: 700;
}

.fixRt .box_1 .mask .mask_body ul li.lx_2 {
	background: url(../images/common/ft_lx.png) no-repeat left center;
}

.fixRt .box_1 .mask .mask_body ul li.lx_3 {
	background: url(../images/common/ft_mail.png) no-repeat left center;
}

.fixRt .box_1 .mask.cur .mask_body {
	animation: rt_fx_1 .5s alternate forwards;
}

.fixRt .box_5 .mask.cur .mask_body {
	animation: rt_fx_1 .5s alternate forwards;
}

.fixRt .box_5 .mask {
	display: none;
}

.fixRt .box_5 .mask a.closed {
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	top: 0;
	background: #386355 url(../images/common/ft_close.png) no-repeat center;
	border-radius: 10px 0 0 0;
	overflow: hidden;
	cursor: pointer;
	display: none;
}

.fixRt .box_5 .mask .mask_body {
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	right: 65px;
	position: absolute;
	top: -150px;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(125, 130, 183, .35);
}

.fixRt .box_5 .mask .mask_body::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 23px;
	background: url(../images/common/ft_mask_before.png) no-repeat;
	position: absolute;
	right: -12px;
	top: 170px;
}

.fixRt .box_5 .mask .mask_body .code {
	width: 86px;
}

.fixRt .box_5 .mask .mask_body .code img {
	display: block;
	width: 100%;
}

.fixRt .box_5 .mask .mask_body p {
	font-size: 14px;
	line-height: 36px;
	color: #000;
	text-align: center;
}

.privBy {
	padding: 80px 0;
}

.privBy p {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 24px;
	color: #333;
}

.privBy .indent {
	text-indent: 2em;
}

.privBy p a {
	color: #2e6557;
}


@media only screen and (min-width : 1366px) {
	.pageKv {
		height: 450px;
	}

	.pageKv img {
		object-fit: cover;
	}
}




@media only screen and (min-width : 1920px) {
	.pageKv {
		height: 540px;
	}

	.pageKv img {
		object-fit: cover;
	}
}