@charset"UTF-8";

/*css reset*/
html {}
* { box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box;  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { color: #111; font: 14px/20px Arial,"Microsoft Yahei",sans-serif;; word-wrap: break-word; word-break: break-all; }
blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul { margin: 0; padding: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
button, input, select, textarea { color: inherit; font: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; }
ul, dl, ol { list-style: none; padding: 0; }
input, textarea, select, button { border: 0; outline: none; }
img, a img { font-size: 0; border: 0; vertical-align: middle; }
i, em { text-decoration: none; font-style: normal; }
a { text-decoration: none; cursor: pointer; background-color: transparent; }
textarea { overflow: auto; }
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px white inset; }
input { -moz-box-shadow: none; box-shadow: none; -webkit-box-shadow: 0 0 0 1000px white inset; }

a{
	color: #333;
	transition: all .2s;
}
a:hover{
    color: #1184e1;
}

a.blue{
	color: #1184e1;
}
a.blue:hover{
    color: #1184e1;
    text-decoration:underline;
}

/*移动菜单按钮*/

.mobile-button {
	display: none;
	float: right;
	position: relative;
	background: transparent;
	cursor: pointer;
	width: 26px;
	height: 16px;
	-webkit-transition: all ease .238s;
	-moz-transition: all ease .238s;
	transition: all ease .238s;
}
.mobile-button:before, .mobile-button:after, .mobile-button span {
	background-color: #222;
	-webkit-transition: all ease .238s;
	-moz-transition: all ease .238s;
	transition: all ease .238s;
}
.mobile-button:before, .mobile-button:after {
	content: '';
	position: absolute;
	top: 0;
	height: 3px;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
.mobile-button span {
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	top: 50%;
	overflow: hidden;
	text-indent: 200%;
}
.mobile-button:before {
	-webkit-transform: translate3d(0, -7px, 0);
	-moz-transform: translate3d(0, -7px, 0);
	transform: translate3d(0, -7px, 0);
}
.mobile-button:after {
	-webkit-transform: translate3d(0, 7px, 0);
	-moz-transform: translate3d(0, 7px, 0);
	transform: translate3d(0, 7px, 0);
}
.mobile-button.active span {
	opacity: 0;
}
.mobile-button.active:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	-moz-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}
.mobile-button.active:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	-moz-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

/*顶部栏目 START*/
.header-top-wrap{
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: #f0f0f0;
}
.header-top-main{
    display: flex;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
    color: #666;
}
.header-top-left{
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.header-top-right{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.header-top-right .line{
	color: #ccc;
	margin:0 15px;
}
/*顶部栏目 END*/

.header-wrap{
	position: relative;
}
.logo-wrap{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 130px;
	margin:0 auto;
	z-index: 6;
}
.logo-pic{
}
.logo-pic img{
	
}

.nav-wrap{

}
.nav-wrap li{
	float: left;
	display: inline-block;
	position: relative;
}
.nav-wrap a.nav-b{
	display: block;
	height: 130px;
	line-height: 130px;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	padding: 0 25px;
	color: #333;
}
.nav-wrap li:hover a.nav-b{
	background: #0040FF;
	color: #fff;
}
.nav-wrap a.active{
	font-weight: 600;
}

.nav-wrap li ul{
	position:absolute; right: -20px; left:0; top:130px;background-color:#004C99; display:none; overflow:hidden;
	z-index: 99999;
}
.nav-wrap li:hover>ul{ display:block;}
.nav-wrap li ul a{
	display:block; 
	width:100%; 
	height:40px;
	line-height:40px;
	font-size:14px;
	text-indent:20px;
	font-weight:normal; 
	clear:both; 
	margin:0; 
	clear:both; 
	text-align:left; 
	overflow:hidden; 
	text-overflow:ellipsis; 
	white-space:nowrap;
}
.nav-wrap li ul a:hover{ background:none;}
.nav-wrap li:hover ul a{ background:none; color:#fff;}
.nav-wrap li:hover ul a:hover{color:#FFF;background-color:#333;}


/*内页BANNER START*/
.Banner {
    width: 100%;
    text-align: center;
    overflow: hidden;
    clear: both;
}
.Banner img{
	max-width: 100%;
}
/*内页BANNER END*/

/*分栏*/
.div-body{
	background: rgb(245,245,245);
	padding: 0 0 30px;
}
.div-body-white{
	background: rgb(255,255,255);
	padding: 0 0 30px;
}
.div-wrap{

	margin:0 auto;
	overflow: hidden;
}

.float-l{
	float: left;
}
.float-r{
	float: right;
}


.div-w-300{
	width: 300px;
}
.div-w-880{
	width: 880px;
}


/*****面包屑导航 START****/
#breadCrumb{ 
	width:100%; 
	color:#555; 
	background-color:#F9F9F9; 
	padding:10px 0; 
	clear:both; 
	overflow:hidden;
}
#breadCrumb_c{ 
	width:1200px; 
	margin:0 auto; 
	position:relative;
}
#breadCrumb a{ 
	color:#555; 
	margin:0 6px; 
	text-decoration:none;
}
#breadCrumb span{
	margin:0 6px; 
}
#breadCrumb a:hover{ 
	text-decoration:underline;
}
#breadCrumb .l{ 
	float:left; 
	line-height:40px; 
	font-size:15px; 
	overflow:hidden;
}
/*****面包屑导航 END****/

