::-webkit-scrollbar{
  width: 5px;
  height: 10px;
}
::-webkit-scrollbar-track{
  background-color: transparent;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb{
  background: #4cbebe;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
  background: #4cbebe;
}
html, body {
  position: relative;
  height: 100%;
}
*{
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}
body{
	font: 1rem/1.5 "PingFang SC","Lantinghei SC","Microsoft YaHei","HanHei SC","Helvetica Neue","Open Sans",Arial,"Hiragino Sans GB","微软雅黑",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;
}
i,em{
	font-style: normal;
}
a{
	text-decoration: none;
	color: #333;
	transition: all .5s;
}
a:hover{
	color: #4cbebe;
}
ul,li{
	list-style: none;
}
.clearfix:after{
	content: '';
	display: block;
	height: 0;
	clear: both;
}
.clearfix{
	zoom: 1;
}
img{
	max-width: 100%;
	vertical-align: top;
}
.w1400{
	max-width: 87.5rem;
	margin: 0 auto;
}
.w1650{
	max-width: 103.125rem;
	margin: 0 auto;
}
.w1600{
	max-width: 100rem;
	margin:  0 auto;
}
.w1200{
	max-width: 75rem;
	margin: 0 auto;
}
.hidden{
	overflow: hidden !important;
}

/**
 * 头部 */
 .header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 103.125rem;
	height: 7.5rem;
	z-index: 10;
	transition: all .7s;
	margin: 0 auto;
	background-color: #FFF;
	z-index: 100;
}
.header.onSearch .menu{
	display: none;
}
.header.onSearch .search-result{
	display: block;
}
.header.onSearch .search-form-box{
	display: flex;
	align-items: center;
}
.search-form-box{
	display: none;
}
.search-form{
	margin-right: 12.5rem;
	width: 61.25rem;
	border-bottom: solid 0.0625rem #CCC;
	display: flex;
	align-items: center;
	padding-bottom: 1.25rem;
}
.search-form input{
	flex: 1;
	min-width: 0;
	margin: 0 1.875rem;
	border: none;
}
.search-form input::-webkit-input-placeholder{
	color: #CCC;
}
.search-form button{
	border: none;
	cursor: pointer;
	background-color: transparent;
	font-size: 1rem;
}
.header .logo{
	position: relative;
	z-index: 2;
}
.header .logo a{
	display: inline-flex;
	/* background: url(../images/logo.png) no-repeat; */
	background-size: 100%;
	width: 12rem;
	height: 5rem;
	align-items: center;
}
.header .menu{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 20;
}
.header .menu ul {
	display: flex;
	align-items: center;
}
.header .menu ul li{
	padding: 0 2.1875rem;
	position: relative;
}
.header .menu ul li .dropdown{
	position: absolute;
	left: 0;
	text-align: center;
	display: none;
	border-radius: 0.625rem;
	height: 4.875rem;
	line-height: 4.875rem;
	padding-left: 2.1875rem;
	white-space: nowrap;
	z-index: 20;
}
.header .menu ul li .dropdown p{
	display: inline-block;
	margin-right: 3.125rem;
}
.header .menu ul li .dropdown p a{
	 display: block;
	 font-size: 0.875rem;
	 height: 2.875rem;
	 line-height: 2.875rem;
	 border-bottom: none;
	 color: #666;
	 white-space: nowrap;
 }
