/*making：邢旭*/
@charset "utf-8";

* {
	margin: 0;
	padding: 0
}

@font-face {
	font-family: PingFangSC;
	font-weight: 500;
	src: url(../fonts/pingfang_medium.ttf);
}

html {
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

body {
	width: 100%;
	height: auto;
	margin: 0 auto;
	font-family: 'PingFangSC', "Microsoft YaHei", "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", "STHeiti";
	font-size: 20px;
	overflow-x: hidden;
	color: #333;
	letter-spacing: 0.7px;
	background: #ffffff;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 0, 0, 0)
}

a {
	width: auto;
	height: auto;
	color: #000;
}

a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none
}

img {
	width: 100%;
	vertical-align: middle;
}

ul,
li,
dl,
dt,
dd,
p,
img {
	border: none;
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none
}

mark {
	background-color: transparent;
}

input:focus,
select:focus {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-modify: read-write-plaintext-only
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	font-family: Microsoft YaHei;
}

input[type="checkbox"],
.checkbox {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 2px;
	border: 1px solid #d8d8d8;
	cursor: pointer;
	margin-right: 5px;
	vertical-align: middle
}

input[type="radio"],
.radio {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid #d8d8d8;
	cursor: pointer;
	margin-right: 5px;
	vertical-align: middle
}

