@charset "utf-8";
/* CSS Document */
html,body,body{margin:0;padding:0;border:0;}
body{
	color:#333;
	font:14px "Microsoft YaHei",微软雅黑,arial,sans-serif;
	background-color: #ddd;
	}
body, div, span, object, iframe, h1, h2, h3, h4, p, blockquote, pre, a, address, code, b, em, img, dl, dt, dd, ol, ul, li, fieldset, form, label, footer, header, hgroup, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
}
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
i{font-style: normal; font-family: 'FontAwesome';}
a{text-decoration:none;outline:none;color: #333;}
input{padding:0;margin:0;font-family:'Microsoft YaHei';border: none;}
input:-webkit-autofill { box-shadow: 0 0 0 1000px white inset !important;}
img{border:none;background:none;border-style: none; }
dl,dd,dt{margin: 0;padding: 0;}
ul,ol,li{list-style-type:none;padding: 0;margin: 0;list-style: none;}
.clearfix:{clear: both;}
h1,h2,h3,h4{margin: 0;padding:0;}
p{
	margin: 0;
	padding: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
}

/*顶部*/
.Item{width: 1200px;margin: 0 auto;overflow: hidden;}
.header_bg1{border-bottom: 1px solid #f0f0f0;background-color: #dddddd;}
.top_header{display: flex;justify-content: space-between;line-height:20px;width: 100%;}
.top_header h1{font-size: 12px;color: #202020;font-weight: normal;}
.top_header h4{font-weight: normal;color:#202020 ;}
.top_header h4 a img{display: inline-block;margin:0 10px;vertical-align: middle;}
.top_header h4 a{padding-right: 10px;display: inline-block;color: #202020;font-size: 12px;}

/*logo&nav*/
.logo_nav_bg{
   position: fixed;z-index: 100;top: 0;
}
#nav{
     width: 100%;background-color: #323232;
}
.logo_nav{
    width: 1200px;
    margin: 0px auto;
    display: -webkit-flex; /* Safari */
    display: flex;
    justify-content: space-between;
    position: relative;
}
.logo{
    width: 273px;
    overflow: hidden;
    margin: 21px 0;
    margin-right: 20px;
}
.logo >a{
    display: block;line-height: 0;
}
.logo >a>img{
    max-width: 100%;
}
.nav {
    width: 900px;
    margin: 0 auto;
    line-height: 80px;
    font-size: 12px;
    margin-top: 0px;
    margin-left: 20px;
}

.nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
}

.nav ul li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    text-align: center;
    
}

.nav li{  position: relative;  box-sizing: border-box;}
.nav li dl{ position: absolute; top: 0px; left: 0; width: 100%; overflow: hidden; padding: 10px 0; background: #fff; display: none;}
 .nav li dl dd{ line-height: 20px; text-align: center;}
.nav li dl dd a{ color: #000; font-size: 12px; }
.nav li dl dd a:hover{ color: #056eac;}
.nav li a{ display: block;margin: 0 auto; text-align: center; font-size: 14px; color: #fff;transition: 0.4s;}
.nav li:hover { background: #056eac; color: #fff;}
.nav li:hover dl{ display: block; z-index: 99;margin-top: 80px;transition: 0.4s;}

/*搜索*/
.search-wrapper {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top:50%;
    right:-6%;
}
.search-wrapper.active {}

.search-wrapper .input-holder {
    overflow: hidden;
    height: 50px;
    background: rgba(255,255,255,0);
    border-radius:6px;
    position: relative;
    width:70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder {
    border-radius: 50px;
    width:450px;
   background: #fff;
    -webkit-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
}

.search-wrapper .input-holder .search-input {
    width:100%;
    height: 50px;
    padding:0px 70px 0 20px;
    opacity: 0;
    position: absolute;
    top:-10px;
    left:0px;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:none;
    outline:none;
    font-family:"Open Sans", Arial, Verdana;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color:#000;
    -webkit-transform: translate(0, 60px);
    -moz-transform: translate(0, 60px);
    transform: translate(0, 60px);
    -webkit-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);

    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.search-wrapper .input-holder .search-icon {
    width:50px;
    height:50px;
    border:none;
    border-radius:6px;
    background: #323232;
    padding:0px;
    outline:none;
    position: relative;
    z-index: 2;
    float:right;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.search-wrapper.active .input-holder .search-icon {
    width: 50px;
    height:50px;
    margin: 0px;border: 0;
    border-radius: 30px;
}
.search-wrapper .input-holder .search-icon span {
    width:22px;
    height:22px;
    display: inline-block;
    vertical-align: middle;
    position:relative;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    -moz-transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
    transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);

}
.search-wrapper.active .input-holder .search-icon span {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg); 
}
.search-wrapper .input-holder .search-icon span::before, .search-wrapper .input-holder .search-icon span::after {
    position: absolute;
    content:'';
}
.search-wrapper .input-holder .search-icon span::before {
    width: 4px;
    height: 11px;
    left: 9px;
    top: 18px;
    border-radius: 2px;
    background: #fff;
}
.search-wrapper .input-holder .search-icon span::after {
    width: 14px;
    height: 14px;
    left: 0px;
    top: 0px;
    border-radius: 16px;
    border: 4px solid #fff;
}

.search-wrapper .close {
    position: absolute;
    z-index: 1;
    top:15px;
    right:20px;
    width:25px;
    height:25px;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -moz-transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition: all .3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.search-wrapper.active .close {
    right:-30%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -moz-transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition: all .6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.search-wrapper .close::before, .search-wrapper .close::after {
    position:absolute;
    content:'';
    background: #FFF;
    border-radius: 2px;
}
.search-wrapper .close::before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;background: #eee;
}
.search-wrapper .close::after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;background: #eee;
}
.search-wrapper .result-container {
    width: 100%;
    position: absolute;
    top:80px;
    left:0px;
    text-align: center;
    font-family: "Open Sans", Arial, Verdana;
    font-size: 14px;
    display:none;
    color:#B7B7B7;
}
/*热门搜索*/
/*.hot_search{
    width: 100%;
    margin-top: 30px;
}
.hot_s_t{
    width: 1200px;
    margin: 0 auto;
}
.hot_s_t >p{
    font-size: 12px;
    color: #fff;
    text-align: center;
}
.hot_s_t >p >a{
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #6cdfed;
    line-height: 30px;
    padding: 2px 10px;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;    font-weight: bold;
}
.hot_s_t > form{
    width: 562px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}
.hot_s_t form input[type="text"] {
    width: 500px;
    border: none;
    line-height:48px;
    outline: none;
    font-size: 12px;
    background: #fff;
    border-radius: 25px 0  0 25px;
    color: #999;
    overflow: hidden;
    border: 1px solid #6cdfed;
    box-sizing: border-box;
    float: left;    padding-left: 15px;
}
.hot_s_t form input[type="submit"] {
    width: 60px;
    height: 50px;
    
    border: none;
    outline: none;
    float: left;
    right: 8px;
    top: 6px;
    border-radius: 0  25px   25px 0;
    background: url(../img/icon_search.png)no-repeat center #6cdfed;
}
*/
/*产品*/
.in-title {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
}

.in-title h6 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-align: center;
    font-weight: normal;
}

.in-title p {
    font-size: 28px;
    font-family: "Brush Script MT";
    font-style: oblique;
    color: #888;
    text-align: center;
    margin: 0px auto;
}

.product_title {
    width: 100%;
    height: 3px;
    background: url(../img/product-title.png) no-repeat center;
    background-size: auto 100%;
    margin: 10px auto;
}
.products{
    width: 1200px;
    margin: 0 auto;
}
.product_classification_title{
    font-size: 0;    text-align: left;
    margin-top: 30px;color: #6cdfed;
}
.product_classification_title > h1{
    display: inline-block;
    height: 26px;vertical-align: bottom;
}
.product_classification_title > h1 >img{
    height: 100%;
}
.product_classification_title > h2{
    background: #999999;width: 1px;display: inline-block;
    height: 18px;
    box-shadow: 1px 0px 0px #dadada; 
    margin: 0 10px;
}
.product_classification_title > h3{
    display: inline-block;font-weight: normal;
}
.product_classification_title > h3 >a{
    font-size: 24px;display: block;
    line-height: 26px;color: #6cdfed;
}
.product_classification_title >p{
    font-size: 14px ;color: #666;
    margin-top: 12px;
}
.product_classification_title >p >a{
    color: #2f8cbf;font-size: 14px;
}
.products_all{
    text-align: center;font-size: 0;
}
.product_one{
    width: 1198px;height:auto;       
    margin: 40px auto 0;overflow: hidden;
}
.in_arrow{position: absolute;width: 1200px;margin-top: 60px;}
.le{float: left;}
.ri{float: right;}
.in_product{position: relative;width: 100%;text-align: center;}
.in_product > div{
    width: 324px;margin: 18px 0 18px 52px;
    height: auto;overflow: hidden;float: left;
}
.in_product > div >a {
    display: inline-block;line-height: 0;overflow: hidden;width: 99%;height: 194px;
    text-align: center;border: 1px solid #202020;
}
.in_product > div >a >img{
    max-width: 100%;max-height: 100%;
}
.in_product > div:hover img{
    transform: scale(1.2);transition: 0.5s;
}
.in_product div>h1{
    font-weight: normal;text-align: left;background-color: #c5c5c5;width:100%;
    padding-bottom: 0;height: 32px;
}
.in_product div>h1 >a{
    font-size: 14px;color: #333;line-height: 30px;
    display: block;text-align: left;text-indent: 1em;
    overflow: hidden;text-overflow: ellipsis;
    white-space: pre;display: inline-block;width: 100%;
}
.in_product div:hover h1 a{color: #df2a2a;}
.pro_more{
    width: 32px;
    height: 32px;
    background:url(../img/icon_pro_more.png);
    background-size: 100% 100%;
    float: right;
}

/*about*/
.indexabout {
    width: 100%;
    height: 338px;
    overflow: hidden;
    background: url(../img/about_bg.png) center;
    margin-bottom: 20px;
    margin-top: 50px;
}
.indexTit {
    width: 1200px;
    height: auto;
    overflow: hidden;
    margin:10px auto;
    text-align: left;
}
.indexTit .in_title{text-align: left;float: left;margin-top: 50px;}
.about-ct {
    width: 450px;
    height: auto;
    float: left;
    margin-top: 110px;
    position: relative;
     margin-left: -20px;
}

.about-img {
    width: 320px;
    height: 220px;
    margin: 54px 20px;
    margin-left: 80px;
    float: left;
    text-align: center;
}

.about-img img {
    max-width: 100%;
    max-height: 100%;
   
}

.about-t {
    font-size: 18px;
    color: #202020;
   
}

.about-n {
    width: 450px;
    
    color: #202020;
    font-size: 14px;
    line-height: 22px;
    text-indent: 2rem;
    height: 146px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}
.about_move {
    width:110px;
    height: 30px;
    margin-top: 100px;
    line-height: 30px;
    
    border-radius: 30px; 
    text-align: center;
    color: #fff;
    font-size: 12px;
    background-color: #ea5b5b;
}

/*news*/

.news_classify{
    display: flex;display: -webkit-flex;
    justify-content: space-between;
    width: 1200px;margin: 0 auto;
}
/*左新闻*/
.newsl{
    width: 600px;
}
.newsltitle {
    border-bottom: 1px solid #d9d9d9;box-sizing: border-box;
    overflow: hidden;
}

.newsltitle h1{
    float: left;
    font-size: 20px;font-weight: normal;font-weight: bold;
    color: #000;line-height: 34px;
    background: url(../img/news_title.png)no-repeat left center;
    padding-left: 25px;
    border-bottom:1px solid red;box-sizing: border-box;
}

.newsltitle h2{
    float: right;
    
}
.newsltitle h2 a{
    color: #666666;font-size: 12px;line-height: 34px;display: block;
}
.newslcon{
    background: #fff;
    margin-top: 30px;
}
/*右新闻*/
.newsr{
    width:560px;
}
.newslcon{
    padding-top: 10px ;padding-bottom: 30px ;
   
}
.newslcon dl{
    width:340px ;float: left;
    margin-left: 20px;

}
.newslcon a{
    width: 156px;
    height: 100px;
    overflow: hidden;
    float: left;
    overflow: hidden;
    display: inline-block;
}
.newslcon a img{
    width: 100%;
    height: 100%;
}
.newslcon a:hover img{
    transform: scale(1.2);transition: 0.5s;
}
.newslcon dl dt{
    font-size: 12px;color: #999;
}
.newslcon dl dd a{
    display: block;width: 100%;
}
.newslcon dl dd a h1{
    color: #333333;font-size: 18px;line-height: 26px;
    margin: 10px auto;font-weight: normal; 
    overflow: hidden;
    text-overflow:ellipsis;
     white-space:nowrap;
}
.newslcon dl dd a:hover h1{
    color: #df2a2a;
}
.newslcon dl dd a div{
    font-size: 14px;line-height: 21px;
        text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #999;
}
.date {
	float: left;
	height: 5.25rem;
	text-align: right;
padding: 0 .8rem;
	background-color: #646464;
}
.date div {
	color: #fff;
	font-size: 1.4rem;
	padding: 1.3rem 0 0;
	line-height: 1.5rem;
}
.date p {
	color: #a4a4a4;
font-size: .9rem;
}

/*行业新闻*/
.newsrcon{
    background: #fff;
    text-align: center;    margin-top: 30px;
    padding: 20px 0 10px 0;
}
.newsrcon div{
    width: 258px;height: 244px;float: left;border: 1px solid #eee;margin: 10px 10px;
}
.newsrcon div a{
    width: 242px;height: 174px;display: inline-block;margin: 8px auto;overflow: hidden;
}
.newsrcon div a img{
    max-width: 100%;max-height: 100%;object-fit: cover;
}
.newsrcon div a:hover img{
    transform: scale(1.2);transition: 0.5s;
}
.newsrcon h3{
    text-align: left;
    padding: 0 22px;
}
.newsrcon h3 a{
    font-size: 18px;color: #333;line-height: 30px;
    margin:8px 0;display: block;    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;font-weight: normal;
}
.newsrcon h3 a:hover{
    color: #df2a2a;
}

/*案例*/
.case_box{display: flex;justify-content: space-between;margin-top: 50px;}
.case_list{}
.caseimg a{display: block;font-size: 0;}
.caseimg a img{width: 360px;height: 300px;object-fit: cover;}
.casetext .text_detail{width: 100%;}
.casetextbox{  width: 360px;  height: 132px;background: #fff;overflow: hidden;}
.casetext{width: 360px; background: #fff;-webkit-transition: all 0.5s ease 0s;-o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;position: absolute;height: 132px;}
.casetext .text_detail a{display: block;font-size: 0;}
.casetext .text_detail a h1{font-size: 18px;color: #333;font-weight:normal;text-align: center;padding: 0 10px;overflow: hidden;
text-overflow: ellipsis;white-space: pre;line-height: 40px;}
.casetext .text_detail a span{font-size: 14px;color:#666;line-height: 20px;height:40px;display: -webkit-box;padding: 0 15px;text-align: center;
    -webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.casetext .text_button{margin-top: 20px;text-align: center;opacity: 0;width: 96px;height: 32px;background: #E5104D;-o-transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;transition: all 0.5s linear;border-radius: 6px;font-size: 14px;line-height: 32px;margin: 20px auto 0;}
.casetext .text_button a{color: #fff;}
.case_list:hover .casetext {margin-top: -50px;}
.case_list:hover .text_button {opacity: 1;}
/*footer*/
.footer-area-bg{width: 100%;position: relative;background-color: #c9c9c9;margin-top: 30px;}
.footer-area{width: 1200px;margin: 0 auto;}

.footer-widget{display: flex;justify-content: space-between;padding-top: 30px;padding-bottom: 0px;}
.footer-link,.footer-info { margin-top: 0px;width: 150px;height: 280px;overflow: hidden;}
.f-title{font-size: 16px;padding-bottom: 5px;font-weight: bold;color: #323232;}
.footer-link ul li a {
    color: #323232;
    font-size: 14px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.footer-link ul li{    margin-top: 8px;}
.single-footer-info {position: relative;    margin-top: 8px;}
.single-footer-info span {
    font-size: 14px;color: #323232;position: absolute;text-indent: 1rem;
    top: 0;left: 0;}
.single-footer-info span img{
    height: 19px;position: absolute;
    }
.single-footer-info .footer-info-content {padding-left: 50px;}
.single-footer-info .footer-info-content p{   
     font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #323232;
    margin: 0px;
}
.qrcode{
    width: 110px;height: 130px;
    position: relative;margin-top: 90px;left: 150px;text-align: center;
}
.qrcode div{ width: 110px;height: 110px;border: 1px solid #000;padding: 6px; }
.qrcode div img{width: 100%;}
.qrcode span{text-align: center;font-size: 14px;}
.footer-copyright{border-top: 1px solid #000;padding: 15px 0;}
.copyright{text-align: center!important;font-size: 12px;font-weight: 400;line-height: 24px;color: #323232;margin: 0px;}
.footer-copyright a {color: #323232;}