/*子栏目显示【横向显示】 START*/
.nav_sort{
	display: flex;
	justify-content: space-between;
	margin:30px auto; 
	clear:both; 
	overflow:hidden;
}
.nav_sort a{ 
	flex: 1;
	display: inline-block;
	text-align:center; 
	box-sizing:border-box; 
	margin:0 1%;
	padding: 15px 0;
	background: #f2f2f2; 
	color: #333;
	border: 1px solid #ccc; 
	font-size:16px;
}

.nav_sort a:hover,.nav_sort a.active{
	font-weight: bold;
    background: #D50100;
    border: 1px solid #D50100;
    color: #fff;
    text-decoration: none;
}

.nav_sort_title{
	height: 50px;
	line-height: 50px;
	color: #fff;
	background: #004C99;
	text-indent: 15px;
	font-size: 16px;
	font-weight: 700;
}
.nav_sort_title em{
	display: none;
	float: right;
	margin-right:15px;
	margin-top: 15px;
	height: 20px;
	width: 20px;
	background-image: url(../images/down.png);
	background-size: 100%;
}
.nav_sort_title em.active{
	background-image: url(../images/up.png);
}
.nav_sort_updown{ 
	margin:0 auto;
	padding: 5px 20px;
	background: #fff;
	border:#004C99 2px solid;
	width:100%; 
	clear:both; 
	overflow:hidden;
}
.nav_sort_updown a{ 
	display: block;
	box-sizing:border-box; 
	text-indent: 30px;
	height:45px;
	line-height:45px;
	border-bottom: #ddd 1px dashed;
	background: #fff; 
	color: #333;
	font-size:14px;
	list-style:disc;
}
.nav_sort_updown a:last-child{
	border-bottom: none;
}
.nav_sort_updown a:hover,.nav_sort_updown a.active{
	font-weight: bold;
    color: #D50100;
    text-decoration: none;
}

.nav_sort_updown a.bsort{
	background: #004C99;
	color: #fff;
	border-radius: 30px;
	border-bottom: none;
	font-weight: 700;
}
.nav_sort_updown a.bsort:hover{
	background: #D50100;
}

.side-contact-title {
    background-color: #666;
    margin-top:20px;
    height: 52px;
    line-height: 52px;
    text-indent: 20px;
    font-weight: bold;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.side-contact {
    border: #ccc 1px solid;
    background: #fff;
    line-height: 180%;
    padding: 0 0 10px;
    overflow: hidden;
}
.side-contact img {
    margin: 0 0 15px;
    width: 100%;
}
.side-contact p {
    padding: 0 15px 8px;
}
/*子栏目显示 END*/

/*遮罩层*/
.body-mask{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,.6);
	z-index: 6;
}

/*分页*/
.pages{
	clear: both;
	display: block;
	padding: 50px 0 30px;
	text-align: center;
}
.pages li{
	display: inline-block;
}
.pages li.disabled{
	cursor: not-allowed;
}
.pages li span,.pages li a{
	border:#1184e1 1px solid;
	margin: 0 5px;
	color: #1184e1;
	border-radius: 4px;
	padding: 8px 10px;
}
.pages li span{
	border-color: #999;
	color: #999;
}
.pages li a:hover{
	background: #1184e1;
	color: #fff;
}

/*通用遮罩*/
.body-mask{
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
}
.body-wrap{
	position: relative;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
}
.body-close{
	position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: #999;
    font-size: 18px;
}
.body-close:hover{
	color: #333;
}

