/* 
html5doctor.com Reset Stylesheet
v1.4.1 
2010-03-01
Author: Richard Clark - http://richclarkdesign.com
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    font-family:'Arial','黑体';
    line-height:1;
}

:focus {
	outline: 1;
}

article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary { 
    display:block;
}

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted #000;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/***********布局开始**************/
.fl{
    float: left;
}

.fr{
    float: right;
}

.clear{
    clear: both;
}

img{
    max-width: 100%;
}

.wrap{
    max-width: 100%;
    
}

body{
    background: #fff;
}

.head{
    max-width: 1200px;
    line-height: 80px;
	margin: 0 auto;
    /*display: inline-block;*/
}

.logo{
    display: inline-block;
    width: 240px;
    height: 80px;
    text-indent: -9999px;
    background: url(../images/logo.png) no-repeat;
}

.nav{
	max-width: 1200px;
    height: 50px;
	line-height: 49px;
	margin: 0 auto;
}
.nav li{
    float: left;
    /*margin-left: 39px;
    font-weight: bold;*/
    text-transform: uppercase;
    position: relative;
	width: 120px;
	text-align: center;
}

.nav li a{
    color: #666666;
    font-size: 15px;
}

.nav li a:hover, .nav li .active{
    color: #fff;
	font-weight: bold;
	/*max-width: 120px;*/
	height: 50px;
	display: block;
	background: url(../images/nav_hover.png) repeat-x;
}

.nav li ul{
    display: none;
    background: #f6f6f6;
    width: 160px;
    padding: 8px 0 8px 0;
    position: absolute;
    top: 50px;
    left: 0px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 99;
}

.nav li ul:before{
    content:"";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 50px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;
}

.nav li ul:after{
    content:"";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 50px; 
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: rgba(246, 246, 246, 1) transparent;
}

    .nav li ul li {
        margin-left: 0px;
        height: 39px;
        width: 100%;
        line-height: 39px;
        color: #333;
        border-bottom: 1px solid #ddd;
        font-family: '思源黑体';
    }

.nav li ul li:last-child {border-bottom: none;}
.nav li ul li a{
    width: 160px;
    padding-left: 20px;
	text-align: left;
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: none;    
}

.nav li ul li a:hover{
    background: url(../images/point.png) no-repeat 8px 15px;
    color: #d6000f;
	font-weight: normal;
}
.top_line {width: 100%; height: 5px; background: url(../images/top_line.png) repeat-x;}

.head .languages a{
    color: #666;
    font-size: 13px;
/*    font-weight: bold;*/
}

.head .languages .space{
/*    font-weight: bold;*/
    padding:0 2px;
	color: #999;
}

.head .search{
    width: 190px;
    height: 30px;
    border:1px solid #d80c18;
    margin-top: 24px;
    margin-right: 10px;
	border-radius: 3px;
}

.head .search input{
    width: 148px;
    height: 28px;
    border:none; 
    outline: none;
    padding-left: 10px;
	border-radius: 4px;
}

.head .search .ss{
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    background: url(../images/ss.jpg) no-repeat;
    cursor: pointer;
	border-radius: 4px;
}

/*********动画效果**********/
.animated{
    -webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}


.a1{
    display: none;
}

.a2{
    display: block;
}

#menu{
    display: none;/*解决加载时导航栏闪现问题*/ 
}

.apply-pup{
    margin-left: 25px;
    background:url(../images/navbg.png) right center no-repeat; 
    width:24px;  
    display:block; 
    text-indent: -9999px;
}

.banner{
    width: 100%;
    overflow: hidden;
}

.banner .flexslider{
    width: 100%;
    border: 0px;
    box-shadow: none;
    margin: 0px;
}

.banner .flex-control-nav{
    bottom: 15px;
}

.banner .flex-control-paging li a{
    width: 38px;
    height: 8px;
    border-radius:0;
    background: rgba(255,255,255,.5);
    box-shadow: none;
}

.banner .flex-control-paging li a.flex-active{
    background: #d6000f;
}

