/**
 * 新版官网风格
 * @作者 苏相锟 <admin@phpok.com>
 * @版本 6.x
 * @授权 GNU Lesser General Public License  https://www.phpok.com/lgpl.html
 * @时间 2023年5月5日
 * @更新 2023年5月5日
**/
:root {
	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-black: #000;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-gray-100: #f8f9fa;
	--bs-gray-200: #e9ecef;
	--bs-gray-300: #dee2e6;
	--bs-gray-400: #ced4da;
	--bs-gray-500: #adb5bd;
	--bs-gray-600: #6c757d;
	--bs-gray-700: #495057;
	--bs-gray-800: #343a40;
	--bs-gray-900: #212529;
	--bs-primary: #1D5595;
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #E77717;
	--bs-danger: #dc3545;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-primary-rgb: 29,85,149;
	--bs-secondary-rgb: 108, 117, 125;
	--bs-success-rgb: 25, 135, 84;
	--bs-info-rgb: 13, 202, 240;
	--bs-warning-rgb: 231,119,23;
	--bs-danger-rgb: 220, 53, 69;
	--bs-light-rgb: 248, 249, 250;
	--bs-dark-rgb: 33, 37, 41;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-color-rgb: 33, 37, 41;
	--bs-body-bg-rgb: 255, 255, 255;
	--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-body-color: #212529;
	--bs-body-bg: #fff;
	--bs-border-width: 1px;
	--bs-border-style: solid;
	--bs-border-color: #dee2e6;
	--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
	--bs-border-radius: 0.375rem;
	--bs-border-radius-sm: 0.25rem;
	--bs-border-radius-lg: 0.5rem;
	--bs-border-radius-xl: 1rem;
	--bs-border-radius-2xl: 2rem;
	--bs-border-radius-pill: 50rem;
	--bs-link-color: #212529;
	--bs-link-hover-color: #333333;
	--bs-code-color: #d63384;
	--bs-highlight-bg: #fff3cd;
}

/* 主键按钮 */
.btn-primary {
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
}

/* 按钮警告参数 */
.btn-warning {
    --bs-btn-bg: var(--bs-warning);
    --bs-btn-border-color: var(--bs-warning);
	--bs-btn-hover-bg: var(--bs-orange);
	--bs-btn-hover-border-color: var(--bs-orange);
}

/* 列表组样式参数 */
.list-group {
	--bs-list-group-active-bg: var(--bs-primary);
	--bs-list-group-active-border-color: var(--bs-primary);
}

/* 分页变量参数 */
.pagination {
	--bs-pagination-color: var(--bs-link-color);
	--bs-pagination-hover-color: var(--bs-link-hover-color);
	--bs-pagination-focus-color: var(--bs-link-hover-color);
	--bs-pagination-active-bg: var(--bs-primary);
	--bs-pagination-active-border-color: var(--bs-primary);
}


a{
	text-decoration:none;
}
p,h1,h2,h3,h4,h5,h6{
	margin-bottom: 0;
}

input{
	outline:none;
}

header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,.1);
}

