* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
    font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

a:hover {
    color: #0095E5;
}

li {
    list-style: none;
}

/* ================= Header ================= */
.header-v2 {
    width: 100%;
    background: #1a6cb8;
}

.header-inner {
    max-width: 1920px;
    width: 70%;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-v2 .logo {
    display: flex;
    align-items: center;
}

.header-v2 .logo img {
    height: 48px;
    margin-right: 12px;
}

.header-v2 .logo span {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 搜索框 */
.wp_search {
    padding: 0 4px 0 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    border-radius: 16px;
    width: 200px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

.keyword {
    all: unset;
    width: 80px;
    flex: 1;
    font-size: 13px;
    color: #fff;
}

.keyword::placeholder {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.wp_search .search,
.wp_search input.search {
    text-indent: -9999px !important;
    background: transparent !important;
    border: none !important;
    color: transparent !important;
    width: 28px !important;
    height: 28px !important;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

/* 纯CSS白色放大镜图标 */
.wp_search::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateY(-65%);
    pointer-events: none;
}

.wp_search::after {
    content: '';
    position: absolute;
    right: 9px;
    top: 50%;
    width: 2px;
    height: 6px;
    background: #fff;
    transform: translateY(10%) rotate(-45deg);
    pointer-events: none;
}

/* 导航栏 */
.nav-v2 {
    margin: 0 auto;
}

.nav-v2 > ul,
.nav-v2 .wp-menu {
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-v2 li {
    list-style: none;
}

.nav-v2 > ul > li > a,
.nav-v2 .menu-link {
    display: block;
    padding: 14px 24px;
    color: #fff;
    font-size: 16px;
    transition: background .2s;
    cursor: pointer;
}

.nav-v2 > ul > li > a:hover,
.nav-v2 .menu-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* 导航下拉菜单 */
.menu-item {
    position: relative;
}

.menu-item .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 160px;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 100;
    list-style: none;
    flex-direction: column;
}

.menu-item:hover .sub-menu {
    display: flex;
    flex-direction: column;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    transition: all .2s;
}

.sub-menu li a:hover {
    background: #f0f7ff;
    color: #0095E5;
    padding-left: 24px;
}

/* Webplus simpleSudyNavi 生成的导航兼容样式 */
.nav-v2 .dropdown {
    position: relative;
}

.nav-v2 .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-v2 .dropdown-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.nav-v2 .dropdown:hover .dropdown-arrow {
    transform: rotate(0deg);
}

.nav-v2 .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 160px;
    display: none;
    z-index: 100;
    white-space: nowrap;
    flex-direction: column;
}

.nav-v2 .dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    transform: translateX(-50%) translateY(0);
}

.nav-v2 .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: all .2s;
}

.nav-v2 .dropdown-menu a:hover {
    background: #f0f7ff;
    color: #0095E5;
    padding-left: 24px;
}

/* 隐藏 Webplus 可能生成的 sub-nav */
.nav-v2 ul.sub-nav {
    display: none !important;
}

/* ================= 面包屑横幅 ================= */
.sub-banner {
    width: 100%;
    height: 220px;
    background: url("../images/home/banner.png") no-repeat center / cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.sub-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.sub-banner-inner {
    max-width: 1920px;
    width: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sub-banner-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.sub-banner-title span {
    font-weight: normal;
    font-size: 16px;
    opacity: 0.7;
    margin-left: 10px;
    letter-spacing: 1px;
}

/* 面包屑 */
.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .sep {
    margin: 0 8px;
}

.breadcrumb .current {
    color: #fff;
}

/* ================= 内容区域 ================= */
.content-wrap {
    max-width: 1920px;
    width: 70%;
    margin: -40px auto 40px;
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* 侧边栏 */
.sidebar {
    width: 260px;
    flex-shrink: 0;
}

.sidebar-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}

.sidebar-title {
    background: linear-gradient(135deg, #1a6cb8 0%, #0095E5 100%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 24px;
    letter-spacing: 2px;
}

.sidebar-nav {
    padding: 8px 0;
}

.sidebar-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: #555;
    border-left: 3px solid transparent;
    transition: all .2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: #f0f7ff;
    color: #0095E5;
    border-left-color: #0095E5;
}

.sidebar-nav .sub-nav a {
    padding-left: 40px;
    font-size: 14px;
    color: #888;
}

.sidebar-nav .sub-nav a:hover,
.sidebar-nav .sub-nav a.active {
    color: #0095E5;
    background: #f5faff;
}

/* 主内容区 */
.main-content {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 30px;
    min-height: 600px;
}

/* ================= 列表页样式 ================= */
.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 2px solid #0095E5;
    margin-bottom: 20px;
}

.list-header h2 {
    font-size: 22px;
    color: #1a6cb8;
    letter-spacing: 2px;
}

.list-path {
    font-size: 13px;
    color: #999;
}

.list-path a {
    color: #999;
}

.list-path a:hover {
    color: #0095E5;
}

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

.news-list-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed #e8e8e8;
    transition: background .2s;
}

.news-list-item:hover {
    background: #f0f7ff;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 6px;
    border-bottom-color: transparent;
}

.news-list-item:hover .news-list-dot {
    transform: scale(1.4);
    background: #1a6cb8;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0095E5;
    margin-right: 14px;
    flex-shrink: 0;
    transition: transform .2s, background .2s;
}

.news-list-title {
    flex: 1;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list-title a:hover {
    color: #0095E5;
}

.news-list-date {
    font-size: 14px;
    color: #999;
    margin-left: 20px;
    flex-shrink: 0;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    transition: all .2s;
}

.pagination a:hover {
    background: #0095E5;
    color: #fff;
    border-color: #0095E5;
}

.pagination .active {
    background: #0095E5;
    color: #fff;
    border-color: #0095E5;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* ================= 详情页样式 ================= */
.article-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid #0095E5;
    margin-bottom: 30px;
}

.article-title {
    font-size: 24px;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.article-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: #999;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* 文章内容 */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.article-body p {
    margin-bottom: 16px;
    text-indent: 2em;
}

/* 统一正文内所有文字字体，避免后台编辑器内联 font-family 导致粗细不一 */
.article-body p,
.article-body span,
.article-body div {
    font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

.article-body img {
    max-width: 100%;
    margin: 16px auto;
    border-radius: 6px;
}

.article-body h3,
.article-body h4 {
    margin: 24px 0 12px;
    color: #1a6cb8;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.article-body table th,
.article-body table td {
    border: 1px solid #ddd;
    padding: 10px 14px;
    text-align: left;
}

.article-body table th {
    background: #f0f7ff;
    color: #1a6cb8;
    font-weight: bold;
}

/* ================= Footer ================= */
.footer-v2 {
    background: #1e5fa8 url("../images/home/db.png") no-repeat center / cover;
    color: #fff;
    min-height: 200px;
    padding: 30px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-inner {
    max-width: 1920px;
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 70px;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-school-name {
    display: none;
}

.footer-school-en {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-qrcode-img {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.3);
}

.footer-qrcode-text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 6px;
    line-height: 1.4;
}

/* 底部校区地址 */
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.footer-address-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-address-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* ================= 文章导航和返回按钮 ================= */
.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px dashed #e8e8e8;
    gap: 16px;
}

.article-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 14px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all .25s;
    max-width: 45%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-nav a:hover {
    color: #0095E5;
    border-color: #0095E5;
    background: #f0f7ff;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 24px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #1a6cb8, #0095E5);
    border-radius: 24px;
    transition: all .25s;
    cursor: pointer;
}

.article-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 149, 229, 0.3);
    color: #fff;
}

/* ====================================================================
   覆盖 Webplus 系统默认样式
   ==================================================================== */

/* ---------- 1. 全局重置 Webplus 系统注入的默认样式 ---------- */

/* 重置 Webplus 系统可能注入的全局样式 */
body .wp_article_list,
body .wp_article_list * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- 2. 导航 — 覆盖 #wp_nav_w122 内联样式 ---------- */

/* Webplus 生成的导航容器 */
#wp_nav_w122 .wp_nav {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

#wp_nav_w122 .wp_nav::after {
    display: none !important;
}

/* 一级导航项 */
#wp_nav_w122 .wp_nav .nav-item {
    display: inline-block !important;
    float: none !important;
    position: relative !important;
    list-style: none !important;
}

