/*公共*/

@charset "utf-8";
/* CSS Document */



body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,  fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse; /*让表格边框细线*/
	border-spacing: 0; /*清除边框间距*/
}
fieldset, img {
	border: 0 none; /*有些浏览器默认这些标签有边框，所以要清除默认边框*/
	display: block;
}
address, caption, cite, code, dfn, em, i, u, b, strong, th, var {
	font-style: normal;
	font-weight: normal;/*清除标签默认文本样式和加粗*/

}
input, textarea {
	outline: 0 none;/*去掉文本框的默认轮廓线*/
}
ol, ul {
	list-style: none; /*清除列表默认样式*/
}
caption, th {
	text-align: left; /*清除标签默认文本居中对齐*/
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal; /*清除标题标签的默认样式*/
}
a {
	text-decoration: none;/*大部分页面中的链接没有下划线*/
}
.clearfix:after {
	height: 0;
	content: " ";
	display: block;
	overflow: hidden;
	clear: both;
}
.clearfix {
	zoom: 1;/*IE低版本浏览器不支持after伪类所以要加这一句*/
}
.body {
	font-family: "微软雅黑";
	background: #fff;
	overflow-x: hidden;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.fc {
	margin: 0 auto;
}
 @-moz-document url-prefix() {
.body {
overflow-x:hidden !important;
width:100%;
position:relative;
background-color:#000;
}
}
.wrap {
	width: 1200px;
	margin: 0 auto;
}
.wrapbg {
	background: url(../images/page1-bg.png) #fafafa center bottom no-repeat;
}
.wraps {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}
/*顶部*/

.htel {
	position: absolute;
	top: 10px;
	right: 25px;
	line-height: 50px;
	background: url(../images/001.png) left no-repeat;
	font-size: 15px;
	color: #888;
	padding-left: 35px;
}
.htel span {
	color: #006037;
	font-size: 23px;
}
.top {
	height: 40px;
	background: #e6f2f2;
}
.top p {
	font-size: 14px;
	line-height: 40px;
	color: #666;
}
.header {
	height: 140px;
	background: #fff;
}
/*.header .wraps{ overflow:hidden;}*/
.header .logo a {
	display: block;
	width: 220px;
}
.header .logo {
	margin-top: 25px;
}
.header .logo p {
	font-size: 14px;
	line-height: 40px;
	color: #666;
	text-align: center;
}
.header .nav {
	width: 770px;
}
.header .nav .menu>li {
	float: left;
	width: 80px;
	margin: 70px 15px 0;
	position: relative;/*border-bottom: 2px solid #1cb189;*/

}
.header .nav .menu>li ul {
	position: absolute;
	z-index: 999;
}
.header .nav .menu>li>a {
	font-size: 16px;
	line-height: 3;
	color: #666;
	display: block;
	text-align: center;
	margin: 0 auto;
}
.header .nav .menu>li>a.on, .header .nav .menu>li>a:hover {
	color: #1cb189;
	border-bottom: 2px solid #1cb189;
}
.header .nav .menu>li {
}
.header .nav .menu>li .menu1 a {
	background: #fff;
	text-align: center;
	width: 80px;
	color: #666;
	display: block;
	line-height: 1;
	border-bottom: 1px solid #fff;
}
.header .nav .menu>li .menu1 li a:hover {
	color: #1cb189;
	border-bottom: 1px solid #1cb189;
}
/*公共标题*/

.title h2 {
	font-size: 30px;
	color: #333;
	text-align: center;
	margin-top: 70px;
	line-height: 2;
}
.title h4 {
	font-size: 18px;
	color: #666;
	text-align: center;
	margin-top: 10px;
	line-height: 2;
}
.title .green {
	width: 30px;
	height: 3px;
	background: #1cb189;
	display: block;
	margin: 15px auto;
}
/*第一部分*/

.page1 {
	padding-top: 1px;
	height: 700px;
}
.page1 .content {
	width: 560px;
	margin-top: 70px;
}
.page1 .content .about img {
	display: inline-block;
}
.page1 .content .about h4 {
	display: inline-block;
	font-size: 24px;
	color: #333;
	margin-left: 10px;
	line-height: 30px;
	margin-bottom: 12px;
}
.page1 .content .about span {
	width: 560px;
	background: #1cb189;
	height: 1px;
	display: block;
	margin-top: 3px;
}
.page1 .content .about p {
	font-size: 14px;
	color: #666;
	line-height: 32px;
	text-indent: 2em;
}
.page1 .content .about p i {
	color: #1cb189;
}
.page1 .content a {
	position: relative;
	width: 126px;
	line-height: 40px;
	color: #333;
	font-size: 14px;
	border: 1px solid #000;
	display: block;
	text-align: center;
	margin: 30px 0 0 0;
}
.page1 .content a:after {
	position: absolute;
	content: "";
	width: 40px;
	height: 1px;
	left: 115px;
	top: 20px;
	background: #1cb189;
}
.page1 .content a:hover {
	background: #1cb189;
	border-color: #1cb189;
	color: #fff;
}
.page1 .content a:hover:after {
	animation: mymove 1s 1 alternate forwards;
	-webkit-animation: mymove 1s 1 alternate forwards;
}
 @keyframes mymove {
 from {
 left: 115px;
 top: 20px;
}
to {
	left: 415px;
	top: 20px;
}
}
/*第二部分*/

.page2 {
	padding-top: 1px;
}
 @media screen and (min-width:1660px) {
.page2 {
	background: #fff url(../images/page2-bg.png) 0px 60px no-repeat;
}
}
 @media screen and (max-width:1660px) {
.page2 {
	background: #fff url(../images/page2-bg.png) -150px 60px no-repeat;
}
}
.page2 .list {
	margin-top: 60px;
	margin-bottom: 50px;
}
.page2 .list-li {
	float: left;
	width: 290px;
	height: 253px;
	margin: 20px 5px;
}
.page2 .list-li div.im {
	position: relative;
	width: 290px;
	height: 200px;
	overflow: hidden;
	cursor: pointer;
}
.page2 .list-li div.im div {
	position: absolute;
	background: rgba(0,0,0,.5);
	width: 290px;
	height: 200px;
	top: -200px;
}
.page2 .list-li div.im div p {
	font-size: 18px;
	text-align: center;
	margin-top: 30px;
	color: #fff;
}
.page2 .list-li div.im div a {
	width: 40px;
	height: 40px;
	display: block;
	background: rgba(255,255,255,.6);
	border-radius: 50%;
	padding: 1px;
	margin: 20px auto;
}
.page2 .list-li div.im div a img {
	margin: 8px auto;
}
.page2 .list-li div.border {
	width: 288px;
	height: 50px;
	background: #f0f7f5;
	border: 1px solid #1cb189;
	border-radius: 0 0 6px 6px;
	margin-top: 1px;
}
.page2 .list-li div.border a {
	font-size: 16px;
	text-align: center;
	line-height: 50px;
	display: block;
	color: #008360;
}
.page2 .list-li div.im:hover div {
	animation: move1 ease-in-out .5s 1 alternate forwards;
	-webkit-animation: move1 ease-in-out .5s 1 alternate forwards;
}
 @keyframes move1 {
 from {
 top: -200px;
}
to {
	top: 0px;
}
}
/*第三部分*/

.page3 {
	background: #fff url(../images/tlbj.jpg) center 0 no-repeat;
	padding-top: 1px;
	height: 800px;
}
.page3 h2, .page3 h4 {
	color: #fff;
}
.page3 .list .fl {
	position: relative;
	width: 293px;
	height: 400px;
	margin: 50px 153px;
}
.page3 .list .fl .round {
	position: absolute;
	top: 0px;
	left: 0;
}
.page3 .list .fl .imge {
	position: absolute;
	top: 13px;
	left: 13px;
	overflow: hidden;
}
.page3 .list .fl .imge div {
	position: absolute;
	top: -268px;
	width: 268px;
	height: 268px;
	border-radius: 50%;
	background: rgba(0,0,0,.4);
}
.page3 .list .fl .imge div h6 {
	padding-top: 90px;
	font-size: 24px;
	color: #fff;
	font-weight: 600;
	text-align: center;
}
.page3 .list .fl .imge div span {
	width: 169px;
	height: 1px;
	background: #fff;
	display: block;
	margin: 10px auto;
}
.page3 .list .fl .imge div p {
	font-size: 14px;
	color: #fff;
	text-align: center;
}
.page3 .list .fl a {
	position: absolute;
	width: 126px;
	line-height: 50px;
	display: block;
	text-align: center;
	font-size: 18px;
	color: #333;
	background: #fff;
	top: 340px;
	left: 50%;
	margin-left: -63px;
}
.page3 .list .fl:hover a {
	background: #19d283;
	color: #fff;
}
.page3 .list .fl .round {
	transition: All 0.8s ease-in-out;
	-webkit-transition: All 0.8s ease-in-out;
	-moz-transition: All 0.8s ease-in-out;
	-o-transition: All 0.8s ease-in-out;
}
.page3 .list .fl:hover .round {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}
.page3 .list .fl:hover .imge div {
	animation: move2 ease-in-out .5s 1 alternate forwards;
	-webkit-animation: move2 ease-in-out .5s 1 alternate forwards;
}
 @keyframes move2 {
 from {
 top: -268px;
}
to {
	top: 0px;
}
}
.case-content {
	overflow: hidden;
	margin: 80px auto 0 auto;
	width: 1200px
}
.case-item {
	float: left;
	margin: 30px 160px;
	margin-bottom: 20px;
}
.ih-item {
	position: relative;
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out
}
.ih-item, .ih-item * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.ih-item a {
	color: #333
}
.ih-item a:hover {
	text-decoration: none
}
.ih-item img {
	width: 100%;
	height: 100%
}
.ih-item.circle, .ih-item.circle .img {
	position: relative;
	width: 280px;
	height: 280px;
	border-radius: 50%
}
.ih-item.circle .img:before {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: inset 0 0 0 16px rgba(255,255,255,.6), 0 1px 2px rgba(0,0,0,.3);
	-webkit-transition: all .35s ease-in-out;
	-moz-transition: all .35s ease-in-out;
	transition: all .35s ease-in-out
}
.ih-item.circle .img img {
	border-radius: 50%
}
.ih-item.circle .info {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	border-radius: 50%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}
.ih-item.square {
	position: relative;
	width: 316px;
	height: 216px;
	border: 8px solid #fff;
	box-shadow: 1px 1px 3px rgba(0,0,0,.3)
}
.ih-item.square .info {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}
.ih-item.circle.effect1 .spinner {
	width: 290px;
	height: 290px;
	border: 10px solid #ecab18;
	border-right-color: #1ad280;
	border-bottom-color: #1ad280;
	border-radius: 50%;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}
.ih-item.circle.effect1 .img {
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 10px;
	right: 0;
	width: auto;
	height: auto
}
.ih-item.circle.effect1 .img:before {
	display: none
}
.ih-item.circle.effect1.colored .info {
	background: #1a4a72;
	background: rgba(26,74,114,.6)
}
.ih-item.circle.effect1 .info {
	top: 10px;
	bottom: 0;
	left: 10px;
	right: 0;
	padding-top: 35px;
	background: #333;
	background: rgba(0,0,0,.6);
	opacity: 0;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out
}
.ih-item.circle.effect1 .info h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
	font-size: 24px;
	margin: 0 30px;
	padding: 65px 0 0;
	height: 110px;
	text-shadow: 0 0 1px white, 0 1px 2px rgba(0,0,0,.3)
}
.ih-item.circle.effect1 .info p {
	color: #bbb;
	padding: 10px 5px;
	margin: 0 30px;
	font-size: 16px;
	border-top: 1px solid rgba(255,255,255,.5)
}
.case-item:hover .ih-item.circle.effect1 a .spinner {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg)
}
.case-item:hover .ih-item.circle.effect1 a .info {
	opacity: 1
}
.case-item .case-title {
	text-align: center;
	margin: 45px 0;
}
.case-item .case-title a {
	background: #fff;
	padding: 11px 35px;
	font-size: 16px;
	transition: 0.5s;
	color: #333;
	border-radius: 5px;
}
.case-item:hover .case-title a {
	background: #19d283;
	color: #fff;
}
/*第四部分*/

