@charset "UTF-8";
/**
 * 城市分站站群专属样式
 * 圣者百度站群 zvseo.cn
 * 版本: 1.1 (优化版)
 */

/* =============================================
   导入字体
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* =============================================
   CSS 变量定义
============================================= */
:root {
    --city-primary: #e63946;
    --city-secondary: #457b9d;
    --city-accent: #2a9d8f;
    --city-dark: #1d3557;
    --city-light: #f1faee;
    --city-gray: #6c757d;
    --city-border: #dee2e6;
    --city-shadow: rgba(29, 53, 87, 0.1);
    --city-shadow-lg: rgba(29, 53, 87, 0.15);
    --city-gradient: linear-gradient(135deg, #e63946 0%, #457b9d 100%);
    --city-gradient-reverse: linear-gradient(135deg, #457b9d 0%, #e63946 100%);
    --city-gradient-soft: linear-gradient(135deg, #f8d7da 0%, #d1ecf1 100%);
    --city-font: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --city-radius: 12px;
    --city-radius-lg: 20px;
    --city-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   全局基础样式
============================================= */
.city-page {
    font-family: var(--city-font);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.city-page * {
    box-sizing: border-box;
}

/* 城市名称统一样式 */
.city-name {
    font-weight: 600;
    color: inherit;
}

/* 城市拼音样式（用于邮箱等场景，确保无空格） */
.city-pinyin {
    display: inline;
    margin: 0;
    padding: 0;
}

/* 城市页面通用按钮样式 */
.city-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.city-page .btn i {
    flex-shrink: 0;
}

.city-page .btn-main {
    background: var(--city-gradient);
    border: none;
    color: #fff;
}

.city-page .btn-main:hover {
    opacity: 0.9;
    color: #fff;
}

/* =============================================
   动画关键帧
============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================
   城市顶部导航栏
============================================= */
.city-topbar {
    background: linear-gradient(90deg, var(--city-dark) 0%, #2d4a6f 100%);
    padding: 12px 0;
    font-size: 13px;
    color: #fff;
    border-bottom: 3px solid var(--city-primary);
}

.city-topbar .city-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-topbar .city-location i {
    color: var(--city-primary);
    font-size: 16px;
}

.city-topbar .current-city {
    font-weight: 700;
    color: #fff;
    background: var(--city-primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.city-topbar .city-slogan {
    color: rgba(255, 255, 255, 0.7);
}

.city-topbar .city-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.city-topbar .city-contact a {
    color: #fff;
    transition: color 0.3s;
}

.city-topbar .city-contact a:hover {
    color: var(--city-primary);
}

.city-topbar .city-contact i {
    margin-right: 5px;
}

.city-topbar .date-info {
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   城市切换导航
============================================= */
.city-switcher {
    background: linear-gradient(90deg, #fff 0%, var(--city-light) 100%);
    border-bottom: 1px solid var(--city-border);
    padding: 12px 0;
    box-shadow: 0 2px 10px var(--city-shadow);
}

.city-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 城市导航头部栏 */
.city-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.city-label {
    font-weight: 600;
    color: var(--city-dark);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.city-label i {
    color: var(--city-primary);
}

/* 热门城市预览行 */
.city-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.city-preview .city-item {
    padding: 5px 12px;
    border-radius: 4px;
    background: #fff;
    color: var(--city-dark);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--city-transition);
    border: 1px solid var(--city-border);
}

.city-preview .city-item:hover {
    background: var(--city-secondary);
    color: #fff;
    border-color: var(--city-secondary);
}

/* 展开/收起按钮 */
.city-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--city-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 4px;
    transition: var(--city-transition);
    white-space: nowrap;
    user-select: none;
}

.city-toggle:hover {
    background: rgba(230, 57, 70, 0.1);
}

.city-toggle i {
    transition: transform 0.3s ease;
}

.city-toggle.expanded i {
    transform: rotate(180deg);
}

/* 城市展开区域 */
.city-expand {
    display: none;
    padding: 15px 0 5px;
    margin-top: 12px;
    border-top: 1px dashed var(--city-border);
    animation: slideDown 0.3s ease;
}

.city-expand.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 城市分组 */
.city-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.city-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.group-title {
    flex-shrink: 0;
    width: 60px;
    font-weight: 600;
    color: var(--city-secondary);
    font-size: 13px;
    padding: 4px 0;
}

.group-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}

.group-cities a {
    padding: 4px 10px;
    border-radius: 4px;
    background: #fff;
    color: var(--city-dark);
    font-size: 13px;
    transition: var(--city-transition);
    border: 1px solid transparent;
}

.group-cities a:hover {
    background: var(--city-secondary);
    color: #fff;
}

/* 原有 city-item 保持用于其他地方 */
.city-item {
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff;
    color: var(--city-dark);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--city-transition);
    border: 1px solid var(--city-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.city-item:hover {
    background: var(--city-secondary);
    color: #fff;
    border-color: var(--city-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 123, 157, 0.3);
}

.city-item.active {
    background: var(--city-primary);
    color: #fff;
    border-color: var(--city-primary);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .city-header-bar {
        flex-wrap: wrap;
    }
    
    .city-preview {
        display: none;
    }
    
    .city-toggle {
        margin-left: auto;
    }
    
    .group-title {
        width: 50px;
        font-size: 12px;
    }
    
    .group-cities a {
        font-size: 12px;
        padding: 3px 8px;
    }
}

/* =============================================
   城市头部区域
============================================= */
.city-header {
    background: linear-gradient(180deg, #fff 0%, var(--city-light) 100%);
    padding: 25px 0;
    box-shadow: 0 4px 20px var(--city-shadow);
    position: relative;
}

.city-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--city-gradient);
}

.city-header .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--city-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.city-header .city-desc {
    font-size: 14px;
    color: var(--city-secondary);
    margin: 0;
    font-weight: 500;
}

.city-search-box .single-input-wrap {
    border-radius: 50px;
    border: 2px solid var(--city-secondary);
    height: 52px;
    background: #fff;
    box-shadow: 0 4px 15px var(--city-shadow);
    overflow: hidden;
    transition: var(--city-transition);
}

.city-search-box .single-input-wrap:focus-within {
    border-color: var(--city-primary);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.2);
}

.city-search-box .form-control {
    border-radius: 50px;
    padding-left: 25px;
    border: none;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
}

.city-search-box .form-control::placeholder {
    line-height: normal;
    vertical-align: middle;
}

.city-search-box .form-control:focus {
    box-shadow: none;
}

.city-search-box .input-group-text {
    background: var(--city-gradient);
    border-radius: 0 50px 50px 0 !important;
    border: none;
    color: #fff;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--city-transition);
}

.city-search-box .input-group-text:hover {
    transform: scale(1.05);
}

.city-hot-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.city-hot-info .hot-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-hot-info .hot-item i {
    color: #ff6b35;
}

.city-hot-info .hot-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--city-primary);
}

.city-hot-info .hot-phone i {
    color: var(--city-accent);
}

/* =============================================
   城市主导航
============================================= */
.city-navbar {
    background: var(--city-gradient) !important;
}

.city-navbar .navbar-nav li a {
    font-weight: 500;
}

.city-navbar .navbar-nav li a i {
    margin-right: 5px;
}

.city-service-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.city-service-btn:hover {
    background: #fff;
    color: var(--city-primary) !important;
}

/* =============================================
   城市Banner区域
============================================= */
.city-banner-area {
    background: var(--city-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.city-banner-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 30%);
    animation: float 20s ease-in-out infinite;
}

.city-banner-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.city-banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.city-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
}

.city-badge i {
    margin-right: 8px;
}

.city-banner-content h1 {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out;
}

.city-banner-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #fff;
}

.banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    line-height: 1;
    height: auto;
    min-width: 140px;
    transition: var(--city-transition);
}

.banner-btns .btn i {
    font-size: 16px;
}

.banner-btns .btn-main {
    background: var(--city-gradient);
    color: #fff;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.banner-btns .btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
}

.banner-btns .btn-white {
    background: #fff;
    color: var(--city-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.banner-btns .btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* 快速咨询表单 */
.city-quick-contact {
    background: #fff;
    border-radius: var(--city-radius-lg);
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.city-quick-contact::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--city-gradient);
    border-radius: calc(var(--city-radius-lg) + 3px);
    z-index: -1;
    opacity: 0.5;
}

.city-quick-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--city-dark);
}

.city-quick-contact h4 i {
    color: var(--city-primary);
    margin-right: 10px;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    border: 1px solid var(--city-border);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    border-color: var(--city-primary);
    outline: none;
}

.quick-contact-form textarea {
    height: 80px;
    resize: none;
}

.btn-block {
    width: 100%;
}

/* =============================================
   特色服务区域
============================================= */
.city-features-area {
    background: linear-gradient(180deg, var(--city-light) 0%, #fff 100%);
    padding: 50px 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.feature-box {
    background: #fff;
    border-radius: var(--city-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px var(--city-shadow);
    transition: var(--city-transition);
    margin-bottom: 20px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--city-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--city-shadow-lg);
    border-color: var(--city-border);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--city-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
    transition: var(--city-transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--city-dark);
}

.feature-box p {
    font-size: 14px;
    color: var(--city-gray);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   城市内容区域
============================================= */
.city-content-area {
    padding-top: 40px;
}

.city-section {
    margin-bottom: 40px;
}

.city-section .section-title {
    padding-bottom: 20px;
    border-bottom: 2px solid var(--city-border);
    margin-bottom: 25px;
}

.city-section .see-all-btn {
    font-size: 14px;
    font-weight: 500;
}

/* 服务卡片 */
.city-service-card {
    background: #fff;
    border-radius: var(--city-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px var(--city-shadow);
    margin-bottom: 25px;
    transition: var(--city-transition);
    border: 1px solid var(--city-border);
}

.city-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px var(--city-shadow-lg);
    border-color: var(--city-primary);
}

.city-service-card .service-thumb {
    position: relative;
    overflow: hidden;
}

.city-service-card .service-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s;
}

.city-service-card:hover .service-thumb img {
    transform: scale(1.05);
}

.city-service-card .service-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--city-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.city-service-card .service-info {
    padding: 15px;
}

.city-service-card .service-info h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.city-service-card .service-info h6 a:hover {
    color: var(--city-primary);
}

.city-service-card .service-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--city-gray);
}

.city-service-card .service-meta i {
    margin-right: 5px;
    color: var(--city-primary);
}

/* 新闻列表项 */
.city-news-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px var(--city-shadow);
    transition: all 0.3s;
}

