.cities-section {
    max-width: var(--unified-max-width);
    margin: 40px auto 40px auto;
    padding: 0 20px;
}

.cities-section .container {
    max-width: none;
    margin: 0;
    padding: 30px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cities-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.cities-title h3 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.more-cities {
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.more-cities:hover {
    color: var(--main-color-dark);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 20px;
}

.city-link {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    text-align: left;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
}

.city-link:hover {
    background: #f8f9fa;
    color: var(--main-color-dark);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 15px;
    }
    
    .cities-section {
        padding: 20px;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}