.page4 {
	background: #fff url(../images/page4-bg.jpg) center 140px no-repeat;
	padding-top: 1px;
	height: 960px;
}
#jdjxc .clear {
	clear: both;
}
#jdjxc ul {
	list-style: none;
}
#jdjxc {
	width: 1200px;
	margin: 45px auto 0;
}
#imgRolling {
	clear: both;
}
#imgRolling .imagebg {
	height: 415px;
	overflow: hidden;
	position: relative;
	width: 700px;
	margin: 0 auto;
}
#imgRolling .imagebg li {
	height: 415px;
	overflow: hidden;
	width: 700px;
	text-align: center !important;
	position: relative;
}
#imgRolling .imagebg li p {
	position: absolute;
	transition: .5s;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: url(../images/abg.png);
	color: #fff;
}
#imgRolling .imagebg li:hover p {
	background: #006037;
}
#imgRolling .imagebg li img {
	width: 700px;
}
#imgRolling .scrollbg {
	height: 282px;
	background: url(images/scroll_bg.png) no-repeat center center;
}
#imgRolling .scroll {
	width: 1090px;
	height: 282px;
	position: relative;
	margin: 0 auto;
}
#imgRolling .pre, .next {
	display: block;
	position: absolute;
	width: 48px;
	height: 76px;
}
#imgRolling a.pre {
	background: url(../images/arr_l.png);
	top: 90px;
	left: 0;
}
#imgRolling a.pre:hover {
	background: url(../images/arr_l_on.png);
}
#imgRolling a.next {
	background: url(../images/arr_r.png);
	top: 90px;
	right: 0;
}
#imgRolling a.next:hover {
	background: url(../images/arr_r_on.png);
}
#imgRolling .outScroll_pic {
	width: 952px;
	height: 282px;
	overflow: hidden;
	margin-left: 70px;
	position: relative;
	top: 2px;
}
#imgRolling .outScroll_pic .scroll_img {
	position: absolute
}
#imgRolling .scroll_img {
	margin: 0 auto;
	width: 40000px;
	height: 282px;
}
#imgRolling .scroll_img li {
	float: left;
	height: 135px;
	width: 171px;
	margin: 60px 9px;
	_margin: 5px 14px 5px 4px;
	cursor: pointer;
}
#imgRolling .scroll_img li img {
	width: 171px;
	height: 135px;
}
#imgRolling .scroll .present {
	width: 170px;
	height: 135px;
	border: 2px #1cb189 solid;
	background: url(../images/arr_on.png) 50% -4px no-repeat;
	z-index: 10;
	position: absolute;
	top: 60px;
	left: 0;
	box-shadow: 0px 0px 5px #ddd;
}
/**新闻**/

