

/*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 '微软雅黑'; }
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:'微软雅黑'; }
small{ font-size: 12px; }
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
/* 重置文本格式元素 */
a{ color:#aaa7a5;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:#b43529;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{display: inline-block;font-size:14px;}
.mc_pager ul li a{background:#404040;color:#fff!important;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active a{background:#b43529;}
.mc_pager ul li:nth-child(1) a,.mc_pager ul li:nth-last-child(1) a{width:50px;font-size: 0;}
.mc_pager ul li:nth-child(1) a:before{content:'◀';font-size:14px;}
.mc_pager ul li:nth-last-child(1) a: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;position: relative;}
.mobile {display: none!important;}
.fl{float: left;}
.fr{float: right;}
em{color: #b43529;}
.wow{visibility: visible!important;}
.content table{margin:10px 0;border-collapse:collapse;display:table;width:100%!important;}
.content td,.content th{padding:10px;border:1px solid #ebebeb;color:#757575;width:1%!important;}
.pro2wm{position:relative;display:inline-block;cursor:pointer;}
.pro2wm .wxewm{filter:Alpha(opacity=0);opacity:0;width:0;height:0;position:absolute;left:50px;bottom:0;z-index:999;transition:all 0.5s;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;}
.pro2wm:hover .wxewm{filter:Alpha(opacity=100);opacity:1;width:200px;height:200px;box-shadow:0 0 10px rgba(0, 0, 0, .1);transition:all 0.5s;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;}
/*end web*/

/*css3*/
/* Grow */
.grow {
    transition-duration: .5s;
    transition-property: transform;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.grow:hover {
    transform: scale(1.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, .1) 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: 100px;
    background: #ffffff;
    box-sizing: border-box;
    position: absolute;
    z-index: 10000;
    top: 0;
}
#header .logo{
    float: left;
    width: 121px;
    padding: 12.5px 50px;
}
#header .logo img{
    width: 100%;
    display: block;
}
/*导航*/
#header .headnav{
    float: right;
    width: 51%;
    background: linear-gradient(to right, #ec685c , #b5362a);
}
#header .headnav .search{
    float: right;
    margin: 35px 30px 0 15px;
}
#header .headnav ul{
    float: right;
}
#header .headnav ul li{
    float: left;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    margin: 25px 15px;
    position: relative;
}
#header .headnav ul li:before{
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
#header .headnav ul li:hover:before,
#header .headnav ul li.hover:before {
    background: #fff;
    transform: scale(1, 1) !important;
    -webkit-transform: scale(1, 1) !important;
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
#header .headnav ul li a{
    display: block;
    color: #fff;
    font-size: 18px;
    position: relative;
    top: -50px;
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
#header .headnav ul li:hover a,
#header .headnav ul li.hover a{
    top: 0;
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
#header .headnav ul li a p:nth-child(1){
    color: #fff;
}
/*banner*/
#inbanner{
    width: 100%;
    height: 750px;
    padding-top: 100px;
    overflow: hidden;
    position: relative;
}
#banner{
    padding: 100px 30px 0;
    position: relative;
}
#banner:before{
    content: "";
    width: 51%;
    height: 88%;
    background: linear-gradient(to right, #ec685c , #b5362a);
    position: absolute;
    top: 0;
    right: 0;
}
#banner .flash{
    position: relative;
    z-index: 1;
}
#banner .flash img{
    width: 100%!important;
    height: auto!important;
    display: block;
}
.web{
	word-break: break-all;
    position: absolute;
    top: 520px;
    left: 4%;
    z-index: 100;
}
.web:before{
    content: "";
    width: 1px;
    height: 100px;
    background: #b43529;
    position: absolute;
    top: -110px;
    left: 50%;
}
.web p{
    color: #b43529;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    display: table-caption;
    text-transform: uppercase;
}
.web p span{
    display: block;
}
/*header*/

