body{
    background: #f7f7f7;
}

a {
    transition: all .5s;
}

.supplier-detail {
    width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.supplier-detail-picture {
    width: 100%;
    min-width: 1280px;
    text-align: center;
    font-size: 0;
    margin: 20px auto;
    color: black;
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

.supplier-detail-picture img {
    max-width: 1400px;
    min-width: 1280px;
    user-select: none;
}


.supplier-detail-title {
    width: 100%;
    margin: 0 auto;
    height: 70px;
    line-height: 70px;
    border-bottom: 2px solid #DDDDDD;
    color: #666666;
    font-size: 16px;
    font-weight: 600;
}

.supplier-detail-summary {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    border-bottom: 2px solid #DDDDDD;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.supplier-detail-summary img {
    width: 100%;
}

.supplier-detail-albumPics {
    width: 100%;
    margin: 0 auto;
    border-bottom: 2px solid #DDDDDD;
}

.supplier-detail-albumPics img {
    width: 100%;
    height: 100%;
}

.supplier-detail-products {
    width: 100%;
    margin: 50px auto 0;
    box-sizing: border-box;
    position: relative;
}

.supplier-detail-products ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.supplier-detail-products ul li {
    width: 240px;
    height: 340px;
    border-radius: 20px;
    background: white;
    transition: all 0.5s;
    box-shadow: 0 0 0 #aaa;
}

.supplier-detail-products ul li:hover {
    box-shadow: 0 0 5px #aaa;
}

.supplier-detail-products ul li .img {
    width: 100%;
    height: 240px;
    line-height: 240px;
    text-align: center;
}

.supplier-detail-products ul li .img img {
    width: 80%;
    height: 80%;
    vertical-align: middle;
}

.supplier-detail-products ul li .dis {
    background: #743A3A;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: white;
    box-sizing: border-box;
    padding: 0 10px;
}
.supplier-detail-products ul li .adis {
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: white;
    box-sizing: border-box;
    padding: 0 10px;
}
.supplier-detail-products ul li .title {
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.supplier-detail-products ul li .desc {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
}


.supplier-detail-products ul li .desc em {
    width: 30px;
    height: 30px;
    background: url(../20210917/img/keyong/6.png) no-repeat center center;
    cursor: pointer;
}