@charset "UTF-8";
/* ==================== 全局基础样式（全站通用） ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SimHei", "PingFang SC", "Microsoft Yahei", sans-serif; /* 新浪偏好黑体 */
    z-index: inherit;
}
body {
    background-color: #f5f5f5; /* 新浪经典浅灰底色 */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    /* 创新：全局轻微纹理背景 */
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                      url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23cccccc' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.container {
    max-width: 1280px; /* 新浪更宽的内容容器 */
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

/* ==================== 头部样式（全站通用） ==================== */
header {
    /* 创新：新浪红渐变背景 */
    background: linear-gradient(90deg, #c00, #e00);
    padding: 8px 0;
    border-bottom: 3px solid #a00; /* 新浪经典红加深边框 */
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    text-align: center;
    box-shadow: 0 2px 8px rgba(192,0,0,0.3); /* 新浪红质感阴影 */
}
.logo-text {
    font-size: 36px;
    font-weight: 900; /* 新浪粗体logo */
    color: #fff; /* 白色logo更醒目 */
    text-decoration: none;
    letter-spacing: 2px; /* 新浪字母间距 */
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2); /* 立体阴影 */
}

/* ==================== 导航栏样式（全站通用） ==================== */
.nav-bar {
    background-color: #222; /* 新浪经典黑灰导航栏 */
    padding: 10px 0;
    border-bottom: none; /* 移除原边框，新浪导航无下边框 */
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    z-index: 9999 !important;
    overflow: visible !important;
    text-align: center;
}
/* PC端导航 */
.nav-list-pc {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0 18px; /* 新浪导航间距更紧凑 */
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.nav-list-pc li a {
    color: #fff; /* 新浪白色导航文字 */
    text-decoration: none;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 0; /* 新浪无圆角导航 */
    white-space: nowrap;
    display: inline-block;
    border-bottom: 2px solid transparent; /* 新浪下划线选中效果 */
    transition: all 0.2s ease;
}
.nav-list-pc li a.active,
.nav-list-pc li a:hover {
    background-color: transparent; /* 新浪无背景hover */
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid #c00; /* 新浪红下划线 */
}
/* 移动端导航容器 */
.nav-mobile-wrap {
    display: none;
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 9999 !important;
    overflow: visible !important;
    height: 36px;
    line-height: 36px;
    background-color: #222; /* 移动端导航背景同步 */
}
.nav-list-mobile {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 100%;
    align-items: center;
}
.nav-list-mobile li {
    flex-shrink: 0;
    height: 28px;
    line-height: 28px;
}
.nav-list-mobile li a {
    color: #fff; /* 移动端白色文字 */
    text-decoration: none;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 0; /* 新浪无圆角 */
    white-space: nowrap;
    display: block;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: #333; /* 移动端导航项背景 */
}
.nav-list-mobile li a.active,
.nav-list-mobile li a:hover {
    background-color: #c00; /* 新浪红选中 */
    color: #fff;
    font-weight: 600;
}
/* 更多栏目按钮 */
.nav-more-btn {
    position: absolute;
    right: 20px;
    top: 4px;
    background-color: #c00; /* 新浪红按钮 */
    color: #fff;
    border: none;
    padding: 0 12px;
    border-radius: 0; /* 新浪无圆角 */
    font-size: 14px;
    cursor: pointer;
    z-index: 99999 !important;
    outline: none;
    height: 28px;
    line-height: 28px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: none;
    min-width: 70px;
    text-align: center;
}
/* 更多栏目菜单 */
.nav-more-menu {
    display: none !important;
    position: fixed !important;
    right: 20px !important;
    top: 100px !important;
    background-color: #222 !important; /* 新浪黑灰菜单 */
    border-radius: 0 !important; /* 新浪无圆角 */
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important; /* 深色阴影 */
    padding: 8px 0 !important;
    z-index: 99998 !important;
    min-width: 120px !important;
    border: 1px solid #444 !important; /* 新浪灰边框 */
    max-height: 400px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
.nav-more-menu.show {
    display: block !important;
}
.nav-more-menu li a {
    display: block;
    padding: 10px 20px !important;
    color: #fff !important; /* 菜单白色文字 */
    text-decoration: none !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    -webkit-tap-highlight-color: transparent !important;
}
.nav-more-menu li a.active,
.nav-more-menu li a:hover {
    background-color: #c00 !important; /* 新浪红hover */
    color: #fff !important;
}

/* ==================== 底部样式（全站通用） ==================== */
footer {
    text-align: center;
    padding: 20px 0;
    /* 创新：新浪红黑渐变底部 */
    background: linear-gradient(90deg, #222, #111);
    margin-top: 20px;
    border-top: 3px solid #c00; /* 新浪红顶部边框 */
    width: 100%;
    position: relative;
    z-index: 1;
}
.copyright {
    color: #fff; /* 白色版权文字 */
    font-size: 14px;
    margin-bottom: 5px;
}
.contact {
    color: #999; /* 灰色联系方式 */
    font-size: 13px;
}

/* ==================== 栏目页专属样式 ==================== */
/* 栏目页头部 */
.column-header {
    background-color: #fff;
    padding: 15px;
    border-radius: 0; /* 新浪无圆角 */
    margin-bottom: 15px;
    border-left: 5px solid #c00; /* 新浪红左侧标识线 */
    border-bottom: 1px solid #eee; /* 新浪浅灰下边框 */
    width: 100%;
    text-align: left; /* 新浪左对齐标题 */
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.column-header h1 {
    font-size: 20px;
    color: #c00; /* 新浪红标题 */
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
}
/* 栏目页文章列表 */
.article-list {
    background-color: #fff;
    border-radius: 0; /* 新浪无圆角 */
    padding: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.article-item {
    padding: 12px 0;
    border-bottom: 1px dashed #eee; /* 新浪浅灰虚线 */
    display: flex;
    align-items: center;
    width: 100%;
}
.article-title {
    flex: 1;
    max-width: calc(100% - 90px);
    padding-right: 10px;
    overflow: hidden;
}
.article-title a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    transition: color 0.2s ease;
}
.article-title a:hover {
    color: #c00; /* 新浪红hover */
}
.article-time {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
    width: 80px;
    text-align: right;
}

/* ==================== 首页专属样式 ==================== */
/* 首页banner */
.home-banner {
    width: 100%;
    height: 220px; /* 新浪更高的banner */
    /* 创新：新浪红渐变banner */
    background: linear-gradient(135deg, #c00 0%, #e00 50%, #a00 100%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px; /* 新浪更大的banner文字 */
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 4px 12px rgba(192,0,0,0.2); /* 红渐变阴影 */
}
/* 首页双栏布局 */
.main-content,
.home-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1280px; /* 适配新浪宽容器 */
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 20px;
}
.content-left, .content-right,
.home-left, .home-right {
    flex: 1;
    min-width: 340px;
}
.home-right {
    width: 320px; /* 新浪更宽的侧边栏 */
}
/* 首页栏目标题 */
.column-title {
    background-color: #f8f8f8; /* 新浪浅灰标题栏 */
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0; /* 新浪无圆角 */
}
.column-name {
    font-size: 16px;
    font-weight: 700;
    color: #c00; /* 新浪红标题 */
    text-decoration: none;
}
.more-link {
    color: #c00; /* 新浪红更多链接 */
    text-decoration: none;
    font-size: 13px;
    padding: 2px 8px;
    background-color: #fef0f0; /* 新浪红浅背景 */
    border-radius: 0; /* 新浪无圆角 */
}
/* 首页栏目列表 */
.column-list {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 0; /* 新浪无圆角 */
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.news-list {
    list-style: none;
}
.news-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee; /* 新浪浅灰虚线 */
}
.news-list li:last-child {
    border-bottom: none;
}
.news-list li a {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    transition: color 0.2s ease;
}
.news-list li a:hover {
    color: #c00; /* 新浪红hover */
}
/* 首页文章卡片 */
.article-card {
    background-color: #fff;
    border-radius: 0; /* 新浪无圆角 */
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    /* 创新：卡片hover动效 */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.article-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #c00; /* 新浪红卡片标题 */
}
.article-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
/* 首页侧边栏 */
.sidebar-box {
    background-color: #fff;
    border-radius: 0; /* 新浪无圆角 */
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sidebar-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #c00; /* 新浪红侧边栏标题 */
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* ==================== 内容页专属样式 ==================== */
/* 面包屑导航 */
.breadcrumb {
    background-color: transparent;
    padding: 8px 0;
    margin-bottom: 10px;
    font-size: 13px;
    color: #999;
}
.breadcrumb a {
    color: #c00; /* 新浪红面包屑 */
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
/* 内容页文章区域 */
.article {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 0; /* 新浪无圆角 */
    box-shadow: 0 1px 4px rgba(192,0,0,0.08); /* 新浪红阴影 */
    margin-bottom: 20px;
}
.article h1 {
    font-size: 28px; /* 新浪更大的文章标题 */
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #eee; /* 新浪浅灰分割线 */
    padding-bottom: 15px;
    font-weight: 700;
}
.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
}
.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}
.article-content img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 15px auto;
    border-radius: 0; /* 新浪无圆角图片 */
    min-width: 0 !important;
    min-height: 0 !important;
    display: block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #eee; /* 新浪图片边框 */
}

/* ==================== 分页样式（全站通用） ==================== */
.pagination {
    text-align: center;
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.pagination a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 5px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 0; /* 新浪无圆角 */
    border: 1px solid #eee;
    transition: all 0.2s ease;
}
.pagination a.active,
.pagination a:hover {
    background-color: #c00; /* 新浪红分页 */
    color: #fff;
    border-color: #c00;
}

/* ==================== 响应式适配（全站通用） ==================== */
@media (max-width: 768px) {
    /* 全局适配 */
    .logo-text {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .nav-list-pc {
        display: none !important;
    }
    .nav-mobile-wrap {
        display: block !important;
    }
    .nav-more-btn {
        font-size: 13px;
        padding: 0 10px;
        min-width: 65px;
    }
    .nav-more-menu {
        top: 90px !important;
        right: 15px !important;
        min-width: 110px !important;
    }

    /* 栏目页适配 */
    .column-header {
        padding: 12px 10px;
    }
    .column-header h1 {
        font-size: 18px;
    }
    .article-list {
        padding: 10px;
        margin-bottom: 15px;
    }
    .article-item {
        padding: 10px 0;
    }
    .article-title {
        max-width: calc(100% - 80px);
    }
    .article-title a {
        font-size: 15px;
    }
    .article-time {
        font-size: 12px;
        width: 70px;
    }

    /* 首页适配 */
    .home-banner {
        height: 160px;
        font-size: 22px;
    }
    .main-content,
    .home-content {
        flex-direction: column;
        padding: 0 10px;
        gap: 15px;
    }
    .content-left, .content-right,
    .home-left, .home-right {
        min-width: 100%;
    }
    .home-right {
        width: 100%;
    }

    /* 内容页适配 */
    .article {
        padding: 15px 15px;
        margin: 0 0 20px 0;
        border-radius: 0;
    }
    .breadcrumb {
        padding: 8px 0;
        margin: 0 0 10px 0;
    }
    .article h1 {
        font-size: 22px;
    }
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    .article-content {
        font-size: 16px;
    }

    /* 分页适配 */
    .pagination a {
        padding: 5px 10px;
        margin: 0 3px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    .nav-more-menu {
        top: 85px !important;
        right: 10px !important;
        min-width: 100px !important;
    }
    .nav-mobile-wrap {
        padding: 0 15px !important;
    }
    .nav-more-btn {
        right: 15px !important;
    }
    .home-banner {
        height: 130px;
        font-size: 20px;
    }
}

@media (max-width: 320px) {
    .nav-more-menu {
        top: 85px !important;
        right: 10px !important;
        min-width: 100px !important;
    }
    .nav-mobile-wrap {
        padding: 0 15px !important;
    }
    .nav-more-btn {
        right: 15px !important;
    }
    .home-banner {
        height: 110px;
        font-size: 18px;
    }
}