/**-----重置-----**/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; }
/* HTML5 display-role reset for older browsers */ 
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section img{ 
display: block; 
} 
*,*:before,*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	word-break: break-all;
}
ol, ul,li{ 
  list-style: none; 
} 
em{
	font-style: normal;
}
blockquote, q { 
   quotes: none; 
} 
blockquote:before, blockquote:after, 
q:before, q:after { 
content: ''; 
content: none; 
} 
/*
 *	去除按钮的默认样式
 * */
input[type="submit"],
input[type="button"],
button[type="submit"],
button[type="button"],
input[type="reset"],
button[type="reset"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	outline:none; 
}
/*
 *	去除文本框获取焦点时的高亮框
 * */
input[type="text"]:focus,button[type="text"]:focus{ 
	outline:none;
}
input[type="text"],textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	resize:none;
	outline: none;
}
button,input{ border-radius: 0;-webkit-border-radius: 0;}
table{border-collapse:collapse;}
a{
	text-decoration: none;
	color: #000;
}
img{
	border:0;
	width: 100%;
	height: auto;
}
html,body { 
    background: #fff;
	width: 100%;
	color: rgb(51,51,51);
	font-size: 14px;
	font-family: "微软雅黑";
	min-width: 1200px;
}
/*主体宽度*/
.inner-auto{
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.twoline{    /*多行溢出问题放一个盒子里面*/
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.oneline{    
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.threeline{    
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.fourline{    
	overflow: hidden;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
/*
 *	public css
 * */
.cont_news a{
	color:#0a55d8;
}
/*clear去浮动*/
.clear{
	zoom:1;
}
.clear:after{
	display: block;
	content: "";
	clear: both;
	height: 0;
	visibility: hidden;
	line-height: 0;
}
.flex{         /*弹性布局父级元素*/
		display: box;               /* OLD - Android 4.4- */
		display: -webkit-box;       /* OLD - iOS 6-, Safari 3.1-6 */
		display: -moz-box;          /* OLD - Firefox 19- (buggy but mostly works) */
		display: -ms-flexbox;       /* TWEENER - IE 10 */
		display: -webkit-flex;      /* NEW - Chrome */
		display: flex;  
} 
 /*flex1 自动填充*/
.flex1{
	-webkit-box-flex: 1;       
	-moz-box-flex: 1;           
	-webkit-flex: 1;                    
	-ms-flex: 1;                          
	flex: 1;       
}
.flex2{
	-webkit-box-flex: 2;       
	-moz-box-flex: 2;           
	-webkit-flex: 2;                    
	-ms-flex: 2;                          
	flex: 2; 
}
.flex3{
	-webkit-box-flex: 3;       
	-moz-box-flex: 3;           
	-webkit-flex: 3;                    
	-ms-flex: 3;                          
	flex: 3; 
}
/*flex-wrap 自动换行*/
.flex-wrap{
     -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
     -o-flex-wrap: wrap;
	 flex-wrap:wrap;
}
/*flexv 竖直排列*/
.flexv{
	-webkit-box-orient:vertical;
	-webkit-flex-direction:column;
	-ms-flex-direction:column;
	flex-direction:column;
	-o-flex-direction: column;
    -moz-flex-direction: column;
}
/*水平垂直居中*/
 .flexc{
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	-ms-flex-pack:center;
    -moz-justify-content: center
	justify-content:center;
}
/*jus-b 水平两端对齐*/
.jus-b{
	-webkit-box-pack:justify;
	-webkit-justify-content:space-between;
	-ms-flex-pack:justify;
	justify-content:space-between;
}
/*jus-a 水平相等间距*/
.jus-a{
	-webkit-justify-content:space-around;
	-ms-flex-pack:distribute;
	justify-content:space-around;
}
/*jus-s 首端对齐*/
.jus-s{
	-webkit-box-pack:end;
	-webkit-justify-content:flex-end;
	-ms-flex-pack:end;
	justify-content:flex-start;
}
/*ali-c 竖直居中*/
.ali-c{       
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
     align-items: center;
    -moz-box-align:center;
}

.tl{
	text-align: left;
}
.tr{
	text-align: right;
}
.txt-center{
	text-align: center;
}
  /*占位符placeholder颜色*/
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {  color: #ccc !important;} 
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {  color: #ccc !important;}
  input::-moz-input-placeholder, textarea::-moz-input-placeholder {  color: #ccc !important;}
  input::input-placeholder, textarea::input-placeholder {  color: #ccc !important;}



/*page style start*/
.page{
	float:right;
}
.page a,.page span{
	display: inline-block;
	float: left;
	padding: 5px 8px;
	margin-right: 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fff;
}
.page a:hover{
	background: #09c;
	color: #fff;
	text-decoration: none;
}
.page .current{
	background: #ffffff no-repeat;
	font-weight: bold;
	color: #f44;
	border-color: transparent;
}

/*page style end*/

/*背景颜色*/
.bgfff{
	background: #fff;
}
.bgccc{
	background: #ccc;
}
.bge6{
	background: #e6e6e6;
}
.bgeee{
	background: #eee;
}
.bge9e6e6{
	background: #e9e9e9;
}
.bgf5{
	background: #f5f5f5;
}
.bg000{
	background: #000;
}
.bgtheme{      /*主题背景颜色*/
	background: #0a55d8 ;
}
/*字体颜色*/
.cred{
	color: #ff0000;
}
.c000{
	color: #000;
}
.c333{
	color: #333;
}
.c666{
	color: #666;
}
.c999{
	color: #999;
}
.cb1{
	color: #b1b1b1;
}
.c42{
	color: #424242;
}
.c79{
	color: #797979;
}
.cfff{
	color: #fff;
}
.c034287{
	color: #034287;
}
.c64{
	color: #646464;
}
.cbigtit{
	color: #275376;
}
.c0a55d8{
	color: #0a55d8;
}
.ctheme{         /*主题字体颜色*/
	color: #000;
}
/*字体大小*/
.fs16{
	font-size: 16px;
}
.fs18{
	font-size: 18px;
}
.fs20{
	font-size: 20px;
}
.fs22{
	font-size: 22px;
}
.fs24{
	font-size: 24px;
}
.fs26{
	font-size: 26px;
}
.fs28{
	font-size: 28px;
}
.fs30{
	font-size: 30px;
}
.fs32{
	font-size: 32px;
}
.fs34{
	font-size: 34px;
}
.fs36{
	font-size: 36px;
}
.fs40{
  font-size: 40px;
}
.fs46{
  font-size: 46px;
}
.fw-no{
	font-weight: normal;
}
/*内边距*/
.pt15{
	padding-top: 15px;
}
.pl10{
	padding-left: 10px;
}
.pr10{
    padding-right: 10px;
}
.pl20{
	padding-left: 20px;
}
.com-paddimg{
	padding: 6px 0;
}
.pb20{
	padding-bottom: 20px;
}
.p0-20{
	padding: 0 20px;
}
.p30-0{
	padding: 30px 0;
}
.p20{
	padding: 20px;
}
.p25{
	padding: 25px;
}
.p35{
	padding: 35px;
}
.p4{
	padding: 4px;
}
.p5{
	padding: 4px;
}
.p10{
	padding: 10px;
}
.p15{
	padding: 15px;
}
.p1070-0{
	padding: 10px 0 70px 0;
}
.p2030-0{
	padding: 20px 0 30px 0;
}
.p50-0{
	padding: 50px 0;
}

.p4050-0{
	padding: 40px 0 50px 0;
}
/*外边距*/
.ml5{
	margin-left: 5px;
}
.ml10{
	margin-left: 10px;
}
.ml15{
	margin-left: 15px;
}
.ml20{
	margin-left: 20px;
}
.ml40{
	margin-left: 40px;
}
.ml50{
	margin-left: 50px;
}

.ml100{
	margin-left: 100px;
}
.mr10{
	margin-right: 10px;
}
.mr20{
	margin-right: 20px;
}
.mr40{
	margin-right: 40px;
}
.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt15{
	margin-top: 15px;
}
.mt20{
	margin-top: 20px;
}
.mt25{
	margin-top: 25px;
}
.mt30{
	margin-top: 30px;
}
.mt35{
	margin-top: 35px;
}
.mt40{
	margin-top: 40px;
}
.mt50{
	margin-top: 50px;
}
.mt70{
	margin-top: 70px;
}
.mt80{
	margin-top: 80px;
}
.mt100{
	margin-top: 100px;
}
.mb20{
	margin-bottom: 20px;
}
.mb5{
	margin-bottom: 5px;
}
.oh{
	overflow: hidden;
}
/*边框*/
.b-bccc{
	 border-bottom: 1px  #ccc solid;
}
.b-b999{
	border-bottom: 1px  #999 solid;
}  
.b-d1d1d1{
	border: 1px  #d1d1d1 solid;
}
.b-theme{
	border: 1px #C1C1C1 solid; /*主题颜色边框*/
}
.b-rtheme{
	border-right: 1px #fa4205 solid; 
}
.b-btheme{
	border-bottom: 1px #0a55d8 dashed;
}
/*居中*/
.mauto{
	margin: 0 auto;
}
/*定位*/
.posi-rel{
  position: relative;
  z-index: 99;
}
/*宽度百分比*/
.w100{
	width: 100%;
}
.w20{
	width: 20%;
}
.w32{
	width: 32%;
}
.w36{
	width: 36%;
}
.w40{
	width: 40%;
}
.w43{
	width: 43%;
}
.w47{
	width: 47%;
}
.w49{
	width: 49%;
}
.w50{
	width: 50%;
}
.w55{
	width: 55%;
}
.w57{
	width: 57%;
}
.w59{
	width: 59%;
}
.w63{
	width: 63%;
}
.w77{
	width: 77%;
}
.w86{
	width: 86%;
}
.w90{
	width: 90%;
}
.lh25{
	line-height: 25px;
}
/*过渡动画时间*/
.tran03s{
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-moz-transition: all .3s ease;
}
.tran-img img,.tran-txt,.tran-img{
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
	-ms-transition: all .5s ease;
}
.tran-ul li:hover .tran-img  img,.tran-img:hover img{
	transform: scale(1.016);
	-webkit-transform: scale(1.016);
	-moz-transform: scale(1.016);
	-ms-transform: scale(1.016);
	}
.tran-ul li:hover .tran-txt{
	 background: #fa6705;
}
.tran-ul li:hover .tran-img{
	border: 1px solid #fa4205;
}
.txt-hover,.txt-move{
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-moz-transition: all .3s ease;
}
.txt-hover:hover{
	color: #fa4205;
}
.txt-move:hover{
	color: #fa4205;
	-webkit-transform: translateX(2px);
	-ms-transform: translateX(2px);
	-moz-transform: translateX(2px);
}
/* 
 * ---首页---
 * */
.com-shadow{box-shadow: 2px 3px 3px rgba(0,0,0,.1);}
.i-top{line-height: 20px;}
.i-topul li{float: left;padding: 0 4px;}
.i-head{height: 110px;}
.i-logo{width: 70px;height: 80px;margin:20px 0;}
.i-headtxt1{font-size: 30px;color: #fa4205;}
.i-headtxt2{font-size: 26px;color: #0055d8;}
.i-headphone{color: #0a55d8;}
.i-iponeimg{width: 50px;height:50px;}
.i-nav{height: 40px;width: 100%;background: #0055d8;}
.i-navul li{float: left;height: 40px;cursor: pointer;}
.i-navul li>a{position:relative;font-size: 16px;color: #fff;display: block;width: 100%;line-height: 40px;text-align: center;padding: 0 26px;letter-spacing: 1px;transition: all .3s ease;-webkit-transition: all .3s ease;-ms-transition: all .3s ease;-moz-transition: all .3s ease;}
.i-navul li>a:after {
    content: '';
    right: 0px;
    position: absolute;
    width: 1px;
    height: 24px;
    background: #fff;
    top: 10px;
	background: -webkit-linear-gradient(top,rgba(255, 255, 255, 0),#bbb,rgba(255,255,255,0));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0),#bbb,rgba(255,255,255,0));
}
.i-navul li:last-child a:after {
	display:none;
}
.i-navul li:hover a{background: #fa4205;text-decoration: underline;}
.i-navul .active{background: #fa4205;color: #fff;text-decoration: underline}
/*轮播*/
.i-swiper img{height:auto !important; width: 100%;}
.index-banner .swiper-pagination span{width:10px;height:10px;-webkit-border-radius:100%;border-radius:100%;background:#fff;opacity:1;}
.index-banner .swiper-pagination .swiper-pagination-bullet-active{background:#0a55d8;}
.index-banner .swiper-button-white{width: 40px;height: 40px}
.i-swiperbox img{border: 1px solid #0a55d8;height: 120px !important;}
.i-swiperbox3 {padding:0 40px;}
.i-swiperbox3 .swiper-wrapper{height: 120px;margin: 30px auto 0 auto;}
.i-swiperbox3 img{height: 120px !important;border: 1px solid #0a55d8;}
.i-swiperbox3 .swiper-button-next,.i-swiperbox3 .swiper-button-prev{width:29px;height: 26px;margin-top: 5px;}
.com-box{height: auto;width: 100%;}
.i-showbox{padding: 70px 0 40px 0;background: url(../images/ishowbg.png) no-repeat;}
.i-showauto{width: 1130px;height: auto;margin: 0 auto;overflow: hidden;}
/*产品中心*/
.i-listfl{width: 240px;height: auto;}
.i-showfr{width: 940px;height: auto;}
.i-listfltit{width: 100%;height: 40px;line-height: 42px;background: #0a55d8 url(../images/i-pro1.png) no-repeat 50px 7px;padding-left: 90px;letter-spacing: 1px;}
.i-listwarp{width:175px;margin: 0 auto 25px auto; }
.i-ultit{height: 36px;width: 100%;line-height: 37px;border-radius:18px;}
.i-ultit img{width: 23px;height: 23px;margin-right: 10px;flex-shrink: 0;}
.i-ulson-a{display: block;font-size: 16px; width: 100%;height: 28px;line-height: 28px; border-bottom:1px dashed #0a55d8;color: #0a55d8;margin-top: 10px;background: url(../images/i-pro3.png) no-repeat 10px 7px;padding-left: 35px;-webkit-transition: all .1s ease;-moz-transition: all .1s ease;transition: all .1s ease;}
.i-ulson-a:hover{background: #fa6705 url(../images/i-pro33.png) no-repeat 10px 7px;color: #fff;border-radius:15px;border-color:#fa6705;}
.i-lxwarp{width:205px;margin: 0 auto 28px auto;}
.i-lxul li{font-size: 16px; wid\nth: 100%;padding: 5px 10px  5px 15px;border-bottom:1px dashed #0a55d8;color: #0a55d8;margin-top: 10px;}
.i-frbgimg{height: 240px;width: 100%;}
.i-frshowul li{width: 298px;height: auto;}
.i-showimg{width: 100%;height: 270px;border: 1px solid #d1d1d1;padding: 4px;}
.i-showimg img{height: 100%;}
.i-showtxt{width: 210px;height: 30px;line-height:30px;margin: 20px auto; background: #8e8e8e;white-space:nowrap;text-overflow: ellipsis;overflow: hidden;padding: 0 15px;}
/*footer*/
.i-footer{width: 100%;height: auto;background: #064ac0;}
.i-fnav{width: 100%;border-bottom: 1px solid #5f8fe2;}
.i-f-nav li{float: left;height: 40px;cursor: pointer;}
.i-f-nav  li>a{position:relative;font-size: 16px;color: #fff;display: block;width: 100%;line-height: 40px;text-align: center;padding: 0 26px;letter-spacing: 1px;transition: all .3s ease;-webkit-transition: all .3s ease;-ms-transition: all .3s ease;-moz-transition: all .3s ease;}
.i-f-nav li>a:after {
    content: '';
    right: 0px;
    position: absolute;
    width: 1px;
    height: 24px;
    background: #fff;
    top: 10px;
	background: -webkit-linear-gradient(top,rgba(255, 255, 255, 0),#bbb,rgba(255,255,255,0));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0),#bbb,rgba(255,255,255,0));
}
.i-f-nav li:last-child a:after {
	display:none;
}
.i-f-nav li:hover a{color: #fa4205}
.i-f-box{height: auto;width: 770px;margin: 0 auto;padding: 40px 0;}
.i-fcode{width: 110px;height: 110px;}
.i-f-adds{width: 500px;}
/*
 --数控车床加工  数控加工 cnc加工
 * */
.bgimg{width: 100%;height: auto;}
.m-tit{line-height: 35px;border-bottom: 2px solid #fa4205;}
.com-bigtit{padding:0 15px 0 20px;width: 100%; line-height:35px;overflow: hidden; background: url(../img/zixunbgchen.jpg) no-repeat;background-size: 100% 100%;}
.m-tjul li{width: 100%;height: auto;padding: 5px;margin-top: 10px;}
.m-tjimg{width: 100%;height: 180px;border: 1px solid #d1d1d1;padding: 4px;}
.m-tjimg img{height: 100%;}
/*分页*/
.pagination li{font-size: 12px; float: left;border-bottom: 1px solid #d1d1d1;width:45px;height: 25px;line-height: 25px;text-align: center;margin-left: 8px;cursor: pointer;transition: all .3s ease-in-out;-webkit-transition: all .3s ease-in-out;-ms-transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;}
.pagination li.active{background: #fa4205;color: #fff !important;}
.pagination li:hover{color: #fa4205;}
.infor-tit{height: 45px;}
.icon7{width: 25px;height: 28px;background: url(../img/icon7.png) no-repeat; background-size: 100% 100%;}
.infor-ul li{padding: 10px 0;border-bottom: 1px dashed #fa4205;}
.infor-ul li:last-child{border: none;}
.infor-img{width: 165px;height: 110px;}
/*
-- 产品中心*/
/*
 ---客户案例
 * */
.c-ullist li{width: 45%;height: auto;margin-top: 50px;margin-left: 25px;}
.c-ulimg{width: 220px;height: 190px;padding: 5px;border: 1px solid #d1d1d1;flex-shrink: 0;}
.c-ulimg img{height: 100%;}
/*新闻资讯*/
.n-bigbox .n-box{width: 48%;height: auto;border: 1px solid #c1c1c1;margin:10px 5px;}
.n-proimg{width: 300px;265px}
.num-square{padding: 1px 6px;}
/*
 ---关于我们
 */
.a-profile{padding: 0px 20px 0 0px;width: 472px;}
.a-profile p{line-height: 23px;text-indent: 30px; color:#000 !important;}
.a-liimg{height: 200px;width: 31%;}
.a-adul li{width: 18.4%;height: 210px;margin-bottom: 30px;overflow: hidden;}
.cthemejieshao{
	color: #0a55d8;
}
.conimg img{
	width: 426px;
	height: 284px;
	border: 1px solid #0a55d8;
}
/*
 --联系我们
 */
.c-good{width: 100px;height: 100px;margin-left: 150px;}
.c-infor li{width: 280px;height: 35px;border: 1px solid #c1c1c1;padding: 0 10px;}
.c-infor input{color: #fa4205;font-size: 16px;height: 100%;border: none;padding-left: 10px;}
.c-icon1{width: 21px;height: 21px;background: url(../img/c-name.png) no-repeat;background-size: 100% 100%;}
.c-icon2{width: 21px;height: 21px;background: url(../img/c-iphone.png) no-repeat;background-size: 100% 100%;}
.c-icon3{width: 21px;height: 21px;background: url(../img/c-company.png) no-repeat;background-size: 100% 100%;}
.c-area{width: 66%;height: 250px;padding: 10px 15px;}
.c-area textarea{width: 90%;height: 100%;font-size: 16px;color: #fa4205;border: none;padding-top: 3px;}
.c-upload{width: 32%;padding: 5px 15px;height: 250px;}
.img-upload{width: 100%;height: 170px;border: none;outline: none;margin-top: 5px;}
.c-btn{width: 75px;height: 24px;border-radius: 10px;border: none;outline: none;cursor: pointer;}
.c-tj{height: 38px;width: 100%;border: none;outline: none;cursor: pointer;}
.c-contul li{width: 297px;height: 196px;background: url(../img/c-contulbgc.jpg) no-repeat; padding: 20px 25px;}
.c-contimg{width: 55px;height: 55px;}


.cthemecol{
	color:#0a55d8 !important;
}
/*small*/
.small-nav{
	width: 100%;
	height: 35px;
	border-bottom: 2px solid #c1c1c1;
}
.small-nav ul{
	display: flex;
	flex-direction: row;
	font-size: 14px;
	line-height: 35px;
	color: #000 ;
	text-align: center;
}
.small-nav ul img{
	height: 30px;
}
.small-nav ul .bor-left{
	padding-left: 10px;
}
.cenlink li a {
    font-size: 14px;
    margin-left: 35px;
}
/*
 ---pub详情
 */
.pub-box{padding: 30px 30px;}
.pub-box p{text-indent: 35px;line-height: 25px;}
.pub-img{width: 28%;height: 260px;}
.pub-btn{width: 130px;height: 38px;border-radius:30px;box-shadow: 0 2px 2px #832100;}
/*产品详情*/
.pro-ul li{width: 31%;height: auto;}
.pro-ulimg{width: 100%;height: 235px;padding: 12px;border: 1px solid #999;}
.pro-ulimg img{height: 100%;}
.pro-swiper{ width: 24% !important;height: 140px !important;border: 1px solid #fa4205; margin-top: 30px;padding: 5px;}
.pro-swiper img{height: 100%;}


/*yjx*/
/*产品中心资讯*/
.product-show {
    border: 1px solid #a0a0a0;
    /*width: 925px;*/
    margin-bottom: 20px;
}
.product-header {
    width: 900px;
    height: 35px;
    line-height: 35px;
    background: url(../img/zixunbgchen.jpg) no-repeat;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
}
.product-header span{
    padding-left: 10px;
    color: #fff;
    font-size: 20px;
}
.product-header a{
    padding-left: 10px;
    color: #fff;
    font-size: 20px;
}
.infor-all ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.infor-all ul li {
    margin-left: 20px;
    margin-top: 2px;
    width: 440px;
    font: 100 14px/30px "Microsoft YaHei";
    border-bottom: 1px dashed #000;
    display: flex;
    flex-direction: row;
}
.infor-all ul li:hover{
	color: #fa4205;
    border-bottom: 1px dashed #fa4205;
}
.infor-all ul li img{
	margin-top: 10px;
	width: 10px;
	height: 10px;
}
.infor-all ul li p {
    height: 30px;
    padding-left: 5px;
    width: 275px;
}
.infor-all ul li span {
    margin-left: 55px;
}
/*筛选*/
.application-top {
    border-bottom: 1px dashed #b09d9d;
    height: 40px;
    margin-bottom: 20px;
}
.application-top em {
	display: block;
    width: 140px;
    height: 35px;
    font-size: 20px;
    line-height: 35px;
    background-color: #0a55d8;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
}
.application-top ul {
    line-height: 40px;
    display: flex;
    flex-direction: row;
}
.application-top ul li a {
    color: #000;
    font-size: 18px;
}
.application-top ul li a:hover {
	color: #ff5d0d;
}
.application-top ul .colortext a{
	color: #ff5d0d !important;
}
/*产品列表*/
.case-lisul{
	padding-bottom: 15px;
}
.case-lisul li{
	margin: 10px auto;
	padding: 15px 0;
    border-bottom: 1px dashed #0a55d8;
    width: 99%;
    height: auto;
}
.p-li-img img{
    width: 255px;
    height: 196px;
    margin-left: 8px;
}
/*案例列表*/
.new-p-li-img img{
	width: 260px;
    height: 180px;
    border: 1px solid #ccc;
}
.newposi-rel h3{
	display: block;
	width: 500px;
}
.newposi-rel h3:hover{
	color: #fa6705;
	display: block;
	width: 500px;
}
.newposi-rel span{
	color: #424242;
	line-height: 30px;
}
.casecenlisul li{
	border:1px solid #c1c1c1;
	margin-top: 10px;
}
.case-p-li-img img{
	width: 213px !important;	
	height: 183px !important;
     border: 1px solid #ccc;
}
/**/
.p-li-data {
    position: relative;
    width: 630px;
    height: auto;
    margin-left: 20px;
}
.p-li-data h3{
	height: 30px;
	font-size: 20px;
	font-weight: normal;
	color: #0a55d8;
}
.p-li-data p {
	margin-top: 10px;
	height: 120px;
	width: 600px;
	letter-spacing: 1px;
    line-height: 25px;
}
.p-li-tit {
	width: 600px;
    border-bottom: 1px dashed #0a55d8;
    padding: 5px 0;
}
.p-li-tit img {
    width:15px;
    height:20px;
    margin-right: 10px;
    flex-shrink: 0;
}
.p-li-a {
    font-size:16px;
    position: absolute;
    right: 30px;
    bottom: 0;
    color: #0a55d8;
}
.p-li-a:hover{
    font-size:16px;
    position: absolute;
    right: 30px;
    bottom: 0;
    color: #fa6705;
}
/*新闻中心*/
.newscentop>a img{
	display: block;
	width: 344px;
	height: 233px;
	border: 1px solid #0a55d8;
}
.newscentop-font{
	width: 500px;
}
.newscentop-font h1{
	overflow: hidden;
	height: 25px;
	font-size: 20px;
	color: #0a55d8;
	margin: 18px 0;
}
.newscentop-font img{
	width: 14px !important;
	height: 23px;
	margin-right: 10px;
	float: left;
}
.newscentop-font p{
	color: #424242;
	line-height: 22px;
	letter-spacing: 1px;
	height: 150px;
	overflow: hidden;
}

.newscentop-font a{
	display: block;
	color: #fa4205;
	margin-top:8px ;
}
.newscenul{
	margin-top: 10px;
}
.newscenul ul li{
	width: 430px !important;
	margin-left: 0px !important;
	font: 100 14px/35px "Microsoft YaHei";
} 
.newscenul ul a:nth-child(2n) li{
	margin-left: 20px !important;
} 
.n-boxtop>img{
	border:1px solid #ccc;
	width: 162px;
	height: 118px;
}
.n-boxtop{
	margin-top: 10px;
}
.n-boxtopfont h1{
	font-size: 18px;
	color: #0a55d8;
}
.n-boxtopfont h1 img{
	width: 14px;
	height: 23px;
	margin-right: 5px;
	margin-top: 2px;
	float: left;
}
.n-boxtopfont h1 p{
	    height: 28px;
    overflow: hidden;
}
	
.n-boxtopfont{
	display: flex;
	flex-direction: column;
	width: 224px;
}
.n-boxtopfont span{
	height: 76px;
	font-size: 14px;
}
.n-boxtopfont a{
	color: #fa6705;
}
.i-goul li {
    padding: 8px 0;
    border-bottom: 1px dashed #000;
	height:35px;
}
.i-goul li:hover{

}
.i-icon1 {
    width: 12px;
    height: 10px;
    background: url(../images/icon5.png) no-repeat;
    background-size: 100% 100%;
}
/*评论*/
.b-ddd{
    margin-top: 20px;
    padding: 0 10px;
}
.i-show-tit{
	    height: 34px;
    width: 100%;
    line-height: 34px;
    border-bottom: 1px solid #ddd;
    letter-spacing: 1px;
        font-weight: bold;
            overflow: hidden;
}
.i-show-tit h3 {
    border-bottom: #005DC0 2px solid;
    height: 33px;
    font-size: 14px;
}
.ctheme {
    color: #3399CC;
}
.c-ul-pl li {
    padding: 10px 0;
    border-bottom: 1px solid #d6d6d6;
}
.c-ul-pl p{
    line-height: 22px;
}
.comment-head{
	margin-bottom: 10px;
}
.comment-head span{
    padding-left: 10px;
}
.c-reply{
	margin-top: 15px;
    width: 98%;
    height: 60px;
    border: 1px dashed #ccc;
    padding: 8px;
    overflow: hidden;
    font-size: 14px;
  	color: #999;
}
.txt-hover,.txt-move{
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	
}
.com-cenbot{
    margin-bottom: 10px;
        font-weight: bold;
        cursor: pointer;
}

.c-comment {
    width: 80%;
    height: auto;
    margin-left: 10px;
    position: relative;
}
.c-comnum {
    position: absolute;
    right: 8px;
    bottom: 8px;
    color: #000;
    z-index: 999;
    color: #999;
}
.c-explain {
    font-size: 12px;
    margin: 4px 0 20px 70px;
    display: block;
}
.c-btn01 {
    margin: 15px 50px;
}
.c-btn01 button {
    padding: 2px 12px;
    color: #fff;
    border: none;
    letter-spacing: 2px;
    margin-left: 10px;
    border-radius: 3px;
    cursor: pointer;
}
.bgtheme01{
    background-color: #0a55d8;
}
.bgbbb {
    background-color: #bbb;
}
.c-comment textarea {
    overflow: hidden;
    color: #000;
    padding: 8px;
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
}
.c-comnum {
    position: absolute;
    right: 8px;
    bottom: 8px;
    color: #000;
    z-index: 999;
    color: #999;
}
/*新闻内页*/
.new-li{
	padding: 10px;
}
.new-li h3{
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	line-height: 45px;
	border-bottom: 1px dashed #999;
	color: #0a55d8;
}
.nd-box {
    padding: 10px 60px;
}
.nd-box {
    text-indent: 40px;
    line-height: 35px;
}

.new-li-top{
	text-align: center;
	font-size: 14px;
	line-height: 40px;
	margin-top:10px;
    border-top: 1px solid #ddd;
}
.new-li-top span{
	padding-left: 30px;
}
.new-li-top em,.new-li-top time{
	padding-left: 5px;
}
.new-li img{
	max-width: 100%;
	margin: 15px auto;
}
.com-tit,.com-tit-dub{
	margin-top: 10px;
	color: #fff;
	font-size: 14px;
	background-color: #0a55d8;
	padding: 8px 30px;
}
.com-tit:hover,.com-tit-dub:hover{
	background-color: #fa4205;
}
.keyword {
    height: 30px;
    width: 900px;
    color: #636363;
    border-bottom: 1px dashed #c1c1c1;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 15px;
    margin-top: -15px;
}
/*产品详情页*/
.cen-lis-top{
	padding: 10px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
}
.cen-lis-top-left{
	width: 40%;
}
.pd-proimg img{
	width: 300px;
	height: 280px;
	margin: 9px 0 0 8px;
	border: 1px solid #C1C1C1;
}
.cen-lis-bot{
	width: 59%;
}
.pd-proul li {
    width: 30%;
    height: 80px;
}
.pd-proul img{
	width: 80px;
	height: 70px;
 	margin: 2px 0 0 8px;
	border: 1px solid #C1C1C1;
}
.gallery-thumbs .swiper-slide {
	height: 100%;
	opacity: 0.6;
}
.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}
.cen-lis-bot-bottom{
	width: 520px;
	height: 36px;
	border-bottom: 2px dashed #c6b9b8;
}
.cen-lis-bot-bottom>img{
	width: 15px;
	height: 22px;
	margin-right: 5px;
}
.cen-lis-bot h3{
	font-size: 24px;
	color: #0a55d8;
	padding-left:5px ;
}
.cen-lis-bot p{
	font-size: 16px;
	line-height: 25px;
	color: #000;
	height: 100px;
	margin-top: 15px;
}
.cen-lis-bot span{
	color: #000;
	font-size: 18px;
}
.details-tell{
	font-size: 28px;
	letter-spacing: 2px;
	font-weight: bold;
	margin-top: 5px;
	color: #0a55d8;
}
.cen-lis-bot a{
    display: inline-block;
	width: 178px;
	height: 42px;
	line-height: 40px;
	text-align: center;
    border-radius: 25px;
    background-color: #0a55d8;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 15px;
}
.center-listimg{
	max-width: 100%;
	width: 98%;
	margin: 0 auto;
	display: block;
}
/*客户案例列表类型*/
.bigpro-ul li >a{
	display: block;
	padding: 7px 0;
	border-bottom: 1px dashed #0a55d8;
	font-size: 18px;
	color: #0a55d8;
	margin-top: 5px;
	background: url(../images/i-pro22.png) no-repeat 35px 9px;
	padding-left: 65px;
	transition: all .1s ease;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
}
.bigpro-ul li >a:hover{
	border-radius:20px;
	background: #fa4205 url(../images/i-pro2.png) no-repeat 35px 9px;
	color: #fff;
	border-color:#fa6705;
}
.n-newsul li{padding: 8px 0;border-bottom: 1px dashed #ccc;}
.n-newsul li: first-child{padding-top: 0;}
.n-newsul span{margin-top: 3px;}
.n-newsul li:nth-child(1) span{background: #fa4205;}
.n-newsul li:nth-child(2) span{background: #0a55d8;}
.n-newsul a{max-height: 20px;}
.n-news-num{padding: 1px 6px;color: #fff;display: block;}
.zx-ul li{padding: 8px 0;border-bottom: 1px dashed #a9c4f1;padding-left: 45px;margin-top: 4px;}
.zx-ul li a{font-size: 18px;transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;}
.zx-ul li a:hover{color: #fa4205;}





.as-link{
	font-size: 16px;
	color: #fff;
	width: 100%;
	padding: 5px 15px;
	margin-bottom: 10px;
}
.as-link:hover{
	text-decoration: underline;
}
.as-bg1{
	background: #fa4205;
}
.as-bg2{
	background: #0a55d8;
}
.as-key{
	width: 100%;
	height: 35px;
	line-height: 35px;
	border-bottom:1px dashed #ccc;
	color: #666;
}
.as-key span{
	padding-left: 10px;
}



  .clearfix{
  	height: 40px;
  }