/*index*/
.more{
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    overflow: hidden;
    color: #4c4948;
    background: #ffffff;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    position: relative;
}
.more:hover{
    color: #ffffff!important;
}
.more:before{
    content: "";
    width: 0;
    height: 100%;
    background: #b43529;
    position: absolute;
    top: 0;
    left: 0;
}
.more:hover:before{
    width: 100%;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.more p{
    position: relative;
    z-index: 1;
}

.inabout{
    padding: 80px 0;
    overflow: hidden;
}
.inabout img{
    display: block;
}
.inabout .inaboutl{
    position: relative;
}
.inabout .inaboutl .abouttext{
    width: 530px;
    background: #ffffff;
    padding: 40px 35px 60px;
    position: absolute;
    left: 350px;
    top: 128px;
}
.inabout .inaboutl .abouttext h4{
    color: #554f4d;
    font-size: 24px;
}
.inabout .inaboutl .abouttext h5{
    color: #aaa7a5;
    font-size: 14px;
    padding: 10px 0 30px;
}
.inabout .inaboutl .abouttext .description{
    color: #554f4d;
    line-height: 24px;
}
.inabout .inaboutl .abouttext .description a{
    color: #554f4d;
}
.inabout .inaboutr{
    position: relative;
    text-align: right;
}
.inabout .inaboutr img{
    display: inline-block;
}
.inabout .inaboutr .about2{
    width: 225px;
    height: 225px;
    background: url(../img/about2.jpg) right no-repeat;
    margin-top: 106px;
}
.inabout .inaboutr .more2{
    width: 120px;
    height: 58px;
    line-height: 58px;
    background: #fff;
    text-align: center;
    color: #554f4d;
    position: absolute;
    left: -60px;
    bottom: 0;
}
.inabout .inaboutr .more2:hover{
    color: #b43529;
}
.inabout .inaboutr .more2 p{
    display: inline-block;
    line-height: 25px;
    border-bottom: 1px solid #554f4d;
}
.inabout .inaboutr .more2:hover p{
    border-bottom: 1px solid #b43529;
}
.inadv{
    overflow: hidden;
}
.inadv h4{
    color: #554f4d;
    font-size: 24px;
    text-align: center;
    position: relative;
    top: 20px;
}
.inadv h4 p{
    color: #aaa7a5;
    font-size: 14px;
    padding-top: 10px;
}
.inadv ul{
    padding: 50px 0 100px;
    position: relative;
    top: 100px;
}
.inadv ul:before{
    content: "";
    width: 94%;
    height: 100%;
    background: #f2f2f2;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: absolute;
    left: 3%;
    top: 0;
}
.inadv ul li{
    float: left;
    width: 280px;
    background: #fff;
    margin-left: 26px;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    box-sizing: border-box;
    position: relative;
    top: 0;
    transition-duration: .5s;
}
.inadv ul li:nth-child(1){
    margin-left: 0;
}
.inadv ul li:hover{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    top: -5px;
}
.inadv ul li img{
    display: block;
    margin: auto;
}
.inadv ul li h5{
    color: #554f4d;
    font-size: 16px;
    height: 48px;
    line-height: 24px;
    padding: 30px 0 20px;
}
.inadv ul li p{
    color: #7e7a79;
    height: 96px;
    line-height: 24px;
}
.inadv .more{
    margin: auto;
    top: 72px;
}
.customize{
    width: 100%;
    height: 620px;
    background: url("../img/customizebj.jpg") fixed center no-repeat;
    overflow: hidden;
}
.customize h4{
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    padding-top: 120px;
}
.customize h4 p{
    font-size: 14px;
    padding-top: 10px;
}
.customize ul{
    float: right;
    width: 900px;
    padding-top: 110px;
}
.customize ul li{
    float: left;
    width: 300px;
    height: 200px;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #e29b94;
    border-right: 1px solid #e29b94;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}
.customize ul li:nth-child(2),
.customize ul li:nth-child(3){
    border-top: 1px solid #e29b94;
}
.customize ul li:nth-child(4){
    border-left: 1px solid #e29b94;
}
.customize ul li .icon{
    line-height: 30px;
    padding: 28px 0;
}
.customize ul li .custimg{
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    transform: scale(0);
    transition-duration: 1s;
}
.customize ul li:hover .custimg{
    transform: scale(1);
}
.customize ul li .custimg img{
    width: 320px;
    height: 180px;
    display: block;
}
.customize ul li .custimg p{
    color: #554f4d;
    line-height: 40px;
}
.inpro{
    overflow: hidden;
}
.inpro h4{
    color: #554f4d;
    font-size: 24px;
    text-align: center;
    padding-top: 80px;
}
.inpro h4 p{
    color: #aaa7a5;
    font-size: 14px;
    padding: 10px 0 50px;
}
.inpro ul li{
    float: left;
    width: 277px;
    margin-right: 30px;
}
.inpro ul li:nth-child(4n){
    margin-right: 0;
}
.inpro ul li a{
    display: block;
}
.inpro ul li a .proimg{
    overflow: hidden;
    border-radius: 5px;
}
.inpro ul li a .proimg img{
    width: 100%;
    display: block;
}
.inpro ul li a .name{
    color: #554f4d;
    margin: 10px;
}
.inpro ul li a:hover .name{
    color: #b43529;
}
.inpro ul li a .title{
    color: #554f4d;
    margin: 0 10px 30px;
    height: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro ul li a i{
    float: right;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #c6c6c6;
    border: 1px solid;
    border-radius: 50%;
    margin: 10px;
}
.inpro ul li a:hover i{
    color: #b43529;
}
.inpro .more{
    margin: 50px auto 80px;
}
.innews{
    background: #f2f2f2;
    padding-bottom: 50px;
}
.innews h4{
    color: #554f4d;
    font-size: 24px;
    text-align: center;
    padding-top: 50px;
}
.innews h4 p{
    color: #aaa7a5;
    font-size: 14px;
    padding: 10px 0 20px;
}
.innews ul li{
    float: left;
    width: 380px;
    margin: 30px 30px 0 0;
}
.innews ul li:nth-child(3n){
    margin-right: 0;
}
.innews ul li a{
    overflow: hidden;
    display: block;
    background: #ffffff;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    position: relative;
    top: 0;
    transition-duration: .5s;
}
.innews ul li a:hover{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    top: -5px;
}
.innews ul li a .newsimg{
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}
.innews ul li a .newsimg img{
    width: 100%;
    display: block;
}
.innews ul li a .title{
    color: #554f4d;
    font-size: 16px;
    margin: 20px;
    height: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a:hover .title{
    color: #b43529;
}
.innews ul li a .description{
    color: #878787;
    line-height: 24px;
    margin: 0 20px 30px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.innews .more{
    margin: auto;
    position: relative;
    top: 75px;
}
.incon{
    padding-top: 100px;
    overflow: hidden;
    position: relative;
}
.incon:before{
    content: "";
    width: 100%;
    height: 50%;
    background: #821a1f;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.incon ul{
    padding: 50px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}
.incon ul li{
    float: left;
    width: 33.33%;
    text-align: center;
    padding: 0 58px;
    border-left: 1px solid #eeeded;
    box-sizing: border-box;
}
.incon ul li:nth-child(1){
    border-left: 0;
}
.incon ul li h5{
    color: #554f4d;
    font-size: 16px;
    padding: 20px 0 30px;
}
.incon ul li p{
    color: #7e7a79;
    line-height: 24px;
}
/*index*/

/*foot*/
#footer{
    background: #821a1f;
}
.footshare{
    padding: 50px 0;
    text-align: center;
}
.footshare a{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 8px;
    background: url("../share.png") center no-repeat;
}
.footshare a:hover{
    background: url("../share2.png") center no-repeat;
}
.footshare a.qq{
    background-position: 0!important;
}
.footshare a.wx2wm{
    background-position: -59px!important;
}
.footshare a.email{
    background-position: -117px!important;
}
.footshare a.fcon{
    background-position: -176px!important;
}
.footshare a.gf2wm{
    background-position: -234px!important;
}
#footer .tail{
    color: #f1c2c2;
    padding: 50px 0;
   	line-height: 24px;
    border-top: 1px solid #8f272d;
}
#footer .tail a{
    color: #f1c2c2;
}
#footer .tail .tail_a{
    float: right;
    position: relative;
    top: -3px;
    left: 0;
}
#footer .tail .tail_a:hover{
    left: -10px;
}
/*foot*/

