

/*Reset css*/
/* 清除内外边距 */
body,h1,h2,h3,h4,h5,h6,div,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{ margin: 0; padding: 0; }
/* 设置默认字体 */
body,button,input,select,textarea{ font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; }
h1{ font-size: 18px; }
h2{ font-size: 16px; }
h3{ font-size: 14px; }
h4,h5,h6{ font-size: 100%; font-weight: normal; }
address,cite,dfn,em,var{ font-style: normal; }
code,kbd,pre,samp,tt{ font-family: "Courier New", Courier, monospace; }
small{ font-size: 12px; }
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
/* 重置文本格式元素 */
a{ color:#262b32;text-decoration:none; transition:all 0.2s; -o-transition:all 0.2s; -moz-transition:all 0.2s; -webkit-transition:all 0.2s; }
a:hover{ color:#bee141;text-decoration:none; transition:all 0.2s; -o-transition:all 0.2s; -moz-transition:all 0.2s; -webkit-transition:all 0.2s; }
abbr[title],acronym[title]{ border-bottom: 1px dotted; cursor: help; }
q:before,q:after{ content: ''; }
sup{ vertical-align: text-top; }
sub{ vertical-align: text-bottom; }
/* 重置表单元素 */
legend{ color: #000; }
fieldset,img{ border: none; }
button,input,select,textarea{ font-size: 100%; }
/* 重置表格元素 */
table{ border-collapse: collapse; border-spacing: 0; }
/* 重置 hr */
hr{ border: none; height: 1px; }
/* 清除浮动 */
.clear{ display:block; float:none; clear:both; overflow:hidden; visibility:hidden; width:0; height:0; background:none; border:0; font-size:0; }
/*end Reset css*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager ul{font-size: 0;}
.mc_pager ul li{background:#3a3d46;color:#fff;font-size:14px;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active{background:#bee141;}
.mc_pager ul li a{color:#fff;display:block;}
.mc_pager ul li .current{background:#bee141;display:block;}
.mc_pager ul li:nth-child(1),.mc_pager ul li:nth-last-child(1){width:50px;font-size: 0;}
.mc_pager ul li:nth-child(1) a:before,.mc_pager ul li:nth-child(1) .disabled:before{content:'◀';font-size:14px;}
.mc_pager ul li:nth-last-child(1) a:before,.mc_pager ul li:nth-last-child(1) .disabled:before{content:'▶';font-size:14px;}
/*end 分页*/

/*web*/
html,body {width: 100%;height: 100%;font-family:'微软雅黑';font-size: 14px;background: #ffffff;}
.BODYCENTER {width: 1200px;margin: auto;}
.mobile {display: none!important;}
.fl{float: left;}
.fr{float: right;}
.wow{visibility: visible!important;}
em{color: #bee141;}
.content table{margin:10px 0;border-collapse:collapse;display:table;width:100%;}
.content td,.content th{padding: 15px;border: 1px solid transparent;font-size:14px;width:0;}
/*end web*/

/*css3*/
/* top */
@keyframes top {
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.top {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.top:hover {
    animation-name: top;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
/* float-shadow */
.float-shadow {
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: .3s;
}
.float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .08) 0%,rgba(0, 0, 0, 0) 80%);
    transition-property: transform;
    transition-duration: .3s;
}
.float-shadow:hover {
    transform: translateY(-5px);
}
.float-shadow:hover:before {
    opacity: 1;
    transform: translateY(5px);
}
/*end css3*/



/*header*/
#header{
    width: 100%;
    height: 75px;
    background: rgba(0, 0, 0, .6);
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .icon_menu { overflow:hidden; cursor:pointer; width:40px; height:30px; position:absolute; left:30px; top:22px;}
#header .icon_menu i{ display:block; width:40px; height:2px; background-color:#fff; margin-bottom:12px;}
#header .icon_menu .i01{ animation:icon01 linear infinite 2s}
#header .icon_menu .i02{ animation:icon02 linear infinite 2s}
#header .icon_menu .i03{ animation:icon03 linear infinite 2s}
@keyframes icon01{
    0%{ width:100%;}
    25%{ width:25%;}
    100%{ width:100%}
}
@keyframes icon02{
    0%{ width:100%;}
    50%{ width:25%;}
    100%{ width:100%}
}
@keyframes icon03{
    0%{ width:100%;}
    75%{ width:25%;}
    100%{ width:100%}
}
#header .logo{
    float: left;
    font-size: 0;
    padding: 7px 0;
}
#header .headnav{
    float: right;
    height: 45px;
    padding-top: 30px;
    overflow: hidden;
}
#header .headnav ul li{
    float: left;
    height: 20px;
    line-height: 20px;
    border-right: 1px solid #576575;
}
#header .headnav ul li a{
    display: block;
    height: 45px;
    color: #ffffff;
    padding: 0 35px;
}
#header .headnav ul li.nav5{
    border-right: 0;
}
#header .headnav ul li.nav5 a{
    padding: 0 0 0 38px;
}
#header .headnav ul li a:hover,
#header .headnav ul li a.hover{
    color:#bee141;
}
#header .head_chose{
    float: right;
    overflow: hidden;
    width: 126px;
    height: 28px;
    margin: 25px 0 0 40px;
}
#header .head_chose a.en{ display:block; width:26px; height:26px; text-align:center; line-height:26px; font-size:12px; color:#e0e5ef; border:1px solid #576575; float:left;}
#header .head_chose a.en:hover{border:1px solid #bee141; background-color:#bee141; color:#ffffff;}
#header .head_chose select{ overflow:hidden; width:90px; height:28px; float:right; border:1px solid #576575; line-height:26px; font-size:12px; color:#e0e5ef; padding-left:5px; background:none}
#header .head_chose select option{color:#bee141;}