/* 一级导航链接 */
#wp_nav_w122 .wp_nav > .nav-item > a {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: normal !important;
    text-decoration: none !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    transition: background .2s !important;
    cursor: pointer !important;
}

#wp_nav_w122 .wp_nav > .nav-item > a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

/* 去掉系统默认的下划线动画伪元素 */
#wp_nav_w122 .wp_nav .nav-item a::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 隐藏系统的 .mark 遮罩层 — 它会遮挡链接点击 */
#wp_nav_w122 .wp_nav .nav-item .mark,
#wp_nav_w122 .wp_nav .nav-item i.mark {
    display: none !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

/* 一级导航中的 span.item-name — 覆盖系统 padding: 5px 30px */
#wp_nav_w122 .wp_nav > .nav-item > a span.item-name {
    padding: 14px 24px !important;
    line-height: 1.2 !important;
    display: inline-block !important;
}

/* 当前选中项样式 — 覆盖系统的金色 rgb(251,191,36) */
#wp_nav_w122 .wp_nav > .nav-item > a.parent {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    font-weight: normal !important;
}

#wp_nav_w122 .wp_nav > .nav-item > a.parent:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.25) !important;
}

/* ---------- 3. 二级下拉菜单 — 覆盖系统 sub-nav 样式 ---------- */
/* 系统内联 style: width:100px; height:0px; visibility:hidden; */
/* 系统 CSS: display:block; visibility:hidden; 用 visibility 控制显隐 */