/*product*/
.prosearch{
    height: 88px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    background: #f1edeb;
    margin: 0 30px;
}
.prosearch form{
    font-size: 0;
    padding-top: 25px;
}
.prosearch form .navsearch_input input{
    width: 460px;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 3px 0 0 3px;
    background: #ffffff;
    border: 0;
    outline: 0;
}
.prosearch form .searchgo{
    font-size: 14px;
    color: #ffffff;
    width: 100px;
    height: 40px;
    border-radius: 0 3px 3px 0;
    background: #b43529;
    border: 0;
    outline: 0;
}
.pronav{
    text-align: center;
    padding: 38px 0;
}
.pronav .pronavlist a{
    display: inline-block;
    width: 125px;
    height: 40px;
    line-height: 40px;
    margin: 0 10px;
}
.pronav .pronavlist a.hover{
    color: #ffffff;
    background: #b43529;
}
.product{
    padding-bottom: 30px;
}
.searchlist ul li a .title{
    margin-top: 15px;
}
/*showproduct*/
.showproduct{
    border-top: 1px solid #f1edeb;
}
.showproduct .prodetail{
    float: left;
    width: 840px;
}
.showproduct .prodetail .protitle{
    padding: 20px 0;
    border-top: 1px solid #f1edeb;
    border-bottom: 1px solid #f1edeb;
}
.showproduct .prodetail .protitle p{
    color: #554f4d;
    line-height: 30px;
}
.showproduct .prodetail .protitle .con{
    float: right;
    width: 150px;
    background: #b43529;
    margin: 5px 30px;
}
.showproduct .prodetail .protitle .con p{
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
}
.showproduct .prodetail .protitle .con p i{
    padding-right: 5px;
}
.showproduct .prodetail .footshare{
    padding: 15px 0;
    text-align: left;
}
.showproduct .prodetail .footshare a{
    margin: 0 10px 0 0;
    background: url("../share3.png") center no-repeat;
}
.showproduct .prodetail .footshare a:hover{
    background: url("../share4.png") center no-repeat;
}
.showproduct .prolist{
    float: right;
    width: 360px;
    border-left: 1px solid #f1edeb;
    box-sizing: border-box;
}
.showproduct .prolist h4{
    color: #b43529;
    line-height: 80px;
    padding-left: 20px;
    border-bottom: 1px solid #f1edeb;
}
.showproduct .prolist .inpro{
    padding: 50px 0 10px 40px;
}
/*end showproduct*/
/*product*/