.h_news {
	width: 100%;
	height: 600px;
	background: url(../images/nbg.jpg) center top no-repeat;
	padding-top: 80px;
}
.h_newss {
	width: 1200px;
}
.h_newssl {
	width: 600px;
	float: left;
	position: relative;
}
.h_newssl span {
	position: absolute;
	left: 40px;
	top: 340px;
	background: #01bf91;
	z-index: 91;
	text-align: center;
	color: #fff;
	padding: 7px 20px;
	line-height: 28px;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}
.h_newssl span i {
	font-size: 30px;
	line-height: 30px;
	font-weight: 700;
	border-bottom: 1px #fff solid;
	display: block;
	line-height: 35px;
}
.h_newssl em {
	display: block;
	background: url(../images/xian.png) left bottom no-repeat;
	font-size: 30px;
	line-height: 40px;
	color: #333;
}
.h_newssl em b {
	color: #777;
	font-size: 14px;
}
.h_newssl_top {
	width: 600px;
	height: 290px;
	overflow: hidden;
	position: relative;
	position: relative;
	margin-top: 25px;
}
.h_newssl_top img {
	width: 600px;
	height: auto;
}
.h_newssl_mid {
	width: 548px;
	padding: 5px 25px 15px;
	border: 1px #999 solid;
	background: #fff;
	height: 150px;
}
.h_newssl_mid em a {
	float: left;
	width: 408px;
	height: 45px;
	overflow: hidden;
	color: #333;
	font-size: 18px;
	padding-left: 140px;
}
.h_newssl_mid p {
	float: left;
	width: 100%;
	display: block;
	padding: 10px 0;
	color: #999;
	line-height: 28px;
	font-size: 13px;
}
.h_newssl_mid b a {
	color: #01bf91;
}
.hnewsmid_conr {
	width: 560px;
}
.hnewsmid_conr em {
	display: block;
	background: url(../images/xian.png) left bottom no-repeat;
	font-size: 30px;
	line-height: 40px;
	color: #333;
}
.hnewsmid_conr em b {
	color: #777;
	font-size: 14px;
}
.hnewsmid_conr ul {
	margin-top: 25px;
	background: url(../images/xian.jpg) 5px no-repeat;
}
.hnewsmid_conr ul li {
	width: 560px;
	color: #555;
	height: 51px;
	line-height: 51px;
	background: url(../images/01.png) left no-repeat;
}
.hnewsmid_conr ul li a {
	color: #333;
	font-size: 15px;
	padding-left: 25px;
}
.hnewsmid_conr ul li a:hover {
	color: #1cb189;
}
.hnewsmid_conr ul li span {
	float: right;
	font-size: 14px;
}
/**联系我们**/