/*底部栏目 START*/
.footer{
	background:url(../images/footer_bg.jpg); 
	width:100%; 
	clear:both; 
	overflow:hidden;
}
.footer_c{ 
	padding:20px 0 30px; 
	color:#dadada; 
	margin:0 auto; 
	overflow:hidden; 
	clear:both;
}
.footer_nav{ 
	padding:15px 0; 
	margin:15px 0; 
	border-bottom:rgba(255,255,255,.2) 1px solid; 
	text-align:center; 
	overflow:hidden; 
	clear:both;
}
.footer_nav a{ 
	display:inline-block; 
	border-left:rgba(255,255,255,.2) 1px solid; 
	padding:0 20px; 
	font-size:14px; 
	color:#dadada;
}
.footer_nav a:first-child{ 
	border:none;
}
.footer_nav a:hover{ 
	text-decoration:underline;
}

.footer_con{
	display: flex;
	align-items: center;
	justify-content: center;
	width:100%; 
	padding:20px 0 0; 
	overflow:hidden; 
	clear:both;
}
.footer_logo{ 
	margin-right:80px;
	text-align:right; 
}
.footer_text{ 
	min-height:126px; 
	line-height:230%; 
	font-size:14px; 
}
.footer_text a{ 
	color:#dadada;
}
.footer_text a:hover{ 
	text-decoration:underline;
}
/*底部栏目 END*/


/*律师入驻*/
.message-wrap{
	color: #222;
}
.message-title{
	font-size: 22px;
	text-align: center;
	padding: 20px 0 0;
}
.message-item{
	padding-top: 20px;
}
.message-item .title{
	padding-bottom: 8px;
}
.message-item .content{
	text-align: center;
}
.message-item .input{
	border: #ddd 1px solid;
	border-radius: 5px;
	padding: 10px 10px;
	width: 500px;
	font-size: 16px;
}
.message-item textarea{
	border: #ddd 1px solid;
}
.message-item .join-but{
	width: 100%;
	background-color: #008CBA;
	border: none;
    color: #FFFFFF;
    padding: 12px 0;
    text-align: center;
    transition-duration: 0.4s;
    text-decoration: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}
.message-tips{
	text-align: center;
	font-size: 12px;
	color: #999;
	padding-top: 8px;
}

/*产品页*/

/*详细页*/
.view-wrap{
	background: #fff;
	padding: 30px;
}

.view-info{
	background: #ddd;
	padding: 15px 20px;
}
.view-info i{
	color: #666;
}
.view-info em{
	display: inline-block;
	width: 90px;
}
.view-info a{
	float: right;
	margin-top: -7px;
	display: inline-block;
	width: 110px;
	height: 34px;
	line-height: 34px;
	background: #1184e1;
	color: #fff;
	text-align: center;
}

.view-title{
	padding: 30px 0;
	text-align: center;
}
.view-title h1{
	font-size: 30px;
	font-weight: 700;
	line-height: 160%;
}

.view-content{
	line-height: 200%;
	font-size: 16px;
}
.view-content p{
	padding-bottom: 15px;
	text-indent: 2em;
}


/*列表页*/
.product-list-wrap{
	padding: 10px 30px;
	background: #fff;
	border:#ddd 1px solid;
	overflow: hidden;
}

.product-list-title{
	padding: 30px 0;

	line-height: 100%;
	border-bottom: #eee 1px solid;
}
.product-list-title h1{
	font-size: 24px;
	font-weight: 700;
	color: #222;
}

..product-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.product-list-item{
	float: left;
	width: 270px;
	text-align: center;
	padding: 30px 0;
}


.product-list-item img{
	width: 250px;
	height: 250px;
	border: #eee 1px solid;
}
.product-list-item img:hover{
	border: #ddd 1px solid;
}
.product-list-item a{
	display: block;
}
.product-list-item a h2{
	height: 30px;
	line-height: 30px;
	width: 100%;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
	font-size: 16px;
	color: #333;
}
.product-list-item a:hover h2{
	color: #1184e1;
}


.product-nothing{
	text-align: center;
	padding: 100px 0;
	color: #999;
}

.product-detail-wrap{
	padding: 30px;
	border: #ddd 1px solid;
	background: #fff;
}
.product-detail-wrap h1{
	font-size: 26px;
	margin-bottom: 30px;
}

#product_detail_bpic {
    display: inline-block;
    width: 580px;
    height: 580px;
    line-height: 580px;
    text-align: center;
    border: #ddd 1px solid;
    overflow: hidden;
}

#product_detail_bpic img{vertical-align:middle; max-width:100%; max-height: 100%; border:none;}

