/*公司相关信息展示css*/

/*!*字体统一管理 start *!*/
.exo-font-family {
    font-family: Helvetica;
}
/*common*/
.company-exhibition-content {
    margin: auto;
    color: #fff;
    text-align: center;
}
.company-exhibition-content li {
    background-color: var(--color);
    box-sizing: border-box;
}
.company-exhibition-content a {
    color: #fff;
}
.company-exhibition-describe {
    font-weight: bold;
}
.company-exhibition-content .company-exhibition-icon {
    width: 24px;
}
/*pc*/
@media only screen and (min-width: 1025px){
    .company-exhibition-content {
        width: 1200px;
        max-width: 100%;
        display: flex;
    }
    .company-exhibition-content li {
        width: 33.33%;
        height: 184px;
        box-shadow: 0 4px 20px 0 #051F364F;
        padding: 40px 0;
    }
    .company-exhibition-content li:nth-child(2) {
        height: 216px;
    }
    /*.company-exhibition-content .company-exhibition-icon {*/
    /*    width: 24px;*/
    /*}*/
    .company-exhibition-content .company-exhibition-title {
        margin: 15px 0;
        font-size: 16px;
    }
    .company-exhibition-content .company-exhibition-describe {
        font-size: 22px;
    }
}

/*特殊尺寸处理*/
@media only screen and (min-width: 750px)and (max-width:1025px){}

/*mobile*/
@media only screen and (max-width: 1024px) {
    .company-exhibition-wrapper{
        display: none;
    }
    .company-exhibition-content {
        width: 95%;
    }
    .company-exhibition-content li {
        height: 150px;
        margin-bottom: 10px;
        padding-top: 20px;
    }
    .company-exhibition-content .company-exhibition-title {
        margin: 15px 0 9px 0;
        font-size: 16px;
    }
    .company-exhibition-content .company-exhibition-describe {
        font-size: 20px;
    }
}

