/* .group-banner {
    width: 100%;
    height: 5.9rem;
    box-shadow: 0rem 0.03rem 0.1rem 0.01rem rgb(0 0 0 / 30%);
}

.group-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
.company-list{
    margin: 0 auto;
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
}
.company-item{
    width: 4.66rem;
    margin-right: 1.01rem;
    background: #FFFFFF;
    box-shadow: 0rem 0.06rem 0.12rem -0.05rem rgba(0, 0, 0, 0.19);
    border: 0.01rem solid #DBDBDB;
    margin-top: 0.4rem;
}
.company-item:nth-child(3n){
    margin-right: 0;
}
.company-img{
    width: 100%;
    height: 2.34rem;
    overflow: hidden;
}
.company-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-content{
    padding: 0.25rem 0.25rem 0.29rem 0.25rem;
    background: #fff;
}
.company-text{
    font-size: 0.18rem;
    font-family: MicrosoftYaHei-Bold,
    MicrosoftYaHei;
    font-weight: bold;
    color: #333333;
}
.company-p{
    font-size: var(--font18);
    font-family: MicrosoftYaHei;
    color: #333333;
    line-height: 0.21rem;
    margin: 0.15rem 0;
}
.company-bt{
    width: 1.18rem;
    height: 0.34rem;
    border-radius: 0.05rem;
    border: 0.01rem solid #014098;
    font-size: var(--font18);
    font-family: MicrosoftYaHei;
    color: #014098;
    line-height: 0.32rem;
    text-align: center;
    transition: all .365s;
}
.company-bt:hover{
    background: #014098;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .company-list{
        padding: 0 0.25rem;
        justify-content: space-between;
    }
    .company-item{
        width: 48%;
        margin-right: 0;
    }
    .company-text{
        font-size: 0.26rem;
    }
    .company-p{
        font-size: 0.26rem;
        line-height: 0.4rem;
        -webkit-line-clamp: 2 !important;
    }
    .company-bt {
        width: 1.5rem;
        height: 0.5rem;
        border-radius: 0.05rem;
        border: 0.01rem solid #014098;
        font-size: 0.26rem;
        font-family: MicrosoftYaHei;
        color: #014098;
        line-height: 0.5rem;
        text-align: center;
        transition: all .365s;
    }
}