#header .head_menu{ overflow:hidden; width:200px; height:100%; background:url(../image/menu_bg.png) repeat center; position:fixed; left:-200px; top:0; overflow-y:auto;}
#header .head_menu::-webkit-scrollbar{width:8px; border-radius:5px;}
#header .head_menu::-webkit-scrollbar-track{background-color:#1a46a1; border-radius:5px;}
#header .head_menu::-webkit-scrollbar-thumb{background-color:#6a99f9; border-radius:5px;}
#header .head_menu::-webkit-scrollbar-thumb:hover {background-color:#bee141; border-radius:5px;}
#header .head_menu::-webkit-scrollbar-thumb:active {background-color:#bee141; border-radius:5px;}
#header .head_menu h6{ font-size:20px; color:#fff; padding-left:30px; background:url(../image/menu_close.png) no-repeat 100px center; margin-top:35px; margin-bottom:40px; cursor:pointer}
#header .head_menu ul{ overflow:hidden; width:100%; margin-bottom:40px;}
#header .head_menu li{ overflow:hidden; width:100%; border-bottom:1px solid #292929;}
#header .head_menu li>a{ display:block; width:170px; padding-left:30px; height:50px; line-height:50px; font-size:14px; color:#cecece; background:url(../image/menu_list01.png) no-repeat 162px center; text-decoration:none}
#header .head_menu li.cur>a{ background:url(../image/menu_list02.png) no-repeat 160px center; background-color:#bee141; color:#000000;}
#header .head_menu .erji{ overflow:hidden; width:170px; padding-left:30px; display:none;}
#header .head_menu .erji p{ font-size:14px; line-height:40px; overflow:hidden}
#header .head_menu .erji i{ display:inline-block; width:3px; height:3px; background-color:#fff; margin-right:10px;}
#header .head_menu .erji i{*display:inline}
#header .head_menu .erji a{ color:#fff; text-decoration:none}
#header .head_menu .erji a:hover,#header .head_menu .erji a.hover{ color:#bee141;}

/*navpro*/
#header .navpro{
    display: none;
    width: 100%;
    background: #edeff1;
    padding-top: 30px;
    position: absolute;
    top: 75px;
}
#header .navpro.block{
    display: block;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
#header .navpro ul li{
    float: left;
    width: 112px;
    text-align: center;
    margin-right: 8.8px;
}
#header .navpro ul li:nth-child(10n){
    margin-right: 0;
}
#header .navpro ul li img{
    width: 100%;
}
#header .navpro ul li p{
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    padding: 5px 0 15px;
}
/*banner*/
#inbanner{
    width: 100%;
    height: 100%;
}
#banner{
    padding-top: 75px;
}
#banner .flash img{
    width: 100%!important;
    height: auto!important;
    display: block;
}
/*header*/