/* 默认隐藏 — 覆盖内联 style 和系统 CSS */
#wp_nav_w122 .wp_nav .sub-nav {
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    transition: opacity .2s, visibility .2s !important;
}

/* hover 时显示 — 覆盖内联 height:0 和 visibility:hidden */
#wp_nav_w122 .wp_nav .nav-item:hover > .sub-nav {
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    min-width: 160px !important;
    width: auto !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    z-index: 9999 !important;
    list-style: none !important;
    white-space: nowrap !important;
    border: none !important;
}

/* 二级菜单项 */
#wp_nav_w122 .wp_nav .sub-nav .nav-item {
    display: block !important;
    float: none !important;
    width: 100% !important;
}

#wp_nav_w122 .wp_nav .sub-nav .nav-item .mark {
    display: none !important;
}

/* 二级菜单链接 — 覆盖系统的 border-top、text-shadow 等 */
#wp_nav_w122 .wp_nav .sub-nav .nav-item a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: normal !important;
    color: #333 !important;
    text-align: left !important;
    white-space: nowrap !important;
    background: transparent !important;
    border: none !important;
    border-top: none !important;
    text-shadow: none !important;
    line-height: 1.4 !important;
    height: auto !important;
    width: auto !important;
    min-width: auto !important;
    transition: all .2s !important;
}

/* 二级菜单中的 span.item-name — 覆盖系统 padding: 5px 30px 5px 15px */
#wp_nav_w122 .wp_nav .sub-nav .nav-item a span.item-name {
    padding: 0 !important;
    line-height: inherit !important;
    display: inline !important;
}

#wp_nav_w122 .wp_nav .sub-nav .nav-item a:hover {
    background: #f0f7ff !important;
    color: #0095E5 !important;
    padding-left: 24px !important;
}

#wp_nav_w122 .wp_nav .sub-nav .nav-item a.parent {
    background: transparent !important;
    color: #0095E5 !important;
}

#wp_nav_w122 .wp_nav .sub-nav .nav-item a.parent:hover {
    background: #f0f7ff !important;
}

/* ---------- 4. 自定义导航下拉兜底规则 ---------- */

/* 确保所有 sub-menu 默认隐藏 */
.nav-v2 .sub-menu,
.nav-v2 ul.sub-nav {
    display: none !important;
}

