#manufacturer-detail {
    width: 1300px;
}
#manufacturer-detail >.content > div {
    background-color: #fff;
    padding: 20px;
    margin: 0 0 16px;
    border-radius: 4px;
} 
#manufacturer-detail .content .content-intro{
    align-items: center;
    display: flex;
}
#manufacturer-detail .content .content-intro .image {
    height: 80px;
    width: 190px;
    display: flex;
    overflow: hidden;
}
#manufacturer-detail .content .content-intro .image img{
    height: 100%;
    width: auto;
    margin: auto;
    object-fit: contain;
}
#manufacturer-detail .content .content-intro .intro {
    width: calc(100% - 190px);
    padding-left: 10px;
}
#manufacturer-detail .content .content-intro .intro .intro_title{
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 28px;
}
#manufacturer-detail .content .content-intro .intro .intro_text{
    font-size: 14px;
    line-height: 24px;
}
#manufacturer-detail .content .content-type {
    /* display: flex; */
    column-count: 3;
    column-gap: 20px;
    flex-wrap: wrap;
}
#manufacturer-detail .content .content-type .content-type-item {
    /* width: calc((100% - 20px) / 3); */
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#manufacturer-detail .content .content-type .content-type-item:nth-child(3n) {
    margin-right: 0;
}
#manufacturer-detail .content .content-sell .content-sell-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    margin-bottom: 10px;
} 
#manufacturer-detail .content .content-sell .content-sell-title i {
    color: #4066b8;
    font-weight: 400;
    margin-right: 10px;
}
#manufacturer-detail .content .content-sell .content-sell-list{
    display: flex;
    flex-wrap: wrap;
    
}
#manufacturer-detail .content .content-sell .content-sell-list .content-sell-item {
    width: calc(100% / 5);
}
.content-sell  .content-sell-item a{
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    position: relative;
}
#manufacturer-detail .content .content-sell .content-sell-list .content-sell-item:nth-child(2n){
    background-color: #cccccc1a;
}
.content-sell  .content-sell-item a .image{
    width:60px;
    height:60px;
}
.content-sell  .content-sell-item a .content>div {
    margin: 10px 0 0;
}
.content-sell  .content-sell-item a .content .model {
    color: #333;
    font-weight: 700;
    margin-top: 10px;
}
#manufacturer-detail .content .content-type .content-type-item > a {
    display: block;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 700;
}
#manufacturer-detail .content .content-type .content-type-item > ul a{
    color: #999;
    line-height: 1.7;
}
@media (max-width:991px) {
    #manufacturer-detail{
        padding: 0 10px;
    }
    #manufacturer-detail .content .content-intro {
        flex-direction: column;
    }
    #manufacturer-detail .content .content-intro .intro{
        width: 100%;
    }
    #manufacturer-detail >.content > div {
        padding: 10px;
    }
    #manufacturer-detail .content .content-type {

        column-count: 1;
    }
    #manufacturer-detail .content .content-type .content-type-item {
        width: calc(100% - 20px);

    }
    #manufacturer-detail .content .content-sell .content-sell-list .content-sell-item {
        width: 50%;
    }
    #manufacturer-detail .content .content-sell .content-sell-list .content-sell-item:nth-child(2n){
        background-color: initial;
    }
    #manufacturer-detail .content .content-sell .content-sell-list .content-sell-item:nth-child(4n),
    #manufacturer-detail .content .content-sell .content-sell-list .content-sell-item:nth-child(4n - 3) {
        background-color: #cccccc1a;
    }
}