.brandList {
    margin: 0;
}
.brandListItem {
    display: flex;
    padding: calc(40rem / 16) 0;
}
.brandListItem:first-child {
    padding-top: 0;
}
.brandListItemImgContent {
    float: left;
    position: relative;
    width: 20%;
    height: 0;
    padding-bottom: 20%;		/*height / width*/
    font-size: 0;
}
    .brandListItemImgContent img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
.brandListItemInfoContent {
    float: left;
    margin-left: 5%;
    width: 75%;
    padding-bottom: calc(40rem / 16);
    border-bottom: 1px solid#cccccc;
}
    .brandListItemInfoContent > * {
        display: block;
    }
    .brandTitle {
        font-family: 'arial';
        font-weight: bold;
        
        font-size: calc(26rem / 16);
        color: #292929;
        text-decoration: underline;
        margin-bottom: 1rem;
    }
    .brandAbstract {
        font-family: 'alibabapuhuiti_r';
        font-size: calc(17rem / 16);
        line-height: calc(23rem / 16);
        height: calc(46rem / 16);
        color: #CCCCCC;
        margin-top: calc(20rem / 16);
        margin-bottom: calc(10rem / 16);

        display: block;
		display: -webkit-box;
        overflow: hidden;
        white-space: normal !important;
        text-overflow: ellipsis;
        word-wrap: break-word;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .brandListItemInfoContent > a {
        font-size: calc(17rem / 16);
        text-decoration: underline;
    }
