/* 多列子栏目新闻容器 */
.city-news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 单个新闻列 */
.news-column {
    background: #fff;
    border-radius: 4px;
    padding: 0 15px 15px;
}

/* 列头部 */
.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

/* 栏目标题 */
.column-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

/* 标题左侧小图标（和示例图一致） */
.title-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #4096ff 0%, #1890ff 100%);
    margin-right: 8px;
    border-radius: 2px;
}

/* 更多按钮 */
.more-btn {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #999;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
}

/* 新闻列表 */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* 新闻圆点前缀 */
.news-list .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #999;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.news-list a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 12px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list a:hover {
    color: #1890ff;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .city-news-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .column-title {
        font-size: 18px;
    }
    
    .news-list a {
        font-size: 14px;
    }
}














/* 标签云+栏目简介容器 */
.tag-intro-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2:1布局 */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

/* 通用区块标题 */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1890ff;
    display: inline-block;
}

/* 标签云区块 */
.tag-cloud-section {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.8;
}

.tag-list a {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-list a:hover {
    background: #1890ff;
    color: #fff;
    transform: translateY(-2px);
}

.empty-tag {
    color: #999;
    font-style: italic;
    margin: 0;
}

/* 栏目简介区块 */
.column-intro-section {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
}

.intro-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.intro-content p {
    margin: 0 0 10px;
}

.empty-intro {
    color: #999;
    font-style: italic;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .tag-intro-container {
        grid-template-columns: 1fr; /* 移动端变为单列 */
        gap: 20px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .tag-list a {
        font-size: 13px !important; /* 移动端强制统一字体大小 */
        padding: 3px 10px;
    }
}