/* 商品容器 - 工业风金属质感 */
/*.new-sale-page .goods-container, */
/*.product-list-page .goods-container {*/
/*    width: 980px;*/
/*    padding-top: 25px;*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 20px;*/
/*}*/

/* 商品卡片 - 机械工业风 */
/*.good-info {*/
/*    width: 100%;*/
/*    background: #fff;*/
/*    border: 1px solid #e0e3e6;*/
/*    border-radius: 4px;*/
/*    overflow: hidden;*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: */
/*        0 1px 3px rgba(0,0,0,0.05),*/
/*        inset 0 0 0 1px #f7f9fa;*/
/*    position: relative;*/
/*}*/

/*.good-info:hover {*/
/*    border-color: #c2d1d9;*/
/*    box-shadow: */
/*        0 5px 15px rgba(0,0,0,0.08),*/
/*        inset 0 0 0 1px #e6ebee;*/
/*    transform: translateY(-3px);*/
/*}*/

/* 图片容器 - 专业产品展示 */
/*.good-detail-img {*/
/*    width: 100%;*/
/*    height: 240px;*/
/*    background: #f8fafb;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border-bottom: 1px solid #eaeef0;*/
/*    position: relative;*/
/*}*/

/*.good-detail-img .good-thumb {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    object-fit: contain;*/
/*    transition: transform 0.4s ease;*/
/*}*/

/*.good-info:hover .good-thumb {*/
/*    transform: scale(1.05);*/
/*}*/

/* 商品信息 - 专业排版 */
/*.good-detail-text {*/
/*    padding: 16px;*/
/*    background: #fff;*/
/*}*/

/*.good-detail-text a {*/
/*    display: block;*/
/*    color: #2d3747;*/
/*    font-size: 14px;*/
/*    line-height: 1.5;*/
/*    font-weight: 500;*/
/*    margin-bottom: 12px;*/
/*    text-decoration: none;*/
/*    transition: color 0.2s ease;*/
/*    height: 42px;*/
/*    overflow: hidden;*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 2;*/
/*    -webkit-box-orient: vertical;*/
/*}*/

/*.good-detail-text a:hover {*/
/*    color: #1a73e8;*/
/*}*/

/* 价格样式 - 突出显示 */
/*.price {*/
/*    margin: 8px 0 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.sale-price.prime-cost {*/
/*    color: #d32f2f;*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*    letter-spacing: 0.5px;*/
/*}*/

/* 产品标签角标 */
/*.tag-container {*/
/*    position: absolute;*/
/*    top: 12px;*/
/*    left: 12px;*/
/*    z-index: 2;*/
/*}*/

/* 金属质感边框增强 */
/*.good-info::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #f1f3f4, #dfe3e6);*/
/*}*/

/* 详情弹窗 - 专业面板 */
/*.good-item-wrapper {*/
/*    border: 1px solid #d6dde3;*/
/*    background: #fff;*/
/*    box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
/*    border-radius: 4px;*/
/*    padding: 20px;*/
/*    animation: fadeInUp 0.3s ease;*/
/*}*/

/*@keyframes fadeInUp {*/
/*    from { opacity: 0; transform: translateY(10px); }*/
/*    to { opacity: 1; transform: translateY(0); }*/
/*}*/

/* 响应式调整 */
/*@media (max-width: 980px) {*/
/*    .goods-container {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/


/* 商品容器 - 更合理的网格布局 */
.new-sale-page .goods-container,
.product-list-page .goods-container {
    width: 980px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

/* 商品卡片 - 更合理的结构 */
.good-info {
    width: 100%;
    background: #fff;
    border: 1px solid #e0e3e6;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto; /* 改为自动高度 */
}

/* 图片容器 - 确保图片完整显示 */
.good-detail-img {
    width: 100%;
    height: 200px; /* 固定图片高度 */
    background: #f8fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 15px;*/
    position: relative;
}

.good-detail-img .good-thumb {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 商品信息区域 - 确保价格可见 */
.good-detail-text {
    padding: 15px;
    display: flex;
    flex-direction: column;
    background: #f0f5fc;  /* 柔和的浅蓝色 */
}
.good-detail-text a {
    color: #2d3747;
    font-size: 14px;
    line-height: 1.5;
    /*margin-bottom: 12px;*/
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /*overflow: hidden;*/
    flex-grow: 1; /* 标题区域自动扩展 */
}

/* 价格样式 - 确保始终可见 */
.price {
    margin-top: 10px;

}


.sale-price.prime-cost {
    color: #d32f2f;
    font-size: 18px;
    font-weight: 600;
    display: block; /* 确保独占一行 */
}

/* 悬停效果 */
.good-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/*.good-info:hover .good-thumb {*/
/*    transform: scale(1.05);*/
/*}*/

/* 响应式调整 */
@media (max-width: 980px) {
    .goods-container {
        width: 100%;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}