.list {
    padding: 14px;
    background-color: #fff;
}

.list li {
    width: 100%;
    height: 128px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.list li + li {
    margin-top: .8rem;
    border-top: 1px solid var(--bs-gray-300);
    padding-top: .8rem;
    height: calc(128px + .8rem);
}

/* 主图 128 → 108（缩 15%）；行高仍留 128px 给两行标题，所以图片垂直居中 */
.list li>.fr {
    width: 108px;
    height: 108px;
    align-self: center;
}

.list li>.fr img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.list li>.fl {
    width: calc(100% - 128px);
    display: flex;
    justify-content: space-between;
}

/* 文字列与图片对齐：图片 108 在 128 行内居中（占 10~118），这里同样上下各留 10px，
   再用 space-between 让标题贴图片上沿、商品编号贴图片下沿 */
.list li>.fl .fr {
    width: calc(100% - 200px);
    height: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list li>.fl .fr .title {
    max-height: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.list li>.fl .fr .title a {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 32px;
    color: var(--bs-gray-800);
}

.list li>.fl .fr .bq {
    width: 100%;
    overflow: hidden;
}

.list li>.fl .fr .bq span {
    display: block;
    float: left;
    padding: 1px 8px;
    background-color: #E3F2FD;
    color: #06f;
    font-size: 13px;
    margin-right: 12px;
    border-radius: 5px;
}

.list li>.fl .fr .shopid {
    line-height: 32px;
    color: var(--bs-gray-600);
    font-size: 13px;
}

.list li>.fl .fl {
    width: 180px;
    height: 100%;
}

.list li>.fl .fl .jg {
    color: #f34d58;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.list li>.fl .fl .scj {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    line-height: 22px;
}

.list li>.fl .fl .buy {
    display: flex;
    width: 120px;
    height: 34px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background-color: var(--ay-blue);
    background-image: linear-gradient(to right, var(--ay-blue), var(--bs-info));
    border-radius: 20px;
}
.list li>.fl .fl .buy-sellout {
    display: flex;
    width: 120px;
    height: 34px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background-color: #afafaf;

    border-radius: 20px;
}

.list li>.fl .fl .buy .icon {
    position: relative;
    margin-right: 5px;
}