/* 城市列表页面样式 */
.city-page-wrapper {
    padding: 40px 0 60px;
    background-color: #f8fafc;
    position: relative;
    z-index: 1;
}

.city-page-header {
    margin-bottom: 30px;
}

.city-page-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.city-page-header p {
    color: #666;
    font-size: 16px;
}

.city-list-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 40px;
}

/* 全国站按钮 */
.national-site-section {
    margin-bottom: 20px;
    text-align: center;
}

.national-site-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #0176D3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(1, 118, 211, 0.2);
    transition: all 0.3s ease;
}

.national-site-link:hover {
    background-color: #0176D3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(1, 118, 211, 0.3);
    color: #fff;
    text-decoration: none;
}

.national-site-link i {
    margin-right: 8px;
    font-size: 16px;
}

/* 热门城市样式 */
.hot-cities-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeff4;
}

.section-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-title i {
    color: #ff6b6b;
    margin-right: 8px;
}

.hot-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hot-city-btn {
    padding: 6px 14px;
    background-color: #f9f9f9;
    border: 1px solid #e0e9f5 !important;
    border-radius: 6px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: normal !important;
}

.hot-city-btn:hover, 
.hot-city-btn.active {
    background-color: #f9f9f9;
    color: #0064b7;
    transform: none;
    box-shadow: none;
    text-decoration: none;
}

.hot-city-btn.active {
    background-color: #f9f9f9;
    color: #0064b7;
}

/* 省份索引导航 */
.province-index-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e9f5;
}

.province-index-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 15px;
}

.province-index-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.province-index-btn {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    color: #0176D3;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #d0e3ff;
    font-size: 14px;
}

.province-index-btn:hover {
    background-color: #fff;
    color: #0064b7;
    transform: none;
    text-decoration: none;
    border-color: #d0e3ff;
}

.province-index-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* 省份列表样式 */
.provinces-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.province-item {
    border: 1px solid #e0e9f5;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.province-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.province-title {
    background-color: #f9f9f9;
    padding: 15px;
    border-right: 1px solid #e0e9f5;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.province-name {
    font-weight: 700;
    color: #0176D3;
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
}

.province-name:hover, 
.province-name.active {
    color: #0064b7;
    text-decoration: none;
    font-weight: 700;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    gap: 10px;
    flex: 1;
    align-items: center;
    background-color: #fff !important;
}

.city-page-btn {
    padding: 5px 10px;
    background-color: #f9f9f9;
    border: 1px solid #e0e9f5 !important;
    border-radius: 4px;
    color: #333;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 2px;
    font-weight: normal !important;
}

.city-page-btn:hover, 
.city-page-btn.active {
    background-color: #f9f9f9;
    color: #0064b7;
    transform: none;
    box-shadow: none;
    text-decoration: none;
}

.city-page-btn.active {
    background-color: #f9f9f9;
    color: #0064b7;
}

/* 分站列表样式 */
.fenzhan-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fenzhan {
    border: 1px solid #e0e9f5;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin: 0;
}

.fenzhan:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.fenzhandt {
    background-color: #f9f9f9;
    padding: 15px;
    border-right: 1px solid #e0e9f5;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

.fenzhandt a {
    font-weight: 700;
    color: #0176D3;
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
}

.fenzhandt a:hover, 
.fenzhandt a.active {
    color: #0064b7;
    text-decoration: none;
    font-weight: 700;
}

.fenzhandd {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    gap: 10px;
    flex: 1;
    align-items: center;
    background-color: #fff !important;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .city-page-wrapper {
        padding: 25px 0 40px;
    }
    
    .city-list-box {
        padding: 15px 12px;
    }
    
    .province-index-list {
        gap: 6px;
    }
    
    .province-index-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .hot-city-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .national-site-link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .province-title {
        padding: 10px;
        min-width: 100px;
    }
    
    .province-name {
        font-size: 14px;
    }
    
    .cities-list {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .city-page-btn {
        padding: 4px 8px;
        font-size: 12px;
        margin: 1px;
    }
    
    .fenzhan {
        gap: 8px;
    }
    
    .fenzhandt {
        padding: 10px;
        min-width: 100px;
    }
    
    .fenzhandt a {
        font-size: 14px;
    }
    
    .fenzhandd {
        padding: 8px 12px;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .province-item {
        flex-direction: column;
    }
    
    .province-title {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e9f5;
        padding: 10px;
    }
    
    .cities-list {
        padding: 10px;
    }
    
    .fenzhan {
        flex-direction: column;
    }
    
    .fenzhandt {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e9f5;
        padding: 10px;
    }
    
    .fenzhandd {
        padding: 10px;
    }
} 