/* hover 时强制显示下拉菜单 */
.nav-v2 li:hover > .sub-menu,
.nav-v2 li:hover > ul.sub-nav,
.nav-v2 .menu-item:hover > .sub-menu,
.nav-v2 .dropdown:hover > .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #fff !important;
    min-width: 160px !important;
    width: auto !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 8px 0 !important;
    z-index: 9999 !important;
    list-style: none !important;
    border: none !important;
}

/* 下拉菜单链接样式 */
.nav-v2 .sub-menu li a,
.nav-v2 ul.sub-nav li a,
.nav-v2 .dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #333 !important;
    white-space: nowrap !important;
    background: transparent !important;
    transition: all .2s !important;
}

.nav-v2 .sub-menu li a:hover,
.nav-v2 ul.sub-nav li a:hover,
.nav-v2 .dropdown-menu a:hover {
    background: #f0f7ff !important;
    color: #0095E5 !important;
    padding-left: 24px !important;
}

/* ---------- 5. 列表页 — 覆盖 Webplus 系统列表样式 ---------- */

/* Webplus 系统生成的列表容器 */
.main-content .wp_article_list {
    padding: 0 !important;
    margin: 0 !important;
}

/* Webplus 系统列表项 */
.main-content .wp_article_list li,
.main-content .wp_article_list .list_item {
    list-style: none !important;
    padding: 16px 0 !important;
    margin: 0 !important;
    border-bottom: 1px dashed #e8e8e8 !important;
    display: flex !important;
    align-items: center !important;
    transition: background .2s !important;
}

.main-content .wp_article_list li:last-child,
.main-content .wp_article_list .list_item:last-child {
    border-bottom: none !important;
}

.main-content .wp_article_list li:hover,
.main-content .wp_article_list .list_item:hover {
    background: #f0f7ff !important;
    border-radius: 6px !important;
}

/* 列表项标题链接 */
.main-content .wp_article_list li a,
.main-content .wp_article_list .list_item a {
    font-size: 16px !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: color .2s !important;
}

.main-content .wp_article_list li a:hover,
.main-content .wp_article_list .list_item a:hover {
    color: #0095E5 !important;
}

/* 列表项日期 */
.main-content .wp_article_list .article_date,
.main-content .wp_article_list .list_time {
    font-size: 14px !important;
    color: #999 !important;
    margin-left: 20px !important;
    flex-shrink: 0 !important;
}

/* ---------- 6. Webplus 分页样式覆盖 ---------- */
/*
   线上 DOM 结构：
   <div class="wp_paging">
     <span class="p_count">每页 14 记录</span>
     <span class="p_total">总共 720 记录</span>
     <a class="first"><span>第一页</span></a>
     <a class="prev"><span><<上一页</span></a>
     <a class="next"><span>下一页>></span></a>
     <a class="last"><span>尾页</span></a>
     <span class="p_pages">页码 1/52</span>
     <input class="pageNum" type="text">
     <a class="pagingJump">跳转到</a>
   </div>
*/

/* 终极兜底：分页内所有子元素取消浮动和绝对定位 */
.wp_paging,
.wp_paging * {
    float: none !important;
    position: relative !important;
}

/* 分页容器 */
.wp_paging,
.main-content .wp_paging,
.main-content .page_nav,
.main-content .Pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 30px 0 0 0 !important;
    padding: 20px 0 0 !important;
    border-top: 1px solid #eee !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #666 !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
}

/* 分页统计信息 — "每页 14 记录"、"总共 720 记录"、"页码 1/52" */
.wp_paging > span,
.wp_paging span.p_count,
.wp_paging span.p_total,
.wp_paging span.p_pages {
    display: inline-flex !important;
    align-items: center !important;
    height: 36px !important;
    padding: 0 8px !important;
    font-size: 13px !important;
    color: #999 !important;
    border: none !important;
    background: transparent !important;
    white-space: nowrap !important;
    min-width: auto !important;
    width: auto !important;
    float: none !important;
    line-height: 36px !important;
    overflow: visible !important;
}

