/* 商家管理系统前端样式 */

/* 商家信息展示 */
.merchant-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.merchant-info h2 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.merchant-info .merchant-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.merchant-info .merchant-contact {
    margin: 10px 0;
    color: #666;
}

/* 商家商品列表样式 */
.merchant-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.merchant-product {
    width: calc(33.333% - 20px);
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.merchant-product .product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.merchant-product .product-title {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.merchant-product .product-price {
    font-weight: bold;
    color: #d70018;
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .merchant-product {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .merchant-product {
        width: 100%;
    }
}