/*index*/
.inkey{
    padding: 10px 0;
    background: #f2f2f2;
    border-bottom: 1px solid #e8e8e8;
}
.inkey .key{
    float: left;
    color: #5f5e5e;
    line-height: 37px;
}
.inkey .key span{
    color: #000000;
}
.inkey form{
    float: right;
    font-size: 0;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
}
.inkey form .navsearch_input input{
    float: left;
    width: 180px;
    height: 35px;
    font-size: 14px;
    padding-left: 20px;
    border: 0;
    outline: 0;
    background: 0;
}
.inkey form .searchimage{
    float: right;
}
.inabout{
    padding: 80px 0;
}
.inabout ul li{
    float: left;
    width: 299px;
    text-align: center;
    border-right: 1px solid #f1f1f1;
}
.inabout ul li:nth-child(4){
    border-right: 0;
}
.inabout ul li b{
    font-family: 'Arial';
    font-size: 50px;
    color: #332d25;
}
.inabout ul li p{
    font-size: 13px;
    color: #919191;
    line-height: 20px;
    padding-top: 15px;
}
.inpro{
    background: #f8f8f8;
    text-align: center;
}
.inpro h1{
    font-size: 30px;
    color: #383838;
    padding: 30px 0 20px;
    border-bottom: 1px solid #ececec;
    position: relative;
}
.inpro h1:before{
    content: "";
    width: 140px;
    height: 2px;
    background: #d40000;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -70px;
}
.inpro h4{
    font-size: 13px;
    color: #ababab;
    padding: 20px 0;
}
.inpro .inpronav{
    padding-bottom: 30px;
}
.inpro .inpronav a{
    display: inline-block;
    width: 120px;
    line-height: 50px;
    color: #030303;
    background: #ffffff;
}
.inpro .inpronav a:hover{
    background: #d40000;
    color: #ffffff;
}
.inpro .inpronav a:nth-child(1){
    border-radius: 50px 0 0 50px;
}
.inpro .inpronav a:nth-last-child(1){
    border-radius: 0 50px 50px 0;
}
.inpro .inprolist ul li{
    float: left;
    width: 380px;
    padding-bottom: 50px;
}
.inpro .inprolist ul li:nth-child(3n-1){
    padding: 0 30px;
}
.inpro ul li a{
    display: block;
}
.inpro ul li a .proimg{
    overflow: hidden;
    border: 1px solid #e1e1e1;
}
.inpro ul li a .proimg img{
    width: 100%;
    display: block;
}
.inpro ul li a .title{
    height: 18px;
    overflow: hidden;
    color: #332d25;
    font-size: 18px;
    margin: 20px 0;
}
.inpro ul li a:hover .title{
    color: #db0000;
}
.inpro ul li .promore{
    padding: 0 40px;
}
.inpro ul li .promore .fl{
    border: 1px solid #e8e8e8;
    width: 148px;
    line-height: 38px;
    font-size: 16px;
    color: #444444;
    border-radius: 50px 0 0 50px;
}
.inpro ul li .promore .fl:hover{
    text-decoration: underline;
}
.inpro ul li .promore .fr{
    border: 1px solid #e8e8e8;
    width: 148px;
    line-height: 38px;
    font-size: 16px;
    color: #ffffff;
    background: #cabba4;
    border-radius: 0 50px 50px 0;
}
.inpro ul li .promore .fr:hover{
    background: #a8a7a6;
}
.innews{
    text-align: center;
    padding-top: 50px;
}
.innews h1{
    font-size: 30px;
    color: #383838;
}
.innews h4{
    font-size: 12px;
    color: #bfbfbf;
    padding: 10px 0 50px;
    border-bottom: 1px solid #ececec;
    position: relative;
}
.innews h4:before{
    content: "";
    width: 30px;
    height: 2px;
    background: #db0000;
    position: absolute;
    top: 38%;
    left: 50%;
    margin-left: -15px;
}
.innews .innewsnav{
    position: relative;
    top: -22px;
    z-index: 1;
}
.innews .innewsnav a{
    display: inline-block;
    width: 140px;
    line-height: 42px;
    margin: 0 10px;
    border: 1px solid #ececec;
    border-radius: 50px;
    background: #ffffff;
    color: #2a2a2a;
}
.innews .innewsnav a:hover,
.innews .innewsnav a.hover{
    background: #db0000;
    color: #ffffff;
}
.innews .innewslist{
    padding-top: 20px;
    text-align: left;
}
.innews .innewslist .fl{
    width: 588px;
}
.innews .innewslist .fl a.news1,
.innews .innewslist .fl a.news2,
.innews .innewslist .fl a.news3{
    display: none;
}
.innews .innewslist .fl a img{
    width: 100%;
}
.innews .innewslist .fl a .time{
    float: right;
    line-height: 50px;
    color: #747474;
}
.innews .innewslist .fl a .title{
    font-size: 18px;
    color: #4f4f4f;
    line-height: 50px;
    border-bottom: 1px solid #eae9e9;
}
.innews .innewslist .fl a:hover .title{
    font-weight: bold;
}
.innews .innewslist .fl a .description{
    color: #747474;
    line-height: 24px;
    padding-top: 10px;
}
.innews .innewslist .fr{
    width: 580px;
}
.innews .innewslist .fr .news0{
    display: none;
}
.innews .innewslist .fr li{
    padding-bottom: 50px;
}
.innews .innewslist .fr li a .fl{
    font-family: fantasy;
    font-size: 100px;
    color: #e3e3e3;
    width: 120px;
    border-right: 2px solid #e3e3e3;
}
.innews .innewslist .fr li a .fr{
    width: 435px;
}
.innews .innewslist .fr li a .fr .time{
    float: right;
    font-size: 13px;
    color: #7b7b7b;
    line-height: 50px;
}
.innews .innewslist .fr li a .fr .title{
    font-size: 15px;
    color: #000000;
    line-height: 50px;
    height: 50px;
    overflow: hidden;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;
}
.innews .innewslist .fr li a:hover .fr .title{
    font-weight: bold;
}
.innews .innewslist .fr li a .fr .description{
    color: #7b7b7b;
    line-height: 24px;
    height: 48px;
    overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;
}
.infooter{
    background: #f7f7f7;
    overflow: hidden;
}
.infooter .infooterbj{
    background: url(../image/infooterbj.jpg);
    text-align: center;
    padding: 68px 0 30px;
}
.infooter .infooterlist .fl{
    width: 596px;
}
.infooter .infooterlist .fl img{
    display: block;
    position: relative;
    left: -361px;
}
.infooter .infooterlist .fr{
    width: 596px;
}
.infooter .infooterlist .fr img{
    display: block;
}
.infooter .infooterlist .infootertit{
    height: 446px;
    padding: 0 60px 0 30px;
}
.infooter .infooterlist .fr .infootertit{
    padding: 0 30px 0 60px;
}
.infooter .infooterlist .infootertit h1{
    font-family: 'Arial';
    font-size: 65px;
    color: #fc6b00;
    padding-top: 100px;
}
.infooter .infooterlist .infootertit h1 span{
    font-family: '微软雅黑';
    font-size: 45px;
    font-weight: normal;
    display: inline-block;
    width: 65px;
    line-height: 65px;
    text-align: center;
    border: 5px solid #fc6b00;
    margin-left: 20px;
}
.infooter .infooterlist .infootertit h2{
    display: inline-block;
    font-size: 20px;
    color: #0b0b0b;
    padding: 30px 0 50px;
    position: relative;
}
.infooter .infooterlist .infootertit h2:after{
    content: "";
    width: 40px;
    height: 3px;
    background: #fc6b00;
    position: absolute;
    bottom: 35px;
    left: 0;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.infooter .infooterlist .infootertit:hover h2:after{
    width: 100%;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.infooter .infooterlist .infootertit p{
    font-size: 15px;
    color: #656565;
    line-height: 24px;
}
.infooter .infooterlist .infootertit p span{
    color: #fc6b00;
    text-decoration: underline;
}
.inlink{
    width: 100%;
    height: 550px;
    background: url("../image/inlinkbj.jpg") no-repeat;
    margin-top: 8px;
    text-align: center;
}
.inlink h4{
    font-size: 24px;
    color: #ffffff;
    padding-top: 50px;
}
.inlink h5{
    font-size: 12px;
    color: #ffffff;
    padding: 10px 0 12px;
    margin-bottom: 38px;
    position: relative;
}
.inlink h5:after{
    content: "";
    width: 50px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -25px;
}
.inlink .inlinklist{
    background: #ffffff;
    padding-bottom: 50px;
    margin-bottom: 80px;
    box-shadow: 0 0 10px #ccc;
    -moz-box-shadow: 0 0 10px #ccc;
}
.inlink .inlinklist ul li{
    float: left;
    width: 25%;
    padding-top: 50px;
}
.inlink .inlinklist ul li img{
    height: 70px;
}
/*index*/

/*footer*/
#footer{
    border-top: 1px solid #f2f2f2;
}
#footer .footerl{
    width: 700px;
}
#footer .footerl h1{
    font-size: 21px;
    color: #110d0d;
    padding: 50px 0 30px;
}
#footer .footerl ul{
    border-right: 1px solid #e4e4e4;
}
#footer .footerl ul li{
    float: left;
    width: 25%;
}
#footer .footerl ul li a{
    font-size: 13px;
    line-height: 30px;
    color: #4d4d4d;
    position: relative;
    left: 0;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
