/* 门店分布页面专用样式 */

/* 页面标题区域 */
.page-header {
    background-color: #F9F1E4;
    padding: 60px 0 40px;
    text-align: center;
}

.page-title {
    margin-bottom: 20px;
}

.page-title-image {
    max-width: 300px;
    height: auto;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #AA1322;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #8a0a1a;
}

.breadcrumb span {
    color: #999;
}

/* 门店分布主区域 */
.stores-main {
    background-color: #F9F1E4;
    padding: 40px 0 60px;
    min-height: 800px;
}

/* 全国门店统计 */
.stores-overview {
    margin-bottom: 50px;
}

.overview-card {
    background: linear-gradient(135deg, #AA1322, #8a0a1a);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(170, 19, 34, 0.3);
}

.overview-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overview-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* 章节标题 */
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #AA1322;
}

/* TOP10省份网格 */
.top-provinces {
    margin-bottom: 50px;
}

.provinces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.province-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.province-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.province-rank {
    background-color: #AA1322;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
}

.province-info {
    flex: 1;
}

.province-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.province-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.store-count {
    font-size: 20px;
    font-weight: bold;
    color: #AA1322;
}

.cities-count {
    font-size: 14px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

/* 其他省份分布 */
.other-provinces {
    margin-bottom: 50px;
}

.other-provinces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.other-province-item {
    background-color: white;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.other-province-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.other-province-item .province-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.other-province-item .store-count {
    font-size: 16px;
    font-weight: bold;
    color: #AA1322;
}

/* 加盟热线 */
.join-hotline {
    margin-top: 60px;
}

.hotline-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 2px solid #AA1322;
}

.hotline-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.hotline-number {
    font-size: 36px;
    font-weight: bold;
    color: #AA1322;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(170, 19, 34, 0.2);
}

.hotline-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}




/* 响应式设计 */
@media (max-width: 1024px) {
    .overview-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .provinces-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .overview-card {
        padding: 30px 20px;
    }
    
    .overview-title {
        font-size: 24px;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .provinces-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .province-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .province-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .other-provinces-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .hotline-card {
        padding: 30px 20px;
    }
    
    .hotline-number {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .overview-title {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .other-provinces-grid {
        grid-template-columns: 1fr;
    }
    
    .hotline-number {
        font-size: 24px;
    }
}