.city-news-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =============================================
   侧边栏样式
============================================= */
.city-sidebar .widget {
    background: #fff;
    border-radius: var(--city-radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px var(--city-shadow);
    border: 1px solid var(--city-border);
    transition: var(--city-transition);
}

.city-sidebar .widget:hover {
    box-shadow: 0 12px 35px var(--city-shadow-lg);
}

.city-sidebar .widget-title {
    font-size: 17px;
    padding-left: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--city-light);
    font-weight: 700;
    color: var(--city-dark);
}

.city-sidebar .widget-title::before {
    display: none;
}

.city-sidebar .widget-title i {
    color: var(--city-primary);
    margin-right: 10px;
    font-size: 18px;
}

/* 城市信息卡 */
.city-info-widget .city-info-content {
    padding: 10px 0;
}

.city-info-widget .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--city-border);
}

.city-info-widget .info-item:last-child {
    border-bottom: none;
}

.city-info-widget .info-item i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--city-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--city-primary);
    font-size: 14px;
}

/* 周边城市 */
.city-nearby-widget .nearby-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.nearby-city-item {
    padding: 6px 14px;
    background: var(--city-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--city-gray);
    transition: all 0.3s;
}

.nearby-city-item:hover {
    background: var(--city-primary);
    color: #fff;
}

