@charset "utf-8";
/* CSS Document */
html{font-size:20px;}
body{font-size:.8rem;color:#333;font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;}
html,body{margin:0px;padding:0px;width:100%;height:100%;}
html *{outline:0;-webkit-text-size-adjust:none;-webkit-tap-highlight-color: rgba(0,0,0,0);}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
h1, h2, h3, h4, h5, h6{font-size:100%;font-weight:normal;margin:0;padding:0; }
video,
img{border:none;max-width:100%;vertical-align: middle;}
div,ul,ol,li,dl,dt,dd,p,form,figure{margin:0;padding:0;}
ul,ol,li,dl,dt,dd{list-style:none;}
a{font-size:inherit;text-decoration:none;color:#2f2f2f;}
a:hover,
a:focus{ text-decoration:none; color:#4BB433;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
a:active{color:inherit; text-decoration:none;}
i,em{font-style:normal;}
select,input,textarea,button{font-family:inherit; font-size:inherit;}
table { border-spacing: 0; border-collapse: collapse; background-color: transparent; }
td, th { padding: 0; }
th { text-align: left; }
tr { vertical-align: middle; }

.clearfix:before,
.clearfix:after{display:table;content:" ";clear:both;}
.tbl-type{display:table;width:100%;table-layout:fixed}
.tbl-cell{display:table-cell;}
.fl{float:left;}
.fr{float:right;}
.fn{float:none;}
.center{ text-align:center; }
.right{ text-align:right; }
.valign *{ display:inline-block; vertical-align:middle; }
.relative{ position: relative; }
body .gray-bg{ background-color: #f5f5f5; }

.ellipsis{ display: -webkit-box!important; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; }
.ellipsis.lc2 { -webkit-line-clamp: 2; }
.ellipsis.lc3 { -webkit-line-clamp: 3; }
.ellipsis.lc4 { -webkit-line-clamp: 4; }
.ellipsis.lc5 { -webkit-line-clamp: 5; }

.shadow { box-shadow: 5px 5px 5px rgba(0, 0, 0, .2); }
.hide{ display: none; }
.img-box{ line-height:normal; font-size:0; }
.ivy-flex{ display: flex; justify-content: space-between; }
.ivy-flex.middle{ align-items: center; }
.ivy-flex.stretch{ align-items:stretch; }


body{ background-color: #ffffff; }
.wrap{ width:100%; max-width:1400px; margin: auto; }
.container{ padding:80px 0; background-color: #ffffff; }
.container-s2{ padding:40px 0; }

.header{ position:relative; }
.top{ position:absolute; top: 30px; width:100%; left:0; z-index: 999; }
.top-bar{ background-color:#fff; border-bottom-left-radius:10px; border-top-right-radius:10px; padding:0 20px; }
	.logo-box { float: left; padding:20px 0; }
	.logo-box img{ display: block; }
	
	.nav-box{ float:right; position: relative; padding-right: 30px; }
		.nav ul li { float: left; width: auto; display: block; position: relative; padding:20px; }
		.nav ul li .tit { text-align: center; font-size: .9rem; display: block; line-height: 46px; position: relative; }

		.nav ul li.on .tit,
		.nav ul li:hover .tit{ color:#4bb433; }
		.nav ul li.on .tit::before,
		.nav ul li:hover .tit::before{ position: absolute; content: ' '; bottom: 0; left: 0; right: 0; height: 2px; background-color: #4bb433; border-radius: 2px; }
		.nav ul li.on .tit i,
		.nav ul li:hover .tit i{ display: block; position: absolute; width: 0; height: 0; border-style:dashed dashed solid dashed; border-width: 0 6px 6px 6px; border-color:transparent transparent #4bb433 transparent; left: 50%; bottom: 0;
			-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
		}
		.nav ul li .child { display: none; background-color: #fff; line-height: 3; visibility: visible; text-align: center; border-radius: 5px; padding: 5px; position: absolute; top:90px; left:-20px; right: -20px; box-shadow: 0 0 15px rgba(103, 103, 103, .2); }
		.nav ul li .child a { display: block; position: relative; color: #333; border-bottom: 1px solid #edecec;
			transition: 0.4s all;
			-webkit-transition: 0.4s all;
		}
		.nav ul li .child a:last-child{ border-bottom:none; }
		.nav ul li .child a:hover{ color:#4bb433; }
	.search-btn { position: absolute; right: 0; display: block; width: 18px; top:50%; cursor: pointer; transform:translateY(-50%); }
	
	
/** 搜索框样式 */
.search-box{ display: none; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); position: fixed; top: 0; right: 0; z-index: 100; opacity: 0; transition: all 0.3s; }
.search-box.show{ display: block; opacity: 1; }
	.float-window{ width: 350px; background-color: #fff; position: fixed; z-index: 101; bottom: 0; right: calc(50% - 175px); border-radius: 5px; transform: scale(0.1, 0.1); transition: all 0.3s; opacity: 0; }
	.search-box.show .float-window{ transform: scale(1, 1); opacity: 1; bottom: calc(50% - 100px); transition: all 0.3s; }
	.float-window .no{ width: 100%; display: flex; flex-direction: row-reverse; padding-right: 15px; padding-top: 10px; box-sizing: border-box; cursor: pointer; }
	.float-window .search-title{ font-size: 16px; font-weight: bold; padding-left: 20px; box-sizing: border-box; }
	.float-window input{ margin:30px 20px 20px; width: calc(100% - 40px); box-sizing: border-box; padding: 5px 10px; border-radius: 5px; border: 1px solid #ccc; outline: none; height: 35px; }
	.float-window button{ margin:-5px 20px 20px; width: calc(100% - 40px); background-color: #4eb435; height: 35px; color: #fff; border-radius: 5px; margin-bottom: 54px; border:none; }


.menu-button { display: none; position: absolute; top: 10px; right: 15px; z-index: 999; padding: 5px 0; border-radius: 5px; }
.menu-button button { display: block; background: none; overflow: hidden; cursor: pointer; z-index: 1000; border: 0; width: 32px; height: 30px; padding: 0; outline: 0; position: relative;
    -webkit-appearance: none;
    -webkit-transition: .3s all;
    transition: .3s all;
}
.menu-button button::before,
.menu-button button::after,
.menu-button button span { background: #414141; border-radius: 2px; }
.menu-button button::before,
.menu-button button::after { content: ''; position: absolute; height: 2px; width: 100%; left: 0; top: 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform .25s;
    transition: transform .25s;
}
.menu-button button span { display: block; position: absolute; height: 2px; width: 80%; left: 0; top: 50%; margin-top: 0; overflow: hidden; text-indent: 200%;
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
}
.menu-button button::before {
    -webkit-transform: translate3d(0, -12px, 0);
    transform: translate3d(0, -12px, 0);
}
.menu-button button::after {
    -webkit-transform: translate3d(0, 12px, 0);
    transform: translate3d(0, 12px, 0);
    width: 93%;
}

.menu-button.open button span { opacity: 0; background: #fff; }
.menu-button.open button::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    background: #fff;
}
.menu-button.open button::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    background: #fff;
    width: 100%;
}


/** banner样式 */
.banner-box .attach{ position: absolute; top: 0; left: 0; bottom: 0; right: 0; }
.banner-box .swiper-container-horizontal .swiper-pagination-bullets{ top:50%; bottom: auto; width: auto; right: 30px; left: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.banner-box .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet{ display: block; margin: 10px 0; }
.banner-box .swiper-pagination-bullet{ opacity:1; background-color: transparent; border:1px solid #ffffff; width: 13px; height: 13px; }
.banner-box .swiper-pagination-bullet-active{ background-color: #ffffff; }

.banner-box .swiper-button-next,
.banner-box .swiper-button-prev { width: 28px; height: 28px; top: auto; bottom: 30px; left: auto; right:50px; }
.banner-box .swiper-button-next{ left: auto; right:10px; }

.banner-box .attline{ position: absolute; bottom:30px; height:28px; left: 0; right: 0; background-color: rgba(255,255,255, .3) }
.banner-box .attline::after{ display: block; content: " "; position: absolute; border-bottom: 1px solid rgba(255,255,255,.25); height: 1px; left:120px; right: 120px; top:50%; transform: translateY(-50%); z-index: 9; }
.banner-box .attline i{ display: block; position: absolute; width: 13px; height: 22px; bottom: 20px; left: 50%; margin-left: -3px; background: url(../images/icon-mouse.png) center no-repeat; z-index: 11;
	animation:mymove 1s infinite;
	-webkit-animation:mymove 1s infinite;
}
.banner-box .attline span{ display: block; position: absolute; width: auto; left:10px; top: 50%; transform: translateY(-50%); z-index: 12; color: #ffffff; }
@keyframes mymove{
	from {bottom:46px;}
	to {bottom:20px;}
}
@-webkit-keyframes mymove{ /*Safari and Chrome*/
	from {bottom:46px;}
	to {bottom:20px;}
}

.nbanner-box { position: relative; overflow: hidden; }
.nbanner-box .box { position: absolute; left: 50%; margin-left: -960px; width: 1920px; }

.swiper-banner .swiper-slide{ position: relative; overflow: hidden; }
.sbimg-box{ position: absolute; top: 0; left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.title-s1{ padding-bottom:20px; }
.title-s1 h3 { text-align:center; }
.title-s1 h3 em{ font-weight:700; font-size: 1.5rem; display:block; position:relative; padding-bottom:10px; color:#fff; }
.title-s1 h3 em i{ position:absolute; left:50%; transform:translateX(-50%); bottom:0; line-height:0; }
.title-s1 h3 em i:before,
.title-s1 h3 em i:after{ content:' '; display:inline-block; width:1.3em; height:3px; background-color:#fff; }
.title-s1 h3 em i:after{ display:inline-block; width: 0.2em; margin-left:5px; }

.title-s2{ padding-bottom:50px; text-align: left; }
.title-s2 h3 { float:left; }
.title-s2 h3 em{ font-weight:700; font-size: 1.5rem; display:block; position:relative; padding-bottom:10px; }
.title-s2 h3 em:before,
.title-s2 h3 em:after{ content:' '; display:block; position:absolute; left:0; bottom:0; width:1.3em; height:3px; background-color:#4eb435; }
.title-s2 h3 em:before{ width: 0.2em; left:1.5em; }

.title-s2 .more-btn{ display:block; float:right; background-color:#fff; height:40px; line-height:40px; padding:0 30px; }
.title-s2 .more-btn i{ display:inline-block; margin-left:20px; }
.title-s2 .more-btn .iconfont{ font-size:1rem; }
.title-s2 .more-btn:hover{ background-color:#4eb435; color:#fff; }

.title-s3{ padding-bottom:30px; text-align: left; }
.title-s3 h3 em{ font-weight:700; font-size: 1.3rem; display:block; position:relative; padding-bottom:10px; }
.title-s3 h3 em:before,
.title-s3 h3 em:after{ content:' '; display:block; position:absolute; left:0; bottom:0; width:1.3em; height:3px; background-color:#4eb435; }
.title-s3 h3 em:before{ width: 0.2em; left:1.5em; }

.title-s4{ display:block; padding-bottom:50px; font-size: 1.5rem; font-weight:700; text-align:center; }

.circu-s1{ overflow:hidden; border-bottom-left-radius:5px; border-top-right-radius:5px; }
.circu-s2{ overflow:hidden; border-bottom-left-radius:10px; border-top-right-radius:10px; }
.circu-s2.lt{ border-bottom-left-radius:0; border-top-right-radius:0; border-top-left-radius:10px; border-bottom-right-radius:10px; }

/** 首页关于我们 */
.ind-about{ background-color:#fff; padding:80px 0 160px 0; }
	.about-txt { float: right; width: 45%; padding-left: 80px; position:relative; padding-bottom:280px; z-index: 999; }
	.about-pic { float: left; width: 55%; }
	.about-txt .info-box{ position:absolute; padding:40px; background:#f3f3f3 url(../images/quanda.png) bottom center no-repeat; bottom:-80px; left:-80px; }
	.about-txt .info-box p{ color:#999; line-height:1.75; }
	.about-txt .info-box .more-btn{ display:inline-block; background-color:#4eb435; height:40px; line-height:40px; padding:0 30px; color:#fff; margin-top:40px; }
	.about-txt .info-box .more-btn i{ display:inline-block; margin-left:20px; }
	.about-txt .info-box .more-btn .iconfont{ font-size:1rem; }
	
	.about-txt .number-box h3{ padding:50px 0; border-bottom:1px solid #ddd; margin-bottom:50px; font-size:1.5rem; font-weight:700; line-height:1.5; }
	.about-txt .number-box ul{ display: flex; justify-content: space-between; }
	.about-txt .number-box ul li i{ display:block; margin-bottom:5px; }
	.about-txt .number-box ul li em{ display:block; color:#4eb435; margin-bottom:5px; }
	.about-txt .number-box ul li em span{ font-size:1.3rem; font-weight:700; }
	
	

/** 首页产品分类 */
.cate-list{ margin-bottom:30px; }
.cate-list ul{ text-align:center; }
.cate-list ul li{ display: inline-block; padding:0 15px; }
.cate-list ul li a{ display: block; height: 40px; line-height: 40px; position: relative; color: #fff; }
.cate-list ul li a:hover::before{ content: ""; display: block; position: absolute; left: 0; right: 0; background-color: #fff; height: 3px; bottom:0; }
.cate-list ul li a:hover::after{ content:""; display: block; position: absolute; width: 0; height: 0; border-style:dashed dashed solid dashed; border-width: 0 5px 5px 5px; border-color:transparent transparent #fff transparent; left: 50%; bottom: 2px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.ind-product{ background:#fff url(../images/pround_bg.jpg) top center no-repeat; padding:60px 0 80px 0; }
.ind-product .info-list{ position:relative; }
.ind-product .info-list .swiper-slide a{ display: block; position:relative; padding:10px; }
.ind-product .info-list .info-box{ position:relative; overflow:hidden; z-index:9; }
.ind-product .info-list .img-box img{ width:100%; }
.ind-product .info-list .txt-box{ position:absolute; top:0; left:0; width:100%; text-align:center; padding:25px 15px; }
.ind-product .info-list .txt-box h3{ margin-bottom:20px; font-weight:700; }

.ind-product .info-list .txt-box .more-btn{ display:inline-block; border:1px solid #bbb; height:40px; line-height:40px; padding:0 20px; color:#999; }
.ind-product .info-list .txt-box .more-btn i{ display:inline-block; margin-left:20px; vertical-align:middle; }
.ind-product .info-list .txt-box .more-btn .iconfont{ font-size:1.2rem; color:#999; }

.ind-product .info-list .swiper-slide a:hover:after{ content:''; display:block; position:absolute; top:20px; left:20px; right:0px; bottom:0px; border-bottom-left-radius:10px; border-top-right-radius:10px; border:3px solid #4eb435; z-index:8; }
.ind-product .info-list .swiper-slide a:hover h3{ color:#4eb435; }
.ind-product .info-list .swiper-slide a:hover .more-btn,
.ind-product .info-list .swiper-slide a:hover .iconfont{ color:#fff; }
.ind-product .info-list .swiper-slide a:hover .more-btn{ background-color:#4eb435; border-color:#4eb435; }

.ind-product .info-list .swiper-button-next,
.ind-product .info-list .swiper-button-prev{ background:none; left:-50px; z-index: 99; width: 38px; height: 38px; line-height: 34px; text-align: center; border-radius: 100%; border:2px solid #fff; }
.ind-product .info-list .swiper-button-next{ background:none; left:auto; right: -50px; }
.ind-product .info-list .swiper-button-next i,
.ind-product .info-list .swiper-button-prev i{ color:#fff; }
.ind-product .info-list .swiper-button-next:hover,
.ind-product .info-list .swiper-button-prev:hover{ background:#fff; }
.ind-product .info-list .swiper-button-next:hover i,
.ind-product .info-list .swiper-button-prev:hover i{ color:#4eb435; }

.ind-product .info-list .swiper-pagination{ bottom: -50px; left: 0; right: 0; }
.ind-product .info-list .swiper-pagination-bullet{ width:10px; height: 10px; margin: 0 10px; background-color:#fff; }
.ind-product .info-list .swiper-pagination-bullet-active{ background-color:#4eb435; }

.ind-advantage{ background:#fff url(../images/show.jpg) top center no-repeat; }
	.advantage-box{ position:relative; height:940px; }
	.advantage-box .adv-cir,
	.advantage-box .adv-txt,
	.advantage-box .adv-img{ position:absolute; width:100%; height:100%; top:0; left:0; }
	
	.advantage-box .adv-cir span{ display:block; position:absolute; border-radius:100%; background-color:#F3F3F3; }
	.advantage-box .adv-cir span.s2{ background-color:#dff6ec; }
	.advantage-box .adv-cir span:nth-child(1){ width:50px; height:50px; top:132px; left:-5px; }
	.advantage-box .adv-cir span:nth-child(2){ width:80px; height:80px; top:173px; left:115px; }
	.advantage-box .adv-cir span:nth-child(3){ width:70px; height:70px; top:336px; left:-3px; }
	.advantage-box .adv-cir span:nth-child(4){ width:40px; height:40px; top:512px; left:-42px; }
	.advantage-box .adv-cir span:nth-child(5){ width:25px; height:25px; top:584px; left:45px; }
	.advantage-box .adv-cir span:nth-child(6){ width:30px; height:30px; top:805px; left:0; }
	.advantage-box .adv-cir span:nth-child(7){ width:40px; height:40px; top:718px; left:243px; }
	.advantage-box .adv-cir span:nth-child(8){ width:54px; height:54px; top:622px; left:390px; }
	.advantage-box .adv-cir span:nth-child(9){ width:104px; height:104px; top:756px; left:400px; }
	.advantage-box .adv-cir span:nth-child(10){ width:72px; height:72px; top:103px; left:504px; }
	.advantage-box .adv-cir span:nth-child(11){ width:52px; height:52px; top:713px; left:642px; }
	.advantage-box .adv-cir span:nth-child(12){ width:58px; height:58px; top:168px; left:730px; }
	.advantage-box .adv-cir span:nth-child(13){ width:45px; height:45px; top:390px; left:814px; }
	.advantage-box .adv-cir span:nth-child(14){ width:42px; height:42px; top:95px; left:965px; }
	.advantage-box .adv-cir span:nth-child(15){ width:73px; height:73px; top:378px; left:1025px; }
	.advantage-box .adv-cir span:nth-child(16){ width:42px; height:42px; top:690px; left:1184px; }
	.advantage-box .adv-cir span:nth-child(17){ width:52px; height:52px; top:428px; right:0; }
	
	.advantage-box .adv-txt div{ display:block; position:absolute; border-radius:100%; background-color:#dff6ec; }
	.advantage-box .adv-txt div:hover{ background-color:#4eb435; color:#fff; }
	.advantage-box .adv-txt div:nth-child(1){ width:304px; height:304px; top:320px; left:80px; }
	.advantage-box .adv-txt div:nth-child(2){ width:264px; height:264px; top:228px; left:478px; }
	.advantage-box .adv-txt div:nth-child(3){ width:340px; height:340px; top:472px; left:768px; }
	.advantage-box .adv-txt div:nth-child(4){ width:313px; height:313px; top:85px; right:0; }
	.advantage-box .adv-txt div p{ position:absolute; top:50%; left:0; transform:translateY(-50%); width:100%; }
	.advantage-box .adv-txt div i{ display:block; width:100px; height:100px; margin:auto; }
	.advantage-box .adv-txt div span{ display:block; text-align:center; line-height:2; }
	.advantage-box .adv-txt div:hover i{ background-position: 0 -100px; }
	
	.advantage-box .adv-img div{ display:block; position:absolute; border-radius:100%; overflow:hidden; }
	.advantage-box .adv-img div:nth-child(1){ width:192px; height:192px; top:616px; left:0; }
	.advantage-box .adv-img div:nth-child(2){ width:170px; height:170px; top:152px; left:280px; }
	.advantage-box .adv-img div:nth-child(3){ width:196px; height:196px; top:530px; left:468px; }
	.advantage-box .adv-img div:nth-child(4){ width:196px; height:196px; top:175px; left:804px; }
	.advantage-box .adv-img div:nth-child(5){ width:175px; height:175px; top:456px; right:60px; }

/** 新闻列表 */
.picnews-list{ margin-bottom:30px; }
.picnews-list ul{ margin-top:-30px; margin-left:-30px; }
.picnews-list ul li{ width:25%; float:left; padding-left:30px; padding-top:30px; }
.picnews-list ul li a{ display:block; padding:20px; background-color:#f5f5f5; }
.picnews-list ul li a time{ display:block; font-size:1.2rem; font-weight:700; padding:10px 0; }
.picnews-list ul li a time span{ display:block; color:#999; font-size:.7rem; transition: all 0.4s ease; }
.picnews-list ul li .img-box{ border-radius:4px; overflow:hidden; }
.picnews-list ul li .img-box img{ width:100%; }
.picnews-list ul li h3{ display:block; font-weight:700; height:60px; line-height:1.75; margin-bottom:5px; }
.picnews-list ul li p{ display:block; height:70px; color:#999; line-height:1.75; font-size:.7rem; transition: all 0.4s ease; }
.picnews-list ul li .view{ font-size:.7rem; color:#999; padding-top:15px; margin-top:15px; border-top:1px solid #ddd; }
.picnews-list ul li .view .iconfont{ font-size:1rem; float:right; }
.picnews-list ul li a:hover{ background-color:#4eb435; color:#fff; }
.picnews-list ul li a:hover .view,
.picnews-list ul li a:hover time span,
.picnews-list ul li a:hover p{ color:#fff; }

.news-list ul{ margin-top:-30px; }
.news-list ul li{ padding-top:30px; }
.news-list ul li a{ display:block; background-color:#f5f5f5; padding:28px 70px 28px 120px; position:relative; }
.news-list ul li a time{ display:block; font-size:1.2rem; font-weight:700; position:absolute; left:20px; top:50%; transform:translateY(-50%); text-align:center; }
.news-list ul li a time:after{ content:''; position:absolute; right:-20px; top:10px; bottom:10px; width:1px; border-right:1px solid #ddd;  }
.news-list ul li a time span{ display:block; color:#999; font-size:.7rem; transition: all 0.4s ease; }
.news-list ul li a .time{ display:none; }
.news-list ul li h3{ display:block; font-weight:700; line-height:1.75; margin-bottom:5px; }
.news-list ul li p{ display:block; height:50px; color:#999; line-height:1.75; font-size:.7rem; transition: all 0.4s ease; }
.news-list ul li a .view{ position:absolute; right:20px; top:50%; transform:translateY(-50%); width:28px; height:28px; line-height:28px; text-align:center; border-radius:100%; background:#f5f5f5; color:#999; }
.news-list ul li a:hover{ background-color:#4eb435; color:#fff; }
.news-list ul li a:hover time span,
.news-list ul li a:hover p{ color:#fff; }
.news-list ul li a:hover .view{ background-color:#fff; color:#4eb435; }

/** 首页新闻列表 */
.ind-news{ background:#E8EBF0 url(../images/news_bg.jpg) top center no-repeat; padding:50px 0; }
.ind-news .picnews-list{ float: left; width: 50%; padding-right:30px; margin-bottom:0; }
.ind-news .picnews-list ul li{ width:50%; }
.ind-news .news-list{ float: right; width: 50%; }
.ind-news .news-list ul li a,
.ind-news .picnews-list ul li a{ background-color:#fff; }
.ind-news .news-list ul li a:hover,
.ind-news .picnews-list ul li a:hover{ background-color:#4eb435; }


/** 首页底部标语 */
.ind-slogan{ background:#5AB945 url(../images/di_bg.jpg) center center no-repeat; padding:30px 0; }
.ind-slogan .slogan-box{ display: flex; justify-content: space-between; align-items: center; }
.ind-slogan .slogan-box .txt{ font-size:1.4rem; color:#fff; line-height:2; }
.ind-slogan .slogan-box .weixin{ text-align:center; }
.ind-slogan .slogan-box .weixin span{ display:block; font-weight:700; color:#fff; line-height:2; }


/** 底部样式 */
.footer{ background-color:#2b2b2b; }
.bot-row{ padding: 80px 0 40px 0; border-bottom: #414141 1px solid; }

.bot-contact{ float: left; width:50%; }
	.bot-logo{ margin-bottom:40px; }
	.bot-contact p{ color: #fff; line-height: 1.75; position:relative; margin-bottom:10px; font-size: .7rem; padding-left:60px; }
	.bot-contact p label{ display:block; font-size: .8rem; }
	.bot-contact .iconfont{ font-size: 1.2rem; color: #959595; position:absolute; left:0; top:50%; transform:translateY(-50%); border-radius:100%; border:1px solid #959595; width:42px; height:42px; text-align:center; }
	.bot-contact .iconfont:before{ position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); }
.bot-nav{ float: right; width:50%; }
	.bot-nav ul{ display: flex; justify-content: space-between; }
	.bot-nav ul li a{ display: block; height: 40px; color: #ffffff; margin-left:40px; }
	.bot-nav ul li:first-child a{ margin-left: 0; }
	.bot-nav ul li .child a{ color: #b9b9b9; line-height: 2.3; height: auto; font-size: .7rem; }

.copyright{ padding: 25px 0; color:#b9b9b9; line-height:2; font-size: .7rem; }
.copyright p{ float: left; }
.copyright a{ color:#b9b9b9; }
.copyright .support{ float: right; }


/** 内页标题 */
.page-title{ position: absolute; left: 0; bottom: 50px; width: 100%; z-index: 888; }
.page-title-bar{ display: flex; justify-content: space-between; align-items: center; }
.page-title-bar em{ font-size:1.6rem; color:#fff; font-weight:700; }
.page-title-bar p{ color:#fff; font-weight:700; line-height:1.75; }

.nabout-number,
.nabout-box{ margin-bottom:60px; }
.nabout-txt{ float: right; width: 52%; background:url(../images/quandas.png) bottom center no-repeat; background-size:contain; }
.nabout-pic{ float: left; width: 48%; padding-right:70px; padding-bottom:20px; position:relative; }
.nabout-pic img{ position:relative; z-index:9; }
.nabout-pic:after{ content:''; display:block; position:absolute; top:20px; left:20px; right:50px; bottom:0; border-top-left-radius:10px; border-bottom-right-radius:10px; background-color:#4eb435; z-index:8; }
.nabout-txt p{ line-height:1.75; margin-bottom:15px; }

.nabout-number ul{ display: flex; justify-content: space-between; }
.nabout-number ul li i{ display:block; margin-bottom:5px; }
.nabout-number ul li em{ display:block; color:#4eb435; margin-bottom:5px; }
.nabout-number ul li em span{ font-size:1.3rem; font-weight:700; }

.environment-list{ position:relative; }
.environment-list .item{ width:23.96%; }
.environment-list .item:nth-child(3){ width: 47.92%; margin:auto; }
.environment-list .item:nth-child(1){ position:absolute; top:0; left:0; }
.environment-list .item:nth-child(2){ position:absolute; bottom:0; left:0; }
.environment-list .item:nth-child(4){ position:absolute; top:0; right:0; }
.environment-list .item:nth-child(5){ position:absolute; bottom:0; right:0; }

.organizational-bg{ background:#f7f8fc url(../images/kuangjia_bg.jpg) center center no-repeat; }
/**.culture-list{ position:relative; }
.culture-list .item{ width:29%; background-color:#fff; border-radius:10px; }
.culture-list .item .info-box{ padding:30px; }
.culture-list .item .info-box p{ color:#999; }
.culture-list .item .info-box h3{ font-size:1.2rem; font-weight:700; margin-bottom:10px; }
.culture-list .item .info-box h3 i{ display:inline-block; width:30px; height:30px; vertical-align:middle; margin-right:5px; background-size:100%; background-position:center; background-repeat:no-repeat; }
.culture-list .item:nth-child(1){ width: 32.14%; padding-top: 32.14%; background-color:#4eb435; color:#fff; border-radius:100%; margin:auto; position:relative; }
.culture-list .item:nth-child(1) .info-box{ position:absolute; width:100%; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center; }
.culture-list .item:nth-child(1) .info-box h3{ font-size:1.5rem; }
.culture-list .item:nth-child(1) .info-box h3 i{ display:block; width:70px; height:70px; margin:auto; vertical-align:baseline; margin-bottom:10px; }
.culture-list .item:nth-child(1) .info-box p{ color:#eee; }
.culture-list .item:nth-child(2){ position:absolute; top:0; left:0; }
.culture-list .item:nth-child(3){ position:absolute; bottom:0; left:0; }
.culture-list .item:nth-child(4){ position:absolute; top:0; right:0; }
.culture-list .item:nth-child(5){ position:absolute; bottom:0; right:0; }*/
.culture-bg{ background:#3c3d3f url(../images/wenhua_bg.jpg) bottom center no-repeat; }
.culture-box{ display: flex; justify-content: space-between; background-color:#4db435; padding:75px 50px; }
.culture-box .culture-pic{ width:49.23%; }
.culture-box .culture-list{ width:46.76%; }
.culture-list .title-s3{ padding:20px 0; }
.culture-list .title-s3 h3 em{ font-size:1.5rem; color:#fff; padding-bottom:15px; }
.culture-list .title-s3 h3 em:before,
.culture-list .title-s3 h3 em:after{ background-color:#fff; }
.culture-list .item{ width:100%; height:15.5%; border-bottom:2px solid rgba(255, 255, 255, .3); display: flex; justify-content: space-between; align-items: center; color:#fff; }
.culture-list .item h3{ width:35%; font-size:1.2rem; font-weight:700; }
.culture-list .item h3 i{ display:inline-block; width:30px; height:30px; vertical-align:middle; margin-right:10px; background-size:100%; background-position:center; background-repeat:no-repeat; }
.culture-list .item p{ width:65%; font-weight:700; }


/** 产品展示 */
.product-list ul{ margin-left:-30px; margin-top:-30px; }
.product-list ul li{ float:left; width:25%; padding-left:30px; padding-top:30px; }
.product-list ul li a{ display: block; position:relative; }
.product-list ul li .info-box{ position:relative; z-index:9; }
.product-list ul li img{ width:100%; }
.product-list ul li .txt-box{ position:absolute; top:0; left:0; width:100%; text-align:center; padding:25px 15px; }
.product-list ul li .txt-box h3{ margin-bottom:20px; font-weight:700; }

.product-list ul li .txt-box .more-btn{ display:inline-block; border:1px solid #bbb; height:40px; line-height:40px; padding:0 20px; color:#999; }
.product-list ul li .txt-box .more-btn i{ display:inline-block; margin-left:20px; vertical-align:middle; }
.product-list ul li .txt-box .more-btn .iconfont{ font-size:1.2rem; color:#999; }

.product-list ul li a:hover:after{ content:''; display:block; position:absolute; top:10px; left:10px; right:-10px; bottom:-10px; border-bottom-left-radius:10px; border-top-right-radius:10px; background-color:#4eb435; z-index:8; }

.product-list ul li a:hover h3{ color:#4eb435; }
.product-list ul li a:hover .more-btn,
.product-list ul li a:hover .more-btn .iconfont{ color:#fff; }
.product-list ul li a:hover .more-btn{ background-color:#4eb435; border-color:#4eb435; }

/** 设备展示 */
.picture-list ul{ margin-left:-30px; margin-top:-30px; }
.picture-list ul li{ float:left; width:25%; padding-left:30px; padding-top:30px; }
.picture-list ul li a{ display: block; }
.picture-list ul li .img-box{ border-top-left-radius:10px; border-top-right-radius:10px; overflow:hidden; }
.picture-list ul li img{ width:100%; }
.picture-list ul li .txt-box{ width:100%; text-align:center; padding:15px; background-color:#f2f2f2; transition: all 0.3s; }
.picture-list ul li a:hover .txt-box{ background-color:#4eb435; color:#fff; }


.contact-box,
.guestbook-box{ margin-bottom:60px; }
/** 联系方式 */
.contact-box .info-list ul{ margin-left: -100px; margin-top:-30px; }
.contact-box .info-list ul li{ float:left; width:50%; padding-left:100px; }
.contact-box .info-list ul li .info-box{ padding:30px 60px 30px 0; border-bottom:1px solid #ddd; position:relative; }
.contact-box .info-list ul li .info-box em{ display:block; color:#666; margin-bottom:5px; }
.contact-box .info-list ul li .info-box strong,
.contact-box .info-list ul li .info-box p{ display:block; font-size:.9rem; }
.contact-box .info-list ul li .info-box strong{ font-weight:700; }
.contact-box .info-list ul li .info-box i{ position:absolute; top:50%; right:0; transform:translateY(-50%); }

/** 咨询留言 */
.guestbook-box .info-list{ margin-left: -20px; }
.guestbook-box .info-list label{ display: none; color: #888; margin-top: 30px; }
.guestbook-box .info-list input{ width: 100%; background-color:#f7f7f7; margin-top: 30px; padding: 20px 30px; border: none; border-radius:5px; }
.guestbook-box .info-list textarea{ width: 100%; height: 150px; background-color:#f7f7f7; margin-top: 30px; padding: 20px 30px; border: none; border-radius:5px; }
.guestbook-box .info-list button{ background-color: #4eb435; color: #fff; margin-top: 30px; padding:20px 50px; border: none; border-radius:5px; }
.guestbook-box .info-list .average{ margin-top: -30px; display: flex; justify-content: space-between; }
.guestbook-box .info-list .average .spacing{ width: 50%; padding-left: 30px; }
.guestbook-box .info-list .interval{ padding-left: 30px; }

.promise-list .item{ width:48.57%; padding-bottom:27.14%; border-radius:10px; background-position:center center; background-repeat:no-repeat; background-size:cover; position:relative; }
.promise-list .item:nth-child(odd){ float:left; }
.promise-list .item:nth-child(even){ float:right; }
.promise-list .item .info-box{ position:absolute; left:0; top:0; width:100%; height:100%; padding:80px 50px 50px 50px; }
.promise-list .item .info-box em{ display:block; position:relative; font-size:1.3rem; font-weight:700; padding-bottom:15px; margin-bottom:30px; }
.promise-list .item .info-box em:after{ content:' '; display:block; position:absolute; left:0; bottom:0; width:1.3em; height:3px; background-color:#4eb435; }
.promise-list .item .info-box p{ line-height:1.75; }

/** 内页位置 子栏目 */
.crumbs{ position:relative; }
.crumbs:after{ position:absolute; content:''; display:block; left:0; bottom:0; width:100%; border-bottom:2px solid #ddd; z-index:7; }
.crumbs .position{ float: right; line-height: 60px; }
.crumbs .position,
.crumbs .position a{ color:#999; font-size:.7rem; }
.crumbs .submenu{ float: left; position:relative; z-index:8; }
.crumbs .submenu a{ display: block; float: left; line-height: 60px; margin-right:30px; }
.crumbs .submenu a:hover,
.crumbs .submenu a.on{ border-bottom:2px solid #4eb435; color: #4eb435; }

/** 分页样式 */
.pagination{ margin-top:40px; text-align:right; }
.pagination span,
.pagination strong,
.pagination a{ display:inline-block; border-radius:4px; margin:0 5px; padding:9px 13px; background-color:#f2f2f2; }
.pagination span{ background-color:transparent; border:1px solid #f2f2f2; color:#666; }
.pagination strong{ background-color:#4eb435; color:#fff; }
.pagination a{ color:#333; }

/** 信息详情 */
.view-title{ font-size: 1.3rem; text-align:center; padding: 15px 0; margin-bottom: 20px; }
.view-element{ color:#666; border-bottom:1px solid #eee; border-top:1px solid #eee; padding: 15px 0; margin-bottom: 20px; }
.view-element .view-attr{ text-align:center; }
.view-element .view-attr span{ display: inline-block; margin-left: 10px; }
.view-element .view-attr span:first-child{ margin-left: 0; }

.view-content{ line-height:2; padding: 15px 0; }
.view-content p{ margin-bottom: 5px; }

.view-assoc{ background-color: #f5f5f5; height: 80px; line-height: 80px; }
.view-assoc .prev{ float: left; padding-left: 20px; position: relative; width: 50%; }
.view-assoc .next{ float: right; padding-right: 20px; position: relative; width: 50%; text-align: right; }
.view-assoc .next::after,
.view-assoc .prev::after { position: absolute; top: 50%; margin-top: -5px; left: 0; content: ' '; display: block; border: solid #999; border-width: 0 2px 2px 0; padding: 3px; vertical-align: middle; transform: rotate(135deg); -webkit-transform: rotate(135deg); }
.view-assoc .next::after{ left: auto; right: 0; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }

/*中等屏幕   w<1400*/
@media screen and (max-width: 1400px) {
	.wrap{ padding:0 15px; }
	
	.ind-product .info-list .swiper-button-next,
	.ind-product .info-list .swiper-button-prev{ display: none; }
	
	.advantage-box{ height:820px; }
	.advantage-box .adv-img div,
	.advantage-box .adv-txt div,
	.advantage-box .adv-cir span{ transform:scale(0.86); }
	
	.advantage-box .adv-cir span:nth-child(1){ top:114px; left:-4px; }
	.advantage-box .adv-cir span:nth-child(2){ top:149px; left:99px; }
	.advantage-box .adv-cir span:nth-child(3){ top:289px; left:-3px; }
	.advantage-box .adv-cir span:nth-child(4){ top:440px; left:-36px; }
	.advantage-box .adv-cir span:nth-child(5){ top:502px; left:38px; }
	.advantage-box .adv-cir span:nth-child(6){ top:692px; left:0; }
	.advantage-box .adv-cir span:nth-child(7){ top:617px; left:209px; }
	.advantage-box .adv-cir span:nth-child(8){ top:534px; left:335px; }
	.advantage-box .adv-cir span:nth-child(9){ top:650px; left:344px; }
	.advantage-box .adv-cir span:nth-child(10){ top:88px; left:433px; }
	.advantage-box .adv-cir span:nth-child(11){ top:613px; left:552px; }
	.advantage-box .adv-cir span:nth-child(12){ top:159px; left:627px; }
	.advantage-box .adv-cir span:nth-child(13){ top:335px; left:700px; }
	.advantage-box .adv-cir span:nth-child(14){ top:82px; left:830px; }
	.advantage-box .adv-cir span:nth-child(15){ top:325px; left:881px; }
	.advantage-box .adv-cir span:nth-child(16){ top:593px; left:1018px; }
	.advantage-box .adv-cir span:nth-child(17){ top:368px; right:0; }
	
	.advantage-box .adv-txt div:nth-child(1){ top:275px; left:68px; }
	.advantage-box .adv-txt div:nth-child(2){ top:196px; left:411px; }
	.advantage-box .adv-txt div:nth-child(3){ top:406px; left:660px; }
	.advantage-box .adv-txt div:nth-child(4){ top:73px; right:0; }
	
	.advantage-box .adv-img div:nth-child(1){ top:530px; left:0; }
	.advantage-box .adv-img div:nth-child(2){ top:130px; left:240px; }
	.advantage-box .adv-img div:nth-child(3){ top:456px; left:402px; }
	.advantage-box .adv-img div:nth-child(4){ top:150px; left:691px; }
	.advantage-box .adv-img div:nth-child(5){ top:392px; right:52px; }

}

/*中等屏幕   w<1200*/
@media screen and (max-width: 1200px) {
	.advantage-box{ height:680px; }
	.advantage-box .adv-img div,
	.advantage-box .adv-txt div,
	.advantage-box .adv-cir span{ transform:scale(0.71); }

	.advantage-box .adv-cir span:nth-child(1){ top:94px; left:-3px; }
	.advantage-box .adv-cir span:nth-child(2){ top:123px; left:82px; }
	.advantage-box .adv-cir span:nth-child(3){ top:238px; left:-2px; }
	.advantage-box .adv-cir span:nth-child(4){ top:364px; left:-30px; }
	.advantage-box .adv-cir span:nth-child(5){ top:415px; left:32px; }
	.advantage-box .adv-cir span:nth-child(6){ top:572px; left:0; }
	.advantage-box .adv-cir span:nth-child(7){ top:510px; left:172px; }
	.advantage-box .adv-cir span:nth-child(8){ top:442px; left:277px; }
	.advantage-box .adv-cir span:nth-child(9){ top:536px; left:284px; }
	.advantage-box .adv-cir span:nth-child(10){ top:73px; left:358px; }
	.advantage-box .adv-cir span:nth-child(11){ top:526px; left:466px; }
	.advantage-box .adv-cir span:nth-child(12){ top:119px; left:518px; }
	.advantage-box .adv-cir span:nth-child(13){ top:277px; left:578px; }
	.advantage-box .adv-cir span:nth-child(14){ top:67px; left:685px; }
	.advantage-box .adv-cir span:nth-child(15){ top:268px; left:728px; }
	.advantage-box .adv-cir span:nth-child(16){ top:490px; left:840px; }
	.advantage-box .adv-cir span:nth-child(17){ top:304px; right:0; }
	
	.advantage-box .adv-txt div:nth-child(1){ top:227px; left:56px; }
	.advantage-box .adv-txt div:nth-child(2){ top:162px; left:339px; }
	.advantage-box .adv-txt div:nth-child(3){ top:335px; left:545px; }
	.advantage-box .adv-txt div:nth-child(4){ top:60px; right:0; }
	
	.advantage-box .adv-img div:nth-child(1){ top:437px; left:0; }
	.advantage-box .adv-img div:nth-child(2){ top:108px; left:198px; }
	.advantage-box .adv-img div:nth-child(3){ top:376px; left:332px; }
	.advantage-box .adv-img div:nth-child(4){ top:125px; left:570px; }
	.advantage-box .adv-img div:nth-child(5){ top:324px; right:42px; }
}

/*pad: w< 992*/
@media screen and (max-width: 992px) {
	.container{ padding: 40px 0; }
	
	.header{ padding-top:60px; }
	.top{ position:fixed; top: 0; background-color:#fff; }
	.top-bar{ background-color:#fff; border-bottom-left-radius:0; border-top-right-radius:0; padding:10px 0; }
	.logo-box{ padding: 0; }
	.logo-box img{ height:40px; }
	
    .menu-button { display: block; }
	.nav { display: none; }
	.search-btn{ display: none; }
	.nav-box{ padding-right: 0; }
	
	.smart-nav { display: block; }
    .smart-nav { position: fixed; width: 70%; z-index: 998; left: auto; right: -70%; top: 0; bottom: 0; background: rgba(75, 180, 51, .8); padding-top: 60px; overflow: hidden;
        -webkit-transition: .3s all;
        transition: .3s all;
    }
    .smart-nav.open { right: 0; }
    .smart-nav ul { display: block; width: 100%; height: 100%; border-top: 1px solid rgba(255, 255, 255, .5); overflow-y: auto; }
    .smart-nav ul li { position: relative; border-bottom: 1px solid rgba(255, 255, 255, .5); cursor: pointer; }
    .smart-nav ul li .tit { font-size: .8rem; text-indent: 1em; display: block; padding: 12px 0; color: #ffffff; }
	.smart-nav ul li .has-child{ background: url(../images/person5_h.png) 200px center no-repeat; background-size: 8px 15px; }
	.smart-nav ul li.on .has-child{ background:none; }
    .smart-nav ul li .tit.ignore { background: none; }
    .smart-nav ul li .child { border-top: 1px solid rgba(206, 206, 206, 0.5); display: none; }
    .smart-nav ul li .child a{ display: block; padding: 5px 0; font-size: .8rem; line-height: 2; color: #eeeeee; text-indent: 2em; }
    .smart-nav ul li .child a:first-child { padding-top: 10px; }
    .smart-nav ul li .child a:last-child { padding-bottom: 10px; }
    .smart-nav ul li .tit:hover,
    .smart-nav ul li .child a:hover { background-color: #ffffff; color: #4eb435; }
	

	.title-s2 h3 em{ font-size: 1.2rem; }
	.title-s2 .more-btn{ padding:0 15px; }
	.title-s2 .more-btn i{ margin-left:10px; }
	
	.ind-about{ padding: 30px 0; }
	.about-txt { float: none; width: 100%; padding-left: 0; padding-bottom:0; }
	.about-pic { float: none; width: 100%; }
	.about-txt .info-box{ position:static; padding:30px; margin-bottom:30px; }
	.about-txt .number-box{ margin-bottom:30px; }
	.about-txt .number-box h3{ padding:0 0 30px 0; margin-bottom:30px; font-size:1rem; }
	.about-txt .number-box ul li em span{ font-size:1rem; }
	
	.advantage-box{ height:760px; }
	.advantage-box .adv-img div,
	.advantage-box .adv-txt div,
	.advantage-box .adv-cir span{ transform:scale(1); }
	/*.advantage-box .adv-txt div p{ transform:scale(0.45); }*/

	.advantage-box .adv-cir span:nth-child(1){ width:22px; height:22px; top:59px; left:-2px; }
	.advantage-box .adv-cir span:nth-child(2){ width:36px; height:36px; top:77px; left:52px; }
	.advantage-box .adv-cir span:nth-child(3){ width:31px; height:31px; top:151px; left:-1px; }
	.advantage-box .adv-cir span:nth-child(4){ width:18px; height:18px; top:230px; left:-18px; }
	.advantage-box .adv-cir span:nth-child(5){ width:11px; height:11px; top:263px; left:20px; }
	
	.advantage-box .adv-cir span:nth-child(6){ width:13px; height:13px; top:362px; left:0; }
	.advantage-box .adv-cir span:nth-child(7){ width:18px; height:18px; top:323px; left:109px; }
	.advantage-box .adv-cir span:nth-child(8){ width:24px; height:24px; top:280px; left:175px; }
	.advantage-box .adv-cir span:nth-child(9){ width:46px; height:46px; top:340px; left:180px; }
	.advantage-box .adv-cir span:nth-child(10){ width:32px; height:32px; top:46px; left:226px; }
	.advantage-box .adv-cir span:nth-child(11){ width:23px; height:23px; top:320px; left:auto; right:0; }
	
		.advantage-box .adv-cir span:nth-child(12){ width:26px; height:26px; top:575px; left:0; }
		.advantage-box .adv-cir span:nth-child(13){ width:20px; height:20px; top:525px; left:46px; }
		.advantage-box .adv-cir span:nth-child(14){ width:18px; height:18px; top:393px; left:114px; }
		.advantage-box .adv-cir span:nth-child(15){ width:32px; height:32px; top:520px; left:96px; }
		.advantage-box .adv-cir span:nth-child(16){ width:18px; height:18px; top:660px; left:212px; }
		.advantage-box .adv-cir span:nth-child(17){ width:23px; height:23px; top:542px; right:0; }
	
	.advantage-box .adv-txt div:nth-child(1){ width:136px; height:136px; top:144px; left:36px; }
	.advantage-box .adv-txt div:nth-child(2){ width:118px; height:118px; top:92px; left:175px; }
	
		.advantage-box .adv-txt div:nth-child(3){ width:153px; height:153px; top:562px; left:25px; }
		.advantage-box .adv-txt div:nth-child(4){ width:140px; height:140px; top:388px; right:0; }
	
	.advantage-box .adv-img div:nth-child(1){ width:86px; height:86px; top:277px; left:0; }
	.advantage-box .adv-img div:nth-child(2){ width:76px; height:76px; top:48px; left:96px; }
	.advantage-box .adv-img div:nth-child(3){ width:88px; height:88px; top:238px; left:210px; }
	
		.advantage-box .adv-img div:nth-child(4){ width:88px; height:88px; top:428px; left:41px; }
		.advantage-box .adv-img div:nth-child(5){ width:78px; height:78px; top:555px; right:27px; }

	.advantage-box .adv-txt div i{ display:block; width:60px; height:60px; margin:auto; background-size:cover; background-position:top center; }
	.advantage-box .adv-txt div span{ display:block; text-align:center; padding:0 30px; line-height:1.5; font-size:.6rem; }
	.advantage-box .adv-txt div:hover i{ background-position:bottom center; }
	

	/** 新闻列表 */
	.ind-news .picnews-list ul li,
	.picnews-list ul li{ float:none; width:100%; }
	.news-list ul li a{ padding:20px; }
	.news-list ul li a .view{ top:auto; bottom:20px; transform:none; }
	.news-list ul li a time{ display:none; }
	.news-list ul li a .time{ display:block; color:#999; font-size:.7rem; height:28px; line-height:28px; margin-top:10px; }
	.news-list ul li a:hover .time{ color:#fff; }

	.ind-news .picnews-list,
	.ind-news .news-list{ float: none; width: 100%; }
	.ind-news .picnews-list{ padding-right:0; margin-bottom:30px; }
	
	.ind-slogan{ padding:15px 0; }
	.ind-slogan .slogan-box{ display:block; }
	.ind-slogan .slogan-box .txt{ font-size:.8rem; text-align:center; margin-bottom:10px; }
	
	.bot-contact{ float:none; width:100%; }
	.bot-nav{ display:none; }
	
	.copyright p,
	.copyright .support{ float: none; }
	
	.page-title{ bottom: 10px; }
	.page-title-bar em{ font-size:1rem; min-width:120px; }
	.page-title-bar p{ font-size:.7rem; font-weight:normal; }

	.nabout-number,
	.nabout-box{ margin-bottom:30px; }
	
	.nabout-txt{ float: none; width: 100%; }
	.nabout-pic{ float: none; width: 100%; padding-right:20px; }
	.nabout-pic:after{ right:0; }

	.nabout-number ul{ flex-wrap: wrap; }
	.nabout-number ul li{ flex: 0 0 50%; margin-top:20px; }

	.environment-list{ position:relative; }
	.environment-list .item{ position:static!important; width:calc(50% - 10px); margin-top:20px; }
	.environment-list .item:nth-child(3){ float:left; width: 100%; margin-top:20px; }
	.environment-list .item:nth-child(4),
	.environment-list .item:nth-child(1){ float:left; }
	.environment-list .item:nth-child(5),
	.environment-list .item:nth-child(2){ float:right; }
	
	/*.culture-list .item{ position:static!important; width:100%; margin-top:20px; }
	.culture-list .item .info-box{ padding:20px; }
	.culture-list .item .info-box h3{ font-size:1rem; }
	.culture-list .item:nth-child(1){ position: relative!important; width: 100%; padding-top: 100%; margin-top:20px; }
	.culture-list .item:nth-child(1) .info-box h3{ font-size:1.3rem; }*/
	.culture-box{ display: block; padding:40px 25px; }
	.culture-box .culture-pic{ width:100%; }
	.culture-box .culture-list{ width:100%; }
	.culture-list .title-s3 h3 em{ padding-bottom:10px; }

	.culture-list .item{ height:auto; display: block; padding:15px 0; }
	.culture-list .item h3{ width:100%; font-size:1rem; margin-bottom:10px; }
	.culture-list .item h3 i{ width:23px; height:23px; }
	.culture-list .item p{ width:100%; font-weight:normal; }
	
	/** 面包屑*/
	.crumbs:after{ display:none; }
	.crumbs .position{ float: none; line-height:50px; }
	.crumbs .submenu{ float: none; }
	.crumbs .submenu a{ float:none; border-bottom:1px solid #ddd; margin-right:0; line-height:50px; }
	
	.picture-list ul li,
	.product-list ul li{ width:100%; }
	
	.contact-box,
	.guestbook-box{ margin-bottom:30px; }
	/** 联系方式 */
	.contact-box .info-list ul li{ width:100%; }
	
	.guestbook-box .info-list .average{ flex-direction:column; }
    .guestbook-box .info-list .average .spacing{ width: 100%; }
	.guestbook-box .info-list textarea,
	.guestbook-box .info-list input{ margin-top:20px; }

	.promise-list .item{ float:none; width:100%; padding-bottom:0; margin-bottom:30px; }
	.promise-list .item .info-box{ position:static; height:auto; padding: 30px; }
}
/*mobile: w < 768*/
@media screen and (max-width: 768px) {

}
/*mobile: w < 640*/
@media screen and (max-width: 640px) {

}
/*mobile: w < 480*/
@media screen and (max-width: 480px) {	

}