button {
	outline: none;
	border: none;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

mark {
	background-color: transparent;
}

i {
	font-style: normal;
}

.clear {
	zoom: 1;
	clear: both;
}

.clear:after {
	display: block;
	content: '';
	clear: both;
}

.hidden {
	display: none !important;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

input,
textarea {
	-webkit-appearance: none;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-between {
	display: flex;
	justify-content: space-between;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
}

.flex-items {
	display: flex;
	align-items: center;
}

.column {
	flex-direction: column;
}

.bold {
	font-weight: bold;
}


/*加载*/
.loading {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	width: 32px;
	height: 32px;
	display: none;
	/*background:rgba(0,0,0,0.3);*/
}

.loading img {
	width: 32px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-top: -16px;
	margin-left: -16px;
}

.load {
	text-align: center;
	line-height: 40px;
	font-size: 12px;
	color: #999;
}

.lineOne {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lineTwo {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.lineThree {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.linefour {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.linefive {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.linesix {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}

.br50 {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.btn {
	width: 170px;
	height: 54px;
	line-height: 54px;
	background: #147C66;
	border-radius: 4px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	display: block;
	position: relative;
	overflow: hidden;
}
.btn:before {
	content: ' ';
	position: absolute;
	background: #c4d4c4;
	width: 20px;
	height: 60px;
	top: 0;
	left: -60px;
	opacity: 0.3;
	transition: all 0.2s ease-out;
	transform: skewX(-25deg);
}
.btn:hover {
	background: #0C5637;
	transform: scale(1.02);
	transition: 0.15s;
}
.btn:hover:before {
	width: 20px;
	left: 220px;
}

/* 公共 内容*/
.main {
	/* margin-top: 76px; */
}

.box {
	box-sizing: border-box;
}

/* 模块标题 */
.box .title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	padding-top: 40px;
	position: relative;
}
.box .title span {
	width: 29px;
	height: 29px;
	background: #147C66;
	border-radius: 50%;
	display: none;
	position: absolute;
	top: 0;
	z-index: -1;
}

.box .title2 {
	width: 68%;
	font-size: 18px;
	line-height: 29px;
	text-align: center;
	margin: 20px auto 0;
	color: #444444;
}



/* 头部导航 */
.header {
    width: 100%;
    height: 70px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    box-shadow: 0px 0px 4px #BFD8F4;
}
 
.header .hdcon {
    height: 70px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
 
.header .hdcon .logo {
    width: 15%;
    color: #666666;
}
 
.header .hdcon .logo .image {
    width: 146px;
    margin-right: 16px;
    margin-top: 12px;
}
 
.header .hdcon .logo .title img {
    width: 105px;
    transition: 1s ease;
    position: absolute;
    top: 10px;
}
 
.header .mentbtn {
    width: 40px;
    margin-top: 8px;
    display: none;
}
 
.header .navlist {
    width: 85%;
    line-height: 54px;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}
 
.header .navlist li {
    width: 20%;
    text-align: center;
    cursor: pointer;
}
 
.header .navlist li span {
    width: 0;
    transition: 0.3s all linear;
}
 
.header .navlist li .text {
    width: 100%;
    display: inline-block;
    color: #212121;
}
 
.header .navlist li .list {
    width: 100%;
    height: 0px;
    background: #fff;
    overflow: hidden;
    transition: 0.3s;
}
 
.header .navlist li .list li {
    width: 100%;
}
 
.header .navlist li .list .desc {
    width: 100%;
    height: 45px;
    line-height: 45px;
    display: block;
    border-bottom: 1px solid #F0F0F0;
    font-size: 18px;
}
 
.header .navlist li .list li:last-child .desc {
    border-bottom: none;
}
 
.header .navlist li .list li:hover .desc {
    color: #147C66;
}
 
.header .navlist li .list li.active .desc {
    color: #147C66;
}
 
.header .navlist li.active .text {
    color: #147C66;
}
 
.header .navlist li.active .text span {
    width: 40px;
    height: 6px;
    background: #147C66;
    display: block;
    margin: auto;
    transition: 0.3s all linear;
}
 
.header .navlist li:hover .text {
    color: #147C66;
}
 
.header .navlist li:hover .list {
    height: 226%;
    transition: 0.3s;
}
 
.header .navlist li:last-child:hover .list {
    height: 150%;
    transition: 0.3s;
}

.warp {
	width: 1230px;
	margin: auto;
	position: relative;
}


/* 首页 */
.banner {
	width: 100%;
	height: 500px;
	margin-top: 66px;
	text-align: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	animation: bannerBig 2s ease;
	animation-fill-mode:forwards;
}
@keyframes  bannerBig {
	0% {  background-size: 100% 100%;  background-position: 0 0; }
	100% {  background-size: 103% 101%; background-position: -10px 0; }
}

.banner .ban_con{
	padding-top: 150px;
}
.banner .ban_con .ban_tit{
	font-size: 56px;
	letter-spacing: 4px;
}
.banner .ban_con .ban_desc {
	font-size: 30px;
	margin-top: 20px;
}


/* 联系我们 */
.contact {
	width: 100%;
		padding: 10px 0;
		background: #E8F5F3;
		margin-top: 70px;
		display: flex;
		justify-content: space-between;
		color: #147C66;
}
.contact .warp {
	/* padding: 0 30px; */
}
.contact .info .tit {
	font-size: 30px;
	font-weight: bold;
	padding-top: 8px;
}
.contact .info .desc {
	margin-top: 10px;
}

/* 弹窗联系 */
.openContact {
    width: 200px;
    background: #fff;
    padding: 0 50px 50px;
    position: fixed;
    top: 20%;
    left: 50%;
    z-index: -2;
    margin-left: -250px; 
    text-align: center;
    box-shadow: 0px 4px 13px 0px rgba(221, 224, 236, 0.41);
    transition: 0.3s ease;
    box-sizing: border-box;
    color: #333;
    opacity: 0;
}
 
.openContact .tit {
    margin-top: 30px;
}
 
.openContact .desc {
    font-size: 30px;
    margin-top: 10px;
}
 
.openContact .icon {
    width: 140px;
    margin: 10px auto; 
}
 
.openContact .close {
    width: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    padding: 10px;
}
.openContact.active{
	width: 500px;
	transition: 0.3s ease;
	opacity: 1;
	z-index: 11;
}

/* 公共底部模块 */

.footer {
    width: 100%;
    color: #fff;
    background-image: url('../images/footbg.png');
    background-size: 100% 100%;
}

.footer .foot_top {
    padding: 30px 0 25px;
    font-size: 20px;
}

.footer .foot_con {
    display: flex;
    padding: 25px 0;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.footer .foot_con .foot_list {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.footer .foot_con .foot_list li {
    font-size: 19px;
}

.footer .foot_con .foot_list li .tit {
    height: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer .foot_con .foot_list li a {
    margin-top: 18px;
    color: #fff;
    display: block;
}

.footer .foot_con .foot_wx {
    width: 30%;
    margin-left: 10%;
    font-size: 18px;
}

.footer .foot_con .foot_wx .tit {
    font-weight: bold;
}

.footer .foot_con .foot_wx .desc {
    margin: 20px 0;
}

.footer .foot_con .foot_wx .foot_wx_ul {
    text-align: center;
    display: flex;
}

.footer .foot_con .foot_wx .foot_wx_ul li {
    margin-right: 50px;
}

.footer .foot_con .foot_wx .foot_wx_ul li p {
    margin-top: 10px;
    font-size: 16px;
}

.footer .foot_con .foot_wx .foot_wx_ul li img {
    width: 100px;
    height: 100px;
}

.footer .foot_bot {
    text-align: center;
    padding: 25px 0 15px;
    font-size: 14px;
}

.footer .foot_bot .desc {
    margin-bottom: 10px;
}
.footer .foot_bot .desc .icon{
	width: 14px;
	margin-right: 5px;
	margin-bottom: 2px;
}


.footer1 {
    width: 100%;
    color: #fff;
    background-image: url('../images/footbg.png');
    background-size: 100% 100%;
}

.footer1 .foot_top {
    padding: 30px 0 25px;
    font-size: 20px;
}

.footer1 .foot_con {
    display: flex;
    padding: 25px 0;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

.footer1 .foot_con .foot_list {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.footer1 .foot_con .foot_list li {
    font-size: 19px;
}

.footer1 .foot_con .foot_list li .tit {
    height: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer1 .foot_con .foot_list li a {
    margin-top: 18px;
    color: #fff;
    display: block;
}

.footer1 .foot_con .foot_wx {
    width: 30%;
    margin-left: 10%;
    font-size: 18px;
}

.footer1 .foot_con .foot_wx .tit {
    font-weight: bold;
}

.footer1 .foot_con .foot_wx .desc {
    margin: 20px 0;
}

.footer1 .foot_con .foot_wx .foot_wx_ul {
    text-align: center;
    display: flex;
}

.footer1 .foot_con .foot_wx .foot_wx_ul li {
    margin-right: 50px;
}

.footer1 .foot_con .foot_wx .foot_wx_ul li p {
    margin-top: 10px;
    font-size: 16px;
}

.footer1 .foot_con .foot_wx .foot_wx_ul li img {
    width: 100px;
    height: 100px;
}

.footer1 .foot_bot {
    text-align: center;
    padding: 25px 0 15px;
    font-size: 14px;
}

.footer1 .foot_bot .desc {
    margin-bottom: 10px;
}


/*右侧服务*/
.sever {
	position: fixed;
	right: 0px;
	bottom: 150px;
	z-index: 3;
}
.sever .sever_roll {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: -60px;
	right: 20px;
	cursor: pointer;
	display: none;
	margin-left: 10px;
	margin-top: 20px;
	box-shadow: 0px 2px 10px 0px rgba(227, 227, 227, 0.6);
	border-radius: 50%;
}

.sever1 {
	position: fixed;
	right: 0px;
	bottom: 150px;
	z-index: 3;
}
.sever1 .sever_roll {
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: -60px;
	right: 20px;
	cursor: pointer;
	display: none;
	margin-left: 10px;
	margin-top: 20px;
	box-shadow: 0px 2px 10px 0px rgba(227, 227, 227, 0.6);
	border-radius: 50%;
}


/* 底部 */
.page_info {
	margin: 50px 0;
	display: none;
}
.page_info .icon {
	width: 30px;
	cursor: pointer;
}
.page_info .desc {
	margin: 0 20px;
	/* font-size: 42px; */
	color: #A6A6A6;
}
.page_info .desc span {
	color: #147C66;
}

@media (max-width: 1367px) {
	.warp {
		/* width: 1150px; */
	}
}

@media (max-width: 1024px) {
	.warp {
		width: 960px;
	}

	body {
		font-size: 18px;
	}

	.banner {
		height: 400px;
	}
	.banner .ban_con{
		padding-top: 130px;
	}
}

@media (max-width: 769px) {
	.body {
		font-size: 16px;
	}

	.warp {
		width: 95%;
	}

	.box .title {
		font-size: 28px;
		margin-top: 0;
	}
	.box .title2 {
		width: 92%;
		margin-top: 30px;
		/* text-indent: 2em; */
		color: #999;
	}

	.header .hdcon .logo{
		width: 25%;
	}
	.header .hdcon .logo .image {
		width: 160px;
		margin-top: 10px;
	}
	.header .navlist {
		width: 75%;
	}

	.contact .warp {
		padding: 0 40px;
	}
	.contact .tit {
		font-size: 30px;
	}

	/* 底部 */
	.footer .foot_con .foot_wx {
		margin-left: 5%;
	}
}

@media (max-width: 431px) {
	body {
		font-size: 14px;
	}

	.box .title {
		font-size: 20px;
		margin-top: 0;
		padding-top: 30px;
	}
	.box .title span {
		width: 10px;
		height: 10px;
	}
	.box .title2 {
		width: 92%;
		margin-top: 10px;
		line-height: 26px;
		font-size: 16px;
		color: #999;
	}

	.banner {
        height: 250px;
    }
	.banner .ban_con{
		padding-top: 80px;
	}
    .banner .ban_con .ban_tit {
        font-size: 40px;
    }
 
    .banner .ban_con .ban_desc {
        font-size: 16px;
        margin-top: 10px;
    }

	.header {
		height: 70px;
		box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
		padding-top: 10px;
	}

	.header .hdcon .logo .image {
		width: 120px;
		margin-top: 5px;
	}
	
	.header .mentbtn {
		width: 30px;
		display: block;
	}
	
	.header .navlist {
		width: 44%;
		line-height: 50px;
		position: absolute;
		top: 60px;
		left: 62%;
		z-index: 2;
		display: block;
		background: #fff;
		box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.1);
		display: none; 
		padding-bottom: 10px;
	}
	
	.header .navlist li {
		width: 100%;
	}
	
	.header .navlist li:nth-child(2) {
		width: 100%; 
	}
	
	.header .navlist li .list .desc {
		font-size: 14px;
	}
	
	/* :hover 伪类可以保持不变 */
	.header .navlist li:hover .list {
		height: 100%; 
		position: absolute;
		left: -101%; /* 这个值可能需要根据你的布局进行调整 */
		top: 0;
	}
	.header .navlist li:last-child:hover .list {
		height: 100%;
	}

/* Contact 部分 */
.contact {
    padding: 20px 0;
}
 
.contact .warp {
    padding: 0 10px;
}
 
.contact .warp .tit {
    font-size: 20px;
    padding-top: 5px;
}
 
.contact .warp  {
    width: 100%;
}
 
.contact .warp  .btn {
	width: 120px;
    height: 40px;
    line-height: 40px;
}
 
/* Footer 部分 */
.footer {
    background: #003732;
}
 
.footer .foot_top {
    padding: 20px 0;
    font-size: 16px;
}
 
.footer .foot_con {
    display: block;
}
 
.footer .foot_con .foot_list {
    width: 100%;
}
 
.footer .foot_con .foot_list li {
    font-size: 14px;
}
 
.footer .foot_con .foot_list li .tit {
    margin-bottom: 10px;
}
 
.footer .foot_con .foot_list li p {
    margin-top: 10px;
}
 
.footer .foot_con .foot_wx {
    width: 100%;
    margin-left: 0%;
    margin-top: 20px;
    font-size: 14px;
}
 
.footer .foot_con .foot_wx .tit {
    font-size: 14px;
}
 
.footer .foot_con .foot_wx .desc {
    margin: 10px 0;
}
 
.footer .foot_con .foot_wx .foot_wx_ul li p {
    font-size: 14px;
}

.footer1 {
    background: #12412D;
}
 
.footer1 .foot_top {
    padding: 20px 0;
    font-size: 16px;
}
 
.footer1 .foot_con {
    display: block;
}
 
.footer1 .foot_con .foot_list {
    width: 100%;
}
 
.footer1 .foot_con .foot_list li {
    font-size: 14px;
}
 
.footer1 .foot_con .foot_list li .tit {
    margin-bottom: 10px;
}
 
.footer1 .foot_con .foot_list li p {
    margin-top: 10px;
}
 
.footer1 .foot_con .foot_wx {
    width: 100%;
    margin-left: 0%;
    margin-top: 20px;
    font-size: 14px;
}
 
.footer1 .foot_con .foot_wx .tit {
    font-size: 14px;
}
 
.footer1 .foot_con .foot_wx .desc {
    margin: 10px 0;
}
 
.footer1 .foot_con .foot_wx .foot_wx_ul li p {
    font-size: 14px;
}


	.sever_roll {
		width: 40px;
		height: 40px;
		right: 14px;
	}

	.sever_ul {
		margin-right: 8px;
	}

	.sever_ul li {
		width: 58px;
		height: 58px;
	}
}

@media (max-width: 390px) {
	body {
		font-size: 12px;
	}
	.box .title{
		font-size: 18px;
	}
	.box .title2{
		font-size: 14px;
		line-height: 22px;
	}

	.banner .ban_con .ban_tit{
		font-size: 30px;
	}
	.contact .warp .tit{
		font-size: 17px;
	}

	.footer .foot_con .foot_list li{
		font-size: 12px;
	}
	.footer .foot_bot{
		font-size: 12px;
	}
}



@media (max-width: 1024px) {}

@media (max-width: 768px) {}

@media (max-width: 431px) {}