/* 店铺列表样式 */
.shop-list-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 30px 20px;
	background: #fff;
    clear: both;
    float: none;
    width: 100%;
}

.shop-list-title {
    text-align: center;
    padding-top: 30px;
    margin-bottom: 30px !important;
}

.shop-list-title h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.shop-list-title p {
    color: #999;
    font-size: 14px;
}

/* 网格布局 */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* 店铺卡片 */
.shop-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.shop-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shop-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
}

.shop-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.shop-owner {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.shop-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}

.shop-badge.official {
    background: #ff6b6b;
}

.shop-badge.flagship {
    background: #4ecdc4;
}

.shop-badge.self {
    background: #45b7d1;
}

.shop-credit {
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 8px;
}

.shop-bond {
    color: #4ecdc4;
    font-size: 12px;
}

/* 分页 */
.pagination {
    text-align: center;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.pagination .current {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}