.h_cont {
	height: 670px;
	background: url(../images/lxbg.jpg) center bottom no-repeat;
}
.h_cont_map {
	width: 660px;
	height: 379px;
	border: 1px #01bf91 solid;
	margin-top: 45px;
	padding-top: 39px;
	background: #00923f;
}
.h_cont_con {
	width: 495px;
	height: 420px;
	margin-top: 1px;
}
.h_cont_con ul {
	margin-top: 10px;
}
.h_cont_con ul li {
	height: auto;
	line-height: 45px;
	padding-left: 45px;
	color: #555;
}
.h_cont_con ul li span {
	font-family: Arial, Helvetica, sans-serif;
	color: #01bf91;
	font-size: 18px;
	font-weight: 700;
}
.h_cont_con ul li i {
	margin-left: 81px;
}
.h_cont_con ul .bg0 {
	background: url(../images/0.png) left no-repeat;
}
.h_cont_con ul .bg1 {
	background: url(../images/1.png) left no-repeat;
}
.h_cont_con ul .bg2 {
	background: url(../images/2.png) left no-repeat;
}
.h_cont_con ul .bg3 {
	background: url(../images/3.png) left no-repeat;
}
.h_cont_con ul .bg4 {
	background: url(../images/4.png) left no-repeat;
}
.h_cont_con ul .bg5 {
	background: url(../images/5.png) left no-repeat;
}
.linky {
	background: #ddd;
	padding: 8px 0;
}
.linkys {
	width: 1200px;
	margin: 0 auto;
	font-size: 13px;
	color: #777;
}
.linkys a {
	color: #777;
}
.foot {
	background: url(../images/fbg.jpg) center no-repeat;
	height: 112px;
	text-align: center;
	color: #ddd;
	padding: 25px 0;
	font-size: 14px;
	line-height: 28px;
}
.foot span {
	margin: 0 8px;
}
.foot span img {
	display: block;
}
.foot span a {
	color: #ddd;
}
.foot span a:hover {
	color: #fff;
}
/**导航**/

