/*body*/
.sub-company-body {
    background: #FAFAFA;
    padding-bottom: 30px;
}

.sub-company-floor {
    width: 1230px;
    margin: 50px auto;
    background: white;
    display: flex;
    padding: 125px 50px 80px;
}
.sub-company-map {
    width: 653px;
    height: 514px;
}
.sub-company-list {
    flex: 1;
    margin-left: 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    height: 650px;
}
.sub-company-item {
    width: 230px;
    height: 85px;
    display: flex;
    align-items: flex-start;
    padding: 20px 16px;
}
.sub-company-item-pointer {
    cursor: pointer;
}
.company-item-left {
    font-size: 28px;
    font-weight: 500;
    color: #373839;
    margin-right: 19px;
    min-width: 36px;
    max-width: 36px;
    margin-top: -6px;
}
.company-item-right {
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 36px);
}
.company-item-top {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #373839;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.company-item-bot {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #868789;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {  /* 屏幕宽度小于768px */
    .sub-company-map {
        /*display: none;*/
        object-fit: cover;
        width: 90%;
        height: auto;
        margin: 0 auto 10px;
        display: block;
    }
    .sub-company-floor {
        margin: 0 auto;
        width: auto;
        padding: 0;
        display: block;
    }
    .sub-company-list {
        height: auto;
        margin: 0;
        padding-bottom: 30px;
    }
}