.d_pro_lpic{ width:580px; height:60px; margin-top:10px; overflow:hidden; position:relative;}
.d_pro_lpic #goleft,.d_pro_lpic #goright{ position:absolute; height:60px; width:10px; top:0; background-image:url(../images/pro_go_lr.png); background-repeat:no-repeat; cursor:pointer;}
.d_pro_lpic #goleft{ left:0; background-position:0 center;}
.d_pro_lpic #goright{ right:0; background-position:-10px center;}
.d_pro_lpic #goleft:hover,.d_pro_lpic #goright:hover{ background-color:#e9e9e9;}
.d_pro_lpic #thumb_img{ width:540px; height:60px; margin:0 auto; overflow:hidden;}
#thumb_img img{ width:60px; height:50px; padding:1px; margin:3px 3px; border:#d2d2d2 1px solid;}
#thumb_img .cur{ border:#f30 1px solid;}

.product-detail-con-title{
	margin-top: 50px;
	border-bottom: #0040FF 3px solid;
}
.product-detail-con-title h2{
	display:inline-block;
	padding: 5px 20px;
	color: #fff;
	background: #0040FF;
	border-radius: 8px 8px 0 0;
	font-weight: 700;
	font-size: 16px;
}
.product-detail-content{
	
	padding: 30px 0;
	font-size: 16px;
	line-height: 180%;
}

.product-detail-content p{
	text-indent: 2em;
	padding-bottom: 15px;
}
.product-detail-content img{
	max-width: 100%;
}
.product-detail-content table{
	max-width: 100%;
	border-left: #ccc 1px solid;
	border-top: #ccc 1px solid;
	width: 100%;
	display: flex;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	transform: translateZ(0);
}
.product-detail-content  table::-webkit-scrollbar{
	display: none !important;

}
.product-detail-content table td{
	border-right: #ccc 1px solid;
	border-bottom: #ccc 1px solid;
}
.product-detail-content table tr:hover{
	background-color: #f9f9f9;
}

.contentts{
	padding-top: 10px;
	font-size: 12px;
	color: #f00;
}
/*产品页*/

/*新闻页*/




.news-list-wrap{
	padding: 10px 30px;
	background: #fff;
	border:#ddd 1px solid;
	overflow: hidden;
}

.news-list-title{
	padding: 30px 0;

	line-height: 100%;
	border-bottom: #eee 1px solid;
}
.news-list-title h1{
	font-size: 24px;
	font-weight: 700;
	color: #222;
}

..news-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.news-list-item{
	padding: 40px 0;
	border-bottom: #eee 1px dashed;
}
.news-list-item{
	padding:20px 0;
}
.news-list-item a{
	color: #0040FF;
	font-weight: 700;
}
.news-list-item a:hover{
	text-decoration: underline;
}
.news-list-item a h2{
	font-size: 16px;
	padding-bottom: 10px;
}

.news-list-item p{
	color: #666;
	font-size: 14px;
	line-height: 160%;
}


.news-nothing{
	text-align: center;
	padding: 100px 0;
	color: #999;
}

.news-detail-wrap{
	padding: 30px;
	border: #ddd 1px solid;
	background: #fff;
}
.news-detail-wrap h1{
	font-size: 26px;
	padding: 20px 0;
	text-align: center;
	border-bottom: #ddd 1px dashed;
}
.news-detail-info{
	padding: 10px 0;
	color: #999;
	text-align: center;
}
.news-detail-info span{
	padding: 0 10px;
}

.news-detail-content{
	padding: 30px 0;
	font-size: 16px;
	line-height: 180%;
}
.news-detail-content p{
	text-indent: 2em;
	padding-bottom: 15px;
}
.news-detail-content img{
	max-width: 100%;
}
/*新闻页*/


/*相册页*/
/*列表页*/
.photo-list-wrap{
	padding: 10px 30px;
	background: #fff;
	border:#ddd 1px solid;
	overflow: hidden;
}

.photo-list-title{
	padding: 30px 0;

	line-height: 100%;
	border-bottom: #eee 1px solid;
}
.photo-list-title h1{
	font-size: 24px;
	font-weight: 700;
	color: #222;
}

..photo-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.photo-list-item{
	float: left;
	width: 270px;
	text-align: center;
	padding: 30px 0;
}



.phoho-pic{
	width: 250px;
	height: 250px;
	line-height: 250px;
	border: #ddd 1px solid;
	display: inline-block;
	text-align: center;
}
.phoho-pic img{
	vertical-align:middle;
	max-width:100%;
	max-height: 100%;
}

