/* 商家列表页样式 */
.shangjia-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

/* 左侧边栏样式 */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* 商家入驻板块 */
.register-block {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.register-block h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.register-content p {
    color: #666;
    margin-bottom: 15px;
}

.register-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 24px;
    color: #2B61B3;
    margin-bottom: 8px;
}

.benefit-item span {
    display: block;
    font-size: 14px;
    color: #666;
}

.register-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: #28a745;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
}

.register-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* 推荐商家板块 */
.recommend-block {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.recommend-block h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recommend-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.recommend-item:hover {
    background: #f5f5f5;
}

.recommend-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.recommend-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-info {
    flex: 1;
}

.recommend-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.recommend-info p {
    font-size: 14px;
    color: #666;
}

/* 右侧商家列表 */
.shangjia-list {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shangjia-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.shangjia-item:last-child {
    border-bottom: none;
}

.shop-img {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.shop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-info {
    flex: 1;
}

.shop-name {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.shop-tags {
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    padding: 4px 8px;
    background: #f0f7ff;
    color: #2B61B3;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 8px;
}

.shop-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.shop-meta {
    display: flex;
    gap: 20px;
    color: #999;
    margin-bottom: 15px;
}

.shop-meta i {
    margin-right: 5px;
}

.shop-buttons {
    display: flex;
    gap: 15px;
}

.enter-shop {
    padding: 8px 20px;
    background: #2B61B3;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s;
}

.enter-shop:hover {
    background: #1e4c8f;
}

.rate-shop {
    padding: 8px 20px;
    background: #fff;
    color: #2B61B3;
    border: 1px solid #2B61B3;
    border-radius: 4px;
    transition: all 0.3s;
}

.rate-shop:hover {
    background: #f0f7ff;
} 