#footer .footerl ul li a:hover{
    color: #bee141;
    text-decoration: underline;
    left: 10px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
#footer .footerr{
    width: 450px;
    padding: 100px 0 50px 0;
}
#footer .footerr .ewm{
    float: right;
}
#footer .footerr h1{
    font-size: 13px;
    color: #070707;
    padding: 10px 0;
}
#footer .footerr h4{
    font-size: 12px;
    color: #686868;
    padding-bottom: 15px;
}
#footer .footerr h2{
    width: 222px;
    font-size: 24px;
    color: #000000;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
}
#footer .footerr h3{
    font-size: 12px;
    color: #000000;
    padding: 10px 0;
}
#footer .tail{
    border-top: 1px solid #eeeeee;
    color: #3c3c3c;
    padding: 30px 0;
}
#footer .tail a{
    color: #3c3c3c;
}
#footer .tail a:hover{
    color: #bee141;
    text-decoration: underline;
}
#footer .tail .tail_a{
    float: right;
}
/*footer*/

/*about*/
.about{
    padding: 50px 0;
}
.about p{
    font-size: 13px;
    color: #5d5d5d;
    line-height: 36px;
}
.about .inabout ul li p strong{
    font-family: 'Arial';
    font-size: 50px;
    color: #d50000;
}
.about .aboutimg p{
    float: left;
    width: 386px;
}
.about .aboutimg p img{
    width: 100%;
}
.about .aboutimg p:nth-child(2){
    margin: 0 20px;
}
/*about*/

