.goods-card {
    display: flex;
    gap: 20px;
    padding: 15px;
    align-items: stretch;
}

.goods-top-img {
    flex: 0 0 220px;
    width:250px;
    height:250px;
    align-self: flex-start;
    /* 图片在盒子内居中，完整展示，不会裁切 */
    display:flex;
    justify-content:center;
    align-items:center;
}

.goods-top-img .threadsort_cover {
    max-width: 250px !important;
    max-height: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 4px !important;
}

.goods-body-wrap {
    flex: 1;
}

.meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
}

.meta-item .label {
    color: #666;
}

.meta-item .val {
    color: #222;
}

.price-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-text em {
    font-size: 32px;
    color: #f44;
    font-weight: bold;
}

.price-text s {
    color: #999;
    margin-left: 8px;
}

.tag-limit {
    background: #f43535;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
}

.tip-bar {
    background: #2b5bdd;
    color: #ffffff;
    padding: 9px 12px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 13px;
}

.tip-check {
    font-weight: bold;
}

.btn-row-2 {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-row-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: block;
    flex: 1 0 140px;
    text-align: center;
    padding: 10px 8px;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
}

.btn-orange {
    background: #ff7722;
    color: #fff;
}

.btn-blue {
    background: #2b78e4;
    color: #fff;
}

.btn-smallblue {
    background: #4084e8;
    color: #fff;
}

.btn-white {
    background: #ffffff;
    color: #333;
    border: 1px solid #cbd5e8 !important;
}

.desc-title {
    font-size: 15px;
    font-weight: bold;
    margin: 16px 0 8px;
}

@media (max-width: 768px) {
    .goods-card {
        flex-direction: column;
    }

    .goods-top-img {
        flex: none;
        width: 100%;
        height:auto;
    }

    .goods-top-img .threadsort_cover {
        max-width: 100% !important;
        max-height: none !important;
        width: 100% !important;
    }
}