#menu {
	background: #fff;
	height: 50px;
	width: 840px;
	float: right;
	margin-top: 70px;
}
#navul {
	width: 100%;
}
.libg {
	background: url(../images/li.jpg) right no-repeat;
}
#navul li {
	float: left;
	width: 120px;
	position: relative;
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 16px !important;
	position: relative;
}
#navul li a:link, #navul li a:visited {
	color: #444;
	font-family: 微软雅黑;
}
#navul li i {
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	z-index: 11;
	text-transform: uppercase;
}
#navul li ul {
	display: none;
	position: absolute;
	z-index: 10000;
	left: 0px;
	border-bottom: none;
}
#navul li.navmoon {
	width: 120px;
	height: 50px;
	line-height: 50px;
	background: url(../images/navbg.jpg) center bottom no-repeat;
}
#navul li.navmoon a {
	color: #1cb38a;
	text-decoration: none;
	display: block;
}
#navul li.navmoon ul {
	display: block;
}
#navul li.lion {
	background: #9dcc1c;
}
.nav_fuwu {
	width: 100px;
	height: auto;
	background: url(../images/navbgs.jpg) #1cb18b !important;
	padding: 0px !important;
	margin: 0 10px;
}
.nav_fuwu span a {
	color: #fff !important;
	font-size: 14px !important;
	line-height: 38px !important;
	border-bottom: 1px #10a37c solid;
}
.nav_fuwu span a:hover {
	background: #0c9d76;
}
/*回到顶部-悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:110px;width:70px;height:240px;z-index:999999;}
.suspension-box{position:relative;float:right;z-index:999999;}
.suspension .a{display:block;width:44px;height:44px;background-color:#006037;margin-bottom:4px;cursor:pointer;outline:none;}
.suspension .a.active,
.suspension .a:hover{background:#01bf91;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../images/kefu/side_icon.png);background-repeat:no-repeat;}
/*.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/kefu/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
*/
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/kefu/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i,.suspension .a-service .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#353535;display:none;}
.suspension .a-top:hover{background:#01bf91;}
.suspension .d{display:none;width:223px;background:#fff;position:absolute;z-index:999999;right:67px;min-height:90px;border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../images/kefu/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
/*.suspension .d-service{top:0;}*/
.suspension .d-service-phone{top: 0;}
.suspension .d-qrcode,.suspension .d-service{/*top:78px;*/top:34px;}
.suspension .d .inner-box{padding:8px 22px 12px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding:14px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../images/kefu/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../images/kefu/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:33.33%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(../images/kefu/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode,.suspension .d-service{text-align:center;}
.suspension .d-qrcode .inner-box,.suspension .d-service .inner-box{padding:20px 0;}
.suspension .d-qrcode .qrcode-img,.suspension .d-service .qrcode-img{width: 180px;height: 180px;overflow: hidden;margin:0px auto;}
.suspension .d-qrcode .qrcode-img img,.suspension .d-service .qrcode-img img{width: 100%;}
.suspension .d-qrcode p,.suspension .d-service p{font-size:16px;color:#93959c;}