/*case*/
.case{
    text-align: center;
    padding: 30px 0;
}
.case h1{
    font-size: 30px;
    color: #383838;
}
.case h4{
    font-size: 12px;
    color: #bfbfbf;
    padding: 12px 0 50px;
    position: relative;
}
.case h4:before{
    content: "";
    width: 30px;
    height: 2px;
    background: #db0000;
    position: absolute;
    top: 45%;
    left: 50%;
    margin-left: -15px;
}
.case ul li{
    float: left;
    width: 391px;
}
.case ul li:nth-child(3n-1){
    margin: 0 12px;
}
.case ul li .caseimg{
    overflow: hidden;
}
.case ul li .caseimg img{
    width: 100%;
    display: block;
}
.case ul li .title{
    font-size: 13px;
    color: #5d5d5d;
    padding: 20px 0 30px;
}
/*case*/

/*contact*/
.contact .connav{
    float: right;
    background: #ffffff;
    padding: 18px 0 12px;
    position: relative;
    top: -44px;
}
.contact .connav a{
    display: inline-block;
    color: #666666;
    padding: 0 30px;
    border-right: 1px solid #e4e4e4;
}
.contact .connav a:nth-last-child(1){
    border-right: 0;
}
.contact .connav a:hover,
.contact .connav a.hover{
    color: #c1000e;
}
.contact .con h4{
    font-size: 22px;
    color: #151515;
    padding: 80px 0 50px;
}
.contact .con ul li{
    float: left;
}
.contact .con ul li:nth-child(1){
    width: 42%;
}
.contact .con ul li:nth-child(2){
    width: 38%;
}
.contact .con ul li:nth-child(3){
    width: 18%;
}
.contact .con ul li p{
    color: #666666;
    padding-bottom: 30px;
}
.contact .con ul li p a{
    color: #666666;
}
.contact .con ul li p a:hover{
    color: #c1000e;
    text-decoration: underline;
}
.contact .con ul li p i{
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    padding-right: 8px;
}
.contact .ewm{
}
.contact .ewm .ewmimg{
    display: inline-block;
    text-align: center;
    padding: 0 250px 0 30px;
}
.contact .ewm .ewmimg p{
    color: #666666;
    padding: 10px 0;
}
.contact h5{
    font-size: 24px;
    color: #d70010;
    padding: 38px 0 30px;
}
.contact .map{
    padding: 80px 0 50px;
}
.contact .shfw{
    padding: 80px 0 50px;
    font-size: 13px;
    color: #5d5d5d;
    line-height: 25px;
}
/*contact*/