header p{
	font-size: 14px;
    color: rgba(112,112,112,1);
    width: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

header h6 a{
	font-size: 14px;
    font-family: Microsoft YaHei;
    color: rgba(7,100,71,1);
    font-weight: bold;
    text-align: center;
}

header .nav li>a{
	color: #666;
    font-size: 15px;
	line-height: 80px;
	padding: 0 2rem;
}
header .sub{
	width: 100%;
	border: 0;
	border-radius: 0;
	padding: 0;
}
header .sub a{
	color: #666;
    font-size: 12px;
	line-height: 40px;
	padding-left: 40px;
	transition: all ease .3s;
}
header .sub a:hover{
	background: #076447;
	color: #fff;
}
footer{
	background: #333;
}
footer .tel{
	flex: 0 0 264px;
	align-self: center;
	border: 1px solid #23935b;
	color: #23935b;
	text-align: center;
	padding: 15px 0;
}
footer .tel p{
	line-height: 1.5;
    font-size: 14px;
}
footer .cate p{
	color: #fff;
	font-size: 14px;
}
footer h6{
	color: #999;
	font-size: 14px;
}
footer .tel h3{
	line-height: 1;
    font-size: 28px;
	font-weight: bold;
	color: #23935b;
	margin-top: 20px;
}
footer .copy{
	border-top: 1px solid #444;
}
footer .copy p{
	font-size: 12px;
	color: #666;
}
footer .copy a{
	font-size: 16px;
	color: #808080;
}
.avatar{
	width:50px;
	height:50px;
	border-radius:50%;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.avatar-small{
	width:26px;
	height:26px;
	border-radius:50%;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.bg-default{
	background-image:url('../images/bg.svg');
	background-size:cover;
	background-repeat:no-repeat;
	background-position: center center;
}

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.form-control:focus{
	box-shadow:none;
	border-color:inherit;
}

.form-group{
	margin-bottom:1rem;
}

.hand{
	cursor: pointer;
}

.list-group-item.active a{
	color:var(--bs-white);
}

/* 单行省略号 */
.text-1 {
	-webkit-line-clamp: 1;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	min-height:24px;
}

/* 两行省略号 */
.text-2 {
	-webkit-line-clamp: 2;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	min-height:48px;
}

/* 三行省略号 */
.text-3 {
	-webkit-line-clamp: 3;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	min-height:72px;
}


/* 计数器 开始 */
.numbers{
	list-style:none;
	margin:0;
	padding:0;
}
.numbers li{
	position: relative;
	color:#1B1B1B;
	text-align:center;
}
.numbers li .count{
	font-size:60px;
	font-weight:400;
}
.numbers li sup{
	vertical-align: top;
	font-size:30px;
	top:0.5em;
}
.numbers li .title{
	color:#525252;
	font-size:20px;
}
/* 计数器 结束 */

/* 筛选器 */
.filter .active{
	font-weight:bold;
	color:darkred;
}
/* 筛选器 结束 */

/* 通用内容区 开始 */
.content{ line-height:170%;font-size:1em;font-weight:500;}
.content img{
	max-width:100% !important;
	height:auto;
	margin: 0 auto;
	display: block;
}
.content table {border: 1px solid #ddd;border-collapse: collapse;display: table;margin:auto;}
.content table td {border: 1px solid #ddd;padding: 5px 10px;}
.content table th {border: 1px solid #ddd;background-color: #f7f7f7;padding: 5px 10px;}
.content blockquote{
	margin:1em 0;border:1px solid #efefef;background:#fcfcfc;padding:0.5em 1em;
}
/* 通用内容区 结束 */


/* 管理员回复评论信息 开始 */
fieldset.admin-reply{
	border:1px solid #ccc;
	padding:0.5em;
	background:#fff;
	box-shadow:2px 2px #ddd;
}
fieldset.admin-reply legend{
	width:auto;
	padding:0 1em;
	font-size:0.8em;
	margin-left:2em;
}

fieldset.admin-reply + fieldset.admin-reply{
	margin-top:1em;
}
/* 管理员回复评论信息 结束 */

.nav .nav-link.active{
	background:var(--bs-primary);
	color:var(--bs-white);
}
.width_16{
	width:16px;
	height:16px;
}

/* 在线客服 */
.kfonline{
	position: fixed;
	bottom: 60px;
	right: 15px;
	z-index: 999999;
}

.kfonline .card-header{
	cursor: pointer;
}

.kfonline-icon{
	width:40px;
	height:40px;
	cursor: pointer;
	color:var(--bs-white);
	border:1px solid var(--bs-white);
	line-height:36px;
	text-align:center;
	background:var(--bs-primary);
	margin-top:-4px;
	position:relative;
}
.kfonline-icon.cart sup{
	position:absolute;
	top:2px;
	right:2px;
	font-size:60%;
}
.kfonline-icon.weixin div{
	display:none;
	position:absolute;
	right:40px;
	top:0;
	width:120px;
}
.kfonline-icon.weixin div img{
	width:100%;
}
.kfonline-icon.weixin:hover div{
	display: block;
}

.kfonline-icon.tel div{
	display:none;
	position:absolute;
	right:40px;
	top:0;
}

.kfonline-icon.tel:hover div{
	display: block;
}

.kfonline-icon a .fa{
	color:var(--white);
}

.kfonline-icon.toTop{
	
}

.jump {
	position: relative;
	top: 0;
	animation: jump .5s infinite alternate ease-in-out;
}
@keyframes jump {
	from {
		top: 0;
	}
	to {
		top: -10px;
	}
}
html,body {
	position: relative;
	height: 100%;
}
.swiper {
	width: 100%;
	height: 100vh;
}
.swiper-slide {
	overflow: hidden;
}
.swiper-pagination-bullet{
	width: 12px;
    height: 12px;
    border: 1px solid #666;
    background: #fff;
    border-radius: 50%;
	opacity: 0.4;
    transition: all 0.5s;
    margin: 10px 0;
}
.swiper-pagination-bullet-active{
	background: #23935B;
    border: 1px solid #23935B;
	opacity: 1;
}
.ib .tel{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 122px;
    height: 122px;
    background: rgba(0, 0, 0, .34);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.ib .tel span{
	font-size: 40px;
    color: #fff;
    display: block;
    padding-left: 76px;
    background: url(../images/download.png) left center no-repeat;
    height: 55px;
    line-height: 55px;
}
.ib .down{
	position: absolute;
	width: 100%;
	bottom: 122px;
    height: 122px;
	display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.ia{
	background: url(../images/iabg.jpg) center no-repeat;
}
.ia .text{
	position: absolute;
	top: 800px;
	transition: 2s;
	width: 1000px;
	height: 300px;
	border: 5px solid #076447;
}
.swiper-slide-active.ia .text{
	top: 300px;
}
.ia .imgbox{
	position: absolute;
	top: -15px;
	right: -5px;
	background: #fff;
	width: 550px;
	height: 70px;
	text-align: right;
}
.ia .title{
	position: absolute;
    left: 170px;
    top: -12px;
	font-size: 92px;
    line-height: 1;
    color: rgba(102,102,102,0.1);
}
.ia h1{
	left: 64px;
    top: 50px;
    position: absolute;
    width: 40px;
	line-height: 1.3;
    font-size: 34px;
    color: rgba(7,100,71,1);
}
.ia .con{
	position: absolute;
    left: 170px;
    top: 110px;
	font-size: 15px;
    color: #333;
    line-height: 1.5;
}
.ia .btn{
	position: absolute;
    letter-spacing: 20px;
    bottom: -27px;
    right: 100px;
	display: block;
    width: 226px;
    height: 50px;
    background: #076447;
    line-height: 50px;
	color: #fff;
}
.ia .cate{
	position: relative;
    top: 400px;
    opacity: 0;
    transition: all 1.5s;
	max-width: 632px;
    margin-left: auto;
	margin-top: 40px;
}

.swiper-slide-active.ia .cate{
	top: 300px;
    opacity: 1;
}
.ia .cate .c{
	display: flex;
	flex-wrap: wrap;
    width: 100%;
    padding-left: 10px;
    border-left: 2px solid #076447;
}
.ia .cate .c .img{
	width: 100%;
}
.ia .cate .c h6{
	font-size: 14px;
    color: #076447;
    width: 30px;
}
.ia .ia1{
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 1.5s;
	max-width: 250px;
}
.swiper-slide-active.ia .ia1{
	bottom: 20%;
}
.ia .ia2{
	position: absolute;
	left: 0;
	bottom: -10%;
	transition: all 1.5s;
	max-width: 380px;
}
.swiper-slide-active.ia .ia2{
	bottom: 0;
}
.ip{
	padding-top: 80px;
}
.ip .item{
	width: calc(100% / 3);
	height: 50%;
	position: relative;
}
.ip .bg{
	width: 100%;
}
.ip .text{
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	transition: 0.5s;
	cursor: pointer;
}
.ip .text:hover{
	background: rgba(7, 100, 71, 0.9);
}
.ip .text .tit{
	position: relative;
	top: 100px;
	transition: 0.5s;
}
.ip .text:hover .tit{
	top: 80px;
}
.ip .text .tit h5{
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
.ip .text .tit h6{
	width: 40px;
    height: 2px;
	transition: 0.5s;
	background: #fff;
	margin: 1rem auto;
}
.ip .text:hover .tit h6{
	width: 120px;
}
.ip .text .con{
	position: relative;
	top: 120px;
	width: 80%;
	line-height: 1.8;
	font-size: 12px;
	margin: 0 auto;
	opacity: 0;
	transition: 0.8s;
}
.ip .text:hover .con{
	top: 80px;
	opacity: 1;
}
.ic{
	background: url(../images/icbg.jpg) center center no-repeat;
	padding-top: 210px;
}
.ic .line{
	padding-top: 42px;
}
.ic .line p{
	width: 0;
	height: 1px;
	margin-top: 1rem;
    margin-bottom: 1rem;
	background: rgba(0,0,0,.1);
	transition: 1.5s;
}
.swiper-slide-active.ic .line p{
	width: 50vw;
}
.ic .cate a{
	width: 200px;
    border: 1px solid #CCCCCC;
    height: 50px;
    line-height: 50px;
    transition: all 1s ease-in-out;
	transition-delay: 1s;
    justify-content: center;
	margin: 0 2px;
	margin-top: 300px;
	opacity: 0;
}
.swiper-slide-active.ic .cate a{
	margin-top: 60px;
	opacity: 1;
}
.ic .cate a .img{
	transition: 0.5s;
}
.ic .cate a:hover{
	border: 1px solid #076447;
	color: #076447;
}
.ic .cate a:hover .img{
	padding-right: 10px;
}
.ic .mySwiper0{
	margin-top: 70px;
	opacity: 0;
	transition: all 1.5s ease-in-out;
	transition-delay: 1.5s;
}
.swiper-slide-active.ic .mySwiper0{
	opacity: 1;
}
.ic .mySwiper0 .swiper-wrapper,.ic .mySwiper0 .swiper-slide{
	height: 250px;
}
.ic .mySwiper0 .img{
	height: 250px;
}
.ic .mySwiper0 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ic .mySwiper0 .text{
	position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    font-size: 14px;
    color: #fff;
    transition: all 0.6s;
    background-color: rgba(7,100,71,0.8);
}
.ic .mySwiper0 .text::before {
    height: 30px;
    width: 1px;
    background: #fff;
    content: "";
    position: absolute;
    top: 66%;
}
.ic .mySwiper0 .text::after {
    height: 30px;
    width: 1px;
    background: #fff;
    content: "";
    position: absolute;
    top: 24%;
}
.ic .mySwiper0 .swiper-slide:hover .text{
	top: 0;
}
.ic .mySwiper0 .swiper-pagination-bullet{
	width: 16px;
    height: 16px;
    opacity: 1;
    background-color: #333;
	border: none;
}
.ic .mySwiper0 .swiper-pagination-bullet-active{
	background: #23935B;
}
.in{
	background: url(../images/inbg.jpg) center center no-repeat;
	padding-top: 250px;
}
.in .title{
	display: flex;
	align-items: center;
	padding: 28px 0;
}
.in .title h5{
	line-height: 1;
    font-size: 26px;
    color: #fff;
}
.in .title span{
	display: block;
    width: 100px;
    padding: 0 8px;
	text-align: center;
	color: #fff;
    position: relative;
}
.in .left{
	width: 45%;
	position: absolute;
	top: 0;
	left: -45%;
	opacity: 0;
	transition: 1s;
}
.swiper-slide-active.in .left{
	left: 0;
	opacity: 1;
}
.in .left .slide{
	width: 100%;
}
.in .left .slide img{
	width: 100%;
	height: 385px;
	object-fit: cover;
}
.in .left .carousel-caption{
	left: 0;
	right: 0;
	bottom: 0;
	height: 55px;
    background: rgba(0,0,0,0.6);
	display: flex;
    align-items: center;
    padding-left: 20px;
	font-size: 16px;;
    line-height: 1;
}
.in .left .carousel-indicators{
	margin: 0;
	height: 55px;
	align-items: center;
	justify-content: flex-end;
	padding-right: 20px;
}
.in .right{
	width: 50%;
	position: absolute;
	top: 0;
	right: -50%;
	opacity: 0;
	transition: 1s;
}
.swiper-slide-active.in .right{
	right: 0;
	opacity: 1;
}
.in .right .news{
	display: flex;
    width: 100%;
    padding-top: 23px;
    padding-bottom: 24px;
    padding-right: 20px;
    margin-bottom: 10px;
    background-color: rgba(255,255,255,0.9);
}
.in .right .news .date{
	position: relative;
	flex: 0 0 126px;
    align-self: center;
	border-right: 1px solid #ccc;
	text-align: center;
}
.in .right .news h6{
	min-height: 20px;
    font-size: 14px;
    color: #ccc;
    line-height: 1;
	position: relative;
    top: 0;
    transition: all 0.6s;
}
.in .right .news h1{
	min-height: 20px;
    font-size: 44px;
    color: #999;
    line-height: 1;
    font-weight: bold;
	position: relative;
    top: 0;
    transition: all 0.6s;
}
.in .right .news:hover{
	background: #fff;
}
.in .right .news:hover h6{
	top: 50px;
    color: #076447;
}
.in .right .news:hover h1{
	top: -20px;
    color: #076447;
}
.in .right .news .text{
	padding-left: 20px;
}
.in .right .news h5{
	line-height: 1;
    font-size: 16px;
    color: #333;
}
.in .right .news p{
	line-height: 2;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}
.il{
	background: url(../images/ilbg.jpg) center center no-repeat;
}
.il .con1{
	width: 540px;
	height: 540px;
	background: url(../images/il1.png) center center no-repeat;
	margin-top: 400px;
	opacity: 0;
	transition: 1s;
	transition-delay: .5s;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.swiper-slide-active.il .con1{
	margin-top: 200px;
	opacity: 1;
}
.il .con1 h5{
	font-weight: bold;
	font-size: 20px;
}
.il .con1 span{
	font-size: 14px;
}
.il .con2{
	width: 278px;
	height: 277px;
	background: url(../images/il2.png) center center no-repeat;
	margin-top: 663px;
	opacity: 0;
	transition: 1s;
	transition-delay: 1s;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.swiper-slide-active.il .con2{
	margin-top: 463px;
	opacity: 1;
}
.il .con3{
	width: 278px;
	height: 277px;
	background: url(../images/il3.png) center center no-repeat;
	margin-top: 663px;
	opacity: 0;
	transition: 1s;
	transition-delay: 1.5s;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.swiper-slide-active.il .con3{
	margin-top: 463px;
	opacity: 1;
}
.if{
	max-height: 310px;
}

/* web */

@media (max-width: 1199.98px) { 
	header{
		position: unset;
	}
	footer .d-flex{
		flex-wrap: wrap;
	}
	footer .tel{
		flex: auto;
	}
}
.mnav{
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: #fff;
	z-index: 99;
	display: none;
}
.mnav .col{
	border-bottom: 1px solid #eee;
}
.mnav a{
	line-height: 50px;
	color: #666;
    font-size: 15px;
}
.mnav .on>a{
	color: #076447;
}
.mnav i{
	line-height: 50px;
	font-size: 30px;
	transition: 0.5s;
}
.mnav .sub{
    display: none;
}
.mnav .sub a{
    font-size: 12px;
}
.mib .tel{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: rgba(0, 0, 0, .34);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.mib .tel span{
	font-size: 20px;
    color: #fff;
    display: block;
    padding-left: 34px;
    background: url(../images/download.png) left center no-repeat;
	background-size: 32px;
    height: 55px;
    line-height: 55px;
}
.mib .tel img{
	max-width: 45px;
    margin-right: 8px;
}
.mia .con{
	font-size: 14px;
    line-height: 24px;
}
.mia .btn {
    letter-spacing: 20px;
    display: block;
	width: 150px;
	height: 35px;
    line-height: 35px;   
    background: #076447;
    color: #fff;
	font-size: 14px;
}
.mia .cate .c{
	display: flex;
	flex-wrap: wrap;
    width: 100%;
    padding-left: 10px;
    border-left: 2px solid #076447;
}
.mia .cate .c .img{
	width: 100%;
}
.mia .cate .c h6{
	font-size: 14px;
    color: #076447;
    width: 30px;
}
.mip .item{
	position: relative;
}
.mip .text{
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	transition: 0.5s;
	cursor: pointer;
}
.mip .text:hover{
	background: rgba(7, 100, 71, 0.9);
}
.mip .text .tit{
	position: relative;
	top: 60px;
	transition: 0.5s;
}
.mip .text:hover .tit{
	top: 10px;
}
.mip .text .tit h5{
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
.mip .text .tit h6{
	width: 40px;
    height: 2px;
	transition: 0.5s;
	background: #fff;
	margin: 1rem auto;
}
.mip .text:hover .tit h6{
	width: 120px;
}
.mip .text .con{
	position: relative;
	top: 120px;
	width: 80%;
	line-height: 1.8;
	font-size: 12px;
	margin: 0 auto;
	opacity: 0;
	transition: 0.8s;
}
.mip .text:hover .con{
	top: 10px;
	opacity: 1;
}
.mic{
	background: url(../images/icbg.jpg) top center no-repeat;
}
.mic .cate a{
	width: 50%;
    border: 1px solid #CCCCCC;
    height: 50px;
    line-height: 50px;
	font-size: 14px;
	color: #666;
    justify-content: center;
}
.mic .swiper{
	height: auto;
}
.mic .swiper .imgbox{
	height: 250px;
	overflow: hidden;
}
.mic .swiper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mic .swiper .text{
	position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    font-size: 14px;
    color: #fff;
    transition: all 0.6s;
    background-color: rgba(7,100,71,0.8);
}
.mic .swiper .text::before {
    height: 30px;
    width: 1px;
    background: #fff;
    content: "";
    position: absolute;
    top: 66%;
}
.mic .swiper .text::after {
    height: 30px;
    width: 1px;
    background: #fff;
    content: "";
    position: absolute;
    top: 24%;
}
.mic .swiper .swiper-slide:hover .text{
	top: 0;
}
.mic .swiper .swiper-pagination-bullet{
	width: 16px;
    height: 16px;
    opacity: 1;
    background-color: #333;
	border: none;
}
.mic .swiper .swiper-pagination-bullet-active{
	background: #23935B;
}
.min{
	background: url(../images/inbg.jpg) top center no-repeat;
}
.min .title{
	display: flex;
	align-items: center;
}
.min .title h5{
	line-height: 1;
    font-size: 26px;
    color: #fff;
}
.min .title span{
	display: block;
    width: 100px;
	line-height: 26px;
	text-align: center;
	color: #fff;
}
.min .news{
	display: flex;
    width: 100%;
    padding-top: 23px;
    padding-bottom: 24px;
    padding-right: 20px;
    margin-bottom: 10px;
    background-color: rgba(255,255,255,0.9);
}
.min .news .date{
	position: relative;
	flex: 0 0 126px;
    align-self: center;
	border-right: 1px solid #ccc;
	text-align: center;
}
.min .news h6{
	min-height: 20px;
    font-size: 14px;
    color: #ccc;
    line-height: 1;
	position: relative;
    top: 0;
    transition: all 0.6s;
}
.min .news h1{
	min-height: 20px;
    font-size: 44px;
    color: #999;
    line-height: 1;
    font-weight: bold;
	position: relative;
    top: 0;
    transition: all 0.6s;
}
.min .news:hover{
	background: #fff;
}
.min .news:hover h6{
	top: 50px;
    color: #076447;
}
.min .news:hover h1{
	top: -20px;
    color: #076447;
}
.min .news .text{
	padding-left: 20px;
}
.min .news h5{
	line-height: 1;
    font-size: 16px;
    color: #333;
}
.min .news p{
	line-height: 2;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}
.mil{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #076447;
	color: #fff;
	text-align: center;
}
.mil h1{
	font-size: 34px;
}
.mil h6{
	font-size: 14px;
}

/* 内页 */
@keyframes zoom {
	from {
	  transform: scale(1);
	}
  
	to {
	  transform: scale(1.5);
	}
}
.pb{
	overflow: hidden;
    max-height: 426px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.pb.ppb{
	height: 150px;
}
.pb img{
	animation: zoom 30s linear infinite;
	object-fit: contain;
}
.pb .box{
	overflow: hidden;
}
.pbt{
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.pbt h1{
	font-size: 54px;
    color: #666;
}
.pbt h5{
	font-size: 20px;
    color: #076447;
}
.bread{
	position: absolute;
	bottom: 20px;
}
.bread>*,.bread a{
	font-size: 12px;
	color: #999;
	line-height: 20px;
}
.pcate a{
	display: block;
	border-radius: 30px;
	background-color: #fff;
    border: 1px solid #fff;
	color: #707070;
	width: 105px;
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	text-align: center;
	transition: 0.5s;
}
.pcate a.on,.pcate .cate a:hover{
	background-color: #076447;
    border: 1px solid #076447;
	color: #fff;
}
@media (max-width: 1199.98px){
	.bread{
		position: unset;
	}
	.pbt h1{
		font-size: 24px;
	}
	.pbt h5{
		font-size: 16px;
	}
	.cate a{
		width: 40%;
		border-color: #ddd;
	}
}

/* 关于我们 */
.pa .abg{
	height: 380px;
	background: url(../images/abg1.jpg)no-repeat;
	background-size: cover;
	color: #fff;
	line-height: 1.8;
	padding: 160px 90px 100px 60px;
}
.pa .abg h3{
	font-size: 30px;
}
.pa .content{
	color: #707070;
	font-size: 16px;
	position: relative;
}
.dev{
	background: url(../images/abg2.jpg)no-repeat;
	background-size: cover;
	padding: 100px 0;
}
.dev h1{
	font-size: 42px;
}
.pa .text{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 290px;
	text-align: center;
	color: #fff;
}
.pa .text span{
	font-size: 14px;
}
.pa .team .con1{
    flex-direction: column;
    justify-content: center;
	align-items: flex-start;
	font-size: 12px;
	color: #707070;
}
.pa .team h5{
	font-size: 20px;
	font-weight: bold;
}
.pa .team:nth-child(4) .con2 p{
	width: 25%;
}
.pa .team:nth-child(5) .con2 p,.pa .team:nth-child(7) .con2 p{
	width: 33.3%;
}
.pa .team:nth-child(6) .con2 p{
	width: 50%;
}
.pa .map{
	background: url(../images/map.png) no-repeat;
	width: 725px;
	height: 540px;
	position: relative;
}
.pa .con3 .show{
	display: none;
}
.pa .map span{
	position: absolute;
	font-size: 14px;
	color: #212529;
	cursor: pointer;
	transition: .2s;
}
.pa .map span:hover,.pa .map span.active {
    transform: scale(1.05);
}
.pa .map span:nth-child(1){top: 12%;right: 15%;}
.pa .map span:nth-child(2){top: 22%;right: 18%;}
.pa .map span:nth-child(3){top: 30%;right: 22%;}
.pa .map span:nth-child(4){top: 30%;left: 18%;}
.pa .map span:nth-child(5){top: 33%;right: 30%;}
.pa .map span:nth-child(6){top: 36%;right: 28%;}
.pa .map span:nth-child(7){top: 52%;right: 42%;}
.pa .map span:nth-child(8){top: 40%;right: 32%;}
.pa .map span:nth-child(9){top: 52%;right: 35%;}
.pa .map span:nth-child(10){top: 45%;right: 28%;}
.pa .map span:nth-child(11){top: 55%;right: 22%;}
.pa .map span:nth-child(12){top: 59%;right: 27%;}
.pa .map span:nth-child(13){top: 64%;right: 22%;}
.pa .map span:nth-child(14){top: 62%;right: 53%;}
.pa .map span:nth-child(15){top: 64%;right: 45%;}
.pa .map span:nth-child(16){top: 73%;right: 45%;}
.pa .map span:nth-child(17){top: 61%;right: 34%;}
.pa .map span:nth-child(18){top: 70%;right: 37%;}
.pa .map span:nth-child(19){top: 69%;right: 30%;}
.pa .map span:nth-child(20){top: 73%;right: 25%;}
.pa .map span:nth-child(21){top: 78%;right: 55%;}
.pa .map span:nth-child(22){top: 81%;right: 41%;}
.pa .map span:nth-child(23){top: 80%;right: 32%;}
.pa .map span:nth-child(24){top: 84%;right: 32%;}
.pa .map span:nth-child(25){top: 94%;right: 39%;}
@media (max-width: 1199.98px){
	.pa .abg{
		padding: 160px 10px 100px;
	}
	.pa .text{
		width: 30%;
	}
	.pa .text h2{
		font-size: 14px;
	}
	.pa .text span{
		display: block;
		font-size: 12px;
		line-height: 1;
	}.pa .team img{
		width: 100%;
	}
	.pa .map{
		width: 300px;
		height: 225px;
		background-size: 100%;
	}
}

/* 服务 */
.np,.np a{
	font-size: 14px;
	color: #555;
}
.pp .text{
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	transition: 0.5s;
	cursor: pointer;
}
.pp .text:hover{
	background: rgba(7, 100, 71, 0.9);
}
.pp .text .tit{
	position: relative;
	top: 100px;
	transition: 0.5s;
}
.pp .text:hover .tit{
	top: 80px;
}
.pp .text .tit h2{
	font-size: 30px;
    color: rgba(255,255,255,0.5);
}
.pp .text .tit h5{
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
.pp .text .tit h6{
	width: 40px;
    height: 2px;
	transition: 0.5s;
	background: #fff;
	margin: 1rem auto;
}
.pp .text:hover .tit h6{
	width: 120px;
}
.pp .text .con{
	position: relative;
	top: 120px;
	width: 80%;
	line-height: 1.8;
	font-size: 12px;
	margin: 0 auto;
	opacity: 0;
	transition: 0.8s;
}
.pp .text:hover .con{
	top: 80px;
	opacity: 1;
}
.pp .core>*{
	width: 50%;
}
.pp .core:nth-child(2){
	flex-flow: row-reverse;
}
.pp .core .con{
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.pp .core .con h6{
	font-size: 18px;
    line-height: 1.8;
    color: #707070;
	font-weight: bold;
}
.pp .core .con p{
	font-size: 14px;
    line-height: 24px;
}
.pp .res{
	box-shadow: 1px 1px 5px #888888;
	margin-top: 20px;
	transition: .5s;
}
.pp .res .box{
	height: 285px;
	overflow: hidden;
}
.pp .res .box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pp .res .box a{
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 100%;
	transition: .5s;
}
.pp .res .box a p{
	border: 1px solid #fff;
	color: #fff;
	width: 100px;
    line-height: 35px;
	text-align: center;
	margin: 120px auto;
}
.pp .res .tit{
	line-height: 68px;
    height: 68px;
    text-align: center;
	transition: .5s;
}
.pp .res:hover{
	margin-top: 10px;
}
.pp .res:hover .box a{
	top: 0;
}
.pp .res:hover .tit{
	background: #076447;
}
.pp .res:hover .tit a{
	color: #fff;
}
.ppp .title h5{
	text-align: center;
	color: #23935b;
	font-weight: bold;
}
.ppp .content{
	border-top: 1px dashed #ddd;
	border-bottom: 1px solid #ddd;
}
.ppp .content p{
	color: #666;
	text-indent: 24pt;
    line-height: 21pt;
	font-size: 10.5pt;
	margin-bottom: 25px;
}
@media (max-width: 1199.98px){
	.np>*{
		width: 100%;
		flex-flow: row-reverse;
		justify-content: flex-end;
		margin: 10px 0;
	}
	.pp .text .tit{
		top: 40px;
	}
	.pp .text:hover .tit{
		top: 20px;
	}
	.pp .text:hover .con{
		top: 20px;
	}
	.pp .core>*{
		width: 100%;
	}
	.pp .core:nth-child(2){
		flex-flow: unset;
	}
}

/* 案例 */
.pc .case{
	box-shadow: 1px 1px 5px #888888;
	margin-top: 20px;
	transition: .5s;
}
.pc .case .box{
	height: 218px;
	overflow: hidden;
}
.pc .case .box>img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc .case .box a{
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 100%;
	transition: .5s;
}
.pc .case .box a p{
	color: #fff;
	text-align: center;
}
.pc .case .box a img{
	margin: 0 auto;
	display: block;
}
.pc .case .tit{
	line-height: 68px;
    height: 68px;
    text-align: center;
	transition: .5s;
}
.pc .case:hover{
	margin-top: 10px;
}
.pc .case:hover .box a{
	top: 0;
}
.pc .case:hover .tit{
	background: #076447;
}
.pc .case:hover .tit a{
	color: #fff;
}
@media (max-width: 1199.98px){
	
}

/* 新闻 */
.pn .news{
	border: 1px solid #eee;
	transition: .5s;
}
.pn .news .box{
	width: 34%;
	height: 260px;
}
.pn .news .box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pn .news .note{
	width: 40%;
	transition: .5s;
}
.pn .news .note span{
	font-size: 12px;
    color: #a2a2a2;
    line-height: 2;
}
.pn .news .date{
	width: 20%;
	display: flex;
	flex-direction: column;
	transition: 1s;
}
.pn .news .date h6{
	font-size: 12px;
	color: #076447;
}
.pn .news .date p a{
	display: block;
	width: 100px;
	text-align: center;
	padding: 8px;
	border: 1px solid #dedfe1;
	border-radius: 25px;
    font-size: 14px;
    color: #dedfe1;
	transition: .5s;
}
.pn .news:hover{
	box-shadow: 0 6px 10px 5px rgb(0 0 0 / 8%);
}
.pn .news:hover .note{
	margin-left: 30px;
}
.pn .news:hover .note h5{
	color: #076447;
}
.pn .news:hover .date{
	margin-left: 10px;
}
.pn .news:hover .date p a{
	border: 1px solid #076447;
	background: #076447;
	color: #fff;
}
@media (max-width: 999.98px){
	.pn .news>*{
		width: 100%!important;
	}
	.pn .news .date{
		flex-direction: row;
		align-items: center;
	}
	.pn .news:hover .date{
		margin-left: 0;
	}
}

/* 联系我们 */
.pf h5{
	font-size: 20px;
    color: #707070;
    line-height: 2;
}
.pf h6{
	font-size: 14px;
    line-height: 24px;
	color: #707070;
}
.pf h4{
	font-size: 30px;
    color: #076447;
}
.pf p{
	font-size: 14px;
    line-height: 2;
	color: #333;
}
.pf .jobt{
	background: url(../images/pot.jpg) left 20px center no-repeat;
	border: 1px solid #eee;
	line-height: 45px;
	cursor: pointer;
}
.pf .jobc{
	display: none;
}
.pf .jobc p{
	color: #999;
}
.pf .jobt:hover{
	border: 1px solid rgba(101, 190, 186,.5);
}
.pf p.ft{
	color: #707070;
}
.pf form p{
	color: #666;
}
.pf form p span{
	color: #f00;
}
.pf form textarea{
	padding: 10px 15px;
	font-size: 14px;
	line-height: calc(5 / 3);
	width: 550px;
	height: 150px;
	border: 1px solid #e1e1e1;
}
.pf form{
	width: 600px;
	margin: 0 auto;
}
.pf form input{
	padding: 0 15px;
	font-size: 14px;
	line-height: 38px;
	width: 550px;
	border: 1px solid #e1e1e1;
}
.pf form .btn{
	max-width: 510px;
	background-color: #23935b;
	border-color: #23935b;
	border-radius: 0;
	color: #fff;	
	font-size: 18px;
	line-height: 43px;
}
@media (max-width: 999.98px){
	.pf form{
		width: 100%;
	}
	.pf form textarea,.pf form input{
		width: calc(100% - 35px);
	}
	.pf form .btn{
		max-width: calc(100% - 70px);;
	}
}