    /* 全局样式重置：消除浏览器默认边距和盒模型问题 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Microsoft YaHei", Arial, sans-serif;
    }

    body {
        background-color: #f8f9fa;
        color: #333;
        line-height: 1.6;
        padding: 0 5px;
    }

    /* 导航热词样式优化 + 自适应Flex布局 */
    .hotci {
        display: flex;
        flex-wrap: wrap; /* 自动换行，适配小屏幕 */
        justify-content: center; /* 水平居中 */
        align-items: center; /* 垂直居中 */
        gap: 8px; /* 元素间距，替代margin，更整洁 */
        padding: 20px 15px;
        margin: 15px auto;
        max-width: 1200px; /* 限制最大宽度，大屏不拉伸 */
    }

    .hotci a {
        text-decoration: none;
        color: #0066cc;
        font-size: 14px;
        border: 1px solid #e1e1e1;
        border-radius: 30px;
        padding: 5px 12px;
        line-height: 24px;
        transition: all 0.3s ease; /* 平滑过渡动画 */
        white-space: nowrap; /* 防止文字换行 */
    }

    .hotci a:hover {
        background-color: #ff0000;
        color: #ffffff;
        border-color: #ff0000;
    }

    .hotci a[style] {
        background-color: #EC080C !important;
        color: #EDE507 !important;
        border: none !important;
        font-weight: 500;
    }

    .hotci a[style]:hover {
        opacity: 0.9; /* 悬停略降透明度，提升交互感 */
    }

    /* 标题样式优化 */
    .title-wrap {
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        line-height: 80px;
        color: #ff0000;
        margin: 10px 0 20px;
        /* 小屏幕标题字号自适应 */
        font-size: clamp(20px, 5vw, 30px); /* 最小20px，最大30px，随屏幕宽度自适应 */
        line-height: clamp(50px, 8vw, 80px);
    }

    /* 城市列表容器样式 + 自适应布局 */
    .city-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .citys {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 20px 15px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* 轻微阴影，提升层次感 */
        transition: box-shadow 0.3s ease;
    }

    .citys:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* 城市链接样式优化 */
    .citys > a {
        text-decoration: none;
        display: inline-block;
        margin-bottom: 15px;
        font-size: 18px;
        color: #333;
    }

    .citys emms a {
        text-decoration: none;
        color: #0066cc;
        font-size: 16px;
        margin: 0 10px 8px 0;
        display: inline-block;
        transition: color 0.3s ease;
    }

    .citys emms a:hover {
        color: #ff0000;
    }

    .citys emmss a {
        text-decoration: none;
        color: #666;
        font-size: 14px;
        margin: 0 6px 6px 0;
        display: inline-block;
        transition: color 0.3s ease;
    }

    .citys emmss a:hover {
        color: #ff0000;
    }

    /* 分割线样式优化 */
    .citys hr {
        border: none;
        height: 1px;
        background-color: #e1e1e1;
        margin: 15px 0 20px;
    }

    /* 版权信息样式优化 */
    .copyright {
        text-align: center;
        padding: 30px 15px;
        color: #666;
        font-size: 14px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .copyright a {
        text-decoration: none;
        color: #0066cc;
        margin: 0 8px;
        transition: color 0.3s ease;
    }

    .copyright a:hover {
        color: #ff0000;
    }

    /* 媒体查询：小屏幕（手机端，768px以下）适配 */
    @media (max-width: 767px) {
        .hotci {
            padding: 15px 10px;
            gap: 6px;
        }

        .hotci a {
            font-size: 12px;
            padding: 4px 10px;
        }

        .citys {
            padding: 15px 10px;
            margin-bottom: 15px;
        }

        .citys > a {
            font-size: 16px;
        }

        .citys emms a {
            font-size: 14px;
            margin: 0 8px 6px 0;
        }

        .citys emmss a {
            font-size: 12px;
            margin: 0 4px 4px 0;
        }

        .copyright {
            padding: 20px 10px;
            font-size: 12px;
        }

        .copyright a {
            margin: 0 5px;
            display: inline-block;
            margin-bottom: 8px;
        }
    }

    /* 媒体查询：平板端（768px - 991px）适配 */
    @media (min-width: 768px) and (max-width: 991px) {
        .city-container {
            max-width: 750px;
        }

        .hotci {
            max-width: 750px;
        }
    }
    
.citys emms{ font-size:14px; font-weight: 600; color: #0066cc;}