.photo-list-item h2{
	padding:10px 0;
	font-size: 16px;
}








/*详细页*/

.photo-nothing{
	text-align: center;
	padding: 100px 0;
	color: #999;
}

.photo-detail-wrap{
	padding: 30px;
	border: #ddd 1px solid;
	background: #fff;
}
.photo-detail-wrap h1{
	font-size: 26px;
	margin-bottom: 30px;
	text-align: center;
	padding: 20px 0 30px;
	border-bottom: #eee 1px dashed;
}
.photo-detail-pic{
	text-align: center;
}
.photo-detail-pic img{
	max-width: 100%;
	margin-bottom: 10px;
}

.photo-detail-content{
	padding: 30px 0;
	font-size: 16px;
	line-height: 180%;
}
.photo-detail-content p{
	text-indent: 2em;
	padding-bottom: 15px;
}
.photo-detail-content img{
	max-width: 100%;
}
/*相册页*/



/*单页专用*/

.page-wrap{
	background: url(../images/page_content_bg.jpg) center bottom no-repeat;
	padding: 30px 0;
	margin:30px auto 0;
	display: flex;
}
.page-wrap-left{
	width: 350px;
	margin-right: 100px;
}
.page-wrap-left h1{ 
	font-size:32px; 
	font-weight:bold; 
	color:#333; 
	padding:30px 0 15px 0;
	position: relative;
}
.page-wrap-left h1::before {
	position: absolute;
	top: 0;
    background-color: #D50100;
    content: "";
    display: block;
    height: 5px;
    width: 60px;
}
.page-wrap-left img{
	padding-top: 20px;
	max-width: 350px;
	max-height: 350px;
}
.page-wrap-left p{
	width: 340px;
	padding-top: 20px;
	font-size: 14px;
	line-height: 180%;
	color: #666;
}

.page-wrap-content{
	flex:1;
	padding: 0 10px 10px;
	font-size: 18px;
	line-height: 180%;
	overflow: hidden;
}
.page-wrap-content p{
	padding-bottom: 15px;
}
.page-wrap-content img{
	max-width: 100%;
}
/*单页专用*/

/*首页*/
/*首页滚动图*/

#index_banner{
	background-color: #fff;
    margin: 0 auto;
    margin-top: 0px;
    overflow: hidden;
    clear: both;
}
#index_banner img {
    max-width: 100%;
}


.index-banner-text{
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: #F6F6F6;
}
.index-banner-text .wrap{
	width: 1200px;
	margin:0 auto;
	overflow: hidden;
}
.index-banner-text .wrap h1{
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
}
.index-banner-text .wrap .left{
	float: left;
}
.index-banner-text .wrap .right{
	float: right;
	text-align: right;
}

/*推荐产品*/
.i-product-list-wrap{
	background: #fff;
	overflow: hidden;
}

.i-product-list-title{
	height: 50px;
    line-height: 50px;
    color: #333;
    border-bottom: #ccc 1px solid;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.i-product-list-title i {
    display: inline-block;
    position: relative;
    padding: 0 10px;
    font-size: 16px;
    font-weight: bold;
}
.i-product-list-title i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #004C99;
    left: 0;
    bottom: -1px;
}

..product-list-item-wrap{
	width: 100%;
	overflow: hidden;
}
.i-product-list-item{
	float: left;
	width: 210px;
	margin-right: 13px;
	text-align: center;
	padding:0 0 30px 0;
}
.i-product-list-item:nth-child(4n+1){
	margin-right: 0;
}