/* =============================================
   面包屑导航
============================================= */
.city-breadcrumb {
    background: var(--city-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--city-border);
}

.city-breadcrumb h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--city-dark);
}

.city-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.city-breadcrumb .breadcrumb-item {
    font-size: 13px;
}

.city-breadcrumb .breadcrumb-item a {
    color: var(--city-gray);
}

.city-breadcrumb .breadcrumb-item a:hover {
    color: var(--city-primary);
}

.city-breadcrumb .breadcrumb-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--city-gray);
    align-items: center;
    height: 100%;
}

.city-breadcrumb .breadcrumb-info i {
    color: var(--city-primary);
    margin-right: 5px;
}

/* =============================================
   列表页样式
============================================= */
.city-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px var(--city-shadow);
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-weight: 600;
    color: var(--city-dark);
}

.filter-item {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--city-gray);
    background: var(--city-light);
    transition: all 0.3s;
}

.filter-item:hover,
.filter-item.active {
    background: var(--city-primary);
    color: #fff;
}

.list-style-switch {
    display: flex;
    gap: 5px;
}

.list-style-switch a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: var(--city-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--city-gray);
    transition: all 0.3s;
}

.list-style-switch a:hover,
.list-style-switch a.active {
    background: var(--city-primary);
    color: #fff;
}