/* ---- 分页按钮通用样式 ---- */
/* 第一页、上一页、下一页、尾页、跳转到 */
.wp_paging a,
.wp_paging a.first,
.wp_paging a.prev,
.wp_paging a.next,
.wp_paging a.last,
.wp_paging a.pagingJump {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    width: auto !important;
    height: 36px !important;
    padding: 0 14px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #666 !important;
    background: #fff !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all .2s !important;
    line-height: 1 !important;
    overflow: visible !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* 按钮内部 <span> — 强制不换行，撤销系统固定宽高 */
.wp_paging a span,
.wp_paging a.first span,
.wp_paging a.prev span,
.wp_paging a.next span,
.wp_paging a.last span {
    white-space: nowrap !important;
    display: inline !important;
    font-size: 14px !important;
    line-height: 1 !important;
    color: inherit !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: visible !important;
    float: none !important;
}

/* 分页按钮 hover */
.wp_paging a:hover,
.wp_paging a.first:hover,
.wp_paging a.prev:hover,
.wp_paging a.next:hover,
.wp_paging a.last:hover,
.wp_paging a.pagingJump:hover {
    background: #0095E5 !important;
    color: #fff !important;
    border-color: #0095E5 !important;
}

.wp_paging a:hover span {
    color: #fff !important;
}

/* 禁用状态 — 当前在第一页时的 "第一页"、"<<上一页" */
.wp_paging a[href="javascript:void(0);"],
.wp_paging a[href="javascript:void(0)"] {
    color: #ccc !important;
    cursor: not-allowed !important;
    border-color: #eee !important;
    background: #fafafa !important;
}

.wp_paging a[href="javascript:void(0);"]:hover,
.wp_paging a[href="javascript:void(0)"]:hover {
    background: #fafafa !important;
    color: #ccc !important;
    border-color: #eee !important;
}

.wp_paging a[href="javascript:void(0);"] span,
.wp_paging a[href="javascript:void(0)"] span {
    color: #ccc !important;
}

/* 页码输入框 */
.wp_paging input.pageNum,
.wp_paging input[type="text"] {
    width: 50px !important;
    height: 36px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    text-align: center !important;
    font-size: 14px !important;
    color: #333 !important;
    outline: none !important;
    padding: 0 4px !important;
    transition: border-color .2s !important;
    background: #fff !important;
    float: none !important;
    box-sizing: border-box !important;
}

.wp_paging input.pageNum:focus,
.wp_paging input[type="text"]:focus {
    border-color: #0095E5 !important;
    box-shadow: 0 0 0 2px rgba(0, 149, 229, 0.15) !important;
}

/* 分页当前页高亮 */
.wp_paging .current,
.wp_paging .active {
    background: #0095E5 !important;
    color: #fff !important;
    border-color: #0095E5 !important;
}

/* ---- 兼容 page_nav / Pagination 旧结构 ---- */
.main-content .page_nav a,
.main-content .Pagination a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    width: auto !important;
    height: 36px !important;
    padding: 0 14px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #666 !important;
    background: #fff !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all .2s !important;
}

.main-content .page_nav a:hover,
.main-content .Pagination a:hover {
    background: #0095E5 !important;
    color: #fff !important;
    border-color: #0095E5 !important;
}

.main-content .page_nav span,
.main-content .Pagination span {
    display: inline-flex !important;
    align-items: center !important;
    height: 36px !important;
    padding: 0 8px !important;
    font-size: 13px !important;
    color: #999 !important;
    white-space: nowrap !important;
    border: none !important;
    background: transparent !important;
    width: auto !important;
    min-width: auto !important;
}

.page_nav .current,
.page_nav .active,
.Pagination .current,
.Pagination .active {
    background: #0095E5 !important;
    color: #fff !important;
    border-color: #0095E5 !important;
}

/* ---------- 7. 详情页 — 覆盖 Webplus 系统文章样式 ---------- */

/* 文章标题 */
.main-content .wp_articlecontent .wp_art_title,
.main-content .article .art_title {
    font-size: 24px !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    letter-spacing: 1px !important;
}