.header .menu ul li .dropdown p a::after{
	display: none;
}
.header .menu ul li .dropdown p a:hover,.header .menu ul li .dropdown p a.active{
	color: #0f793a;
	font-weight: bold;
}
.header .menu ul li a{
	 font-size: 1rem;
	display: block;
	position: relative;
	height: 7.5rem;
	line-height: 7.5rem;
}
.header .menu ul li a::after{
	content: '';
	 display: block;
	 position: absolute;
	 bottom: 0;
	 width: 100%;
	 height: 2px;
	 background: #0f793a;
	 -webkit-transform-origin: 100%;
	 -ms-transform-origin: 100%;
	 transform-origin: 100%;
	 -webkit-transform: scaleX(0);
	 -ms-transform: scaleX(0);
	 transform: scaleX(0);
	 -webkit-transition: background .4s, -webkit-transform .4s;
	 transition: background .4s, -webkit-transform .4s;
	 -o-transition: transform .4s, background .4s;
	 transition: transform .4s, background .4s;
	 transition: transform .4s, background .4s,-webkit-transform .4s;
}
.header .menu ul li a.active::after,
.header .menu ul li a:hover::after{
	-webkit-transform-origin: 0;
	-ms-transform-origin: 0;
	transform-origin: 0;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.header .bg_hover{
	position: fixed;
	left: -2.5rem;
	right: -2.5rem;
	z-index: 1;
	background-color: #fafafa;
	top: 7.5rem;
	z-index: 10;
}
.header .search{
	display: flex;
	align-items: center;
	padding-right: 1.25rem;
	position: relative;
}
.header .search::after{
	content: '';
	position: absolute;
	right: 0;
	width: 0.0625rem;
	height: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background-color: #666;
}
.header .language{
	display: flex;
	align-items: center;
	font-size: 1.125rem;
	font-weight: bold;
	padding-left: 1.25rem;
	position: relative;
	height: 7.5rem;
}
.header .language a img{
	vertical-align: middle;
	margin-left: 0.625rem;
}
.header .language .dropdown{
	position: absolute;
	right: 0;
	text-align: center;
	display: none;
	border-radius: 0.625rem;
	height: 4.875rem;
	line-height: 4.875rem;
	white-space: nowrap;
	text-align: right;
	top: 7.5rem;
	font-weight: normal;
}
.header .language .dropdown p{
	display: inline-block;
	margin-left: 3.125rem;
}
.header .language .dropdown p a{
	 display: block;
	 font-size: 0.875rem;
	 height: 2.875rem;
	 line-height: 2.875rem;
	 border-bottom: none;
	 color: #666;
	 white-space: nowrap;
 }
 .header .language .dropdown p a.active{
	 color: #0f793a;
	 font-weight: bold;
 }

.header .menu .site-line{
	 padding-bottom: 0.75rem;
	 border-bottom: 0.125rem solid transparent;
	 width: 1.375rem;
	 display: none;
 }
 .header .menu .site-line .line{
	 background-color: #111;
	 width: 1.375rem;
	 height: 0.125rem;
	 margin-bottom: 0.25rem;
	 transition: all .5s;
 }
 .header .menu .site-line .line:last-child{
	 margin-bottom: 0;
 }
 .header .menu .site-line.active .line:first-child{
 	 transform: rotate(-45deg);
	  margin-top: -5px;
 }
 .header .menu .site-line.active .line:nth-child(2){
 	 display: none;
 }
 .header .menu .site-line.active .line:last-child{
 	 transform: rotate(45deg);
	 margin-top: -5px;
 }
.m-header{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	height: 68px;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	transition: all .5s;
	display: none;
	z-index: 100;
	background-color: rgba(255,255,255,1);
}
.m-header.scroll{
	transform: translateY(-100%);
}
.m-header-logo a{
	display: block;
	height: 50px;
	line-height: 50px;
	background-size: cover;
}
.m-header-menu-icon span{
	height: 2px;
	width: 25px;
	display: block;
	background: #000;
	transition: .5s;
}
.m-header-menu-icon span:first-child{
	margin-bottom: 5px;
}
.m-header-menu-icon span:last-child{
	margin-top: 5px;
}
.m-menu{
	display: none;
	position: fixed;
	right: 0;
	top: 64px;
	bottom: 0;
	width: 100%;
	z-index: 100;
	background-color: rgba(255,255,255,1);
}
.m-menu .close{
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 40px;
	z-index: 10;
	transform: translateX(-50%);
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
}
.m-menu ul{
	padding: 20px;
	position: relative;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.m-menu ul li{
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
	line-height: 50px;
	font-size: 14px;
	border-bottom: solid 1px #ccc;
}
.m-menu ul li a{
	display: block;
	color: #000;
}
.m-menu ul li .m-dropdown-tag{
	position: relative;
}
.m-menu ul li .m-dropdown-tag::after{
	content: " ";
	width: 12px;
	height: 24px;
	-webkit-mask-position: 0 0;
	mask-position: 0 0;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	background-color: #000;
	color: rgba(255,255,255,.8);
	-webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
	mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -12px;
	transform: rotate(90deg);
	transition: all .5s;
}
.m-menu ul li .m-dropdown-tag.active::after{
	transform: rotate(-90deg);
}
.m-menu-dropdown{
	display: none;
}
.m-menu-dropdown p{
	opacity: .6;
}
@-webkit-keyframes returnToNormal {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes returnToNormal {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.header .bg_hover.off{
	display: none !important;
}
.submenu_hide .bg_hover{ 
	-webkit-animation: a_bg_hover_hide 0.15s ease-out both; 
	-webkit-transform-origin: 50% 0%;
}
.submenu_show .bg_hover{
	 display:block !important;
	 height: 4.875rem;
	 -webkit-animation: a_bg_hover_show 0.2s ease-out both;
	 -webkit-transform-origin:50% 0%;
}
.submenu_show .logo a{
	 background: url(../images/logo.png) no-repeat;
	 background-size: cover;
}
.submenu_show .menu ul li a,.submenu_show .menu ul li a.active, .submenu_show .menu ul li a:hover{
	color: #000;
}
.submenu_show .menu .site-line .line{
	 background-color: #000;
}
@keyframes a_bg_hover_show {
	 0%{ -webkit-transform:scale(1,0.5); opacity: 0;}
	 100%{  -webkit-transform:scale(1,1); opacity: 1;}
}
@keyframes a_bg_hover_hide {
	 0%{ -webkit-transform:scale(1,1); opacity: 1;}
	 100%{  -webkit-transform:scale(1,0.5); opacity: 0;}
}
.search-result{
	position: absolute;
	top: 7.5rem;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fafafa;
	padding: 3.75rem 0;
	overflow-y: auto;
	display: none;
	z-index: 100;
}
.search-result-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding-bottom: 2.5rem;
	border-bottom: solid 0.0625rem #ccc;
}
.search-result ul li{
	margin-top: 4.0625rem;
}
.search-result ul li h1{
	font-size: 1.125rem;
}
.search-result ul li h1 a:hover{
	color: #0f793a;
}
.search-result ul li p{
	color: #999;
	margin-top: 1.875rem;
}
.empty{
	padding: 3.75rem 0;
	text-align: center;
	font-size: 1.125rem;
	color: #999;
}

.footer-qrcode{
	background-color: #f5f5f5;
	padding: 3.4375rem 0;
}
.footer-qrcode .w1650{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-qrcode .logo a{
	display: inline-flex;
	align-items: center;
	background-size: 100%;
	height: 5rem;
}
.footer-qrcode .qrcode a{
	position: relative;
	display: block;
}
.footer-qrcode .qrcode a .qrcode-box{
	position: absolute;
	width: 11.3125rem;
	height: 11.75rem;
	background: url(../images/qrcode-bg.png) no-repeat;
	right: 3.125rem;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all .5s;
}
.footer-qrcode .qrcode a .qrcode-box img{
	margin: 1.5625rem 0 0.625rem;
}
.footer-qrcode .qrcode a .qrcode-box p{
	font-size: 0.75rem;
	color: #666;
}
.footer-qrcode .qrcode a:hover .qrcode-box{
	opacity: 1;
	visibility: visible;
}
.footer-bot{
	background-color: #344143;
}
.links{
	line-height: 6.25rem;
	border-bottom: solid 1px rgba(255,255,255,0.15);
}
.links ul{
	display: flex;
	align-items: center;
}
.links ul li{
	margin-right: 5.9375rem;
}
.links ul li a{
	color: #FFF;
	font-size: 0.9375rem;
}
.copyright{
	height: 6.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.copyright-left{
	color: #5b6567;
	font-size: 0.875rem;
}
.copyright-left a{
	color: #5b6567;
}
.copyright-right a{
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	background: url(../images/back-top.png) no-repeat;
	background-size: cover;
}
.copyright-right a:hover{
	background: url(../images/back-top-hover.png) no-repeat;
	background-size: cover;
}

.banner{
	height: calc(100vh - 7.5rem);
	position: relative;
}
.banner .swiper{
	width: 100%;
	height: 100%;
}
.pagination-box{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 29.0625rem;
	height: 4.375rem;
	background-color: #e6e6e6;
	padding-left: 3.4375rem;
	display: flex;
	align-items: center;
	z-index: 2;
}
.pagination{
	font-size: 1.125rem;
	color: #999;
	display: inline-flex;
	align-items: center;
	width: auto;
}
.swiper-pagination-current{
	margin-right: 0.625rem;
}
.swiper-pagination-current,.zero{
	font-weight: bold;
	color: #0f793a;
}
.pagination-box .arrow{
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	margin-left: 4.6875rem;
}
.pagination-box .arrow img{
	vertical-align: middle;
	transition: all .5s;
}
.pagination-box .arrow .prev{
	height: 2.1875rem;
	border-right: solid 0.0625rem #bfbfbf;
	padding-right: 1.5625rem;
	margin-right: 1.5625rem;
	cursor: pointer;
}
.pagination-box .arrow .next a:hover img{
	transform: translateX(10px);
}
.pagination-box .arrow .prev a:hover img{
	transform: translateX(-10px);
}
.arrow-down-circle{
	width: 100%;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	z-index: 5;
	transform: translateX(-50%);
}
.arrow-down-circle img{
	animation:  icon 1s infinite alternate;
}
@keyframes icon{
	0%{
		transform: translateY(0);
	}
	100%{
		transform: translateY(-10px);
	}
}
.index-news{
	position: relative;
}
.index-news-tit{
	font-size: 2.25rem;
	font-weight: bold;
	padding: 6.25rem 0 5rem;
}
.index-news-container{
	display: flex;
	align-items: flex-start;
	padding-bottom: 4rem;
}
.index-news-left a{
	position: relative;
	display: block;
	color: #FFF;
}
.index-news-left a:hover{
	transform: translateY(-10px);
	box-shadow: 0 0 0.625rem rgba(0,0,0,.1);
}
.index-news-left a:hover .title{
	font-weight: bold;
}
.news-content{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 3.125rem;
}
.news-content .time{
	font-size: 0.875rem;
}
.news-content .title{
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	height: 3.375rem;
	margin-top: 1.25rem;
}
.news-content .arrow{
	height: 4.8125rem;
	display: flex;
	align-items: center;
	border-top: solid 0.0625rem rgba(255,255,255,.5);
	margin-top: 1.875rem;
}
.index-news-container{
	position: relative;
	z-index: 5;
}
.index-news-container ul{
	flex: 1;
	min-width: 0;
	margin-left: 9.375rem;
}
.index-news-container ul li{
	border-bottom: solid 0.0625rem #CCC;
	padding-bottom: 3.4375rem;
	margin-top: 3.75rem;
	position: relative;
	transition: all .5s;
}
.index-news-container ul li:first-child{
	margin-top: 0;
}
.index-news-container ul li .time{
	font-size: 0.875rem;
	color: #666;
}
.index-news-container ul li .title{
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	margin-top: 1.25rem;
	height: 3.375rem;
	max-width: 28.75rem;
}
.index-news-container ul li:nth-child(3){
	border-bottom: none;
}
.index-news-container ul li:last-child{
	border-bottom-color: #FFF;
}
.index-news-container ul li:last-child .time{
	color: #FFF;
}
.index-news-container ul li:last-child .title a{
	color: #FFF;
}
.index-news-container ul li .arrow{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all .5s;
}
.index-news-container ul li:hover a{
	font-weight: bold;
}
.index-news-container ul li:hover{
	border-bottom-color: #0f793a;
}
.index-news-container ul li:hover .arrow{
	opacity: 1;
}
.index-news::after{
	content: '';
	height: 4.5625rem;
	background-color:  #f5f5f5;
	display: block;
}
.index-news::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 80rem;
	height: 21.75rem;
	background-color: #4cbebe;
}
.about{
	border-top: solid 1px #e6e6e6;
	padding-bottom: 3.75rem;
}
.about-1 dl{
	display: flex;
	align-items: flex-start;
	padding: 9.0625rem 0 5rem;
}
.about-1 dl dt{
	width: 100%;
	max-width: 43.75rem;
}
.about-1 dl dt .swiper-pagination-bullet{
	width: 0.8125rem;
	height: 0.8125rem;
	background-color: #FFF;
	opacity: 1;
	border: solid 1px #FFF;
}
.about-1 dl dt .swiper-pagination-bullet-active{
	background-color: #0f793a;
}
.about-1 dl dd{
	flex: 1;
	min-width: 0;
	margin-left: 3.4375rem;
}
.about-1 dl dd h1{
	font-size: 1.875rem;
	color: #0f793a;
	font-weight: normal;
}
.about-1 dl dd p{
	margin-top: 1.875rem;
	font-size: 1rem;
	line-height: 2.125rem;
}
.about-2{
	padding: 5rem 0;
	background: url(../images/about-2-bg.png) no-repeat;
	background-size: cover;
}
.about-2 dl{
	display: flex;
	align-items: flex-start;
}
.about-2 dl dt{
	flex: 1;
	min-width: 0;
	color: #FFF;
}
.about-2 dl dt h3{
	font-size: 1.875rem;
	font-weight: normal;
}
.about-2 dl dt h2{
	font-size: 1.875rem;
	font-weight: normal;
	color: #6aebeb;
	margin-top: 3.125rem;
}
.about-2 dl dt h1{
	font-size: 2.375rem;
	color: #6aebeb;
}
.about-2 dl dt .tips{
	max-width: 18.75rem;
	border-top: solid 1px #4cbebe;
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	color: #979797;
	line-height: 36px;
	font-size: 1rem;
}
.about-2 dl dd{
	width: 43.75rem;
	background-color: #4aa8a8;
	color: #FFF;
	padding-left: 5rem;
	display: flex;
	align-items: center;
	height: 24.375rem;
}
.about-2 dl dd p{
	font-size: 1rem;
	color: rgba(255,255,255,.5);
}
.about-2 dl dd h1{
	font-weight: normal;
	font-size: 1.5rem;
	margin-top: 0.625rem;
	position: relative;
}
.about-2 dl dd h1::before{
	content: '';
	position: absolute;
	width: 1.875rem;
	height: 0.0625rem;
	background-color: rgba(255,255,255,.5);
	left: -2.5rem;
	top: 50%;
	transform: translateY(-50%);
}
.about-2 dl dd ol li{
	padding: 1.25rem 0;
}
.about-3{
	padding: 5rem 0 5.625rem;
}
.about-3-tit{
	font-size: 1.875rem;
	color: #0f793a;
}
.time-box{
	display: flex;
	align-items: center;
	margin-top: 5rem;
}
.time-Swiper{
	flex: 1;
	min-width: 0;
	margin: 0 0.625rem;
	position: relative;
}
.time-Swiper::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background-color: #CCC;
}
.time-Swiper .swiper-slide{
	text-align: center;
	cursor: pointer;
}
.time-Swiper .swiper-slide .dot{
	display: inline-block;
	width: 0.625rem;
	height: 0.625rem;
	border: solid 0.0625rem #CCC;
	border-radius: 50%;
	margin-top: 1.875rem;
	background-color: #FFF;
}
.time-Swiper .swiper-slide p{
	font-size: 1rem;
}
.time-Swiper .swiper-slide-thumb-active .dot{
	background-color: #0f793a;
	border-color: #0f793a;
}
.time-Swiper .swiper-slide-thumb-active p{
	color: #0f793a;
}
.list-swiper{
	margin-top: 3.75rem;
}
.list-swiper .swiper-slide .swiper{
	padding: 1.875rem 0 4.375rem;
}
.list-swiper .swiper-slide .list-title{
	font-size: 1.25rem;
	font-weight: bold;
}
.list-swiper .swiper-slide .swiper .swiper-slide{
	height: 26.875rem;
	display: flex;
	align-items: center;
}
.list-swiper .swiper-slide .swiper .swiper-slide a{
	display: block;
	background-color: #f5f5f5;
	padding: 0 2.5rem;
	height: 15rem;
	position: relative;
	overflow: hidden;
}
.list-swiper .swiper-slide .swiper .swiper-slide a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: #0f793a;
	transition: all 1.1s 0.1s;
}
.list-swiper .swiper-slide .swiper .swiper-slide a:hover:after {
	width: 100%;
	left: 0;
}
.list-swiper .swiper-slide .swiper .swiper-slide a .time{
	padding-top: 1.875rem;
	font-size: 1rem;
	color: #666;
}
.list-swiper .swiper-slide .swiper .swiper-slide a .title{
	font-weight: bold;
	font-size: 1.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 1.25rem;
}
.list-swiper .swiper-slide .swiper .swiper-slide a .des{
	margin-top: 1.25rem;
	font-size: 1rem;
	line-height: 26px;
	color: #666;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.list-swiper .swiper-slide .swiper .swiper-slide a .img{
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.6s 0.2s;
}
.list-swiper .swiper-slide .swiper .swiper-slide a:hover{
	height: 26.875rem;
}
.list-swiper .swiper-slide .swiper .swiper-slide a:hover .img{
	margin-top: 1.25rem;
	opacity: 1;
	height: auto;
}
.list-swiper .swiper-scrollbar{
	background-color: #CCC;
	opacity: 1;
	height: 0.1875rem;
	width: 100%;
	left: 0;
	bottom: 0;
}
.list-swiper .swiper-scrollbar .swiper-scrollbar-drag{
	background-color: #0f793a;
}
.sroll_lans {
	color: #bbb;
	font-size: 14px;
	line-height: 50px;
	animation: moveDownSpot 2000ms infinite;
	-webkit-animation: moveDownSpot 2000ms infinite;
	-moz-animation: moveDownSpot 2000ms infinite;
}
@keyframes moveDownSpot {
	from {
		opacity: 1;
		transform: translateX(0px);
	}

	to {
		opacity: 0;
		transform: translateX(-12px);
	}
}
.about-4{
	background-color: #f5f5f5;
	padding: 5rem 0 3.75rem;
}
.about-4-tit{
	font-size: 1.875rem;
	color: #0f793a;
}
.about-4-pic{
	text-align: center;
}
.about-5{
	padding-top: 5.3125rem;
}
.about-5-tit{
	font-size: 1.875rem;
	color: #0f793a;
	margin-bottom: 3.125rem;
}
.about-5-list{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.about-5-item{
	width: calc((100% - 1.25rem) / 2);
	margin-right: 1.25rem;
	margin-bottom: 1.25rem;
}
.about-5-item:nth-child(2n){
	margin-right: 0;
}
.about-5-item a{
	display: block;
	background-color: #f5f5f5;
	overflow: hidden;
}
.about-5-item a dl{
	display: flex;
	align-items: flex-end;
}
.about-5-item a dl dt{
	position: relative;
}
.about-5-item a dl dt p{
	position: absolute;
	bottom: -2.8125rem;
	left: 0;
	right: 0;
	text-align: center;
	background-color: rgba(76, 190, 190, .8);
	height: 2.8125rem;
	line-height: 2.8125rem;
	transition: all .5s;
}
.about-5-item a:hover dl dt p{
	bottom: 0;
}
.about-5-item a dl dt p img{
	vertical-align: middle;
}
.about-5-item a dl dd{
	flex: 1;
	min-width: 0;
	padding: 1.875rem;
}
.about-5-item a dl dd h1{
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}
.about-5-item a dl dd h1 span{
	font-weight: normal;
	margin-right: 1.25rem;
}
.about-5-item a dl dd p{
	font-size: 1rem;
	color: #666;
	line-height: 28px;
}
.about-5-item a:hover{
	transform: translateY(-10px);
}
.about-6{
	padding-top: 5.3125rem;
}
.about-6-tit{
	font-size: 1.875rem;
	color: #0f793a;
	margin-bottom: 3.125rem;
}
.about-6-list{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.about-6-item{
	width: 25%;
}
.about-6-item a{
	display: block;
	background-color: #f5f5f5;
}
.about-6-item:nth-child(2) a,
.about-6-item:nth-child(4) a,
.about-6-item:nth-child(5) a,
.about-6-item:nth-child(7) a,
.about-6-item:nth-child(10) a,
.about-6-item:nth-child(12) a,
.about-6-item:nth-child(13) a,
.about-6-item:nth-child(15) a,
.about-6-item:nth-child(18) a,
.about-6-item:nth-child(20) a,
.about-6-item:nth-child(21) a,
.about-6-item:nth-child(23) a,
.about-6-item:nth-child(26) a,
.about-6-item:nth-child(28) a{
	background-color: #e6e6e6;
}
.about-6-item a:hover{
	color: #4cbebe;
}
.about-6-item a .user-name{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-weight: bold;
	font-size: 1.25rem;
}
.about-6-item a .user-name span{
	padding-left: 1.875rem;
}
.about-6-item a .user-info{
	font-size: 1rem;
	line-height: 1.75rem;
	padding: 1.25rem 1.875rem 0;
	height: 6.25rem;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.user-pop{
	position: fixed;
	width: 100%;
	max-width: 56.25rem;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	height: 80%;
	background-color: #FFF;
	z-index: 200;
	display: none;
}
.user-pop .close{
	width: 4.375rem;
	position: absolute;
	right: -4.375rem;
	top: 0;
}
.user-pop dl{
	position: relative;
	width: 100%;
	display: flex;
	height: 100%;
	overflow: hidden;
	padding-bottom: 1.875rem;
}
.user-pop dl dd{
	flex: 1;
	min-width: 0;
	padding: 4.375rem;
	position: relative;
	height: 100%;
	overflow-y: auto;
}
.user-pop dl dd h1{
	font-size: 1.5rem;
}
.user-pop dl dd .des{
	font-size: 0.875rem;
	font-weight: bold;
	line-height: 1.75rem;
	margin: 1.875rem 0;
	padding-bottom: 1.875rem;
	border-bottom: solid 1px #95989a;
}
.user-pop dl dd .info{
	font-size: 0.875rem;
	line-height: 1.75rem;
}
.user-pop-mask{
	z-index: 199;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	display: none;
}
.contact{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.contact-content-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.contact-content{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 6.25rem 0;
}
.contact-content ul{
	display: flex;
	align-items: flex-start;
}
.contact-content ul li{
	width: calc((100% - 4.6875rem) / 2);
	margin-right: 4.6875rem;
}
.contact-content ul li:last-child{
	margin-right: 0;
}
.contact-content ul li h1{
	font-size: 1.25rem;
	color: #4cbebe;
	border-bottom: solid 1px #e6e6e6;
	padding-bottom: 1.25rem;
}
.contact-content ul li p{
	font-size: 1rem;
	color: #666;
	display: flex;
	align-items: center;
	margin-top: 1.875rem;
}
.contact-content ul li p span{
	width: 2.5rem;
}
.contact-content ul li p b{
	color: #333;
}
.contact-content ul li p i{
	flex: 1;
	min-width: 0;
}
.contact-message{
	height: 12.5rem;
	background: url(../images/pic19.jpg) no-repeat;
	background-size: cover;
	margin-top: 5.625rem;
	padding: 0 6.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contact-message span{
	font-weight: bold;
	font-size: 1.25rem;
}
.contact-message a{
	background-color: #4cbebe;
	color: #FFF;
	width: 11.875rem;
	line-height: 2.875rem;
	border-radius: 2.875rem;
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
}
.message-pop{
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 45rem;
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 3.125rem;
	display: none;
}
.message-pop .close{
	position: absolute;
	right: -3.125rem;
	top: 1.875rem;
}
.message-pop h1{
	font-size: 1.25rem;
	color: #666;
}
.message-pop ul li{
	margin-top: 1.25rem;
}
.message-pop ul li input{
	height: 3.125rem;
	line-height: 3.125rem;
	border: solid 1px #ccc;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	padding: 0 1.25rem;
	width: 100%;
	transition: all .5s;
}
.message-pop ul li input::-webkit-input-placeholder{
	color: #999;
}
.message-pop ul li textarea{
	height: 13.4375rem;
	border: solid 1px #ccc;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	padding: 1.25rem;
	resize: none;
	width: 100%;
	transition: all .5s;
}
.message-pop ul li textarea:focus,.message-pop ul li input:focus{
	box-shadow: 0 0 0.625rem rgba(76, 190, 190, .8);
	border-color: rgba(76, 190, 190, .8);
}
.message-pop ul li textarea::-webkit-input-placeholder{
	color: #999;
}
.message-pop .submit{
	text-align: right;
	margin-top: 1.875rem;
}
.message-pop .submit a{
	background-color: #4cbebe;
	color: #FFF;
	border-radius: 0.625rem;
	line-height: 3.125rem;
	font-size: 1rem;
	display: inline-block;
	width: 12.5rem;
	text-align: center;
}
.message-pop .submit a:hover{
	background-color: #00a2a2;
}
.message-pop-mask{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	z-index: 99;
	display: none;
}

.job{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.job-content-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.job-content{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 6.25rem 0;
}
.job-list{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.job-item{
	width: calc((100% - 3.125rem) / 3);
	margin-right: 1.5625rem;
	background-color: #f5f5f5;
	margin-bottom: 1.5625rem;
	padding: 1.5625rem;
}
.job-item:nth-child(3n){
	margin-right: 0;
}
.job-item h1{
	font-size: 1.25rem;
	display: flex;
	align-items: center;
}
.job-item h1 span{
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	text-align: center;
	background-color: #4cbebe;
	color: #FFF;
	font-weight: normal;
	margin-right: 1.5625rem;
}
.job-item p{
	display: flex;
	align-items: center;
	font-size: 1rem;
	margin-top: 1.875rem;
	color: #666;
}
.job-item p span:first-child{
	margin-right: 0.625rem;
}
.job-item p span:last-child{
	margin-left: 0.625rem;
}
.load-more{
	margin-top: 3.75rem;
}
.load-more a{
	display: block;
	border-radius: 0.625rem;
	line-height: 5rem;
	background-color: #f5f5f5;
	text-align: center;
	font-size: 1.125rem;
	color: #666;
	font-weight: bold;
}
.load-more a:hover{
	color: #FFF;
	background-color: #00a2a2;
}
.load-over{
	text-align: center;
	font-size: 14px;
	color: #666;
	margin-top: 3.75rem;
}

.job-info{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.job-content-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.job-content{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 6.25rem 0;
}
.job-info-top .time{
	font-size: 1rem;
	color: #999;
}
.job-info-top .title{
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	margin: 2.1875rem 0;
}
.job-info-top .title span{
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	text-align: center;
	background-color: #4cbebe;
	color: #FFF;
	font-weight: normal;
	margin-right: 1.5625rem;
}
.job-info-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.job-info-box-left{
	color: #999;
	font-size: 7.875rem;
	font-size: 1rem;
}
.job-info-box-left p span:first-child{
	padding-right: 0.625rem;
}
.job-info-box-left p span:last-child{
	padding-left: 0.625rem;
}
.job-info-box-right{
	display: flex;
	align-items: center;
}
.job-info-box-right a{
	background-color: #898989;
	border-radius: 0.625rem;
	font-size: 1.125rem;
	padding: 0 1.5625rem;
	font-size: 1.125rem;
	line-height: 3.125rem;
	color: #FFF;
}
.job-info-box-right a.active{
	background-color: #4cbebe;
	margin-right: 1.25rem;
}
.job-des-tit{
	margin-top: 3.125rem;
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 1.25rem;
}
.job-des-tit::after{
	content: '';
	flex: 1;
	min-width: 0;
	height: 1px;
	background-color: #ccc;
	margin-left: 0.625rem;
}
.job-content .des{
	margin-top: 3.125rem;
	line-height: 1.75rem;
}

.news{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.news-content-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.news-content-box{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 6.25rem 0;
}
.news-top{
	display: flex;
	align-items: flex-start;
}
.news-left{
	margin-right: 6.25rem;
}
.news-left a{
	position: relative;
	display: block;
}
.news-left a:hover{
	transform: translateY(-10px);
}
.news-left a::after{
	content: '';
	position: absolute;
	bottom: 0;
	top: 0;
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0) 30%);
	left: 0;
	right: 0;
}
.news-left a .news-left-content{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 3.125rem 1.875rem;
	color: #FFF;
	z-index: 5;
}
.news-left a .news-left-content .time{
	font-size: 0.875rem;
}
.news-left a .news-left-content .title{
	display: flex;
	align-items: center;
	margin-top: 1.25rem;
}
.news-left a .news-left-content .title span{
	flex: 1;
	min-width: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	height: 3.375rem;
	margin-right: 1.25rem;
}
.news-left a .news-left-content .title .arrow img{
	vertical-align: middle;
}
.news-top ul{
	flex: 1;
	min-width: 0;
}
.news-top ul li{
	border-bottom: solid 0.0625rem #CCC;
	padding-bottom: 1.875rem;
	margin-top: 1.875rem;
	position: relative;
	transition: all .5s;
	display: flex;
	align-items: center;
}
.news-top ul li:hover{
	border-bottom-color: #4cbebe;
}
.news-top ul li:hover .title{
	font-weight: bold;
}
.news-top ul li:first-child{
	margin-top: 0;
}
.news-top ul li .news-top-li-left{
	flex: 1;
	min-width: 0;
	margin-right: 1.875rem;
}
.news-top ul li .time{
	font-size: 0.875rem;
	color: #4cbebe;
}
.news-top ul li .title{
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	margin-top: 1.25rem;
	height: 3.375rem;
	max-width: 28.75rem;
}
.news-top ul li .arrow{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all .5s;
}
.news-top ul li:hover .arrow{
	opacity: 1;
}
.news-list{
	display: flex;
	flex-wrap: wrap;
}
.news-list .news-item{
	width: calc((100% - 3.125rem) / 3);
	margin-right: 1.5625rem;
	margin-top: 5rem;
}
.news-list .news-item:nth-child(3n){
	margin-right: 0;
}
.news-list .news-item a{
	display: block;
	background-color: #f5f5f5;
	padding: 1.5625rem;
	border-radius: 0.625rem;
}
.news-list .news-item a .time{
	font-size: 0.875rem;
	color: #4cbebe;
	margin-top: 1.875rem;
}
.news-list .news-item a h1{
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	margin-top: 1.25rem;
	height: 3.375rem;
	font-weight: normal;
}
.news-list .news-item a p{
	font-size: 0.875rem;
	color: #4cbebe;
	margin-top: 1.875rem;
}
.news-list .news-item a:hover{
	transform: translateY(-10px);
}
.news-list .news-item a:hover h1{
	font-weight: bold;
}
.news-info{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.news-info-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.news-info-box{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 3.75rem  0 6.25rem;
}
.news-info-box .news-title{
	font-size: 1.5rem;
	font-weight: bold;
}
.news-info-box .auth-time{
	color: #999;
	margin-top: 1.875rem;
	padding-bottom: 1.25rem;
	border-bottom: solid 1px #ccc;
	margin-bottom: 3.75rem;
}
.news-info-box .auth-time span{
	margin-right: 1.25rem;
}
.news-text{
	line-height: 1.75rem;
	color: #666;
}
.prev-next{
	margin-top: 6.25rem;
}
.prev-next a{
	font-weight: bold;
	color: #999;
}
.prev-next a span{
	margin-right: 0.625rem;
	font-weight: normal;
}
.prev-next a:hover{
	color: #4cbebe;
}
.prev-next .next{
	margin-top: 0.625rem;
}

.notice{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.notice-content-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.notice-content{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 6.25rem 0;
}
.notice-list .news-item {
	margin-bottom: 3.75rem;
}
.notice-list .news-item a{
	display: block;
	background-color: #f5f5f5;
}
.notice-list .news-item a:hover{
	transform: translateY(-10px);
}
.notice-list .news-item a dl{
	display: flex;
	align-items: center;
}
.notice-list .news-item a dl dd.time{
	padding: 0 4.6875rem;
	height: 7.5rem;
	border-right: solid 1px #ccc;
	margin-right: 4.375rem;
}
.notice-list .news-item a dl dd.time p{
	color: #666;
}
.notice-list .news-item a dl dd.time p span{
	font-size: 1.875rem;
}
.notice-list .news-item a dl dd.info{
	flex: 1;
	min-width: 0;
	padding-right: 30px;
}
.notice-list .news-item a dl dd.info h1{
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	height: 3.375rem;
	color: #666;
	margin-bottom: 2.5rem;
}
.notice-list .news-item a dl dd.info p{
	color: #999;
}
.notice-list .news-item a:hover dl dd.info h1{
	color: #4cbebe;
}

.tender{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
}
.tender-content-tit{
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5.625rem 0 1.5rem;
}
.tender-content{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 3.75rem  0 6.25rem;
}
.tender-th{
	display: flex;
	align-items: center;
	background-color: #4cbebe;
	line-height: 5rem;
	color: #FFF;
	font-weight: bold;
	font-size: 1.25rem;
}
.tender-no{
	width: 17.8125rem;
	padding-left: 2.5rem;
}
.tender-name{
	flex: 1;
	min-width: 0;
}
.tender-time{
	width: 12.5rem;
	margin-right: 1.25rem;
	text-align: center;
}
.tender-list{
	margin-top: 3.4375rem;
}
.tender-list .tender-item{
	display: flex;
	align-items: flex-start;
	border-top: solid 1px #ccc;
	padding: 3.125rem 0;
}
.tender-list .tender-item .tender-no{
	color: #4cbebe;
	font-weight: bold;
	font-size: 1.25rem;
}
.tender-list .tender-item .tender-info{
	flex: 1;
	min-width: 0;
}
.tender-list .tender-item .tender-info .title{
	font-weight: bold;
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}
.tender-list .tender-item .tender-info p{
	font-size: 0.875rem;
	color: #666;
}
.tender-list .tender-item .time{
	width: 5.5rem;
	height: 5.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.25rem;
	background-color: #f5f5f5;
	flex-direction: column;
	color: #4cbebe;
	font-size: 0.875rem;
}
.tender-list .tender-item .time .day{
	font-size: 2.5rem;
	margin-bottom: -0.625rem;
}
.tender-on .tender-item .tender-no{
	color: #0f793a;
}
.tender-on .tender-item .time{
	color: #0f793a;
}
.science{
	background-image: linear-gradient(to bottom,#f1f1f1,#FFF 60%);
	border-top: solid 1px #e6e6e6;
	padding-top: 5.3125rem;
}
.science-tabs{
	border: solid 1px #e2e2e2;
	height: 3.4375rem;
	line-height: 3.3125rem;
	background-color: #c6c6c6;
}
.science-tabs ul{
	display: flex;
	align-items: center;
}
.science-tabs ul li{
	border-right: solid 1px #e2e2e2;
	width: 11.875rem;
	text-align: center;
	color: #FFF;
}
.science-tabs ul li a{
	display: block;
	color: #FFF;
}
.science-tabs ul li a.active{
	background-color: #4cbebe;
}
.science-content-1-1{
	background-color: #FFF;
	border-radius: 0.625rem;
	padding: 4.375rem 0 3.125rem;
}
.science-content-1-1 dl{
	display: flex;
	align-items: flex-start;
}
.science-content-1-1 dl dd{
	flex: 1;
	min-width: 0;
	margin-right: 3.125rem;
}
.science-content-1-1 dl dd h1{
	font-weight: normal;
	font-size: 1.875rem;
	color: #0f793a;
}
.science-content-1-1 dl dd p{
	margin-top: 1.25rem;
	line-height: 2.25rem;
}
.science-content-1-2{
	background: url(../images/pic9.jpg) no-repeat;
	background-size: cover;
	padding: 2.8125rem 0;
}
.science-content-1-2 dl{
	display: flex;
	align-items: center;
}
.science-content-1-2 dl dt{
	margin-right: 3.75rem;
}
.science-content-1-2 dl dd{
	color: #FFF;
}
.science-content-1-2 dl dd h1{
	font-weight: normal;
	font-size: 1.875rem;
	margin-bottom: 3.125rem;
}
.science-content-1-2 dl dd p{
	line-height: 2.875rem;
}
.science-content-1-3{
	background-color: #f5f5f5;
	padding: 5rem 0;
}
.science-content-1-3 dl{
	display: flex;
	align-items: center;
}
.science-content-1-3 dl dd{
	flex: 1;
	min-width: 0;
	margin-right: 4.6875rem;
}
.science-content-1-3 dl dd h1{
	font-weight: normal;
	color: #0f793a;
	font-size: 1.875rem;
	margin-bottom: 2.1875rem;
}
.science-content-1-3 dl dd p{
	line-height: 2.25rem;
}
.science-content-1-4{
	padding: 3.125rem 0;
}
.science-content-1-4 dl{
	display: flex;
	align-items: center;
}
.science-content-1-4 dl dd{
	flex: 1;
	min-width: 0;
	margin-left: 3.75rem;
}
.science-content-1-4 dl dd h1{
	font-weight: normal;
	color: #0f793a;
	font-size: 1.875rem;
	
}
.science-content-1-4 dl dd p{
	line-height: 2.25rem;
	margin-top: 2.1875rem;
}
.science-content-3-1{
	background-color: #FFF;
	padding: 5rem 0;
	border-radius: 0.625rem;
}
.science-content-3-1 h1{
	font-weight: normal;
	color: #0f793a;
	font-size: 1.875rem;
}
.science-content-3-1 p{
	margin-top: 1.875rem;
}
.science-content-3-2 .swiper-slide{
	position: relative;
}
.science-content-3-2 .swiper-slide::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(to top,rgba(0,0,0,.5) 1%,rgba(0,0,0,0) 90%);
	border-radius: 0.625rem;
}
.science-content-3-2 .swiper-slide img{
	border-radius: 0.625rem;
}
.science-content-3-2 .swiper-slide p{
	position: absolute;
	bottom: 0;
	color: #FFF;
	z-index: 2;
	padding: 0.625rem;
	display: none;
	font-size: 14px;
}
.science-content-3-2 .swiper-slide-active p{
	display: block;
}
.science-content-3-2 .pagination{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 0 8.75rem;
}
.science-content-3-2 .pagination a{
	border-radius: 50%;
	background-color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
}
.science-content-3-2 .pagination a:hover{
	background-color: #4cbebe;
}
.science-content-3-2 .pagination .next{
	margin-left: 1.875rem;
}
.science-content-2-1{
	background-color: #FFF;
	padding: 5rem 0;
	border-radius: 0.625rem;
}
.science-content-2-1 h1{
	font-weight: normal;
	color: #0f793a;
	font-size: 1.875rem;
}
.science-content-2-1 p{
	margin-top: 1.875rem;
}
.science-content-2-1 ul{
	display: flex;
	align-items: center;
	margin-top: 3.75rem;
}
.science-content-2-1 ul li{
	width: calc((100% - 2.5rem) / 2);
	border: solid 1px #ccc;
	border-radius: 0.625rem;
	padding: 2.5rem 4.375rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 2.5rem;
}
.science-content-2-1 ul li:last-child{
	margin-right: 0;
}
.science-content-2-1 ul li p{
	margin-top: 0.625rem;
}
.science-content-2-2 .pagination a{
	border-radius: 50%;
	background-color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-left: 10px;
}
.science-content-2-2 .pagination a:hover{
	background-color: #4cbebe;
}
.science-content-2-2 .pagination .prev,.science-content-2-2 .pagination .next{
	display: flex;
	align-items: center;
	cursor: pointer;
}
.science-content-2-2 .pagination .prev:hover,.science-content-2-2 .pagination .next:hover{
	color: #4cbebe;
}
.science-content-2-2 .pagination .prev:hover a,.science-content-2-2 .pagination .next:hover a{
	background-color: #4cbebe;
}
.science-content-2-2 .pagination .next{
	margin-left: 1.875rem;
}
.science-content-2-2 .pagination .next a{
	margin-right: 0.625rem;
}
.science-content-2-2 .pagination{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 0 8.75rem;
}
.science-content-2-2 .pagination::after{
	content: '';
	flex: 1;
	min-width: 0;
	height: 1px;
	background-color: #4cbebe;
	margin-left: 1.875rem;
}
.science-content-2-2 .swiper-slide{
	position: relative;
}
.science-content-2-2 .swiper-slide::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(to top,rgba(0,0,0,.5) 1%,rgba(0,0,0,0) 90%);
	border-radius: 0.625rem;
}
.science-content-2-2 .swiper-slide p{
	position: absolute;
	bottom: 0;
	color: #FFF;
	z-index: 2;
	padding: 0.625rem;
	font-size: 14px;
}

.science-content-4{
	background-color: #FFF;
	padding: 4.375rem 0;
}
.science-content-4-tit{
	font-size: 1.875rem;
	color: #0f793a;
}
.science-content-4-list{
	display: flex;
	flex-wrap: wrap;
}
.science-content-4-list .science-content-4-item{
	width: calc((100% - 3.125rem) / 3);
	margin-right: 1.5625rem;
	margin-top: 5rem;
}
.science-content-4-list .science-content-4-item:nth-child(3n){
	margin-right: 0;
}
.science-content-4-list .science-content-4-item a{
	display: block;
	background-color: #f5f5f5;
	padding: 1.5625rem;
	border-radius: 0.625rem;
}
.science-content-4-list .science-content-4-item a .time{
	font-size: 0.875rem;
	color: #4cbebe;
	margin-top: 1.875rem;
}
.science-content-4-list .science-content-4-item a h1{
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.125rem;
	margin-top: 1.25rem;
	height: 3.375rem;
	font-weight: normal;
}
.science-content-4-list .science-content-4-item a p{
	font-size: 0.875rem;
	color: #4cbebe;
	margin-top: 1.875rem;
}
.science-content-4-list .science-content-4-item a:hover{
	transform: translateY(-10px);
}
.science-content-4-list .science-content-4-item a:hover h1{
	font-weight: bold;
}