/* 置顶文章 */
.top-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px var(--city-shadow);
    border-left: 4px solid var(--city-primary);
}

.top-article-card .article-thumb {
    position: relative;
    overflow: hidden;
}

.top-article-card .article-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.top-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--city-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.top-article-card .article-content {
    padding: 25px;
}

.top-article-card .article-cat {
    font-size: 12px;
    color: var(--city-gray);
}

.top-article-card .article-cat i {
    color: var(--city-primary);
}

.top-article-card h4 {
    font-size: 18px;
    margin: 12px 0;
    line-height: 1.5;
}

.top-article-card h4 a:hover {
    color: var(--city-primary);
}

.top-article-card p {
    font-size: 14px;
    color: var(--city-gray);
    margin-bottom: 15px;
}

.top-article-card .article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--city-gray);
    margin-bottom: 15px;
}

.top-article-card .article-meta i {
    color: var(--city-primary);
    margin-right: 5px;
}

.read-more-btn {
    display: inline-block;
    color: var(--city-primary);
    font-weight: 600;
    font-size: 14px;
}

.read-more-btn:hover {
    color: var(--city-secondary);
}

/* 列表项样式 */
.city-list-item {
    border-radius: 10px;
    margin-bottom: 20px;
}

.city-list-item .thumb {
    position: relative;
}

.city-list-item .city-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--city-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
}

.city-list-item .article-cat-tag {
    margin-bottom: 8px;
}

.city-list-item .article-cat-tag a {
    font-size: 12px;
    color: var(--city-secondary);
}

.city-list-item .article-excerpt {
    font-size: 13px;
    color: var(--city-gray);
    margin-top: 10px;
}

.city-list-item .article-tags {
    margin-top: 10px;
}

.city-list-item .article-tags a {
    display: inline-block;
    padding: 3px 10px;
    background: var(--city-light);
    border-radius: 15px;
    font-size: 11px;
    color: var(--city-gray);
    margin-right: 5px;
}

.city-list-item .article-tags a:hover {
    background: var(--city-primary);
    color: #fff;
}

/* 分页样式 */
.city-pagination {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--city-border);
}

.city-pagination .pagination {
    margin-bottom: 15px;
}

.city-pagination .page-link {
    border-radius: 8px !important;
    margin: 0 3px;
    border: none;
    color: var(--city-dark);
}

.city-pagination .page-item.active .page-link {
    background: var(--city-primary);
}

.city-pagination .page-info {
    font-size: 13px;
    color: var(--city-gray);
}

/* 栏目导航 */
.cat-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-nav-list li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--city-border);
    color: var(--city-dark);
    transition: all 0.3s;
}

