/* blue 模板：切换城市页专属样式 */
/* 切换城市页容器加宽到 1200px（覆盖公共 style.css 的 1080px） */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.cc-section {
    margin: 22px auto;
}

.panel {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.panel-title {
    font-size: 17px;
    color: #1e3a8a;
    margin-bottom: 14px;
    padding-left: 10px;
    border-left: 4px solid #3b82f6;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud .tag {
    font-size: 14px;
    color: #444;
    padding: 6px 16px;
    background: #f0f4ff;
    border-radius: 20px;
    transition: all .15s;
}

.tag-cloud .tag:hover,
.tag-cloud .tag.active {
    background: #1e3a8a;
    color: #fff;
}

.empty {
    text-align: center;
    color: #999;
    padding: 40px;
}

/* 最新信息 */
.news-list {
    list-style: none;
}

.news-list .news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px dashed #eee;
    border-radius: 8px;
}

.news-list .news-item:last-child {
    border-bottom: none;
}

.news-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-link:hover {
    color: #3b82f6;
}

.news-meta {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

/* 置顶突出：背景变色 + 红色左边框 */
.news-list .news-item.is-top {
    background: #fff1f0;
    border-left: 3px solid #ff4d4f;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #ff4d4f;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    padding: 1px 7px;
    border-radius: 4px;
}

/* 手机端自适应 */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    .cc-section {
        margin: 14px auto;
    }
    .panel {
        padding: 14px 16px;
        border-radius: 10px;
    }
    .panel-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .tag-cloud {
        gap: 8px;
    }
    .tag-cloud .tag {
        font-size: 13px;
        padding: 5px 12px;
    }
    .news-item {
        padding: 10px;
        gap: 8px;
    }
    .news-meta {
        font-size: 11px;
    }
}