/* 文章信息栏 */
.main-content .wp_articlecontent .wp_art_info,
.main-content .article .art_info {
    display: flex !important;
    justify-content: center !important;
    gap: 24px !important;
    font-size: 14px !important;
    color: #999 !important;
    text-align: center !important;
    padding-bottom: 24px !important;
    border-bottom: 2px solid #0095E5 !important;
    margin-bottom: 30px !important;
}

/* 文章正文 */
.main-content .wp_articlecontent,
.main-content .article .article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.main-content .wp_articlecontent p,
.main-content .article .article-body p {
    margin-bottom: 16px;
}

.main-content .wp_articlecontent img,
.main-content .article .article-body img {
    max-width: 100%;
    height: auto;
    margin: 16px auto;
    display: block;
    border-radius: 6px;
}

/* ---------- 8. 侧边栏 — 覆盖 Webplus 栏目导航样式 ---------- */

/* 侧边栏栏目链接 — 覆盖系统默认的 simpleColumnList */
.sidebar-nav .column_list a,
.sidebar-nav .wp_column a {
    display: block !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    color: #555 !important;
    border-left: 3px solid transparent !important;
    transition: all .2s !important;
    text-decoration: none !important;
    background: transparent !important;
}

.sidebar-nav .column_list a:hover,
.sidebar-nav .column_list a.active,
.sidebar-nav .wp_column a:hover,
.sidebar-nav .wp_column a.active {
    background: #f0f7ff !important;
    color: #0095E5 !important;
    border-left-color: #0095E5 !important;
}

/* ---------- 9. 通用兜底 — 清除 Webplus 可能的全局污染 ---------- */

/* 清除系统可能对 main-content 内容区注入的背景、边框等 */
.main-content table {
    width: 100% !important;
    border-collapse: collapse !important;
}

.main-content table th,
.main-content table td {
    border: 1px solid #ddd !important;
    padding: 10px 14px !important;
    text-align: left !important;
}

.main-content table th {
    background: #f0f7ff !important;
    color: #1a6cb8 !important;
    font-weight: bold !important;
}

/* ================= 响应式 / 自适应手机端 ================= */
@media screen and (max-width: 992px) {
    /* 1. 头部调整 */
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    .header-right {
        width: 100%;
        align-items: center;
    }
    /* 移动端隐藏搜索框 */
    .search[portletmode="search"] {
        display: none !important;
    }
    /* 导航栏变为横向可滑动 */
    .nav-v2 {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-v2::-webkit-scrollbar {
        display: none;
    }
    .nav-v2 > ul, .nav-v2 .wp-menu {
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: max-content;
        margin: 0 auto;
    }
    /* 覆盖Webplus导航，使其横铺 */
    #wp_nav_w122 .wp_nav {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }
    #wp_nav_w122 .wp_nav > .nav-item {
        flex-shrink: 0 !important;
    }

    /* 2. Banner */
    .sub-banner {
        height: 150px;
    }

    /* 3. 子页面双列布局转单列 */
    .content-wrap {
        flex-direction: column;
        margin-top: -20px;
    }
    .sidebar {
        width: 100%;
    }
    .sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    .sidebar-box .sidebar-nav a {
        padding: 12px 16px !important;
        background: #f5f7fa !important;
        border-radius: 4px;
        border-left: none !important;
        text-align: center;
        width: 100%;
    }
    .sidebar-box .sidebar-nav a.active, .sidebar-box .sidebar-nav a:hover {
        background: #0095E5 !important;
        color: #fff !important;
    }

    /* 4. 文章详情 */
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    .article-nav {
        flex-direction: column;
    }
    .article-nav a {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    /* 5. Footer */
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-left {
        flex-direction: column;
    }

    /* 6. Webplus原生图文新闻列表（移动端图上文下） */
    .c_pt_12 {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .c_pt_12 .c_pic, .c_pt_12 .c_pic > span {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
        display: block !important;
    }
    .c_pt_12 .c_pic img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
    .c_pt_12 .c_txt {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
@media screen and (max-width: 576px) {
    .sub-banner-title {
        font-size: 26px;
    }
    .article-title {
        font-size: 20px;
    }
}