/*news*/
.newsnav{
    padding: 50px 0 20px;
}
.news{
    background: #ffffff;
    padding: 0;
}
.shownews .title{
    color: #554f4d;
    line-height: 50px;
    padding-top: 10px;
    border-bottom: 1px solid #dddcdb;
}
.shownews .time{
    float: right;
    color: #8d8785;
}
.shownews .content{
    color: #7b7573;
    line-height: 28px;
    padding: 20px 0;
}
.shownews .content a{
    color: #7b7573;
}
.shownews .content a:hover{
    color: #b43529;
}
.shownews .detailpage{
    color: #7b7573;
    padding: 30px 0 50px;
    line-height: 30px;
    border-top: 1px solid #dddcdb;
}
.shownews .detailpage p a{
    color: #7b7573;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #b43529;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more{
    float: right;
    width: 120px;
    height: 40px;
    line-height: 40px;
}
/*news*/

/*about*/
.about{
    padding: 50px 0;
    overflow: hidden;
}
.about .aboutl{
    width: 620px;
}
.about .aboutl h4{
    color: #554f4d;
    font-size: 24px;
}
.about .aboutl h5{
    color: #aaa7a5;
    font-size: 14px;
    padding: 10px 0 30px;
}
.about .aboutl .content{
    color: #554f4d;
    line-height: 28px;
}
.about .aboutl .content a{
    color: #554f4d;
}
.about .aboutl h6{
    display: inline-block;
    color: #b43529;
    font-size: 20px;
    padding: 50px 0 5px;
    border-bottom: 1px solid;
}
.about .aboutl h6 a{
    color: #b43529;
}
.about .aboutr{
    width: 450px;
    padding-top: 45px;
}
.about .aboutr a:nth-child(2) img{
    position: relative;
    top: -66px;
    right: -30px;
}
.treat{
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.treat h4{
    color: #b43529;
    padding: 50px 0 20px;
    border-top: 1px solid #d8d9dc;
}
.treat .treatbj{
    display: block;
    margin: auto;
}
.treat .treat1{
    position: absolute;
    top: 120px;
    right: 10px;
}
.treat .treat2{
    position: absolute;
    top: 330px;
    left: 10px;
}
.treat .treat3{
    position: absolute;
    top: 540px;
    right: 10px;
}
.treat .treat4{
    position: absolute;
    bottom: 340px;
    left: 10px;
}
.treat .treat5{
    position: absolute;
    bottom: 130px;
    right: 10px;
}
.culture{
    padding-bottom: 30px;
    overflow: hidden;
}
.culture h4{
    color: #554f4d;
    font-size: 24px;
    padding-top: 50px;
    border-top: 1px solid #d8d9dc;
}
.culture h5{
    color: #aaa7a5;
    font-size: 14px;
    padding: 10px 0 30px;
}
.culture ul li{
    float: left;
    width: 567px;
    padding: 10px;
    color: #554f4d;
    line-height: 24px;
    margin: 0 25px 25px 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}
.culture ul li:nth-child(2n){
    margin-right: 0;
}
.culture ul li img{
    float: left;
    padding-right: 20px;
}
.culture ul li span{
    display: block;
    padding: 10px 0 20px;
}
.work ul{
    border-top: 1px solid #d8d9dc;
    padding: 30px 0 50px;
}
.work ul li{
    float: left;
    width: 285px;
    margin: 20px 20px 0 0;
}
.work ul li:nth-child(4n){
    margin-right: 0;
}
.work ul li a{
    display: block;
    padding: 10px;
    border-radius: 10px;
    background: #f6f6f6;
}
.work ul li a:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.work ul li a .workimg{
    overflow: hidden;
}
.work ul li a .workimg img{
    width: 100%;
    display: block;
}
/*about*/

/*contact*/
.contact{
    padding: 50px 0;
    border-bottom: 1px solid #dddcdb;
}
.contact h4{
    color: #554f4d;
    font-size: 24px;
}
.contact h5{
    color: #aaa7a5;
    font-size: 14px;
    padding: 10px 0 30px;
}
.contact .conmap{
    width: 740px;
    height: 520px;
    padding: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}
.contact .conmap .map{
    width: 100%;
    height: 100%;
}
.contact .conr{
    width: 400px;
}
.contact .conr p{
    color: #aaa7a5;
    line-height: 40px;
    padding-left: 5px;
    border-bottom: 1px solid #dddcdb;
}
.contact .conr img{
    width: 200px;
    display: block;
    padding: 10px 0 0 2px;
}
/*contact*/