/* banner图 */
.banner-wrap{
    width: 100%;
    height: auto;
    font-size: 0;
}
.banner-wrap img{
    width: 100%;
    height: 100%;
}
/* 路由跳转 */
.router-wrap{
    width: 100%;
    height: 80px;
    box-shadow:0 2px 5px rgba(100, 100, 100, 0.5);
}
.router-list{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.router-item a{
    display: inline-block;
    width: 130px;
    height: 80px;
    text-align: center;
    font-size: 16px;
    line-height: 80px;
}
.router-itemOn a{
    color: white;
    background-color: #54B33E;
}
/* 企业简介 */
.companyProfile-wrap{
    width: 100%;
    height: auto;
    margin-top: 100px;
}
.companyProfile-box{
    max-width: 1300px;
    margin: 0 auto;
}
.companyProfile-title{
    font-size: 36px;
    color: #000000;
    font-weight: bold;
}
/* 图文1 */
.companyProfile-TextImage{
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.companyProfile-TextImage .companyImg,.companyProfile-TextImage .companyImg img{
    width: 522px;
    height: 448px;
}
.companyProfile-TextImage .companyText{
    width: calc(100% - 522px);
    height: 448px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-start;
}
.companyText .companyText-title{
    margin-top: 25px;
    padding-left: 50px;
    font-size: 24px;
    color: #54B33E;
}
.companyText .companyText-text{
    padding-left: 50px;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}
.companyText-list{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.companyText-item{
    width: 100%;
    height: auto;
    text-align: center;
    border-right: 1px solid #DADADA;
}
.companyText-item:last-child{
    border-right: 0;
}
.companyText-item p{
    font-size: 16px;
    color: #666666;
}
.companyText-item .companyText-num{
    font-size: 64px;
    color: #54B33E;
}
/* 文字2 */
.companyProfile-Text{
    margin-top: 60px;
    color: #666666;
    font-size: 16px;
    line-height: 30px;
}

/* 图片3 */
.companyProfile-Image{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
/* 公司分布 */
.distribution{
    width: 100%;
    height: 821px;
    margin: 97px 0 68px;
    position: relative;
}
.distributionText{
    width: 578px;
    height: 238px;
    padding: 33px;
    line-height: 30px;
    font-size: 16px;
    background: #F6F6F6;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.distributionText em{
    color: #54B33E;
    font-style: normal;
}
.distributionImage{
    position: absolute;
    top: 0;
    right: 0;
    width: 993px;
    height: 821px;
}
.distributionImage img{
    width: 993px;
    height: 821px;
}

/* 中屏幕 */
@media screen and (max-width: 992px){

}





/* 手机端 */
@media screen and (max-width: 768px){
    .companyProfile-wrap{
        width: 100%;
        height: auto;
        margin-top: 50px;
    }
    .companyProfile-title{
        text-align: center;
    }
    .companyProfile-TextImage{
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }
    .companyProfile-TextImage .companyImg, .companyProfile-TextImage .companyImg img{
        width: 100%;
        height: auto;
    }
    .companyProfile-TextImage .companyText{
        width: 100%;
        height: auto;
    }
    .companyText .companyText-title{
        padding-left: 0;
    }
    .companyText .companyText-text{
        padding-left: 0;
    }
    .companyProfile-Image {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
    }
    .traitImg img,.businessImg img{
        width: 100%;
        height: auto;
    }
    .companyText-list{
        flex-wrap: wrap;
    }
    .companyText-item{
        width: 50%;
    }
    .distribution {
        width: 100%;
        height: auto;
        margin: 0;
        position: static;
    }
    .distributionText{
        width: 100%;
        height: auto;
        position: static;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
    }
    .distributionImage{
        width: 100%;
        height: auto;
        font-size: 0;
        position: static;
    }
    .distributionImage img {
        width: 100%;
        height: auto;
    }
}