/* 基础容器 */
.container {
    width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #333;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #d90000;
}
.breadcrumb .sep {
    margin: 0 8px;
    color: #999;
}
.breadcrumb .current {
    color: #999;
}

/* 通用区块样式 */
.section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px 20px;
    margin-bottom: 20px;
    border: 1px solid #eaecef;
}
.section-title {
    text-align: left;
    font-weight: normal;
    color: #333;
    margin: 0 0 28px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #2b7cff;
    display: inline-block;
}

/* 城市列表通用布局 */
.city-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* 热门城市：保留按钮边框样式 */
.hot-city .city-list {
    gap: 12px 14px;
    justify-content: flex-start;
}
.hot-city .city-item {
    width: 120px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 0;
}
.hot-city .city-item:hover {
    border-color: #d90000;
    color: #d90000;
    background: #fff5f0;
}

/* 省下属城市：去掉边框，纯文字样式 */
.province-item .city-list {
    gap: 20px 28px;
    line-height: 1.6;
}
.province-item .city-item {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 0;
    background: none;
    border: none;
    transition: color 0.2s ease;
}
.province-item .city-item:hover {
    color: #d90000;
}

/* 移除所有城市图标 */
.city-icon {
    display: none;
}

/* 省份快捷导航：左对齐 + 均匀间距 */
.province-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
    margin-bottom: 0;
    justify-content: flex-start;
}
/* 省份按钮：统一宽高，文字居中，2字/3字严格对齐 */
.province-nav-item {
    width: 120px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    flex-shrink: 0;
    box-sizing: border-box;
}
.province-nav-item:hover {
    border-color: #d90000;
    color: #d90000;
}

/* 省-市列表容器：白色卡片样式，贴合示例 */
.province-city-wrap {
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 8px;
    margin-top: 24px;
    overflow: hidden;
}
.province-item {
    display: flex;
    padding: 16px 20px;
    border-bottom: 1px solid #eaecef;
    align-items: flex-start;
}
.province-item:last-child {
    border-bottom: none;
}
.province-name {
    width: 80px;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
    color: #d90000;
    line-height: 1.6;
}
.province-item .city-list {
    flex: 1;
}

/* 最近更新文章 */
/* 最近更新文章 - 两列布局 */
.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 0;
}
.news-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px dashed #eaecef;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}
.news-item a:hover .news-title {
    color: #d90000;
}
.news-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 15px;
}
.news-date {
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
}

/* 响应式：移动端自动切换为单列 */
@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}
/* 热门标签 */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-item {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #eaecef;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}
.tag-item:hover {
    border-color: #d90000;
    color: #d90000;
    background: #fff5f0;
}
.tag-num {
    color: #999;
    font-size: 12px;
}

/* 响应式适配 */
@media (max-width: 1240px) {
    .container { width: 100%; }
}
@media (max-width: 768px) {
    .province-item { flex-direction: column; }
    .province-name { width: 100%; margin-bottom: 10px; }
}