@charset "UTF-8";

/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
/* 头部 */
header {
    width: 100%;
    z-index: 10;
    position: relative;
    overflow: hidden;
}
.header {
    height: 100px;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 22;
}
.header-main{
    overflow: hidden;
    width: 100%;
    position: relative;
}
.logo {
    margin-top: 8px;
    position: relative;
}
.logo img {
    display: block;
    width: 100%;
}
@media(max-width: 991px) {
    .header {
        height: 70px;
    }
    .header .container{
        width: 100%;
    }
    .logo {
        width: 98px;
        margin-top: 2px;
    }
}
@media(max-width: 599px) {
    .logo {
        margin-top: 1px;
        width: 68px;
    }
    .header {
        height: 50px;
    }
}
/* 关于我们 */
.home-about{
    background: #f7f7f8;
    padding: 100px 0px;
}
.habout-img{
    float: left;
    width: 50%;
    position: relative;
}
.habout-img img{
    display: block;
    width: 100%;
}
.habout-img video{
    display: block;
    width: 100%;
}
.icon-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: url(../img/vedio_play.png) no-repeat center;
}
.habout-info{
    float: right;
    width: 50%;
    padding-left: 70px;
}
.habout-title{
    margin-bottom: 50px;
}
.habout-title h2{
    font-size: 42px;
    color: #000;
    line-height: 42px;
    margin-bottom: 30px;
}
.habout-title i{
    width: 83px;
    height: 6px;
    background: #000;
    display: block;
}
.habout-ms{
    color: #666;
    line-height: 30px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    margin-bottom: 55px;
}
.habout-icon{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.habout-icon ul{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
@media(max-width:500px){
    .habout-icon ul{
        flex-wrap: wrap;
    }
    .habout-icon ul li{
        width: 50%;
        
    }
    .habout-item{
        margin: 0 auto;
    }
}
.habout-item{
    width: 110px;
    height: 110px;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.habout-item .habout-icon{
    margin: 0 auto;
}
.habout-icon ul li:first-child .habout-item .habout-icon{
    width: 35px;
    height: 31px;
    background: url(../img/brand_icon.png) no-repeat center;
}
.habout-icon ul li:nth-child(2) .habout-item .habout-icon{
    width: 42px;
    height: 32px;
    background: url(../img/zizhi_icon.png) no-repeat center;
}
.habout-icon ul li:last-child .habout-item .habout-icon{
    width: 30px;
    height: 30px;
    background: url(../img/contact_icon.png) no-repeat center;
}
.habout-icon ul li:nth-child(3) .habout-item .habout-icon{
    width: 32px;
    height: 32px;
    background: url(../img/chilun_icon.png) no-repeat center;
}
.habout-item span{
    color: #666;
    display: block;
    margin-top: 5px;
}
.habout-item:hover{
    background: #d9b765;
    border-color: #d9b765;
    box-shadow: 0px 0px 5px #d9b765;
}
.habout-item:first-child:hover .habout-icon{
    background: url(../img/brand_on_icon.png) no-repeat center;
}
.habout-item:nth-child(2):hover .habout-icon{
    background: url(../img/zizhi_on_icon.png) no-repeat center;
}
.habout-item:last-child:hover .habout-icon{
    background: url(../img/contact_on_icon.png) no-repeat center;
}
.habout-item:nth-child(3):hover .habout-icon{
    background: url(../img/chilun_on_icon.png) no-repeat center;
}
.habout-item:hover span{
    color: #fff;
}
.look-more{
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #d9b765;
    margin-top: 55px;
}
@media(max-width: 1400px){
    .home-about{
        padding: 60px 0px;
    }
    .habout-title h2{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .habout-info{
        padding-left: 30px;
    }
    .habout-title i{
        height: 4px;
        width: 60px;
    }
    .habout-title{
        margin-bottom: 30px;
    }
    .habout-ms{
        margin-bottom: 30px;
    }
    .look-more{
        margin-top: 40px;
    }
}
@media(max-width:1200px){
    .habout-item{
        width: 100px;
        height: 100px;
    }
    .habout-ms{
        font-size: 14px;
        line-height: 24px;
        -webkit-line-clamp: 3;
    }
}
@media(max-width:991px){
    .habout-img{
        width: 100%;
        max-width: 700px;
        margin: 0 auto 20px;
    }
    .home-about{
        padding: 30px 0px;
    }
    .habout-info{
        width: 100%;
        padding-left: 0px;
    }
    .habout-ms{
        -webkit-line-clamp: 5;
    }
    .habout-ms{
        margin-bottom: 20px;
    }
    .look-more{
        margin-top: 30px;
    }
    .habout-title{
        margin-bottom: 20px;
    }
}
@media(max-width:499px){
    .habout-icon{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .habout-item{
        margin-bottom: 15px;
    }
    .look-more{
        margin: 15px auto 0;
    }
}
/* 产品中心 */
.public-title{
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
}
.public-title h2{
    font-size: 42px;
    line-height: 42px;
    color: #000;
    margin-bottom: 30px;
}
.public-title i{
    display: block;
    width: 80px;
    height: 6px;
    background: #000;
    margin: 0 auto;
}
.hpro-main{
    padding-bottom: 52px;
}
.hpro-item{
    max-width: 676px;
    overflow: hidden;
    position: relative;
    margin-bottom: 48px;
}
.hpro-item img{
    display: block;
    width: 100%;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.hpro-info{
    position: absolute;
    height: 80px;
    bottom: -80px;
    left: 0px;
    width: 100%;
    text-align: center;
    line-height: 80px;
    color: #fff;
    font-size: 24px;
    background: rgba(217, 183, 101, .9);
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.hpro-item:hover .hpro-info{
    bottom: 0px;
}
.hpro-item:hover img{
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.look-more-other{
    display: block;
    width: 158px;
    height: 38px;
    border: 1px solid #b5b5b5;
    margin: 0 auto 100px;
    color: #999;
    text-align: center;
    line-height: 38px;
}
.look-more-other:hover{
    background: #d9b765;
    border-color: #d9b765;
    color: #fff;
}
@media(max-width:1400px){
    .public-title{
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .hpro-main{
        padding-bottom: 35px;
    }
    .look-more-other{
        margin-bottom: 80px;
    }
}
@media(max-width:1200px){
    .public-title{
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .hpro-main{
        padding-bottom: 20px;
    }
    .look-more-other{
        margin-bottom: 50px;
    }
}
@media(max-width:991px){
    .public-title{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .hpro-main{
        padding-bottom: 20px;
    }
    .look-more-other{
        margin-bottom: 30px;
    }
    .public-title h2{
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .public-title i{
        width: 60px;
        height: 4px;
    }
    .hpro-item{
        margin: 0 auto 20px;
    }
}
@media(max-width: 767px){
    .hpro-info{
        height: 60px;
        bottom: -60px;
        line-height: 60px;
        font-size: 18px;
    }
    .hpro-main{
        padding-bottom: 10px;
    }
}
/* 产品特点 */
.hpro-adv{
    background: #f7f7f8;
    padding-top: 100px;
}
.adv-main{
    overflow: hidden;
}
.adv-item{
    float: left;
    width: 20%;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 90px;
    cursor: pointer;
    min-height: 192px;
}
.adv-item .adv-img{
    margin: 0 auto;
    max-height: 70px;
}
.adv-item:first-child .adv-img{
    width: 72px;
    height: 69px;
    background: url(../img/te_img1.png) no-repeat center;
}
.adv-item:nth-child(2) .adv-img{
    width: 70px;
    height: 70px;
    background: url(../img/te_img2.png) no-repeat center;
}
.adv-item:nth-child(3) .adv-img{
    width: 71px;
    height: 69px;
    background: url(../img/te_img3.png) no-repeat center;
}
.adv-item:nth-child(4) .adv-img{
    width: 67px;
    height: 69px;
    background: url(../img/te_img4.png) no-repeat center;
}
.adv-item:nth-child(5) .adv-img{
    width: 63px;
    height: 69px;
    background: url(../img/te_img5.png) no-repeat center;
}
.adv-item:nth-child(6) .adv-img{
    width: 70px;
    height: 70px;
    background: url(../img/te_img6.png) no-repeat center;
}
.adv-item:nth-child(7) .adv-img{
    width: 68px;
    height: 68px;
    background: url(../img/te_img7.png) no-repeat center;
}
.adv-item:nth-child(8) .adv-img{
    width: 58px;
    height: 69px;
    background: url(../img/te_img8.png) no-repeat center;
}
.adv-item:nth-child(9) .adv-img{
    width: 67px;
    height: 69px;
    background: url(../img/te_img9.png) no-repeat center;
}
.adv-item:nth-child(10) .adv-img{
    width: 72px;
    height: 70px;
    background: url(../img/te_img10.png) no-repeat center;
}
.adv-info{
    margin-top: 22px;
}
.adv-info span{
    display: block;
    line-height: 24px;
    color: #333;
    font-size: 20px;
    margin-bottom: 16px;
}
.adv-info p{
    color: #666;
    line-height: 30px;
    font-size: 16px;
}
.adv-item:first-child:hover .adv-img{
    background: url(../img/te_on_img1.png) no-repeat center;
}
.adv-item:nth-child(2):hover .adv-img{
    background: url(../img/te_on_img2.png) no-repeat center;
}
.adv-item:nth-child(3):hover .adv-img{
    background: url(../img/te_on_img3.png) no-repeat center;
}
.adv-item:nth-child(4):hover .adv-img{
    background: url(../img/te_on_img4.png) no-repeat center;
}
.adv-item:nth-child(5):hover .adv-img{
    background: url(../img/te_on_img5.png) no-repeat center;
}
.adv-item:nth-child(6):hover .adv-img{
    background: url(../img/te_on_img6.png) no-repeat center;
}
.adv-item:nth-child(7):hover .adv-img{
    background: url(../img/te_on_img7.png) no-repeat center;
}
.adv-item:nth-child(8):hover .adv-img{
    background: url(../img/te_on_img8.png) no-repeat center;
}
.adv-item:nth-child(9):hover .adv-img{
    background: url(../img/te_on_img9.png) no-repeat center;
}
.adv-item:nth-child(10):hover .adv-img{
    background: url(../img/te_on_img10.png) no-repeat center;
}
@media(max-width: 1400px){
    .adv-item{
        min-height: 222px;
        margin-bottom: 60px;
    }
}
@media(max-width: 991px){
    .hpro-adv{
        padding-top: 50px;
    }
    .adv-item{
        width: 33.3333333%;
        margin-bottom: 30px;
    }
}
@media(max-width: 668px){
    .hpro-adv{
        padding-top: 30px;
    }
    .adv-item{
        width: 50%;
        margin-bottom: 0px;
        padding: 0 5px;
    }
    .adv-info{
        margin-top: 15px;
    }
    .adv-info p{
        font-size: 14px;
        line-height: 24px;
    }
    .adv-info span{
        margin-bottom: 10px;
        font-size: 18px;
    }
}
/* 新闻中心 */
.hnews-main{
    padding-bottom: 90px;
}
.hnews-item{
    max-width: 448px;
    box-shadow: 0px 0px 5px #f3f3f3;
    overflow: hidden;
}
.hnews-img{
    width: 100%;
    overflow: hidden;
}
.hnews-img img{
    width: 100%;
    display: block;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.hnews-item:hover .hnews-img img{
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.hnews-info{
    padding: 35px 25px 30px;
}
.hnews-info h2{
    color: #333;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 18px;
}
.hnews-info span{
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    margin-bottom: 15px;
}
.hnews-ms{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 24px;
    color: #666;
}
.hnews-item:hover .hnews-info h2{
    color: #d9b765;
}
@media(max-width: 1200px){
    .hnews-info{
        padding: 20px 15px;
    }
    .hnews-info h2{
        font-size: 18px;
    }
    .hnews-main{
        padding-bottom: 50px;
    }
}
@media(max-width: 768px){
    .hnews-item{
        margin: 0 auto 20px;
    }
    .hnews-main{
        padding-bottom: 20px;
    }
    .hnews-info h2{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* 底部版权 */
#footer{
    padding-top: 50px;
    background: #f7f7f8;
}
.footer-l{
    float: left;
    width: 27%;
}
.footer-code{
    width: 36%;
    float: left;
    max-width: 138px;
}
.footer-code img{
    width: 100%;
}
.footer-code p{
    line-height: 32px;
    color: #666;
    text-align: center;
    font-size: 14px;
}
.footer-logo{
    float: right;
    width: 59%;
}
.free-phone{
    margin-top: 30px;
}
.free-phone h5{
    font-size: 18px;
    line-height: 24px;
    color: #333;
    margin-bottom: 8px;
}
.free-phone span{
    color: #d9b765;
    font-size: 30px;
    line-height: 30px;
}
.footer-r{
    float: right;
    width: 64%;
}
.footer-item{
    float: left;
    margin-bottom: 44px;
    margin-right: 130px;
}
.footer-item:last-child{
    margin-right: 0px;
}
.footer-item h2{
    font-size: 16px;
    color: #333;
    padding-bottom: 14px;
    position: relative;
    line-height: 16px;
    margin-bottom: 16px;
}
.footer-item h2::after{
    display: block;
    content: "";
    position: absolute;
    width: 16px;
    height: 1px;
    background: #d9b765;
    left: 0px;
    bottom: 0px;
}
.footer-item dl dd{
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-bottom: 9px;
}
.footer-bom{
    border-top: 1px solid #a0a0a0;
    padding: 18px 0px;
}
.footer-bom span{
    color: #666;
    font-size: 14px;
    line-height: 24px;
    display: block;
}
.footer-bom span:first-child{
    float: left;
}
.footer-bom span:last-child{
    float: right;
}
.footer-logo img{
    width: 100%;
}
.footer-top{
    overflow: hidden;
}
@media(max-width: 1400px){
    .footer-item{
        margin-right: 70px;
    }
}
@media(max-width: 1200px){
    .footer-r{
        width: 68%;
    }
    .footer-logo{
        width: 60%;
    }
    .free-phone{
        margin-top: 20px;
    }
    .free-phone span{
        font-size: 24px;
        line-height: 24px;
    }
    .footer-item{
        margin-right: 40px;
    }
}
@media(max-width: 991px){
    .footer-l{
        width: 100%;
        float: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .footer-code{
        width: 138px;
        float: none;
    }
    .footer-logo{
        width: 220px;
        float: none;
        margin-left: 20px;
    }
    .footer-r{
        width: 100%;
        float: none;
    }
    .footer-item{
        float: none;
        margin-right: 0px;
        text-align: center;
        margin-bottom: 0px;
    }
    .footer-item h2{
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .footer-item dl{
        text-align: center;
    }
    .footer-item dl dd{
        display: inline-block;
        margin-bottom: 5px;
    }
    .footer-bom{
        padding: 15px 0px;
    }
}
@media(max-width: 599px){
    .footer-bom span:first-child{
        float: none;
    }
    .footer-bom span:last-child{
        float: none;
    }
    .footer-bom span{
        text-align: center;
        line-height: 20px;
    }
    .footer-code{
        width: 118px;
    }
    .footer-logo{
        margin-left: 10px;
        width: 200px;
    }
}
/* 内容 */
.inside-title{
    padding-bottom: 40px;
    padding-top: 50px;
    overflow: hidden;
    border-bottom: 1px solid #c9c9c9;
}
.title-left{
    float: left;
    width: 30%;
}
.title-left h2{
    font-size: 30px;
    color: #333;
    line-height: 30px;
    padding-bottom: 14px;
    position: relative;
    margin-bottom: 7px;
}
.title-left h2::after{
    display: block;
    content: "";
    position: absolute;
    width: 35px;
    height: 3px;
    background: #d9b765;
    left: 0px;
    bottom: 0px;
}
.title-left span{
    text-transform: uppercase;
    line-height: 24px;
    color: #777;
    font-size: 14px;
}
.title-ul{
    float: right;
}
.title-ul li{
    float: left;
    margin-right: 60px;
}
.title-ul li:last-child{
    margin-right: 0px;
}
.title-ul li>a{
    color: #333;
    font-size: 16px;
    line-height: 24px;
    margin-top: 25px;
    display: block;
}
.title-ul li>a:hover{
    color: #d9b765;
}
.title-ul li.active a{
    color: #d9b765;
}
.about-main{
    padding: 40px 0px;
}
.about-main p{
    color: #666;
    line-height: 30px;
   
}
.about-main img{
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

@media(max-width: 1200px){
    .inside-title{
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .title-ul li{
        margin-right: 30px;
    }
    .about-main{
        padding: 30px 0px;
    }
}
@media(max-width: 991px){
    .about-main{
        padding-top: 20px;
    }
    .title-left{
        width: 100%;
        position: relative;
        float: none;
        height: 50px;
        background: #d9b765;
    }
    .title-left h2{
        font-size: 24px;
        line-height: 50px;
        color: #fff;
        padding-left: 15px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .title-left h2::after{
        width: 0px;
        height: 0px;
    }
    .title-left span{
        display: none;
    }
    .title-ul{
        width: 100%;
        float: none;
        display: none;
    }
    .title-ul li{
        float: none;
        margin-right: 0px;
        width: 100%;
    }
    .title-ul li>a{
        border: 1px solid #f3f3f3;
        border-bottom: none;
        line-height: 48px;
        margin-top: 0px;
        text-align: center;
    }
    .title-ul li:last-child>a{
        border-bottom: 1px solid #f3f3f3;
    }
    .inside-title{
        padding-bottom: 0px;
        border-bottom: none;
    }
}
/* 新闻内部 */
.news-main{
    padding-top: 21px;
    overflow: hidden;
}
.news-main li{
    padding: 29px 0px;
    border-bottom: 1px solid #c9c9c9;
}
.news-img{
    float: left;
    width: 342px;
}
.news-img img{
    width: 100%;
}
.news-info{
    float: right;
    width: calc(100% - 370px);
    padding-top: 20px;
}
.news-info h2{
    line-height: 54px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-info h2>a{
    color: #333;
    font-size: 24px;
}
.news-info h2>a:hover{
    color: #d9b765;
}
.news-info span{
    color: #999;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-bottom: 8px;
}
.news-txt{
    line-height: 30px;
    font-size: 16px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
@media(max-width: 991px){
    .news-main{
        padding-top: 0px;
    }
    .news-main li{
        padding: 20px 0px;
    }
    .news-img{
        float: none;
        width: 100%;
        max-width: 342px;
        margin: 0 auto 10px;
    }
    .news-info{
        float: none;
        width: 100%;
        padding-top: 0px;
    }
    .news-info h2 > a{
        font-size: 20px;
    }
    .news-info h2{
        line-height: 42px;
    }
    .news-txt{
        line-height: 24px;
        font-size: 14px;
    }
}
/* 产品 */
.pro-main{
    padding-top: 50px;
}
.pro-item{
    max-width: 448px;
    margin: 0 auto 8px;
}
.pro-img{
    width: 100%;
    overflow: hidden;
}
.pro-img img{
    width: 100%;
    display: block;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.pro-item p{
    line-height: 54px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
.pro-item:hover .pro-img img{
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.pro-item:hover p{
    color: #d9b765;
}
@media(max-width: 1200px){
    .pro-item{
        margin-bottom: 0px;
    }
}
@media(max-width: 991px){
    .pro-item{
        margin: 0 auto;
    }
    .pro-main{
        padding-top: 30px;
    }
}
@media(max-width: 767px){
    .pro-item p{
        line-height: 46px;
    }
}
/* 联系我们 */
.contact-main{
    padding-bottom: 60px;
}
.contact-cont{
    overflow: hidden;
}
.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f3f3f3;
    justify-content: center;
}
.contact-info dl dt{
    font-size: 24px;
    color: #ab7033;
    margin-bottom: 25px;
}
.contact-info dl dd{
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.contact-img{
    overflow: hidden;
    width: 100%;
}
.contact-img img{
    display: block;
    width: 100%;
}
.contact-ditu{
    margin-top: 28px;
    overflow: hidden;
    width: 100%;
}
.contact-ditu img{
    display: block;
    width: 100%;
}
@media(max-width: 1200px){
    .contact-info dl dt{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .col-xxs-12{
        width:100%;
    }
    .contact-info{
        padding: 30px 0px;
        margin-bottom: 15px;
    }
    .contact-main{
        padding-bottom: 40px;
    }
}
@media(max-width: 599px){
    .contact-main{
        padding-bottom: 30px;
    }
    .contact-ditu{
        margin-top: 15px;
    }
}

.dc-pro{
    padding: 40px 0px;
}
.dc-pro p{
    color: #666;
    line-height: 30px;
}
.dc-pro img{
    max-width: 100%;
}