/*news*/
.news{
    padding: 50px 0;
}
.shownews .newstitle h4{
    font-size: 20px;
    color: #101010;
    text-align: center;
    padding-top: 40px;
}
.shownews .newstitle .time{
    font-size: 14px;
    color: #aeaeae;
    text-align: center;
    padding: 15px 0 20px;
    border-bottom: 1px dotted #bbbbbb;
}
.shownews .con{
    font-size: 15px;
    color: #1c1c1c;
    line-height: 28px;
    padding: 30px 0;
}
.shownews .detailpage{
    padding-bottom: 50px;
}
.shownews .detailpage p{
    float: left;
    width: 50%;
}
.shownews .detailpage p a{
    display: block;
    font-size: 15px;
    color: #595959;
    background: #f5f5f5;
    line-height: 120px;
}
.shownews .detailpage p a:hover{
    color: #ffffff;
    background: #848484;
}
.shownews .detailpage p a i{
    padding: 30px;
}
.shownews .detailpage p.pager{
    text-align: right;
}
/*news*/

/*pro*/
.pro .inprolist{
    padding: 20px 0 50px;
}
/*showproduct*/
.showproduct{
    padding-bottom: 50px;
}
.showproduct .protitle{
    padding: 30px 0;
    border-bottom: 1px solid #e9e9e9;
}
.showproduct .protitle h1{
    color: #333333;
    font-size: 24px;
    font-weight: bold;
    line-height: 45px;
}
.showproduct .protitle p{
    color: #868686;
    font-size: 13px;
}
.showproduct .protitle a{
    display: block;
    border: 2px solid #414141;
    color: #333333;
    font-weight: bold;
    width: 136px;
    line-height: 36px;
    text-align: center;
    margin-top: 15px;
}
.showproduct .protitle a:hover{
    color: #ffffff;
    background-color: #414141;
}
.showproduct .pro-detail h1{
    font-weight: bold;
    font-size: 40px;
    color: #000000;
    margin: 30px 0 10px;
}
.showproduct .pro-detail h2{
    font-size: 28px;
    color: #000000;
    margin-bottom: 50px;
}
.pro-detail .prol{
    float: left;
}
.pro-detail .proc{
    float: left;
}
.pro-detail .proc li{
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
}
.pro-detail .proc li img{
    width: 98px;
    display: block;
}
.pro-detail .pror{
    float: right;
    width: 580px;
}
.pro-detail .pror h3{
    color: #d70010;
    font-size: 27px;
    font-weight: bold;
    padding-bottom: 20px;
}
.pro-detail .pror .content{
    color: #000000;
    line-height: 25px;
}
.pro-detail .pror .content p{
    padding-bottom: 10px;
}
.pro-detail .pror .prolist{
    display: block;
    float: left;
    font-size: 0;
    border: 3px solid transparent;
    margin: 20px 0 0 45px;
}
.pro-detail .pror .prolist:hover{
    border: 3px solid #d70010;
}
.pro-detail .pror .prolist img{
    width: 128px;
}
/*end showproduct*/
/*pro*/
@media (max-width: 1650px){
    .head_chose {
        display: block;
    }
}