.i-product-list-item img{
	width: 100%;
	height: 208px;
	border: #eee 1px solid;
}
.i-product-list-item:hover img{
	border: #1184e1 1px solid;
}
.i-product-list-item h3{
	padding:10px 0;
	font-size: 14px;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

/*行业*/
.index_hangye{ width:100%; padding:80px 0; background:url(../images/i_hangye_bg.jpg) left center no-repeat; background-size:100% 100%;}
.index_hangye_title{ text-align:center; padding:0 0 50px;}
.index_hangye_con{ margin:0 auto; overflow:hidden;}
.index_hangye_con dl{ float:left; width:240px;}
.index_hangye_con dl dt{ text-align:center; width:100%; height:240px; margin:0; font-size:20px; line-height:120px; background-color:#FFF; overflow:hidden;}
.index_hangye_con dl:hover dt{ background:url(../images/i_hangye_dt_bg.jpg); color:#fff;}
.index_hangye_con dl dt i{
	width: 95px;
    height: 49px;
    overflow: hidden;
    display: block;
    margin: 38px auto 16px;
	position: relative;
	}
.index_hangye_con dl dt i img{ position:absolute; left:0; top:0;}
.index_hangye_con dl:hover dt i img{ top:-49px;}
.index_hangye_con dl dd{ width:240px; height:240px; margin:0; position: relative; -webkit-margin-start:0; overflow:hidden;}
.index_hangye_con dl dd img{ width:240px; height:240px;}

/*合作伙伴*/
.index_parter{
	margin:80px auto 50px;
	overflow:hidden;
	}
.index_parter_tit{
	}
.index_parter_con{
	width:100%;
	padding:20px 0 0;
	overflow:hidden;
	}
.index_parter_p{
	float:left;
	width:560px;
	}
.index_parter_list{
	float:right;
	width:600px;
	color:#666;
	}
.index_parter_list p{
	text-indent: 2em;
	padding-bottom: 10px;
	}
.index_parter_list em{ 
	font-style:normal;
	font-size:16px;
	font-weight:bold;
	color:#D50100;
	padding:30px 0 10px;
	display:block;
	}
.index_parter_list ul li{
	height:36px;
	line-height:36px;
	border-bottom:#ccc 1px dashed;
	text-indent:25px;
	}
.index_parter_list ul li:hover{
	background-color:#FAFAFA;
	}
.index_parter_more{
	padding:50px 0 20px;
	text-align:center;}
.index_parter_more a{
	display:inline-block;
	height:40px;
	line-height:40px;
	width:200px;
	background-color:#004C99;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	border-radius:3px;
	}
.index_parter_more a:hover{
	text-decoration:underline;
	}


.index-company{

}
.index-company img{
	max-width:100%;
}

/*****首页标题栏****/
.index-title{
	line-height: auto;
	margin: 50px 0 30px;
	text-align: center;
}
.index-title h2{
	position: relative;
	display: inline-block;
	padding: 0 80px;
	font-size: 32px;
	margin: 0 auto 30px;
	color: #444;
}
.index-title h2:before,.index-title h2:after{
	position: absolute;
	content:"";
	width: 60px;
	top: 50%;
	height: 1px;
	background: #999;
}
.index-title h2:before{
	left: 0;
}
.index-title h2:after{
	right: 0;
}

.index-title span{
	display: block;
	text-align: center;
	color: #999;
	font-size: 18px;
}

.i_title{ height:40px; line-height:40px; color:#999; border-bottom:#ccc 1px solid; text-transform:uppercase; overflow:hidden; }
.i_title span{ float:right; margin-right:3px;}
.i_title i{ font-size:16px; font-weight:bold; color:#1F528B; padding-left:5px;}
.i_title a:hover{ text-decoration:underline;}

/*****新闻资讯****/
.i_news{padding:10px 0; border:#ccc 1px solid; margin:0 auto; margin-top:20px; overflow:hidden; clear:both;}
.i_news_c{ width:450px; padding:0 20px; background:url(../images/i_news_line.png) right center no-repeat; min-height:300px;}
.i_news_con{ padding-top:10px;}
.i_news_con ul li{ height:40px; line-height:40px; border-bottom:#CCC 1px dashed; background:url(../images/li_ico_1.gif) left center no-repeat; text-indent:10px; overflow:hidden; white-space: nowrap; text-overflow: ellipsis;}
.i_news_con ul li:hover{ background-color:#f9f9f9;}
.i_news_con ul li span{ float:right; color:#999;}

.i_answer{ width:290px; padding:0 20px;}
.i_answer_con{ height:290px; margin-top:10px;}
.i_answer_con dl{ padding:20px 0; border-bottom:#CCC 1px dotted;}
.i_answer_con dl dt{ height:40px; line-height:40px; font-weight:bold; background:url(../images/i_question.png) left center no-repeat; text-indent:26px; overflow:hidden; white-space: nowrap; text-overflow: ellipsis;}
.i_answer_con dl dd{ background:url(../images/i_answer.png) left top no-repeat; padding-left:26px; line-height:180%;}

/*友情链接*/
.link-wrap{
	padding-top: 20px;
	width: 1200px;
	margin:10px auto;
	color: #999;
}
.link-wrap a{
	margin:0 5px;
}
/*首页*/

/*底部工具 START*/
.tool-wrap{
	display: flex;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5.2rem;
	background: #0168B7;
	font-size: 1.1rem;
	z-index: 89;
}
.tool-wrap a{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.tool-wrap span{
	width: 1.95rem;
    height: 1.95rem;
    display: block;
    margin: 0 auto;
}
.tool-wrap img{
	width: 1.95rem;
    display: block;
}
.tool-wrap a{
	flex: 1;
	border-left: rgba(255,255,255,.2) 1px solid;
	text-align: center;
	color: #fff;
}
.tool-wrap a:first-child{
	border-left: none;
}
/*底部工具 END*/


/*框架*/
.container {
	height: auto;
	margin:0 auto;
	overflow: visible;
	position: relative;
}
.container:after {
	content: "";
	display: block;
	clear: both;
}
@media only screen and (min-width: 768px) {
	.container {
		width: 750px;
	}
}
@media only screen and (min-width: 992px) {
	.container {
		width: 970px;
	}
	.nav-wrap{
		display: flex;
	}
	
	.tool-wrap{
		display: none;
	}

	.mobile-tool{
		display: none;
	}
}
@media only screen and (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

@media only screen and (max-width: 767px) {
	html{
		font-size: 14px;
	}
	.container {
		width: 100%;
	}
	.logo-text{
		display: none;
	}

	.logo-pic{
		max-width: 70%;
	}

	.index-title h2{
		font-size: 1.6rem;
		line-height: 120%;
	}

	.footer{
		font-size: 14px;
	}
	.footer_c{
		padding: 10px;
	}
	.footer_c p{
		padding: 5px 0;
	}
	.footer_copyright{
		padding-bottom: 5.2rem;
		font-size: 12px;
	}
	.footer-copyright-n{
		display: none;
	}


}
@media only screen and (max-width: 991px){

	.header-top-wrap{
		display: none;
	}

	#breadCrumb{
		display: none;
	}
	.div-body{
		background-color: #fff;
	}
	.float-l,.float-r{
		float: none;
	}
	.div-w-300{
		width: 95%;
		margin:0 auto;
	}
	.div-w-880{
		width: 100%;
	}
	.nav_sort_title{
		margin-bottom: 
	}
	.nav_sort_title em{
		display: block;
	}
	.nav_sort_updown{
		display: none;

	}
	.div-w-880{
		margin-top:15px;
	}
	
	.product-list-title {
	    padding: 10px 0 20px;
	}
	.product-list-title h1 {
	    font-size: 18px;
	}
	.product-list-wrap{
		padding: 10px 15px;
	    background: #fff;
	    border:none;
	}
	.product-list-item{
		width: 48%;
		margin:0 1%;
		padding: 15px 0;
	}
	.product-list-item img {
	    width: 100%;
	    height: 180px;
	    border: #eee 1px solid;
	}
	
	.product-detail-wrap{
		padding: 15px;
		border:none;
		padding-bottom:0;
	}
	#product_detail_bpic{
		width: 100%;
		height: auto;
		line-height: 100%;
	}
	.d_pro_lpic{
		width: 100%;
	}
	#goleft,#goright{
		display: none;
	}

	.news-list-wrap {
	    padding: 10px 20px;
	    border: none;
	}
	.news-list-title{
		padding: 20px 0;
		line-height: 100%;
		border-bottom: #eee 1px solid;
	}
	.news-list-title h1{
		font-size: 20px;
		font-weight: 500;
		color: #222;
	}
	.news-list-item a h2 {
	    font-size: 18px;
	    padding-bottom: 10px;
	}

	.news-detail-wrap {
	    padding: 20px ;
	    border: none;
	}
	.news-detail-wrap h1 {
	    font-size: 20px;
	    padding: 20px 0;
	    line-height: 160%;
	}


	.photo-list-wrap {
	    padding: 10px 15px;
	    border: none;
	}
	.photo-list-title {
	    padding: 20px 0;
	    line-height: 100%;
	    border-bottom: #eee 1px solid;
	}
	.photo-list-title h1 {
	    font-size: 20px;
	    font-weight: 500;
	    color: #222;
	}
	.photo-list-item {
	    float: left;
	    width: 48%;
	    margin:0 1%;
	    text-align: center;
	    padding: 20px 0 0;
	}
	.phoho-pic {
	    width: 100%;
	    height: 220px;
	    line-height: 100%;
	    border: #ddd 1px solid;
	    display: inline-block;
	    text-align: center;
	}
	.photo-detail-wrap {
	    padding: 20px;
	    border: none;
	    background: #fff;
	}
	
	.flexslider .slides li{
		background-size: 100% 100%;
	 width:100%; height:388px; text-align:center; overflow:hidden; overflow:hidden;}
	.flexslider .slides li img{ border:none;}
	.flexslider .slides li a{
		display:block; height:388px;
		text-indent: -9999px;
	}

	.index-title{
		margin: 30px 0 10px;
	}
	.index-title h2 {
	    padding: 0 80px;
	    font-size: 20px;
	    font-weight: 700;
	    margin: 0 auto 10px;
	    color: #444;
	}
	.index-title span {
	    font-size: 16px;
	}

	.index-banner-text{
		display: none;
	}
	.i-sort-all{
		display: none;
	}
	.i-product-list-wrap {
		padding: 0 10px;
	}
	.i-product-list-title{
		display: none;
	}
	.i-product-list-item{
		width: 46%;
		margin:0 2%;
		padding: 0 0 15px 0;
	}
	.i-product-list-item img {
	    height: 180px;
	}
	.index_hangye{
		width: 100%;
		padding: 30px 0 50px;
	}
	.index_hangye_con{
		padding: 5px 15px;
	}
	.index_hangye_con dl {
		display: flex;
	    float: none;
	    width: 100%;
	    overflow: hidden;
	}
	.index_hangye_con dl dt {
	    text-align: center;
	    width: 50%;
	    height: auto;
	    margin: 0;
	    font-size: 20px;
	    line-height: 80px;
	    background-color: #FFF;
	    overflow: hidden;
	}
	.index_hangye_con dl dd {
		float:left;
    width: 50%;
    height: 100%;
    margin: 0;
    position: relative;
    -webkit-margin-start: 0;
    overflow: hidden;
}
.index_hangye_con dl dd img {
    width: 100%;
    height: auto;
}
.index_parter{
	margin: 30px 0 30px;
}
.index_parter_p{
	width: 100%;
}
.index_parter_p img{
	width: 100%;
}
.index_parter_list em {
    padding: 30px 25px 10px;
}
.index_parter_list p {
    text-indent: 2em;
    padding-bottom: 10px;
    line-height: 150%;
}
.index_parter_list{
	width: 100%;
	padding: 20px 15px;
}
.index_parter_more {
    padding: 20px 0 10px;
}

.i_news{
	border: none;
	margin-top:0;
	padding: 0;
}
.i_news_c{
	width: 100%;
	background:none;
}
.i_title_news,.i-hangyedongtai,.i_answer{
	display: none;
}



	.pages {
	    padding: 40px 0 10px;
	}
	.pages .pagination li{
		display: none;
	}
	.pages .pagination li:first-child,.pages .pagination li:last-child{
		display: inline-block;
	}
	.pages li span, .pages li a {
	    margin: 0 5px;
	    padding: 12px 25px;
	}

	.side-contact-title,.side-contact{
		display: none;
	}

	.nav_sort{
		margin: 15px 0;
	}
	.nav_sort a{
		font-size: 14px;
	}
	
	.logo-wrap {
	    height: auto;
	    margin: 0 auto;
	    padding: 20px 10px;
	}
	.logo-pic img{
		width: 100%;
	}
	
	.page-wrap {
	    padding: 20px 0;
	    margin: 0 auto;
	}
	.page-wrap-left{
		display: none;
	}
	.page-wrap-content{
		font-size: 14px;
	}

	.mobile-button {
	    display: block;
	}
	.mobile-tool{
		display: flex;
	}

	.footer_nav{
		display: none;
	}
	.footer_logo{
		display: none;
	}
	.footer_text{
		text-align: center;
	}

	.nav-con{
		/*display: none;*/
	}

	.logo-phone{
		display: none;
	}
	.logo-weixin{
		display: none;
	}

	.link-wrap{
		display: none;
	}
	.baoming-wrap{
		display: none;
	}
	.footer-d{
		justify-content: center;
	}
	
	.footer_weixin{
		display: none;
	}

	.nav-wrap{
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		display: none;
		background-color: #004C99;
		z-index: 9911;
	}
	.nav-wrap li{
		float: none;
		display: block;
		border-bottom: rgba(255,255,255,.1) 1px solid;
	}
	.nav-wrap a.nav-b{
		display: block;
	    height: 46px;
	    line-height: 46px;
	    position: relative;
	    font-size: 16px;
	    font-weight: 500;
	    padding: 0 0;
	    text-align: center;
	    color: #fff;
	}
	.nav-wrap li:hover>ul{ display:none;}



}