.con {background: #fff; width: 100%; margin-bottom: 40px;}
.main{
/*    display: inline-block;*/
    max-width: 1200px;
    padding: 30px 0 0 0;
    margin: 0 auto;
/*    background: #f5f5f5;*/
}

.main .product{
    position: relative;
    width: 1160px;
/*    display: inline-block;*/
	margin: 0 auto;
    margin-bottom: 20px;
	
}

.main .program{
    display: inline-block;
    width: 360px;
}

.main .program .des{
    display: inline-block;
    width: 100%;
    /*background: #ffffff;*/
}

.main .program .des .header{
    width: 100%;
    height: 20px;
    line-height: 20px;
    color: #d80c18;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Arial';
	font-size: 20px; font-weight: normal;
}

.main .program .des h3{
    width: 100%;
	margin-top: 13px;
    font-size: 14px; font-weight: normal; color: #b2937c;
}
.main .program .des p{
    width: 100%;
	margin: 16px 0 0 0;
    font-size: 14px; 
	font-weight: normal; 
	color: #666;
	line-height: 24px;
}

.main .program .des p a{
	color: #666;
}

.main .program .des p a:hover{
	color: #333;	
}

.main .program .des .img{
    width: 100%;
	margin-top: 20px;
    font-size:0px;
}

.main .program.news {
    margin-left: 50px;
    width: 420px;
}

.main .program .list{
    display: inline-block;
    width: 420px;
	margin: 20px 0 0 0;
}

.main .program .list li{
    position: relative;
    height: 40px;
    line-height: 40px;
/*  border-bottom: 1px dashed #cecece;*/
	font-size: 14px;
	color: #666;
	text-indent: 20px;
	background: #e8e8e8 url(../images/point_list.png) no-repeat 5px 17px;
}

.main .program .list li:nth-child(2n) {background: #fff url(../images/point_list.png) no-repeat 5px 17px;}

.main .program .list li:hover {background: #f6f6f6 url(../images/point_list.png) no-repeat 5px 17px;}
.main .program .list li:hover:nth-child(2n) {background: #f6f6f6 url(../images/point_list.png) no-repeat 5px 17px;}

.main .program .list li a{
    color: #666666;
/*    padding-left: 15px;*/
	text-indent: 20px;
}
.main .program .list li a:hover{
    color: #333;
}

.main .program .list li:before{
    content:'';
    width: 0;
    height:0;
    position: absolute;
    top: 15px;
    /*border: 5px solid transparent;
    border-left-color: #d6000f;*/
	
}


.main .program .des .list{
    display: inline-block;
    width: 100%;
    font-family: 'Arial';
}

.main .program .des .list li{
    position: relative;
    height: 39px;
    line-height: 39px;
    border-bottom: 1px dashed #cecece;
}

.main .program .des .list li a{
    color: #666666;
    padding-left: 15px;
}

.main .program .des .list li:before{
    content:'';
    width: 0;
    height:0;
    position: absolute;
    top: 15px;
    border:5px solid transparent;
    border-left-color:#d6000f;
}

.main .about{
    display: inline-block;
    width: 320px;
	margin-left: 50px;
}

.main .about .des{
    display: inline-block;
    width: 100%;
    
    background: #ffffff;
}

.main .about .des .header{
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    color: #d80c18;
    text-transform: uppercase;
/*    margin-bottom: 10px;*/
    font-family: 'Arial';
}
.main .about .des h3{
    width: 100%;
	margin-top: 8px;
	line-height: 24px;
    font-size: 14px; font-weight: normal; color: #b2937c;
}

.main .about .des .header .more{
    font-size: 12px;
    color: #666666;
    margin-top: 5px;
}

.main .about .img{
	margin-top: 7px;
    width: 100%;
	height: 180px;
    font-size: 0px;
}

.main .about .detail{
    width: 100%;
	height: 40px;
	margin-top: 5px;
    color: #fff;
    line-height: 40px;
    font-size: 18px;
	text-align: center;
	background: #fcac3d;
    font-family: 'Arial';
}

.footer{
    width: 100%;
	height: 100px;
    display: inline-block;
	background: #dcdcdc;
}

.footer .wrap {max-width: 1200px; margin: 0 auto;}
.footer .footerlogo{
    display: inline-block;
    width: 120px;
    height: 80px;
    text-indent: -9999px;
    background: url(../images/footer_logo.jpg) no-repeat;
}

.footer .menuf{
    text-align: left;
    font-size: 13px;
    color: #999;
	margin-left: 20px;
	margin-top: 20px;
}

.footer .menuf a{
    color: #666;
}
.footer .menuf a:hover{
    color: #d6000f;
	text-decoration: underline;
}

.footer .menuf span{
    padding: 0px 8px;
}

.footer .address{
    color: #666;
    font-size: 12px;
    padding-bottom: 10px;
}
.footer .footer_line {width: 100%; height: 20px; background: url(../images/footer_line.jpg) repeat-x;}
.copyright{
    color: #666;
    font-size: 13px;
    float: left;
	margin-top: 15px;
	margin-left: 20px;
}

.footer .wx {margin: 20px 8px 18px;}
.footer .tm {margin: 20px 8px 18px;}
.footer .tel {margin: 20px 0 18px 8px;}
.footer .nom {margin: 20px 0 18px;}
.footer .ew {position: relative;}
.footer .ewm {display: none; position: absolute; top: -63px; left: -15px; z-index: 99; width: 80px; height: 80px;}
.footer .ew:hover .ewm {display: block; width: 80px; height: 80px;}

.main .product .swiper-slide{
    font-size: 0px;
}

.main .product .swiper-slide img{
    padding: 5px 5px 0px 5px;
    background: #fff;
}

.main .product .swiper-slide span{
    color: #666666;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    background: #fff;
    width: 100%;
    padding:12px 0;
    font-weight: bold;
}

.main .product .swiper-slide a{
    display: inline-block;
    text-align: center;
}

.main .product .swiper-slide a:hover span{
    color: #d80c18;
}

.main .product .swiper-slide a:hover{
    box-shadow:3px -1px 12px rgba(0,0,0,0.1)
}

.main .product .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
    background: url(../images/pre.png) !important;
    left:-50px !important;
}

.main .product .swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    background: url(../images/next.png) !important;
    right:-50px !important;
}

.main .product .swiper-button-next,.main .product .swiper-button-prev{
    width: 30px !important;
    height: 50px !important;
}

.line{
    width: 100%;
    height: 6px;
    background: url(../images/line.jpg) repeat-x;
}

.con1 {width: 100%; background: #f5f5f5; display: inline-block; padding-bottom: 30px; margin-bottom: -2px;}
.content {max-width: 1200px; margin: 0 auto; padding: 20px 0 30px 0;}
.content .leftsider {display: inline-block; width: 20%; box-shadow:1px 1px 7px rgba(0,0,0,0.2);}
.content .leftsider h1 {
    height: 50px;
    line-height: 50px;
    color: #fff;
    background: #d7000f;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
    padding:0 20px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;   
    -webkit-transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.content .leftsider .menulist {background: #fff;}
.content .leftsider .menulist h2 {
    height: 50px;
    line-height:50px;
    color: #666;
    font-size: 16px;
    font-weight: normal;
    padding:0 20px;
    /*border-bottom: 1px solid #e6e6e6;*/
    border-top: 1px solid #e6e6e6;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    background: url(../images/dot.png) no-repeat 95% center;
}

.content .leftsider .menulist h2:hover ,.content .leftsider .menulist .active {
    color:#d7000f ;
    background: url(../images/doton.png) no-repeat 95% center;
}

.content .leftsider .menulist .menuchild {display: none; border-bottom: 1px solid #e6e6e6;}
.content .leftsider .menulist .menuchild a{
    display: block;
    height: 32px;
    line-height: 32px;
    padding-left: 30px;
    color: #666666;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    overflow: hidden;
    background: url(../images/pointc.png) no-repeat 32px center;
}

.content .leftsider .menulist a {color: #666; display: block;}
.content .leftsider .menulist a.act,
.content .leftsider .menulist a:hover {color: #d7000f;}
.content .leftsider .menulist .menuchild a:hover,.content .leftsider .menulist .menuchild .current{
    color: #d7000f;
    background: url(../images/pointcon.png) no-repeat 32px center;
}

.content .leftsider .menulist .menuchild a span {padding-left: 12px;}

.content .leftsider .bottomline{
    height: 5px;
    width: 100%;
    background: #d7000f;
    border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
}

.bordernone {border:none !important;}
.content .sider {display: inline-block; width: 77%;}

.sider .title {width: 100%; height: 30px; padding-top: 10px; font-size: 14px; border-bottom: 1px solid #e0e0e0;}
.sider .title a {color: #666666;}
.sider .article {width: 100%; padding: 10px 0 20px;}
.sider .listpro {width: 100%; display: inline-block; margin-top: 20px; margin-bottom: 20px;}
.sider .listpro li {float: left; max-width: 18%; margin-right: 50px; margin-bottom: 20px; margin: 0 1% 20px;}
.sider .listpro li a {display: inline-block;}
.sider .listpro li img {float: left; width: 100%; height: auto; background: #fff; border: #e7e7e7 solid 1px;}
.sider .listpro li span {float: left; width: 100%; height: 48px; line-height: 46px; display: inline-block; color: #666; font-size: 16px; text-align: center; overflow: hidden; text-overflow: ellipsis; /*white-space: nowrap;*/}

/*.sider .listpro li:nth-child(5n) {margin-right: 0px;}*/
.sider .listpro li a:hover span {color: #d7000f; width: 100%; height: 48px; background: #fff; border: #e7e7e7 solid 1px; border-bottom: 0; border-top: 0;}

.sider .profl {width: 100%; height: 40px; font-size: 14px; border-bottom: 1px solid #e0e0e0;}
.sider .profl a {color: #666; padding: 0 20px; height: 40px; line-height: 40px; display: inline-block;}
.sider .profl a:hover {color: #fff; background: #d7000f; padding: 0 20px;}
.sider .profl .act {color: #fff; background: #d7000f; padding: 0 20px;}

.sider .prof2 {width: 100%; height: 40px; padding-top: 10px; font-size: 14px; border-bottom: 1px solid #e0e0e0;}
.sider .prof2 .portfolio2 {display:none;}
.sider .prof2 a {color: #666; padding: 0 10px; height: 40px; line-height: 40px; display: inline-block;}
.sider .prof2 a:hover {color: #d7000f; padding: 0 10px; text-decoration: underline;}
.sider .prof2 .act {color: #d7000f; padding: 0 10px;}

.box-shadow {box-shadow: 3px -1px 12px rgba(214,0,15,0.2);}


.sider .case {width: 100%; display: inline-block; margin-top: 28px;}
.sider .case li.c1 {float: left; width: 285px; height: 177px; margin-right: 20px; margin-bottom: 20px; position: relative;}
.sider .case li.c2 {float: left; width: 285px; height: 374px; margin-right: 20px; margin-bottom: 20px; position: relative;}
.sider .case li a {display: inline-block; position: absolute; left: 0; top: 0;}
.sider .case li a.a2 {display: inline-block; position: absolute; left: 0; top: -197px;}
.sider .case li a.a1 {display: inline-block; position: absolute; left: 0; top: -197px;}
.sider .case li img {float: left; width: 100%; height: auto; background: #fff;}
.sider .case li span {width: 285px; height: 48px; line-height: 46px; color: #fff; font-size: 16px; text-align: center; overflow: hidden; text-overflow: ellipsis; /*white-space: nowrap;*/ position: absolute; bottom: 0; background: rgba(214,0,15,0.7); display: none;}

.sider .case li:nth-child(4n) {margin-right: 0px;}
.sider .case li a:hover span {color: #fff; width: 285px; height: 48px; display: block;}



.pages {display: inline-block; width: 100%; background: #fff; height: 40px; line-height: 40px; text-align: center; font-size: 14px;}
.pages li {width: auto; display: inline-block; margin: 0 3px;}
.pages li a {display: inline-block; color: #333333; padding: 0 10px;}
.pages li .active {color: #fff; background: #d7000f; padding: 0 10px;}
.pages li a:hover {color: #fff; background: #d7000f; padding: 0 10px;}


.pages li span {display: inline-block; color: #333333; padding: 0 10px;}
.pages li span:hover {color: #fff; background: #d7000f; padding: 0 10px;}

.sider .downlist {width: 100%; display: inline-block; margin: 20px 0 30px 0;}
.sider .downlist li {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px dashed #dddddd;
    padding:0 10px;
}

.downbg {background: #f5f5f5;}
.downbge {background: #fff;}
.sider .downlist li .files {
    float: left;
    display: inline-block;
    width: 65%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.sider .downlist li .files span {padding-left: 15px; color: #333333;}

.sider .downlist li .files:before {
    content:'';
    width: 0;
    height:0;
    position: absolute;
    top:15px;
    border:5px solid transparent;
    border-left-color:#d6000f;
}

.sider .downlist li .down {
    float: left;
    display: inline-block;
    width:15%;
    padding-left: 27px;
    color: #d7000f;
    font-size: 14px;
    background: url(../images/down.png) no-repeat 0 13px;
}

.sider .downlist li .preview {
    float: left;
    width: 13.5%;
    color: #d7000f;
    padding-left: 20px;
    font-size: 14px;
    background: url(../images/preview.png) no-repeat 0 13px;
}

.sider .contact {width:100%; display: inline-block; padding: 25px 0;}
.sider .contact .dec {font-size: 14px; color: #666666; margin-bottom: 20px;}
.sider .contact  .dec h1 {font-size: 20px; color: #333333; padding-bottom: 20px;}
.sider .contact .dec p {line-height: 30px;}

/*--- 友情链接开始 ---*/
.sider .link {
	width: 100%;
    padding: 28px 0;
    display: inline-block;
}

.sider .link li{
    float: left;
    width: 32%;
    margin-right: 2%;
    background: #fff;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}

.sider .link li:nth-child(3n) {margin-right: 0;}

.sider .link li a{
    padding-left: 3%;
    display: block;
    font-size: 14px;
	color: #666;
}

.sider .link li a:hover,.sider .link .active{
    color: #fff;
    background: #d7000f;
}
/*--- 友情链接结束 ---*/

.sider .newslist{
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.sider .newslist li{
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px dashed #d4d4d4;
    display: inline-block;
}

.sider .newslist li .img{
    width: 20.68%;
}
.sider .newslist li .img:hover {opacity: 0.8;}

.sider .newslist li .dec{
    width: 77.01%;
}

.sider .newslist li .dec .date{
    font-size: 14px;
    color: #d7000f;
    padding: 6px 0;
}

.sider .newslist li .dec .titl{
    font-size: 16px;
    color: #333;
    padding: 6px 0 10px;
}

.sider .newslist li .dec .titl:hover {
	text-decoration: underline;
	color: #d7000f;
} 

.sider .newslist li .dec .pe{
    font-size: 14px;
    color: #666;
    line-height: 24px;
}
.sider .newslist li .dec .pe:hover {color: #333;}

.sider .contact .map{
    width: 100%;
    height: 440px;
}

.sider .newsarticle{
    width: 100%;
    padding: 25px 0 0;
}

.sider .newsarticle .newstit{
    font-size: 20px;
    color: #333333;
	text-align: center;
    padding-bottom: 15px;
}

.sider .newsarticle .date{
    font-size: 14px;
    color: #999;
    padding-bottom: 10px;
    margin-bottom: 20px;
	text-align: center;
    border-bottom: 1px dashed #d4d4d4;
}

.sider .newsarticle .cc{
    font-size: 14px;
    color: #666666;
    line-height: 30px;
    border-bottom: 1px dashed #d4d4d4;
    margin-bottom: 30px;
}

.sider .newsarticle .ccc{
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}

.sider .newsarticle .cc p {margin: 10px 0 20px;}
.sider .newsarticle .ccc p {margin: 10px 0 20px;}

.sider .newsarticle .prevc {float: left; width: 49%; background: #fff; height: 40px; line-height: 40px; color: #666666; font-size: 14px;}
.sider .newsarticle .prevc span {display: block; float: left; width: 16%; padding: 0 1%; background: #d7000f; color: #fff; text-align: center; margin-right: 2%;}
.sider .newsarticle .prevc a {color: #666; display: block; float: left; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; width: 80%;}
.sider .newsarticle .prevc a:hover {color: #d7000f;}

.sider .newsarticle .nextc {float: right; width: 49%; background: #fff; height: 40px; line-height: 40px; color: #666666; font-size: 14px;}
.sider .newsarticle .nextc span {display: block; float: left; width: 16%; padding: 0 1%; background: #ff6000; color: #fff; text-align: center; margin-right: 2%;}
.sider .newsarticle .nextc a {color: #666; display: block; float: left; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; width: 80%;}
.sider .newsarticle .nextc a:hover {color: #d7000f;}

.sider .pro { width: 100%; display: inline-block;  padding: 25px 0 0;}
.sider .pro .proimg { width: 37%;}
.sider .pro .prodec { width: 60%; font-size: 14px; color: #333333;}
.sider .pro .prodec h1 { font-size: 24px; color: #333; padding: 10px 0; border-bottom: 1px solid #e0e0e0; margin-bottom: 20px;}
.sider .pro .prodec p { font-size: 14px; color: #666; line-height: 30px; color: #333; padding: 5px 0;}
.sider .pro .prodec p strong {font-size: 14px; color: #999; margin-right: 10px; font-weight: normal;}

.minh { min-height: 320px;}
.choosepic { display: inline-block; width: 100%;}
.choosepic li{ float: left;  margin-right: 25px;}

.tab { display: inline-block; width: 100%; margin-top: 40px;}
.tab_title { float: left; width: 100%;  height: 40px; border-bottom: 1px solid #e0e0e0;}

.tab_title li {
    float: left;
    list-style: none;
    height: 100%;
    width: 130px;
    text-align: center;
    color: #333333;
    font-size: 16px;
    line-height: 40px;
    border-bottom:1px solid #e0e0e0;
    cursor: pointer;
    margin-right: 30px;
}

.on { border-bottom: 1px solid #d7000f !important;}
.tab_content {float: left; width: 100%; padding: 30px 0;}
.tab_content_list { display: none;}
.order { width: 100%; border: 0px; text-align: left;}
.order tr { height: 40px; line-height: 40px; border-top: 1px solid #c8c8c8;}
.ordername {
    width: 20.5%;
    padding-left: 3%;
    font-size: 12px;
    font-weight: bold;
    background: #ebebeb;
    border-bottom: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
}

.orderdec {
    width: 74%;
    padding-left: 2%;
    background: #ffffff;
    border-bottom: 1px solid #c8c8c8;
}


/******焦点图控制*******/
/*.ban{ width:100%; height:320px; position:relative; overflow:hidden;margin:0 auto;}
.ban2{float:left;width:680px; height:320px; position:relative; overflow:hidden;}
.ban2 ul{ position:absolute; left:0; top:0;}
.ban2 ul li img{border:3px solid #fff;}
.prev{ float:left; cursor:pointer;}
.num{ height:320px;overflow:hidden; width:180px; position:relative;}
.min_pic{float:right;width:180px;}
.num ul{ position:absolute; left:0; top:0;}
.num ul li img{ width:174px; height:94px;border:3px solid #fff;margin-bottom: 7px;}
.num ul li.onn img{ border-color:#d7000f;}*/

.artdec{
    width: 100%;
    padding: 0;
    font-size: 14px;
    color: #666666;
    line-height: 26px;
}
.artdec img {display: block;}
.artdec p {margin: 10px 0;}
.artdec p b {color: #333; font-size: 14px;}
.artdec h3 {color: #333; font-size: 16px; margin-top: 20px;}

.artdec .rc {float:left; width: 100%; margin: 20px 0 40px;}
.artdec .rc img {float: left; width: 80px;}
.artdec .rc p {float: left; max-width: 810px; margin: 0 0 0 30px;}
.artdec .rc p b {font-size: 16px; width: 100%; display: inline-block; line-height: 24px;}
.artdec .rc p span {width: 100%; display: inline-block;}

.artdec ul {width: 100%;}
.artdec ul li {float: left; width: 49%; margin-right: 2%; height: 180px; background: #e2e8dc; margin-bottom: 20px; overflow: hidden; text-overflow: ellipsis;}
.artdec ul li:nth-child(2n) {margin-right: 0; background: #eaeaea;}
.artdec ul li.bg2:nth-child(1n) {background: #eaeaea;}
.artdec ul li h3 {padding: 15px 20px; font-size: 20px; font-weight: normal; color: #333;}
.artdec ul li p {padding: 0 20px; margin: 0;}
.artdec ul li.bg {margin-right: 0; background: #f2dcde; margin-right: 2%;}
.artdec ul li.bg:nth-child(2n) {margin-right: 0; background: #f2dcde;}
.artdec ul li.bg1:nth-child(2n) {margin-right: 0; background: #e2e8dc;}


/*自适应1160*/


@media screen and (max-width: 1200px){
    .wrap {width: 98%; margin: 0 1%;}
    .logo {width: 135px; height: 60px; background-size: 135px 60px; margin-right: 25px;}
    .head {line-height: 60px;}
    .head .nav {line-height: 60px;}
    .head .nav li {margin-left: 30px;}
    .head .search {width: 150px; margin-top: 15px;}
    .head .search input {width: 108px;}
    .main .program {width: 30%;}    
    .main .program .des .img {width: 100%;}    
    .main .program .des .list {width: 100%; margin-top: 10px;}    
    .main .program .des .list li {width: 100%; float: left; margin-bottom: 15px;}
	
	.main .program.news {width: 36%; margin-left: 2%;}
	.main .program.news .list {width: 100%;}
	.main .program.news .list li {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
	
	.main .about {width: 30%; margin-left: 2%;}
    .main .about .des .img {width: 25%;}
    .main .about .des .detail {width: 73%; font-size: 14px; line-height: 25px; padding-top: 20px;}
    .main .product .swiper-button-prev, .swiper-container-rtl .swiper-button-next {left: 0px !important;}
    .main .product .swiper-button-next, .swiper-container-rtl .swiper-button-prev {right: 0px !important;}
    .minh {min-height: 250px;}
}

@media screen and (max-width: 1104px){
	.nav {width: 100%; height: 50px; line-height: 49px; margin: 0 auto;}
	.nav li {width: 11.1%;}
	
	.sider .pro .prodec { width: 55%; font-size: 14px; color: #333333;}
}

@media screen and (max-width: 960px){
	.nav {width: 100%; height: 49px; line-height: 49px; margin: 0 auto;}
	.nav li {width: 11.1%;}
	.nav li a {font-size: 13px;}
	
	.sider .profl {width: 100%; height: 40px; padding-top: 10px; font-size: 13px; border-bottom: 1px solid #e0e0e0;}
	.sider .profl a {color: #666; padding: 0 10px; height: 40px; line-height: 40px; display: inline-block;}
	.sider .profl a:hover {color: #fff; background: #d7000f; padding: 0 20px;}
	.sider .profl .act {color: #fff; background: #d7000f; padding: 0 20px;}
	
	.sider .prof2 {width: 100%; height: 40px; padding-top: 10px; font-size: 12px; border-bottom: 1px solid #e0e0e0;}
	.sider .prof2 a {color: #666; padding: 0 10px; height: 40px; line-height: 40px; display: inline-block;}
	.sider .prof2 a:hover {color: #d7000f; padding: 0 10px; text-decoration: underline;}
	.sider .prof2 .act {color: #d7000f; padding: 0 10px;}
}

/*自适应980*/

@media screen and (max-width: 980px){
	.content {padding: 10px 0 30px;}
    .main .program {width: 30%;}
	.main .program .des .img {width: 100%;}
    .main .program .des .list {width: 100%;}
	
	.main .program.news {width: 36%; margin-left: 2%;}
	.main .program.news .list {width: 100%;}
	.main .program.news .list li {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
	
    .main .about {width: 30%;}
    .main .about .des .img {width: 35%;}
    .main .about .des .img img {width: 100%;}
    .main .about .des .detail {width: 60%; font-size: 14px; line-height: 25px; padding-top:20px;}
    .sider .downlist li .files {width: 50%;}
	.sider .downlist li .down {width: 20%;}
    .sider .downlist li .preview {width: 20%;}
	

	.sider .listpro li span {float: left; width: 99%; height: 48px; line-height: 46px; display: inline-block; color: #666; font-size: 14px; text-align: center; overflow: hidden; text-overflow: ellipsis; /*white-space: nowrap;*/}
	
	.sider .pro .prodec { width: 50%; font-size: 14px; color: #333333;}
	
}

@media (min-width: 768px) and (max-width: 980px) {
	.content .leftsider h1 {
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
	.content .leftsider .menulist h2 {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}	
}


@media screen and (max-width: 880px){
	.sider .pro .prodec { width: 99%; font-size: 14px; color: #333333;  margin: 0 auto}
	.sider .pro .proimg {width: 99%;}
}
/*自适应768*/

@media screen and (max-width: 768px){
    .a1 {display: block;}
    .a2 {display: none;}
    .head .search {display: none;}
    .content .leftsider {width: 100%;}
    .content .sider {width: 100%; margin-top: 20px;}
    .sider .title {font-size: 14px;}
    .sider .pro .proimg {width: 100%;}
    .sider .pro .prodec {width: 100%;}
	
	.sider .profl {width: 100%; height: 40px; padding-top: 10px; font-size: 13px; border-bottom: 1px solid #e0e0e0;}
	.sider .profl a {color: #666; padding: 0 10px; height: 40px; line-height: 40px; display: inline-block;}
	.sider .profl a:hover {color: #fff; background: #d7000f; padding: 0 20px;}
	.sider .profl .act {color: #fff; background: #d7000f; padding: 0 20px;}
	
	.sider .prof2 {width: 100%; height: 40px; padding-top: 10px; font-size: 12px; border-bottom: 1px solid #e0e0e0;}
	.sider .prof2 a {color: #666; padding: 0 5px; height: 40px; line-height: 40px; display: inline-block;}
	.sider .prof2 a:hover {color: #d7000f; padding: 0 5px; text-decoration: underline;}
	.sider .prof2 .act {color: #d7000f; padding: 0 5px;}
	
	
	.sider .listpro {width: 100%; display: inline-block; margin-top: 28px;}
	.sider .listpro li {float: left; max-width: 29.3%; margin: 0 2% 20px;}
	.sider .listpro li a {display: inline-block;}
	.sider .listpro li img {float: left; width: 99%; height: auto; background: #fff; border: #e7e7e7 solid 1px;}
	.sider .listpro li span {float: left; width: 99%; height: 48px; line-height: 46px; display: inline-block; color: #666; font-size: 16px; text-align: center;}

	.sider .listpro li:nth-child(3n) {margin-right: 2%;}
	.sider .listpro li:nth-child(5n) {margin-right: 2%;}
	.sider .listpro li a:hover span {color: #d7000f; width: 99%; height: 48px; background: #fff; border: #e7e7e7 solid 1px; border-bottom: 0; border-top: 0;}

}


/*自适应768*/

@media screen and (max-width: 768px){
	.content {padding: 0 0 30px; margin-top: -10px;}
    .head {height: auto; line-height: 50px;}
    .logo {width: 130px; height: auto; background-size: 130px 50px;}
	.main .program {width: 98%; margin: 0 1%;}
    .main .program .des .img {width: 100%;}
    .main .program .des .img img {width: 100%;}
    .main .program .des .list {width: 100%;}
    .main .program .des .list li {width: 100%; margin: 0px; float: none;}	
	.main .program .des .header {font-size: 16px;}	
	.main .program.news {margin: 3% 1%; width: 98%;}
	.main .program.news .list {width: 100%;}
	.main .program.news .list li {width: 100%;}	
	.main .about {margin: 2% 1%; width: 98%;}
    .main .about .des .header {font-size: 16px;}
    .main .about .img {width: 100%; height: auto; float: left;}
    .main .about .img img {width: 100%;}
    .main .about .detail {width: 100%; float: left; margin-top: 10px;}
	.footer .wrap {width: 98%; margin: 0 1%; position: relative;}
    .footer .footerlogo {width: 120px; height: 80px; background-size: 120px 80px; float: left; display: none;}
	.footer .menu {width: 98%; line-height: 22px;}
    .footer .menuf {text-align: left; margin-top: 10px;}
    .copyright {float: left; margin-top: 5px;}
    .footer .address {line-height: 22px;}
	.footer .link {position: absolute; left: 20px; top: 90px;}
    .main .product {width: 70%; margin: 0px 15% 20px 15%;}
    .main .product .swiper-button-prev, .swiper-container-rtl .swiper-button-next {left: -30px !important;}
    .main .product .swiper-button-next, .swiper-container-rtl .swiper-button-prev {right: -30px !important;}
    .sider .listpro li {width: 100%; background: none; margin-bottom: 20px; text-align: center;}
    .sider .downlist li {height: 80px;}
    .sider .downlist li .files {width: 100%;}
    .sider .downlist li .down {width: 40%;}
    .sider .downlist li .preview {width: 40%;}
    .sider .newslist li .img {width: 100%;}
    .sider .newslist li .dec {width: 100%;}
    .sider .newsarticle .prevc span {width: 15%;}
    .sider .newsarticle .prevc a {width: 80%;}
    .tab_title li {width: 90px; font-size: 13px;}
    /*.ban {height: 150px;}
    .ban2 {width: 306px; height: 146px;}
    .ban2 img {width: 300px; height: 140px;}*/
	
	.artdec ul {width: 100%;}
	.artdec ul li {float: left; width: 100%; height: auto; padding-bottom: 10px; background: #e2e8dc; margin-bottom: 20px;}
	.artdec ul li:nth-child(2n) {margin-right: 0; background: #eaeaea;}
	.artdec ul li.bg2:nth-child(1n) {background: #eaeaea;}
	.artdec ul li h3 {padding: 15px 20px; font-size: 20px; font-weight: normal; color: #333;}
	.artdec ul li p {padding: 0 20px; margin: 0;}
	.artdec ul li.bg {margin-right: 0; background: #f2dcde; margin-right: 2%;}
	.artdec ul li.bg:nth-child(2n) {margin-right: 0; background: #f2dcde;}
	.artdec ul li.bg1:nth-child(2n) {margin-right: 0; background: #e2e8dc;}
}
@media screen and (max-width: 700px){

	.sider .profl {width: 100%; height: auto; padding-top: 10px; font-size: 13px; border-bottom: 1px solid #e0e0e0;}
	.sider .profl a {color: #666; padding: 0 10px; height: 40px; line-height: 40px; display: inline-block;}
	.sider .profl a:hover {color: #fff; background: #d7000f; padding: 0 10px;}
	.sider .profl .act {color: #fff; background: #d7000f; padding: 0 10px;}
	
	.sider .prof2 {width: 100%; height: auto; padding-top: 10px; font-size: 14px; border-bottom: 1px solid #e0e0e0;}
	.sider .prof2 a {color: #666; padding: 0 10px; height: 40px; line-height: 40px; display: inline-block;}
	.sider .prof2 a:hover {color: #d7000f; padding: 0 10px; text-decoration: underline;}
	.sider .prof2 .act {color: #d7000f; padding: 0 10px;}
}

@media screen and (max-width: 640px){
	.content {padding: 0 0 30px;}

	/*--- 友情链接开始 ---*/
	.sider .link {width: 100%; margin: 0 auto; padding: 28px 0;}
	.sider .link li {float: left; width: 100%; background: #fff; height: 40px; line-height: 40px; margin-bottom: 20px;}	
/*	.sider .link li:nth-child(2n) {margin-left: 0%; margin-right: 0;}
	.sider .link li:nth-child(3n) {margin-right: 2%; margin-left: 0;}*/
	.sider .link li a {padding-left: 2%; display: block; font-size: 14px; color: #666;}	
	.sider .link li a:hover,.sider .link .active {color: #fff; background: #d7000f;}
	/*--- 友情链接结束 ---*/
	
}
@media screen and (max-width: 480px){
	.sider .listpro {width: 100%; display: inline-block; margin-top: 28px;}
	.sider .listpro li {float: left; max-width: 46%; margin: 0 2% 10px;}
	.sider .listpro li a {display: inline-block;}
	.sider .listpro li img {float: left; width: 99%; height: auto; background: #fff; border: #e7e7e7 solid 1px;}
	.sider .listpro li span {float: left; width: 99%; height: 40px; line-height: 40px; display: inline-block; color: #666; font-size: 14px; text-align: center;}
	.sider .listpro li a:hover span {color: #d7000f; width: 99%; height: 40px; background: #fff; border: #e7e7e7 solid 1px; border-bottom: 0; border-top: 0;}
	
}

@media screen and (max-width: 320px){
   .tab_title li{
    width: auto;
    font-size: 13px;
	}
}





#projects {
  padding: 50px 0 0;
}
#projects .filters {
  border-top: 1px solid rgba(156, 156, 156, 0.3);
  padding: 40px 0;
  color: rgba(156, 156, 156, 0.9);
  font-family: 'Raleway', sans-serif;
}
#projects .filters .filter {
  padding: 0 40px;
  position: relative;
  line-height: 14px;
  cursor: pointer;
}
#projects .filters .filter i {
  margin-right: 10px;
}
#projects .filters .filter:after {
  width: 5px;
  height: 14px;
  content: '';
  border: 1px solid rgba(156, 156, 156, 0.8);
  border-width: 0 1px;
  position: absolute;
  right: 0;
  top: 0;
}
#projects .filters .filter.active {
  color: #f7b71e;
}
#projects .project.mix {
  position: relative;
  overflow: hidden;
  float: left;
}
#projects .project.mix .projectImg {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
#projects .project.mix .projectDetails {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  padding: 30px;
  background: rgba(156, 156, 156, 0.85);
  color: #FFF;
  font-family: 'Raleway', sans-serif;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#projects .project.mix .projectDetails .nameType {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#projects .project.mix .projectDetails .nameType .projectName {
  font-size: 22px;
}
#projects .project.mix .projectDetails .nameType .projectType {
  color: rgba(255, 255, 255, 0.4);
}
#projects .project.mix .projectDetails .projectIcons a {
  width: 50px;
  line-height: 50px;
  border-color: #f7b71e;
  padding: 0;
  background: none;
  border-radius: 0;
  color: #FFF;
  font-size: 20px;
  text-shadow: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#projects .project.mix .projectDetails .projectIcons a:first-child {
  margin-right: 2px;
}
#projects .project.mix:hover .projectDetails {
  background: none;
}
#projects .project.mix:hover .projectDetails .nameType {
  margin-left: -500%;
}
#projects .project.mix:hover .projectDetails .projectIcons {
  background: none;
}
#projects .project.mix:hover .projectDetails .projectIcons a {
  background: #f7b71e;
}


/*---留言内容样式-*/

.ly {width: 30%; float: left;}
.msg {width: 70%; min-height: 200px; float: left;}
.msg li { margin: 0 4% 0 0; width: 48%; float: left;}
.msg li:nth-child(2) {margin-right: 0;}
    .msg .inputtxt {
        margin-bottom: 0px;
        font-family: '思源黑体';
        line-height: 38px;
        width: 100%;
        border: none;
        background: none;
        border-bottom: #999 solid 1px;
        text-indent: 5px;
    }
    .msg .textarea {
        line-height: 36px;
        width: 100%;
        border: none;
        background: none;
        border-bottom: #999 solid 1px;
        height: 108px;
        margin-bottom: 10px;
        font-size: 14px;
        font-family: '思源黑体';
        text-indent: 5px;
    }
.msg .submit {color: #fff; line-height: 40px; width: 100%; background: #d7000f; cursor: pointer; border-radius: 3px; border: #d7000f solid 1px; -webkit-transition: all .6s; transition: all .6s; opacity: 1; font-size: 16px;}
/*.contactus .contactcon .infoul .submit:hover {color: #333; background: #fff; -webkit-transition: all .6s ease; transition: all .6s ease;}*/

.msg .btn {
  background: #d7000f;
  background: -webkit-linear-gradient(left, #d7000f, #d7000f) no-repeat;
  background: linear-gradient(to right, #d7000f, #d7000f) no-repeat;
  background-size: 100% 100%;
}
.msg .btn:hover { background-size: 0% 100%; color: #333;}

@media screen and (max-width: 480px){
	.ly {width: 100%; float: left}
	.msg {width: 100%; min-height: 200px; float: left;}
	.msg li {width: 100%; float: left;}
}