.cat-nav-list li:last-child a {
    border-bottom: none;
}

.cat-nav-list li a:hover {
    color: var(--city-primary);
    padding-left: 10px;
}

.cat-nav-list .cat-name i {
    color: var(--city-primary);
    margin-right: 8px;
}

.cat-nav-list .cat-count {
    background: var(--city-light);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* 广告位 */
.city-ad-widget {
    background: var(--city-gradient) !important;
    color: #fff;
    text-align: center;
}

.city-ad-widget .ad-content h4 {
    color: #fff;
    margin-bottom: 10px;
}

.city-ad-widget .ad-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.city-ad-widget .ad-phone {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0;
}

.city-ad-widget .btn {
    background: #fff;
    color: var(--city-primary);
}

/* =============================================
   详情页样式
============================================= */
.city-article-detail {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--city-shadow);
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--city-border);
}

.article-tags-top {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.article-tags-top .cat-tag {
    background: var(--city-secondary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.article-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--city-dark);
}

.article-meta-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-left,
.meta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--city-gray);
}

.meta-item i {
    color: var(--city-primary);
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* 文章内容 */
.article-content {
    margin-bottom: 30px;
}

.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--city-dark);
}

.content-body p {
    margin-bottom: 20px;
}

.content-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.content-body h2,
.content-body h3,
.content-body h4 {
    margin: 30px 0 15px;
}

/* 文章底部 */
.article-footer {
    padding-top: 25px;
    border-top: 1px solid var(--city-border);
}

.article-tags-bottom {
    margin-bottom: 20px;
}

.tags-label {
    font-weight: 600;
    margin-right: 10px;
}

.tags-label i {
    color: var(--city-primary);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--city-border);
}

.share-label {
    font-weight: 600;
}

.share-label i {
    color: var(--city-primary);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.share-weixin {
    background: #07c160;
}

.share-weibo {
    background: #e6162d;
}

.share-qq {
    background: #12b7f5;
}

.share-qzone {
    background: #fece00;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* 上下篇导航 */
.article-nav {
    margin-bottom: 30px;
}

.nav-prev,
.nav-next {
    display: block;
    padding: 15px;
    background: var(--city-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--city-primary);
    color: #fff;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: var(--city-gray);
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 600;
    font-size: 14px;
}

.nav-prev:hover .nav-label,
.nav-next:hover .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

/* 相关推荐 */
.related-articles {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--city-border);
}

.related-articles .section-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.related-item {
    margin-bottom: 20px;
}

.related-item .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.related-item .thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-item:hover .thumb img {
    transform: scale(1.05);
}

.related-item .city-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--city-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
}

.related-item h6 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.related-item h6 a:hover {
    color: var(--city-primary);
}

.related-item .meta {
    font-size: 12px;
    color: var(--city-gray);
}

.related-item .meta span {
    margin-right: 15px;
}

.related-item .meta i {
    color: var(--city-primary);
    margin-right: 5px;
}

/* 评论区域 */
.comment-section .section-title {
    font-size: 18px;
    margin-bottom: 25px;
}

.comment-list {
    margin-bottom: 30px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--city-light);
    border-radius: 10px;
    margin-bottom: 15px;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: var(--city-dark);
}

.comment-time {
    font-size: 12px;
    color: var(--city-gray);
}

.comment-text {
    font-size: 14px;
    color: var(--city-dark);
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-actions a {
    font-size: 13px;
    color: var(--city-gray);
}

.comment-actions a:hover {
    color: var(--city-primary);
}

/* 评论表单 */
.comment-form-wrap {
    background: var(--city-light);
    padding: 25px;
    border-radius: 12px;
}

.comment-form-wrap h6 {
    margin-bottom: 20px;
}

.comment-form-wrap h6 i {
    color: var(--city-primary);
    margin-right: 8px;
}

.comment-form .form-group {
    margin-bottom: 15px;
}

.comment-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--city-border);
    padding: 12px 15px;
}

.comment-form .form-control:focus {
    border-color: var(--city-primary);
    box-shadow: none;
}

.comment-form .form-check {
    margin: 15px 0;
}

.comment-form .form-check-label {
    font-size: 13px;
    color: var(--city-gray);
}

/* 侧边栏作者卡片 */
.city-author-widget .author-card {
    text-align: center;
}

.city-author-widget .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.city-author-widget h5 {
    margin-bottom: 8px;
}

.city-author-widget .author-desc {
    font-size: 13px;
    color: var(--city-gray);
    margin-bottom: 15px;
}

.city-author-widget .author-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--city-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--city-gray);
}

/* 联系咨询 */
.city-contact-widget .contact-info {
    text-align: center;
}

.city-contact-widget .contact-phone {
    font-size: 26px;
    font-weight: 700;
    color: var(--city-primary);
    margin-bottom: 10px;
}

.city-contact-widget .contact-desc {
    font-size: 13px;
    color: var(--city-gray);
    margin-bottom: 20px;
}

/* 二维码 */
.city-qrcode-widget .qrcode-content {
    padding: 10px 0;
}

.qrcode-placeholder {
    width: 150px;
    height: 150px;
    background: var(--city-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.qrcode-placeholder i {
    font-size: 60px;
    color: var(--city-gray);
}

.city-qrcode-widget p {
    font-size: 13px;
    color: var(--city-gray);
}

/* =============================================
   底部区域
============================================= */
.city-footer-cta {
    background: var(--city-gradient);
    padding: 40px 0;
}

.city-footer-cta h4 {
    color: #fff;
    margin-bottom: 10px;
}

.city-footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.city-footer-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto;
    line-height: 1;
    padding: 14px 30px;
}

.city-footer {
    background: var(--city-dark);
}

.city-footer .widget-title i {
    margin-right: 8px;
}

.city-footer .footer-about-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.city-footer .footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.city-footer .footer-contact-info i {
    color: var(--city-primary);
    width: 20px;
}

.footer-city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-city-link {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-city-link:hover {
    background: var(--city-primary);
    color: #fff;
}

/* 侧边悬浮工具 */
.city-side-tools {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.tool-phone {
    background: var(--city-primary);
}

.tool-qq {
    background: #12b7f5;
}

.tool-wechat {
    background: #07c160;
}

.tool-top {
    background: var(--city-secondary);
}

.tool-item:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* 服务覆盖区域 */
.city-coverage-area {
    background: var(--city-light);
    padding: 60px 0;
}

.city-coverage-area .section-title {
    margin-bottom: 30px;
}

.city-coverage-area .section-title p {
    color: var(--city-gray);
    margin-top: 10px;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.coverage-item {
    padding: 10px 20px;
    background: #fff;
    border-radius: 25px;
    font-size: 14px;
    color: var(--city-dark);
    box-shadow: 0 2px 10px var(--city-shadow);
    transition: all 0.3s;
}

.coverage-item i {
    color: var(--city-primary);
    margin-right: 8px;
}

.coverage-item:hover {
    background: var(--city-primary);
    color: #fff;
}

.coverage-item:hover i {
    color: #fff;
}

/* 粘性侧边栏 */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* =============================================
   响应式样式
============================================= */
@media (max-width: 991px) {
    .city-banner-content h1 {
        font-size: 28px;
    }
    
    .city-quick-contact {
        margin-top: 30px;
    }
    
    .banner-btns {
        flex-wrap: wrap;
    }
    
    .city-filter-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-left,
    .filter-right {
        width: 100%;
        justify-content: center;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-meta-bar {
        flex-direction: column;
    }
    
    .top-article-card .article-thumb img {
        height: 150px;
    }
}

/* =============================================
   移动端全局修复 (iOS/Android 通用)
============================================= */
@media (max-width: 767px) {
    /* 修复 iOS Safari 100vh 问题 */
    .city-page {
        min-height: -webkit-fill-available;
    }
    
    /* 禁用 iOS 点击高亮 */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* 修复 iOS 输入框缩放问题 */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* 修复 iOS Safari 滚动问题 */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* 顶部导航栏 */
    .city-topbar {
        padding: 8px 0;
    }
    
    .city-topbar .row {
        flex-direction: column;
        text-align: center;
    }
    
    .city-topbar .city-contact {
        justify-content: center;
        margin-top: 8px;
        gap: 15px;
    }
    
    .city-topbar .city-location {
        justify-content: center;
        text-align: center;
    }
    
    .city-topbar .current-city {
        padding: 2px 10px;
        font-size: 11px;
    }
    
    .city-topbar .city-slogan {
        font-size: 12px;
    }
    
    /* 城市切换导航 - 移动端隐藏 */
    .city-switcher {
        display: none;
    }
    
    /* 头部区域 */
    .city-header {
        text-align: center;
        padding: 12px 0;
    }
    
    .city-header .row {
        flex-direction: column;
    }
    
    .city-header .logo {
        justify-content: center;
        margin-bottom: 10px;
        flex-direction: column;
    }
    
    .city-header .logo img {
        max-width: 50px;
        margin-bottom: 8px;
    }
    
    .city-header .title {
        font-size: 18px;
        text-align: center;
    }
    
    .city-header .city-desc {
        font-size: 12px;
        text-align: center;
    }
    
    .city-hot-info {
        display: none;
    }
    
    /* 搜索框 */
    .city-search-box {
        margin: 10px 15px;
        width: calc(100% - 30px);
    }
    
    .city-search-box .single-input-wrap {
        height: 44px;
        border-width: 1px;
    }
    
    .city-search-box .form-control {
        height: 42px;
        line-height: 42px;
        font-size: 16px;
        padding-left: 15px;
        padding-right: 10px;
        /* iOS 输入框样式修复 */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 50px;
    }
    
    .city-search-box .form-control::placeholder {
        font-size: 14px;
        color: #999;
    }
    
    .city-search-box .input-group-text {
        padding: 0 12px;
        min-width: 44px;
    }
    
    /* Banner 区域 */
    .city-banner-area {
        padding: 25px 0 20px;
        min-height: auto;
    }
    
    .city-banner-content {
        text-align: center;
        padding: 0 10px;
    }
    
    .city-badge {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .city-banner-content h1 {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .city-banner-content p {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    /* 按钮组 */
    .banner-btns {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .banner-btns .btn {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 110px;
        /* 触摸设备最小点击区域 */
        min-height: 44px;
    }
    
    .banner-btns .btn i {
        font-size: 14px;
    }
    
    /* 快速咨询表单 */
    .city-quick-contact {
        margin: 15px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .city-quick-contact h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .city-quick-contact input,
    .city-quick-contact textarea {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 10px;
        /* iOS 样式修复 */
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    .city-quick-contact button {
        min-height: 44px;
        font-size: 15px;
    }
    
    /* 特色服务 */
    .city-feature-area {
        padding: 20px 0;
    }
    
    .feature-box {
        margin-bottom: 12px;
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .feature-box .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .feature-box h5 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .feature-box p {
        font-size: 11px;
    }
    
    /* 内容区域 */
    .city-content-area {
        padding: 15px 0;
    }
    
    .section-title h5 {
        font-size: 16px;
    }
    
    /* 文章详情 */
    .city-article-detail {
        padding: 15px;
        margin: 10px;
        border-radius: 12px;
    }
    
    .article-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }
    
    .article-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .article-content img {
        max-width: 100%;
        height: auto;
    }
    
    /* 侧边栏 */
    .sidebar-widget {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .sidebar-widget .widget-title {
        font-size: 15px;
    }
    
    /* 侧边悬浮工具 */
    .city-side-tools {
        right: 8px;
        bottom: 70px;
        gap: 8px;
    }
    
    .tool-item {
        width: 38px;
        height: 38px;
        font-size: 15px;
        /* 触摸设备优化 */
        touch-action: manipulation;
    }
    
    /* 评论区 */
    .comment-item {
        flex-direction: column;
        padding: 12px;
    }
    
    .comment-avatar {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .comment-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .comment-content {
        font-size: 14px;
    }
    
    /* Footer CTA */
    .city-footer-cta {
        text-align: center;
        padding: 25px 15px;
    }
    
    .city-footer-cta h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .city-footer-cta p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .city-footer-cta .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    
    /* Footer 区域 */
    .city-footer {
        padding: 25px 0 15px;
    }
    
    .city-footer .footer-top {
        padding-bottom: 15px;
    }
    
    .city-footer .widget-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .city-footer .footer-about-text {
        font-size: 13px;
    }
    
    .city-footer .footer-contact-info p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .footer-city-grid {
        gap: 6px;
    }
    
    .footer-city-link {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .nearby-city-list {
        gap: 5px;
    }
    
    .nearby-city-item {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    /* 版权区域 */
    .copyright-area {
        padding: 12px 0;
        text-align: center;
    }
    
    .copyright-area p {
        font-size: 12px;
    }
    
    /* 覆盖区域 */
    .city-coverage-area {
        padding: 20px 0;
    }
    
    .city-coverage-area h5 {
        font-size: 16px;
    }
    
    .coverage-item {
        padding: 8px 12px;
        font-size: 12px;
        margin: 3px;
    }
}

/* =============================================
   超小屏幕适配 (iPhone SE, 小屏安卓等)
============================================= */
@media (max-width: 375px) {
    .city-banner-content h1 {
        font-size: 18px;
    }
    
    .city-banner-content p {
        font-size: 12px;
    }
    
    .banner-btns .btn {
        padding: 8px 14px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .city-quick-contact {
        padding: 15px 12px;
    }
    
    .city-quick-contact h4 {
        font-size: 15px;
    }
    
    .feature-box {
        padding: 12px 10px;
    }
    
    .feature-box .icon-wrap {
        width: 45px;
        height: 45px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .city-footer-cta h4 {
        font-size: 15px;
    }
}

/* =============================================
   中等屏幕适配 (大屏手机/小平板)
============================================= */
@media (min-width: 576px) and (max-width: 767px) {
    .banner-btns .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .city-quick-contact {
        padding: 25px 20px;
    }
    
    .feature-box {
        padding: 18px 15px;
    }
}

/* =============================================
   更小屏幕适配 (575px 以下)
============================================= */
@media (max-width: 575px) {
    .city-breadcrumb {
        padding: 15px 0;
    }
    
    .city-breadcrumb h2 {
        font-size: 16px;
    }
    
    .city-breadcrumb .breadcrumb-info {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .top-article-card .row {
        flex-direction: column;
    }
    
    .top-article-card .article-thumb {
        width: 100%;
    }
    
    .top-article-card .article-content {
        padding: 12px;
    }
    
    .article-card {
        margin-bottom: 12px;
    }
    
    .nav-prev,
    .nav-next {
        padding: 10px;
    }
    
    .nav-title {
        font-size: 11px;
    }
    
    /* 分页 */
    .pagination {
        gap: 5px;
    }
    
    .pagination .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* =============================================
   横屏模式修复
============================================= */
@media (max-height: 500px) and (orientation: landscape) {
    .city-banner-area {
        padding: 15px 0;
    }
    
    .city-banner-content h1 {
        font-size: 20px;
    }
    
    .city-quick-contact {
        padding: 15px;
    }
    
    .city-side-tools {
        bottom: 10px;
    }
}

/* =============================================
   触摸设备优化
============================================= */
@media (hover: none) and (pointer: coarse) {
    /* 增大可点击区域 */
    .btn, 
    .city-item, 
    .nearby-city-item, 
    .footer-city-link,
    .coverage-item,
    .tool-item,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* 移除悬停效果 */
    .btn:hover,
    .city-item:hover,
    .tool-item:hover {
        transform: none;
    }
    
    /* 添加点击反馈 */
    .btn:active,
    .city-item:active,
    .tool-item:active {
        opacity: 0.8;
        transform: scale(0.98);
    }
}
