@charset "utf-8";
/* ===== Design Tokens (from html/style.css) ===== */
:root {
  --background: #ffffff;
  --foreground: #1f242e;
  --surface: #f8f9fb;
  --surface-alt: #f5f6f8;
  --primary: #82080D;
  --primary-rgb: 130,8,13;
  --primary-foreground: #ffffff;
  --primary-light: #C20017;
  --primary-dark: #960816;
  --primary-deeper: #6B0010;
  --primary-50: #FDF2F2;
  --primary-100: #FBE0E2;
  --primary-200: #F5BFC4;
  --secondary: #5f6b7a;
  --secondary-light: #94a0b0;
  --secondary-dark: #3a4350;
  --success: #29a383;
  --success-light: #e6f7f2;
  --warning: #e6911a;
  --warning-light: #fcf4e8;
  --error: #c0392b;
  --error-light: #fbeae8;
  --card: #ffffff;
  --card-foreground: #1e2330;
  --muted: #f2f3f5;
  --muted-foreground: #6b7280;
  --accent: #f2f3f5;
  --accent-foreground: #1e2330;
  --border: #e8eaed;
  --divider: #eceef1;
  --divider-strong: #d0d4db;
  --text-primary: #1a1a2e;
  --text-secondary: #4a5060;
  --text-tertiary: #8b919d;
  --text-link: #82080D;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04),0 1px 2px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(130,8,13,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1280px;
  --font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif;
}

/* ===== Utility Classes ===== */
.container-custom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .container-custom { padding: 0 24px; }
}
@media (min-width: 1024px) {
  .container-custom { padding: 0 32px; }
}

.bg-gradient-to-r {
  background: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-primary-dark {
  --tw-gradient-from: var(--primary-dark);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}
.to-primary {
  --tw-gradient-to: var(--primary);
}

/* ===== Reset & Base ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
body{font-family:var(--font-family);color:var(--foreground);background:var(--background);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%;max-width:100%}
a{color:inherit;text-decoration:none;transition:var(--transition)}
a:hover{color:var(--primary)}
img{max-width:100%;display:block}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{line-height:1.3}
.clear{clear:both}
p{margin:4px 0 6px 0}

/* ===== Layout ===== */
.container{max-width:var(--container);margin:0 auto;padding:0 16px;width:100%;box-sizing:border-box}

/* 防止横向滚动 */
html,body{overflow-x:hidden}
*{max-width:100%}

/* ===== Top Bar ===== */
.top-bar{background:var(--primary-dark);color:#fff}
.top-bar .container{display:flex;justify-content:space-between;align-items:center;padding-top:6px;padding-bottom:6px;font-size:14px}
.top-bar a{color:rgba(255,255,255,0.8);transition:var(--transition)}
.top-bar a:hover{color:#fff;text-decoration:underline}
.top-bar .sep{color:rgba(255,255,255,0.5);margin:0 4px}

/* ===== Header ===== */
.header{background:#fff;box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);position:sticky;top:0;z-index:50}
#headerWraper{background:#fff}
#header{max-width:var(--container);margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:16px}
#logo{padding:0;width:auto;flex-shrink:0}
#logo img{height:64px;width:auto}
.logo-text h1{font-size:24px;font-weight:700;color:var(--primary);letter-spacing:0.6px;margin:0;line-height:32px}
.logo-text p{font-size:12px;color:var(--text-tertiary);letter-spacing:0.6px;text-transform:uppercase;margin:0;line-height:16px}
.header-main{display:flex;align-items:center;justify-content:space-between;width:100%}
.logo-wrap{display:flex;align-items:center;gap:16px}
.header-search{position:relative}
.header-search form{display:inline;margin:0;padding:0;border:none}
.header-search input{padding:8px 16px;border:none;border-bottom:2px solid var(--divider);background:transparent;width:256px;color:var(--foreground);transition:var(--transition);outline:none;font:inherit;font-size:14px;border-radius:0;-webkit-appearance:none}
.header-search input:focus{border-bottom-color:var(--primary)}
.header-search input::placeholder{color:var(--text-tertiary)}
.searchinput{padding:8px 16px;border-bottom:2px solid var(--divider);background:transparent;width:256px;color:var(--foreground);transition:var(--transition);outline:none}
.searchinput:focus{border-color:var(--primary)}
@media(max-width:768px){.header-search{display:none}}

/* ===== Navigation ===== */
#nav-box{background:url(../images/bg_nav.jpg) repeat-x;color:#fff}
.navWraper{max-width:var(--container);margin:0 auto;display:flex;align-items:center;padding:0 16px!important}
#nav{flex:1}
.mobile-menu-btn{display:none;align-items:center;justify-content:center;padding:16px;color:#fff;cursor:pointer;background:none;border:none}
.mobile-menu-btn svg{width:24px;height:24px}
@media(max-width:1024px){
  .mobile-menu-btn{display:flex}
  #nav{display:none}
  #nav.nav-open{display:block;width:100%}
  .navWraper{flex-wrap:wrap}
}
@media(min-width:1025px){.mobile-menu-btn{display:none}}
.quickLink{text-align:right;font-size:14px;color:#fff;padding:12px 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.quickLink a{color:rgba(255,255,255,0.85)}
.quickLink a:hover{color:#fff}

/* ===== Banner / Hero ===== */
.banner-section,.hero-section{position:relative;height:650px;overflow:hidden;width:100%;max-width:100%;background:linear-gradient(135deg,var(--primary-deeper),var(--primary-dark),var(--primary))}
.banner-section::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(107,0,16,0.3) 0%,transparent 50%,rgba(194,0,23,0.15) 100%);z-index:2;pointer-events:none}
.banner-section::after{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,rgba(194,0,23,0.08) 0%,transparent 70%);z-index:1;pointer-events:none}
.banner-slide{position:absolute!important;inset:0!important;transition:opacity 1s ease,transform 1s ease;opacity:0!important;transform:scale(1.05);z-index:1;width:100%;height:100%}
.banner-slide.active{opacity:1!important;transform:scale(1);z-index:3!important}
.banner-bg{position:absolute;inset:0;background:linear-gradient(135deg,var(--primary-deeper),var(--primary-dark),var(--primary));width:100%;height:100%}
.banner-content{position:relative;height:100%;display:flex;align-items:center;padding:0 16px;width:100%;box-sizing:border-box}
.banner-content h2{font-size:48px;font-weight:700;color:#fff;margin-bottom:16px;line-height:1.2;word-break:break-word;text-shadow:0 2px 8px rgba(0,0,0,0.15)}
.banner-content .divider-line{width:80px;height:3px;background:linear-gradient(90deg,#fff,rgba(255,255,255,0.3));margin-bottom:16px;border-radius:2px}
.banner-content p{font-size:24px;color:rgba(255,255,255,0.8);letter-spacing:4px;word-break:break-word}
.banner-indicators{position:absolute;bottom:32px;left:50%;transform:translateX(-50%);display:flex;gap:12px;z-index:10}
.banner-indicators button{height:4px;border-radius:9999px;background:rgba(255,255,255,0.3);width:32px;cursor:pointer;transition:var(--transition);border:none}
.banner-indicators button.active{background:#fff!important;width:48px}
/* Banner左右箭头 */
.banner-arrow{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.3);color:#fff;font-size:28px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s ease;z-index:10;backdrop-filter:blur(4px);line-height:1}
.banner-arrow:hover{background:rgba(255,255,255,0.3);border-color:rgba(255,255,255,0.5);transform:translateY(-50%) scale(1.08)}
.banner-arrow-prev{left:24px}
.banner-arrow-next{right:24px}
.hero-overlay{position:absolute;bottom:0;left:0;right:0;padding:40px 0;background:linear-gradient(transparent,rgba(0,0,0,0.5))}
.hero-overlay h2{color:#fff;font-size:28px;margin:0}
@media(max-width:768px){
  .banner-section,.hero-section{height:320px}
  .banner-content h2{font-size:28px}
  .banner-content p{font-size:16px}
}
/* CMS轮播面板 - 强制隐藏（静态幻灯片替代） */
.banner-section .picnews,.picnews{display:none!important;visibility:hidden!important;overflow:hidden!important;width:0!important;height:0!important;position:absolute!important;left:-9999px!important;top:-9999px!important}
.banner-section .focus-box,.banner-section .focus-container,.banner-section .focus-item,.banner-section .focus-pagination,.banner-section .focus-navigation,.banner-section .focus-title-bar{display:none!important}
/* CMS封面图数据源 - 强制隐藏 */
.cms-banner-source{visibility:hidden!important;overflow:hidden!important;width:1px!important;height:1px!important;position:absolute!important;left:-9999px!important;top:-9999px!important}
/* CMS模板标签输出容器 - 强制隐藏（JS从中提取图片数据） */
.banner-slides{visibility:hidden!important;overflow:hidden!important;width:1px!important;height:1px!important;position:absolute!important;left:-9999px!important;top:-9999px!important}

/* ===== Section Title ===== */
.section-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:28px;padding-bottom:14px;border-bottom:2px solid var(--divider);position:relative}
.section-header::after{content:'';position:absolute;bottom:-2px;left:0;width:60px;height:2px;background:linear-gradient(90deg,var(--primary),var(--primary-light));border-radius:1px}
.section-title{font-size:22px;font-weight:700;color:var(--text-primary);position:relative;padding-left:16px}
.section-title::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:22px;background:linear-gradient(180deg,var(--primary),var(--primary-light));border-radius:2px}
/* 更多链接 */
.section-more{color:var(--primary);font-size:14px;text-decoration:none;font-weight:500;transition:var(--transition)}
.section-more:hover{color:var(--primary-dark);letter-spacing:1px}

/* ===== Notice Section ===== */
.notice-section{padding:56px 0;background:var(--surface);text-align:left!important;position:relative}
.notice-section::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--divider-strong),transparent)}
.notice-grid{width:100%!important;box-sizing:border-box!important;text-align:left!important}
.notice-card{display:flex;align-items:center;gap:16px;padding:16px 16px;background:#fff;border-radius:10px;border:1px solid var(--divider);transition:var(--transition);text-align:left!important;position:relative}
.notice-card::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:3px;height:0;background:linear-gradient(180deg,var(--primary),var(--primary-light));border-radius:0 2px 2px 0;transition:height .3s ease}
.notice-card:hover{border-color:rgba(var(--primary-rgb),0.2);box-shadow:var(--shadow-card);transform:translateY(-1px)}
.notice-card:hover::before{height:60%}
.notice-card .info{flex:1;min-width:0;text-align:left!important}
.notice-card .tag{display:inline-flex;align-items:center;padding:2px 8px;border-radius:9999px;font-size:12px;font-weight:500;margin-bottom:6px;line-height:16px}
.tag-warning{background:var(--warning-light);color:var(--warning);border:1px solid rgba(230,145,26,0.2)}
.tag-primary{background:var(--primary-100);color:var(--primary);border:1px solid rgba(var(--primary-rgb),0.2)}
.tag-info{background:var(--surface);color:var(--text-tertiary);border:1px solid var(--divider)}
.notice-card .title{font-size:14px;color:var(--foreground);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:var(--transition);text-align:left!important}
.notice-card:hover .title{color:var(--primary)}
.notice-card .date-wrap{text-align:right;flex-shrink:0}
.notice-card .date{font-size:16px;font-weight:600;color:rgba(var(--primary-rgb),0.8)}
.notice-card .month{font-size:10px;color:var(--text-tertiary)}

/* ===== Statistics Section (教学数据) ===== */
.stats-section{padding:64px 0;background:#f8f9fb;position:relative;overflow:hidden;width:100%;max-width:100%}
.stats-header{text-align:center;margin-bottom:40px;padding:0 16px}
.stats-bar{display:inline-block;width:40px;height:4px;border-radius:2px;background:var(--primary);margin-bottom:16px}
.stats-header h2{font-size:28px;font-weight:700;color:#1a1a2e;margin-bottom:6px;word-break:break-word}
.stats-header p{color:#999;font-size:13px;letter-spacing:2px}
.stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;position:relative;width:100%;box-sizing:border-box}
@media(min-width:768px){.stats-grid{grid-template-columns:repeat(3,1fr);gap:20px}}
.stat-card{display:flex;align-items:center;gap:16px;padding:20px 24px;border-radius:14px;background:#fff;border:1px solid #eee;transition:all .3s ease;text-decoration:none;position:relative;overflow:hidden}
.stat-card::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;border-radius:0 2px 2px 0;transition:width .3s ease}
.stat-card[data-color="#e74c3c"]::before{background:#e74c3c}
.stat-card[data-color="#3498db"]::before{background:#3498db}
.stat-card[data-color="#2ecc71"]::before{background:#2ecc71}
.stat-card[data-color="#f39c12"]::before{background:#f39c12}
.stat-card[data-color="#9b59b6"]::before{background:#9b59b6}
.stat-card[data-color="#1abc9c"]::before{background:#1abc9c}
.stat-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,0.08);border-color:transparent}
.stat-card:hover::before{width:6px}
.stat-icon{width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .3s ease}
.stat-card:hover .stat-icon{transform:scale(1.08)}
.stat-icon svg{width:26px;height:26px}
.stat-info{flex:1;min-width:0}
.stat-value{font-size:28px;font-weight:700;color:#1a1a2e;line-height:1.2;letter-spacing:1px}
.stat-label{font-size:13px;color:#888;margin-top:2px;letter-spacing:1px}
.stat-arrow{font-size:22px;color:#ccc;transition:all .3s ease;flex-shrink:0;line-height:1}
.stat-card:hover .stat-arrow{color:#999;transform:translateX(3px)}

/* Reference-style teaching data panel */
.stats-section{padding:0;background:#fff;overflow:hidden}
.stats-section>.container{max-width:1200px;min-height:390px;display:grid;grid-template-columns:31% 69%;padding:0;background:linear-gradient(135deg,#fff 0%,#fff8f8 46%,#fff 100%);box-shadow:0 3px 14px rgba(117,0,20,.1);overflow:hidden}
.stats-header{position:relative;z-index:1;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;margin:0;padding:58px 44px;text-align:left;background:linear-gradient(145deg,#fff 5%,#fff8f8 58%,#f8d4d4 100%)}
.stats-header::after{content:'';position:absolute;z-index:-1;top:-8%;right:-31px;width:98px;height:116%;border-right:11px solid #c71922;border-radius:0 58% 58% 0;transform:skewX(-5deg);background:linear-gradient(150deg,transparent 53%,rgba(195,22,30,.08) 53%)}
.stats-header::before{content:'';position:absolute;left:44px;bottom:100px;width:28px;height:3px;background:#c71922}
.stats-bar{display:none}
.stats-header h2{font-size:34px;font-weight:700;color:#b5121b;margin:0 0 7px;line-height:1.2;word-break:keep-all}
.stats-header p{color:#c93c42;font-size:12px;letter-spacing:0;margin:0}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);gap:0;padding:35px 34px 30px 62px}
.stat-card{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;padding:8px 10px;background:transparent;border:0;border-radius:0;overflow:visible}
.stat-card::before{content:'';position:absolute;top:49%;left:-2px;right:-2px;width:auto;height:0;border-top:1px dotted rgba(193,28,36,.35);background:none!important}
.stat-card:nth-child(3n+1)::before{left:50%}
.stat-card:nth-child(3n)::before{right:50%}
.stat-card::after{content:'';position:absolute;top:calc(49% - 3px);right:-3px;width:6px;height:6px;border-radius:50%;background:#c51c24}
.stat-card:nth-child(3n)::after{display:none}
.stat-card:hover{transform:translateY(-4px);box-shadow:none;border-color:transparent}
.stat-card:hover::before{width:auto}
.stat-icon{z-index:1;position:relative;width:52px;height:52px;border-radius:50%!important;color:#fff!important;background:linear-gradient(145deg,#a90811,#d93238)!important;box-shadow:8px 0 0 rgba(194,25,33,.10),10px 0 0 1px rgba(194,25,33,.38)}
.stat-icon::after{content:'';position:absolute;width:66px;height:66px;border-radius:50%;border-top:2px solid rgba(205,45,51,.55);border-right:2px solid rgba(205,45,51,.55);transform:rotate(-35deg);pointer-events:none}
.stat-card:hover .stat-icon{transform:scale(1.08);box-shadow:9px 0 0 rgba(194,25,33,.12),11px 0 0 1px rgba(194,25,33,.45)}
.stat-icon svg{width:27px;height:27px;stroke-width:1.4}
.stat-info{z-index:1;flex:0;min-width:0;text-align:center;background:#fff;padding:0 8px}
.stat-value{font-size:27px;font-weight:700;color:#b5121b;line-height:1.05;letter-spacing:-1px}
.stat-label{font-size:13px;color:#444;margin-top:5px;letter-spacing:0}
.stat-arrow{display:none}
@media(max-width:767px){.stats-section>.container{display:block;min-height:0;padding:0}.stats-header{padding:32px 28px;background:linear-gradient(135deg,#fff,#f9dada)}.stats-header::after{display:none}.stats-header::before{left:28px;bottom:22px}.stats-header h2{font-size:27px}.stats-grid{grid-template-columns:repeat(2,1fr);grid-template-rows:auto;padding:26px 14px;row-gap:24px}.stat-card::before,.stat-card::after{display:none}.stat-value{font-size:24px}}

/* ===== News + Tools Section ===== */
.news-section{padding:48px 0;background:var(--background);text-align:left!important;width:100%;max-width:100%;position:relative}
.news-section::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--divider-strong),transparent)}
.news-list,.news-list *{text-align:left!important}
.news-tools-grid{display:grid;grid-template-columns:1fr;gap:32px;width:100%;box-sizing:border-box}
@media(min-width:1024px){.news-tools-grid{grid-template-columns:2fr 1fr}}
.news-list{background:#fff;border:1px solid var(--divider);border-radius:8px;overflow:hidden;width:100%;box-sizing:border-box}
.news-featured{display:block;padding:20px;background:linear-gradient(90deg,rgba(var(--primary-rgb),0.05),transparent);border-bottom:1px solid var(--divider);transition:var(--transition);width:100%;box-sizing:border-box}
.news-featured:hover{background:linear-gradient(90deg,rgba(var(--primary-rgb),0.1),transparent)}
.news-featured h3{font-size:16px;font-weight:600;color:var(--primary);margin-bottom:6px;word-break:break-word}
.news-featured .date{font-size:12px;color:var(--text-tertiary)}
.news-item{display:flex;align-items:flex-start;gap:12px;padding:12px 16px;border-bottom:1px solid var(--divider);transition:var(--transition);width:100%;box-sizing:border-box}
.news-item:last-child{border-bottom:none}
.news-item:hover{background:var(--primary-50)}
.news-item .num{color:rgba(var(--primary-rgb),0.25);font-size:12px;font-family:monospace;width:20px;flex-shrink:0}
.news-item .news-title{flex:1;min-width:0;font-size:16px;color:var(--foreground);line-height:1.5;transition:var(--transition);word-break:break-word}
.news-item:hover .news-title{color:var(--primary)}
.news-item .date{color:var(--text-tertiary);font-size:12px;flex-shrink:0;min-width:40px;text-align:right}

/* ===== Tools Grid ===== */
.tools-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;width:100%;box-sizing:border-box}
.tool-card{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px;background:#fff;border:1px solid var(--divider);border-radius:8px;transition:var(--transition);width:100%;box-sizing:border-box}
.tool-card:hover{box-shadow:var(--shadow-hover);border-color:rgba(var(--primary-rgb),0.3);transform:translateY(-2px)}
.tool-card .icon-wrap{width:40px;height:40px;border-radius:6px;background:rgba(var(--primary-rgb),0.05);display:flex;align-items:center;justify-content:center;margin-bottom:10px;transition:var(--transition)}
.tool-card:hover .icon-wrap{background:rgba(var(--primary-rgb),0.1)}
.tool-card .icon-wrap svg{width:20px;height:20px;color:var(--primary);stroke-width:1.5}
.tool-card span{font-size:12px;font-weight:500;color:var(--foreground);text-align:center;word-break:break-word}
.tool-card:hover span{color:var(--primary)}
.tools-more{margin-top:16px;text-align:center}
.tools-more a{color:var(--primary);font-size:12px;display:inline-flex;align-items:center;gap:4px}
.tools-more a:hover{text-decoration:underline}
.tools-more svg{width:12px;height:12px}

/* ===== Page Header (list/detail) ===== */
.page-header{background:linear-gradient(90deg,var(--primary-dark),var(--primary));color:#fff;padding:64px 0;position:relative;overflow:hidden}
.page-header h1{font-size:36px;font-weight:700;margin-bottom:8px;position:relative}
.page-header .subtitle{color:rgba(255,255,255,0.6);letter-spacing:4px;font-size:13px;text-transform:uppercase;position:relative}
/* .detail-hero{background:linear-gradient(90deg,var(--secondary),var(--primary));color:#fff;padding:64px 0} */
.detail-hero{background:#9A001D;color:#fff;padding:64px 0}
.detail-hero h1{font-size:36px;font-weight:700;margin-bottom:16px}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:14px;margin-top:24px;position:relative}
.breadcrumb a{color:rgba(255,255,255,0.7);transition:var(--transition)}
.breadcrumb a:hover{color:#fff}
.breadcrumb .current{color:#fff;font-weight:500}
.breadcrumb svg{width:16px;height:16px;color:rgba(255,255,255,0.5)}

/* ===== Content Layout ===== */
.content-section{padding:48px 0;text-align:left!important}
.content-grid{display:grid;grid-template-columns:1fr;gap:32px}
@media(min-width:1024px){.content-grid{grid-template-columns:2fr 1fr}}
@media(min-width:1024px){.content-grid.content-grid-3{grid-template-columns:3fr 1fr}}

/* ===== Cards ===== */
.card{background:#fff;border-radius:8px;box-shadow:var(--shadow-card);overflow:hidden}
.card-padded{padding:32px}
.card-accent{border-left:4px solid var(--primary)}
.card h2{font-size:24px;font-weight:700;color:var(--primary);margin-bottom:24px}
.card h3{font-size:20px;font-weight:600;color:var(--foreground);margin-top:24px;margin-bottom:12px}
.card p{color:var(--foreground);line-height:1.8;margin-bottom:16px}

/* ===== Sidebar ===== */
.sidebar{display:flex;flex-direction:column;gap:24px}
.sidebar-card{background:#fff;border-radius:8px;box-shadow:var(--shadow-card);padding:24px}
.sidebar-card h3{font-size:18px;font-weight:700;color:var(--primary);margin-bottom:16px}
.sidebar-nav a{display:block;padding:12px 16px;background:var(--surface);border-radius:8px;margin-bottom:8px;transition:var(--transition);font-size:14px}
.sidebar-nav a:hover{background:var(--primary-50);border-left:2px solid var(--primary)}
.sidebar-nav a:last-child{margin-bottom:0}

/* ===== Article List (list page) ===== */
.search-box{position:relative;max-width:448px;margin-bottom:32px}
.search-box input{width:100%;padding:12px 16px;padding-right:48px;border:1px solid var(--border);border-radius:8px;font-size:14px;transition:var(--transition);outline:none}
.search-box input:focus{box-shadow:0 0 0 2px rgba(var(--primary-rgb),0.3);border-color:var(--primary)}
.search-box svg{position:absolute;right:16px;top:50%;transform:translateY(-50%);width:20px;height:20px;color:var(--muted-foreground)}
.article-list{display:flex;flex-direction:column;gap:16px;text-align:left!important}
.article-list,.article-list *{text-align:left!important}
.article-card{display:block;background:#fff;border-radius:8px;box-shadow:var(--shadow-card);padding:24px;transition:var(--transition)}
.article-card:hover{box-shadow:var(--shadow-hover)}
.article-card .article-inner{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.article-card h3{font-size:18px;font-weight:600;color:var(--foreground);margin-bottom:8px;transition:var(--transition)}
.article-card:hover h3{color:var(--primary)}
.article-card .summary{color:var(--muted-foreground);font-size:14px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.article-card .article-date{font-size:14px;color:var(--muted-foreground);flex-shrink:0}
.pagination{margin-top:32px;display:flex;align-items:center;justify-content:center;gap:8px}
.pagination button,.pagination a{padding:8px 16px;border:1px solid var(--border);border-radius:8px;transition:var(--transition);cursor:pointer;font-size:14px;background:#fff;color:var(--foreground)}
.pagination button:hover:not(:disabled),.pagination a:hover{background:var(--accent,#f2f3f5)}
.pagination .page-btn.active,.pagination .current{background:var(--primary);color:#fff;border-color:var(--primary)}

/* ===== Detail Page ===== */
.detail-meta{display:flex;align-items:center;gap:24px;font-size:14px;color:var(--muted-foreground);margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.detail-meta .meta-item{display:flex;align-items:center;gap:8px}
.detail-meta svg{width:16px;height:16px}
.article-content{line-height:1.9;color:var(--foreground)}
.article-content p{margin-bottom:16px}
.article-content h3{font-size:20px;font-weight:600;margin-top:24px;margin-bottom:12px}
.article-content ul{padding-left:20px;margin-bottom:16px;list-style:disc}
.article-content ul li{margin-bottom:8px}
.detail-actions{margin-top:32px;padding-top:24px;border-top:1px solid var(--border);display:flex;gap:16px}
.detail-actions button{display:flex;align-items:center;gap:8px;padding:8px 16px;border:1px solid var(--border);border-radius:8px;transition:var(--transition);cursor:pointer;font-size:14px;background:#fff}
.detail-actions button:hover{background:var(--muted)}
.detail-actions svg{width:16px;height:16px}
/* CMS文章内容覆盖 */
.info-box{margin:0}
.article{padding:0}
.article h1.arti-title{line-height:1.3;padding:0;text-align:left;font-size:28px;font-weight:700;color:var(--primary);border-bottom:1px solid var(--border);padding-bottom:16px;margin-bottom:16px}
.article .arti-metas{height:auto;line-height:1.6;text-align:left;padding:0 0 16px 0;display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.article .arti-metas span{display:inline-block;margin:0;font-size:14px;color:var(--muted-foreground)}
.article .arti-metas .read-options{display:none}
.article .entry{margin:0;overflow:hidden}
.article .entry,.article .entry p{line-height:1.9;font-size:15px;text-align:justify}
.article .entry p{margin-bottom:16px}
.article .entry .read img{vertical-align:middle;max-width:100%;height:auto}
#bdshare{margin-top:32px;padding-top:24px;border-top:1px solid var(--border)}

/* ===== Footer ===== */
.site-footer,#footerWraper{background:linear-gradient(180deg,var(--primary-dark) 0%,var(--primary-deeper) 100%);color:#fff;border-top:3px solid rgba(255,255,255,0.12)}
.footer-inner{padding:64px 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:48px}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
.footer-col h3,.footer-grid h3{font-size:18px;font-weight:600;color:#fff;border-bottom:2px solid rgba(255,255,255,0.15);padding-bottom:14px;margin-bottom:24px;position:relative;letter-spacing:0.5px}
.footer-col h3::after,.footer-grid h3::after{content:'';position:absolute;bottom:-2px;left:0;width:40px;height:2px;background:#fff;border-radius:1px}
.footer-contact{display:flex;flex-direction:column;gap:18px}
.footer-contact-item{display:flex;align-items:flex-start;gap:14px}
.footer-contact-item .icon-bg{background:rgba(255,255,255,0.08);padding:10px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--transition);border:1px solid rgba(255,255,255,0.06)}
.footer-contact-item:hover .icon-bg{background:rgba(255,255,255,0.15);border-color:rgba(255,255,255,0.12)}
.footer-contact-item .icon-bg svg{width:20px;height:20px;color:rgba(255,255,255,0.85)}
.footer-contact-item p{color:rgba(255,255,255,0.75);font-size:14px;margin:0;line-height:1.6}
.footer-links{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.footer-links a{color:rgba(255,255,255,0.75);font-size:14px;transition:var(--transition);position:relative;padding-left:18px}
.footer-links a::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:6px;height:6px;background:rgba(255,255,255,0.3);border-radius:50%;transition:var(--transition)}
.footer-links a:hover{color:#fff;padding-left:22px}
.footer-links a:hover::before{background:#fff;width:8px;height:8px}
.footer-about p{color:rgba(255,255,255,0.65);line-height:1.9;font-size:14px}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);margin-top:40px;padding-top:32px;text-align:center;font-size:14px}
.footer-bottom p{color:rgba(255,255,255,0.5)}
/* 旧页脚覆盖 */
.copyrights{width:auto;margin:0 auto;line-height:1.4;text-align:center;padding:32px;color:rgba(255,255,255,0.5);background:none}
.copyrights a{color:rgba(255,255,255,0.7)}
.copyrights a:hover{color:#fff}
.copyrights-txt{float:none;width:auto;text-align:center;padding:0}
.copyrights p{margin-bottom:3px;font-size:14px;line-height:25px;color:rgba(255,255,255,0.5)}

/* ===== CMS News Box 覆盖 ===== */
.newsTit{height:auto;border-bottom:1px solid var(--divider);background:none;display:flex;align-items:center;justify-content:space-between;padding:12px 16px}
.newsTitText{float:none;font-size:18px;padding:0;width:auto;color:var(--primary);font-weight:700;position:relative;padding-bottom:6px}
.newsTitText::after{content:'';position:absolute;bottom:0;left:0;width:32px;height:2px;background:var(--primary);border-radius:2px}
.newsTitText h4{font-size:18px;color:var(--primary);font-weight:700;margin:0}
.noticeMore{float:none;padding:0;margin:0}
.noticeMore img{display:none}
.noticeMore a{color:var(--primary);font-size:14px}
.newsList{padding:12px 16px;border-top:none}
.news-box{margin-bottom:15px;background:#fff;height:auto;padding:0;border:1px solid var(--divider);border-radius:8px;overflow:hidden;box-shadow:var(--shadow-card)}

/* CMS新闻列表覆盖 */
.wp_article_list{text-align:left!important;width:100%;box-sizing:border-box}
.wp_article_list,.wp_article_list *{text-align:left!important}
.wp_article_list .list_item{height:auto;border-bottom:1px solid var(--divider)!important;padding:12px 16px;display:flex;align-items:center;gap:12px;text-align:left!important;width:100%;box-sizing:border-box}
.wp_article_list .list_item:last-child{border-bottom:none!important}
.wp_article_list .list_item .Article_Index{background:none;color:rgba(var(--primary-rgb),0.25);font-size:12px;font-family:monospace;width:20px;flex-shrink:0;text-align:left!important}
.wp_article_list .list_item .Article_Title{flex:1;min-width:0;font-size:14px;text-align:left!important;word-break:break-word;line-height:1.5}
.wp_article_list .list_item .Article_Title a{color:var(--foreground);text-align:left!important;display:block}
.wp_article_list .list_item:hover .Article_Title a{color:var(--primary)}
.wp_article_list .list_item .pr_fields{font-size:12px;color:var(--text-tertiary);flex-shrink:0;padding-left:0!important;text-align:right!important;white-space:nowrap;min-width:80px}
.wp_article_list_table img{padding:0 4px}
.wp_article_list_table td{text-align:left!important}
.wp_article_list_table td:last-child{text-align:left!important}

/* CMS栏目导航覆盖 */
.newsTitList{height:auto;background:var(--primary);border-radius:8px 8px 0 0}
.newsTitText2{float:none;font-size:16px;padding:14px 17px;width:auto;color:#fff;font-weight:600}
.newsTitText2 h4{font-size:16px;color:#fff;font-weight:600;margin:0}
.wp_listcolumn{display:block;width:100%;border-top:none!important;border-bottom:none!important}
.wp_listcolumn .wp_column a{background:var(--surface);border-bottom:1px solid var(--divider);color:var(--foreground);padding:12px 16px;display:block;transition:var(--transition);border-radius:0}
.wp_listcolumn .wp_column a:hover{background:var(--primary-50);border-left:2px solid var(--primary);color:var(--primary)}
.wp_listcolumn .wp_column a.selected{color:var(--primary);background:var(--primary-50);border-left:3px solid var(--primary)}
.wp_listcolumn .wp_column a .column-name{padding:0}
.rowSide1{float:none;width:100%}
.rowSide1 iframe{width:100%!important;padding:0}

/* ===== listcolumn 布局 ===== */
.lsitrow1,.disprow{display:grid;grid-template-columns:1fr;gap:32px;max-width:var(--container);margin:0 auto;padding:32px;text-align:left!important}
.lsitrow1,.disprow,.lsitrow1 *,.disprow *{text-align:left!important}
@media(min-width:1024px){.lsitrow1{grid-template-columns:3fr 1fr}}
@media(min-width:1024px){.disprow{grid-template-columns:3fr 1fr}}
.listMain{float:none;width:100%;padding:24px;background:#fff;min-height:auto;border-radius:8px;box-shadow:var(--shadow-card);text-align:left!important}
.breadnav{background:none;border-bottom:1px solid var(--divider);padding:12px 0;height:auto;margin-bottom:16px;text-align:left!important}
.newslist{padding:0;padding-bottom:16px;font-size:14px;border-top:none;line-height:1.6;text-align:left!important}

/* ===== displayinfo 布局覆盖 ===== */
.dispmain{margin:0}
#dispArticle{font-size:14px;margin:0;margin-top:16px;margin-bottom:30px;line-height:22px}
#dispTit{line-height:1.3!important;color:var(--primary)!important;font-size:28px!important;font-weight:700!important;margin:0 0 16px 0!important;padding-bottom:16px!important;text-align:left!important;border-bottom:1px solid var(--border)!important}
.articleInfo{padding-bottom:16px!important;margin-bottom:16px!important;border-bottom:1px solid var(--border)!important;text-align:left!important}
.dispmain{text-align:left!important;float:none!important;width:100%!important}
#dispArticle{text-align:left!important}
.read,.article .read{width:100%!important;float:none!important;text-align:justify!important}

/* ===== Main Page Layout ===== */
.mainWraper-box{background:var(--background);padding:0}
.mainWraper{max-width:var(--container);margin:0 auto;padding:0 32px}
.main-left{float:none;width:100%}
.list-R{float:none;width:100%}
.row{margin-bottom:0}
.row1{margin-bottom:0}
.xiaoliWraper{float:none;width:100%;background:#fff;height:auto;margin-bottom:0}
.newsWraper{float:none;width:100%}
.xgxzWraper{float:none;width:100%}
.yeubaoWraper{float:none;width:100%;height:auto}
.yeubao{height:auto;background:#fff;margin-bottom:12px;padding:8px 0;border:1px solid var(--divider);border-radius:8px}
.banche{background:#fff;height:auto;border:1px solid var(--divider);border-radius:8px;overflow:hidden;display:flex;gap:8px}
.banche a{flex:1}
.banche img{width:100%;height:auto}

/* ===== Calendar (保留) ===== */
.Calendar{font-family:verdana;width:100%;background-color:var(--primary);font-size:9pt;border:0}
.CalendarTD{font-family:verdana;font-size:7pt;color:#000;background-color:#fff;height:33px;width:11%;text-align:center}
.Title{font-size:12pt;font-weight:bold;height:30px;text-align:center;color:#fff;background-color:var(--primary)}
.Day{font-family:verdana;font-size:9pt;color:#243F65;background-color:#fff;height:28px;width:11%;text-align:center}
.DaySat,.DaySun{font-family:verdana;font-size:9pt;color:#FF0000;background-color:#fff;text-align:center;height:18px;width:12%}
.DayNow{font-family:verdana;font-size:9pt;font-weight:bold;color:#000;background-color:#FFFFFF;height:20px;text-align:center}
.DayTitle{font-family:verdana;font-size:12pt;color:#fff;background-color:var(--primary-light);height:35px;width:11%;text-align:center}
.DaySatTitle,.DaySunTitle{font-family:verdana;font-size:12pt;color:#fff;background-color:var(--primary-light);text-align:center;height:30px;width:12%}
.DayButton{font-family:Webdings;font-size:9pt;font-weight:bold;color:#243F65;cursor:hand}

/* ===== 首页区块布局 ===== */

/* ===== Page Banner ===== */
.page-banner{background:linear-gradient(90deg,var(--primary-dark),var(--primary));color:#fff;padding:48px 0 56px;position:relative;overflow:hidden}
.page-banner h1{font-size:32px;font-weight:700;margin-bottom:8px}
.page-banner .subtitle{color:rgba(255,255,255,0.6);letter-spacing:4px;font-size:13px;text-transform:uppercase}

/* ===== 响应式 ===== */
@media(max-width:1024px){
  .lsitrow1,.disprow{padding:16px}
  .mainWraper{padding:0 16px}
  .navWraper{padding:0 16px}
  #header{padding:16px}
  .news-tools-grid{grid-template-columns:1fr}
  .content-grid,.content-grid.content-grid-3{grid-template-columns:1fr}
}
@media(max-width:768px){
  .hero-section,.banner-section{height:280px}
  .page-banner{padding:32px 0 40px}
  .page-banner h1{font-size:24px}
  .detail-hero{padding:40px 0}
  .detail-hero h1{font-size:24px}
  .tools-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
  .listMain{padding:16px}
}

/* ===== CMS Slider Override ===== */
.imgscroll4_top{text-align:center;padding-left:0;margin-top:0!important}
.slider-nav span.right{background:url(../images/right.png) no-repeat}
div.slider-nav span.left{background:url(../images/left.png) no-repeat}
.articlelist3_tr{background-position:0 24px;background-repeat:repeat-x}
.articlelist3_tbl{width:100%;padding-left:20px}
.news_icon{background:none!important;height:16px;width:10px;display:block;float:left}
.focus-title{margin-left:0!important}
.szllContent a:link,.szllContent a:visited,.szllContent a:active{text-align:center;color:var(--foreground)}
.szllContent td{text-align:center}
.wp_column_article_list .list_item .pr_fields{padding-left:10px!important}
.wp_pop_article_list .list_item .pr_fields{padding-left:10px!important}
.hide-nav{height:50px;display:none}

/* ===== Animations ===== */
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.fade-in{animation:fadeIn 0.5s ease-out}

/* ===== Prose ===== */
.prose{max-width:none}
.prose p{margin-bottom:16px}

/* ===== Line Clamp ===== */
.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

/* =============================================
   CMS 面板综合样式覆盖（苏迪站群平台兼容）
   ============================================= */

/* --- CMS导航面板 (simpleSudyNavi) --- */
.wp_nav,.wp_nav *{text-align:left!important}
.wp_nav{display:flex!important;align-items:center!important;flex-wrap:nowrap!important;margin:0!important;padding:0!important}
.wp_nav ul{list-style:none!important;margin:0!important;padding:0!important;display:flex!important;align-items:center!important;flex-wrap:nowrap!important}
.wp_nav .nav-item{position:relative!important;list-style:none!important;margin:0!important;padding:0!important;white-space:nowrap!important}
.wp_nav .nav-item>a,.wp_nav .nav-item>a:link,.wp_nav .nav-item>a:visited{
  color:#fff!important;font-size:18px!important;display:flex!important;align-items:center!important;gap:4px!important;
  padding:12px 20px!important;border-bottom:2px solid transparent!important;
  transition:all .3s ease!important;text-decoration:none!important;background:transparent!important;line-height:22px!important;white-space:nowrap!important;text-align:left!important
}
.wp_nav .nav-item>a:hover,.wp_nav .nav-item>a.current{border-bottom-color:#fff!important;color:#fff!important}
/* 下拉菜单 */
.wp_nav .nav-item .sub-menu,.wp_nav .sub-nav{
  position:absolute!important;top:100%!important;left:0!important;
  background:#fff!important;color:var(--foreground)!important;
  box-shadow:0 8px 30px rgba(0,0,0,.12)!important;
  border-radius:0 0 8px 8px!important;min-width:160px!important;
  border-top:2px solid var(--primary)!important;
  opacity:0!important;visibility:hidden!important;
  transform:translateY(-4px)!important;
  transition:all .3s ease!important;z-index:100!important;text-align:left!important
}
.wp_nav .nav-item:hover .sub-menu,.wp_nav .nav-item:hover .sub-nav{
  opacity:1!important;visibility:visible!important;transform:translateY(0)!important;display:block!important
}
.wp_nav .sub-menu,.wp_nav .sub-nav{display:block!important;flex-direction:column!important}
.wp_nav .sub-menu li,.wp_nav .sub-nav li{text-align:left!important}
.wp_nav .sub-menu a,.wp_nav .sub-nav a,.wp_nav .sub-nav .nav-item a{
  display:block!important;padding:12px 20px!important;
  border-bottom:1px solid var(--divider)!important;
  transition:all .3s ease!important;font-size:14px!important;
  color:var(--foreground)!important;background:transparent!important;
  border-top:none!important;border-left:2px solid transparent!important;border-right:none!important;text-decoration:none!important;text-align:left!important
}
.wp_nav .sub-menu a:last-child,.wp_nav .sub-nav a:last-child{border-bottom:none!important}
.wp_nav .sub-menu a:hover,.wp_nav .sub-nav a:hover{
  background:var(--primary-50)!important;border-left-color:var(--primary)!important;
  padding-left:16px!important;color:var(--foreground)!important
}
.wp_nav .sub-nav .parent{color:var(--primary)!important;font-weight:600!important}
.wp_nav .item-name{display:inline!important}
.wp_nav .arrow,.wp_nav .nav-arrow{margin-left:4px!important;font-size:12px!important}
/* 全局导航区域文字方向保护 */
#nav-box,#nav,#nav *{text-align:left!important}

/* --- CMS公告通知面板 (simpleNews - notice-grid) --- */
/* CMS包装层透明化 */
.notice-grid,.notice-grid *{text-align:left!important}
.notice-grid [frag]{background:transparent!important;border:none!important;padding:0!important;margin:0!important;width:100%!important;display:block!important}
.notice-grid .news-box,.notice-grid .wp_article_list_box{background:transparent!important;border:none!important;box-shadow:none!important;padding:0!important;margin:0!important;height:auto!important;overflow:visible!important;width:100%!important}
.notice-grid .div_sysDef_class{background:transparent!important;border:none!important;padding:0!important;margin:0!important;height:auto!important;overflow:visible!important;width:100%!important}
.notice-grid [id^="wp_news"],.notice-grid #wp_news_w22{background:transparent!important;border:none!important;padding:0!important;margin:0!important;width:100%!important}
.notice-grid .newsTit{display:none!important}
.notice-grid .noticeMore{display:none!important}
.notice-grid .wp_paging,.notice-grid .page_nav,.notice-grid .listPage{display:none!important}
.notice-grid .newsList{padding:0!important;margin:0!important;background:transparent!important;border:none!important;width:100%!important;overflow:visible!important}
.notice-grid .wp_article_list{padding:0!important;margin:0!important;background:transparent!important;border:none!important;width:100%!important;overflow:visible!important;list-style:none!important}
.notice-grid .wp_article_list_table{width:100%!important;border-collapse:collapse!important;border:none!important;background:transparent!important;padding:0!important;margin:0!important;display:table!important;table-layout:fixed!important}
.notice-grid .wp_article_list_table tbody{display:table-row-group!important;width:100%!important}
.notice-grid .wp_article_list_table tr{display:table-row!important;background:transparent!important;border-radius:0!important;border:none!important;height:auto!important;margin:0!important;width:100%!important;box-sizing:border-box!important}
.notice-grid .wp_article_list_table tr:hover{border-color:transparent!important;box-shadow:none!important}
.notice-grid .wp_article_list_table td{border:none!important;padding:4px!important;vertical-align:middle!important;background:transparent!important;width:50%!important;max-width:none!important;height:auto!important}
.notice-grid .wp_article_list_table td:first-child{min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.notice-grid .wp_article_list_table td:last-child{text-align:right!important}
.notice-grid .wp_article_list_table td a{color:var(--foreground)!important;text-decoration:none!important;display:block!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.notice-grid .wp_article_list_table td a:hover{color:var(--primary)!important}
/* CMS原始标签样式 */
.notice-grid .artCat{display:inline-block!important;font-size:13px!important;font-weight:600!important;padding:2px 8px!important;border-radius:3px!important;line-height:1.6!important;white-space:nowrap!important;background:#FDF2F2!important;color:#82080D!important;margin-right:8px!important}
/* CMS ul/li格式后备样式（JS转换失败时生效） */
.notice-grid .list_item{display:flex!important;align-items:center!important;gap:12px!important;padding:10px 12px!important;margin-bottom:10px!important;background:#fff!important;border-radius:6px!important;border:1px solid var(--divider)!important;height:auto!important;line-height:normal!important;list-style:none!important}
.notice-grid .list_item:hover{border-color:rgba(var(--primary-rgb),.3)!important}
.notice-grid .list_item .pr_fields{flex:1!important;min-width:0!important;order:1!important}
.notice-grid .list_item .Article_Index{display:none!important}
.notice-grid .list_item .Article_Title a{font-size:15px!important;color:var(--foreground)!important;text-decoration:none!important;word-break:break-all!important;white-space:normal!important;overflow:visible!important;text-overflow:clip!important;line-height:22px!important}
.notice-grid .list_item .Article_Title a:hover{color:var(--primary)!important}
.notice-grid .list_item .ex_fields{flex-shrink:0!important;order:2!important;text-align:right!important}
.notice-grid .list_item .Article_PublishDate{font-size:14px!important;font-weight:600!important;color:var(--primary)!important}
/* JS重构的公告列表 - 2列网格，无卡片容器 */
.notice-cards{display:grid!important;grid-template-columns:1fr 1fr!important;gap:0 40px!important;width:100%!important}
.notice-card{display:flex!important;align-items:center!important;gap:10px;padding:14px 0!important;background:transparent!important;border:none!important;border-bottom:1px solid #f0f0f0!important;transition:all .25s ease!important;text-decoration:none!important;color:inherit!important;position:relative!important}
.notice-card::before{content:''!important;position:absolute!important;left:0!important;top:50%!important;transform:translateY(-50%)!important;width:3px!important;height:0!important;background:linear-gradient(180deg,#82080D,#C20017)!important;border-radius:0 2px 2px 0!important;transition:height .3s ease!important}
.notice-card:hover{background:#fafafa!important;border-radius:8px!important;padding-left:16px!important}
.notice-card:hover::before{height:60%!important}
.notice-card:hover .card-title{color:#82080D!important}
.notice-card .card-tag{display:inline-block!important;font-size:13px!important;font-weight:600!important;padding:2px 8px!important;border-radius:3px!important;margin:0!important;line-height:1.6!important;white-space:nowrap!important}
.notice-card .card-tag.tag-default{background:#FDF2F2!important;color:#82080D!important;border:none!important}
.notice-card .card-tag.tag-exam{background:#FFF3E0!important;color:#E6911A!important;border:none!important}
.notice-card .card-tag.tag-school{background:#FBE0E2!important;color:#82080D!important;border:none!important}
.notice-card .card-title{font-size:16px!important;color:#1a1a2e!important;margin:0!important;padding:0!important;line-height:22px!important;transition:color .25s!important;flex:1!important;min-width:0!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.notice-card .card-date{flex-shrink:0!important;display:flex!important;flex-direction:column!important;align-items:flex-end!important;gap:2px!important}
.notice-card .card-date .day{font-size:16px!important;font-weight:700!important;color:#1a1a2e!important;line-height:1!important}
.notice-card .card-date .year{font-size:12px!important;color:#8b919d!important;line-height:1!important}
@media(max-width:768px){.notice-cards{grid-template-columns:1fr!important}}

/* --- 制度文件 + 办事流程 --- */
.docs-section{padding:48px 0;background:var(--surface-alt);width:100%;max-width:100%;position:relative}
.docs-section::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--divider-strong),transparent)}
.docs-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;width:100%}
.docs-col{background:#fff;border-radius:12px;padding:28px 28px 20px;box-shadow:var(--shadow-sm);transition:var(--transition)}
.docs-col:hover{box-shadow:var(--shadow-card)}
.docs-col .section-header{margin-bottom:20px;padding-bottom:14px;border-bottom:2px solid var(--divider);position:relative}
.docs-col .section-header::after{content:'';position:absolute;bottom:-2px;left:0;width:50px;height:2px;background:linear-gradient(90deg,var(--primary),var(--primary-light));border-radius:1px}
.docs-col .section-title{font-size:20px;font-weight:700;color:var(--text-primary);position:relative;padding-left:14px}
.docs-col .section-title::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:20px;background:linear-gradient(180deg,var(--primary),var(--primary-light));border-radius:2px}
.docs-col .section-more{color:var(--primary);font-size:14px;text-decoration:none;font-weight:500;transition:var(--transition)}
.docs-col .section-more:hover{color:var(--primary-dark);letter-spacing:1px}
/* CMS容器彻底重置 */
.docs-col [frag],.docs-col .div_sysDef_class,.docs-col .wp_article_list,.docs-col .newsList,.docs-col .wp_article_list_box{
  background:transparent!important;border:none!important;padding:0!important;margin:0!important;
  box-shadow:none!important;border-radius:0!important;width:100%!important;height:auto!important;
  display:block!important;overflow:visible!important
}
.docs-col .wp_paging,.docs-col .page_nav,.docs-col .listPage{display:none!important}
/* 列表项 */
.docs-col .list_item{
  display:flex!important;align-items:center!important;justify-content:space-between!important;
  padding:14px 4px!important;margin:0!important;border-bottom:1px solid var(--divider)!important;
  list-style:none!important;background:transparent!important;box-shadow:none!important;
  border-radius:0!important;height:auto!important;float:none!important;width:100%!important;
  transition:all .25s ease!important;position:relative!important
}
.docs-col .list_item:last-child{border-bottom:none!important}
.docs-col .list_item *{background:transparent!important;border:none!important;box-shadow:none!important}
.docs-col .list_item:hover{padding-left:12px!important}
.docs-col .list_item:hover .Article_Title a{color:var(--primary)!important}
/* 标题 */
.docs-col .Article_Title,.docs-col .Article_Title a{
  font-size:14px!important;color:#1a2744!important;text-decoration:none!important;
  flex:1!important;min-width:0!important;overflow:hidden!important;
  text-overflow:ellipsis!important;white-space:nowrap!important;line-height:1.6!important;
  font-weight:400!important;margin:0!important;padding:0!important;display:inline!important;
  transition:color .25s ease!important
}
/* JS构建的列表容器 */
.docs-list{margin:0;padding:0}
.docs-list .list_item{cursor:pointer}
/* 日期 */
.docs-col .Article_Date{
  font-size:13px!important;color:var(--text-tertiary)!important;white-space:nowrap!important;
  margin-left:12px!important;flex-shrink:0!important;font-family:'Courier New',monospace!important;
  letter-spacing:.5px!important
}
/* 隐藏CMS标准列表模式输出（模板标签数据源） */
.docs-source-zdwj,.docs-source-bslc{visibility:hidden!important;position:absolute!important;left:-9999px!important;top:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.docs-col .Article_Pubdate,.docs-col .Article_Pubtime,.docs-col .Article_CreateDate,.docs-col .Article_PublishDate{
  font-size:13px!important;color:var(--text-tertiary)!important;flex-shrink:0!important;margin-left:16px!important;
  font-weight:400!important;display:inline!important;background:transparent!important
}
/* 隐藏序号等 */
.docs-col .Article_Index,.docs-col .Article_Author,.docs-col .Article_Click,.docs-col .Article_Img{display:none!important}
@media(max-width:768px){.docs-grid{grid-template-columns:1fr!important;gap:24px!important}.docs-col{padding:20px 16px 16px!important}}

/* --- 教学动态：轮播图 + 侧边列表 --- */
/* 隐藏模板标签数据源容器 */
.news-carousel-source,.news-list-source{visibility:hidden!important;position:absolute!important;left:-9999px!important;top:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* 教学动态布局：左轮播 + 右列表 */
.news-dynamic-layout{display:flex;gap:32px;width:100%;align-items:stretch}

/* === 左侧轮播图 === */
.news-carousel{position:relative!important;flex:0 0 58%;border-radius:14px;overflow:hidden;background:#e8e8e8;aspect-ratio:2/1;min-height:300px;max-height:400px;box-shadow:var(--shadow-md)}
.carousel-track{position:relative;width:100%;height:100%}
.carousel-slide{position:absolute;inset:0;opacity:0;transition:opacity .6s ease}
.carousel-slide.active{opacity:1}
.carousel-slide img{width:100%;height:100%;object-fit:cover;display:block}
.carousel-slide .slide-overlay{position:absolute;bottom:0;left:0;right:0;padding:40px 24px 20px;background:linear-gradient(transparent,rgba(0,0,0,0.75))}
.carousel-slide .slide-title{color:#fff;font-size:18px;font-weight:600;line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;text-shadow:0 1px 4px rgba(0,0,0,0.3)}
.carousel-slide .slide-title a{color:#fff;text-decoration:none}
.carousel-slide .slide-title a:hover{text-decoration:underline}
.carousel-arrow{position:absolute!important;top:50%!important;transform:translateY(-50%)!important;width:42px!important;height:42px!important;border-radius:50%!important;background:rgba(255,255,255,0.2)!important;border:1px solid rgba(255,255,255,0.3)!important;color:#fff!important;font-size:24px!important;cursor:pointer!important;display:flex!important;align-items:center!important;justify-content:center!important;transition:all .3s ease!important;z-index:10!important;backdrop-filter:blur(6px)!important;visibility:visible!important;opacity:1!important}
.carousel-arrow:hover{background:rgba(255,255,255,0.4)!important;border-color:rgba(255,255,255,0.5)!important;transform:translateY(-50%) scale(1.05)!important}
.carousel-prev{left:14px!important}
.carousel-next{right:14px!important}
.carousel-dots{position:absolute;bottom:14px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:2}
.carousel-dots .dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.4);border:none;cursor:pointer;transition:all .3s;padding:0}
.carousel-dots .dot.active{background:#fff;transform:scale(1.25);box-shadow:0 0 6px rgba(255,255,255,0.5)}

/* === 右侧新闻列表 === */
.news-side-list{flex:1;min-width:0;width:100%;height:400px;overflow:hidden}
/* 列表项 - 全新DOM，无CMS样式干扰 */
.news-side-item{
  display:flex;align-items:center;gap:16px;padding:14px 0;
  border-bottom:1px solid var(--divider);transition:all .3s ease
}
.news-side-item:last-child{border-bottom:none}
.news-side-item:hover{padding-left:8px}
.news-side-item:hover .side-title a{color:var(--primary)}
/* 日期盒 */
.side-date{
  flex-shrink:0;width:80px;min-width:80px;text-align:center;
  border:1px solid var(--primary-200);border-radius:10px;padding:10px 6px;
  background:linear-gradient(135deg,var(--primary-50),#fff);
  box-shadow:var(--shadow-sm);transition:var(--transition)
}
.news-side-item:hover .side-date{border-color:var(--primary-light);box-shadow:0 2px 8px rgba(130,8,13,0.1)}
.side-date-md{display:block;font-size:22px;font-weight:700;color:var(--primary);line-height:1.1;letter-spacing:1px}
.side-date-sep{display:block;width:28px;height:1px;background:linear-gradient(90deg,transparent,var(--primary-200),transparent);margin:5px auto}
.side-date-yr{display:block;font-size:14px;font-weight:600;color:var(--primary-dark);line-height:1.2}
/* 标题 */
.side-content{flex:1;min-width:0}
.side-title a{color:var(--text-primary);text-decoration:none;font-weight:600;font-size:15px;line-height:1.5;display:block;word-break:break-word;white-space:normal;transition:color .25s ease}
.side-title a:hover{color:var(--primary);text-decoration:none}

/* --- CMS栏目列表面板 (simpleList - article-list) --- */
.article-list .wp_article_list_box,.article-list .wp_article_list{background:transparent!important;border:none!important;padding:0!important;margin:0!important;height:auto!important}
.article-list .wp_article_list .list_item{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  background:#fff!important;
  border:1px solid var(--border)!important;
  border-radius:8px!important;
  box-shadow:var(--shadow-card)!important;
  padding:20px 24px!important;
  transition:all .3s ease!important;
  height:auto!important;
  margin-bottom:16px!important;
  border-bottom:none!important
}
.article-list .wp_article_list .list_item:last-child{margin-bottom:0!important}
.article-list .wp_article_list .list_item:hover{box-shadow:var(--shadow-hover)!important;border-color:rgba(var(--primary-rgb),.3)!important}
.article-list .wp_article_list .list_item .Article_Title{
  display:flex!important;
  align-items:center!important;
  flex:1!important;
  min-width:0!important;
  white-space:normal!important;
  overflow:visible!important;
  text-overflow:clip!important;
  margin:0!important;
  padding-right:16px!important
}
.article-list .wp_article_list .list_item .Article_Title a{
  font-size:18px!important;
  font-weight:600!important;
  color:var(--foreground)!important;
  display:block!important;
  margin:0!important;
  padding:0!important;
  text-decoration:none!important;
  line-height:1.5!important
}
.article-list .wp_article_list .list_item:hover .Article_Title a{color:var(--primary)!important}
.article-list .wp_article_list .list_item .Article_Index{display:none!important}
.article-list .wp_article_list .list_item .pr_fields{
  font-size:14px!important;
  color:var(--muted-foreground)!important;
  flex-shrink:0!important;
  white-space:nowrap!important;
  text-align:right!important
}
.article-list .wp_article_list .list_item .Article_Summary{display:block!important;color:var(--muted-foreground)!important;font-size:14px!important;margin-top:4px!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important}
.article-list .wp_article_list_table{width:100%!important}
.article-list .wp_article_list_table tr{display:block!important;background:#fff!important;border:1px solid var(--border)!important;border-radius:8px!important;box-shadow:var(--shadow-card)!important;padding:24px!important;margin-bottom:16px!important;transition:all .3s ease!important}
.article-list .wp_article_list_table tr:hover{box-shadow:var(--shadow-hover)!important;border-color:rgba(var(--primary-rgb),.3)!important}

/* --- CMS分页样式 --- */
.wp_paging,.page_nav,.listPage{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:12px!important;
  margin-top:32px!important;
  padding:0 16px!important;
  text-align:center!important;
  width:100%;
  box-sizing:border-box;
  flex-wrap:wrap
}
.wp_paging a,.wp_paging span,.page_nav a,.page_nav span,.listPage a,.listPage span{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:40px!important;
  height:40px!important;
  padding:8px 16px!important;
  border:1px solid var(--border)!important;
  border-radius:8px!important;
  font-size:14px!important;
  transition:all .3s ease!important;
  text-decoration:none!important;
  color:var(--foreground)!important;
  background:#fff!important;
  white-space:nowrap;
  margin:0!important
}
.wp_paging a:hover,.page_nav a:hover,.listPage a:hover{
  background:var(--accent,#f2f3f5)!important;
  color:var(--foreground)!important
}
.wp_paging .current,.wp_paging span.current,.page_nav .current,.listPage .current,.listPage span.current{
  background:var(--primary)!important;
  color:#fff!important;
  border-color:var(--primary)!important
}
.wp_paging .disabled,.page_nav .disabled,.listPage .disabled{
  opacity:.5!important;
  pointer-events:none!important
}
.wp_paging_total,.page_nav_total,.listPage_total{
  font-size:14px!important;
  color:var(--muted-foreground)!important;
  margin:0 8px!important;
  border:none!important;
  background:transparent!important;
  padding:8px 12px!important;
  min-width:auto!important;
  height:auto!important
}
/* 输入框和按钮样式 */
.wp_paging input[type="text"],.page_nav input[type="text"],.listPage input[type="text"]{
  width:60px!important;
  height:40px!important;
  padding:8px 12px!important;
  border:1px solid var(--border)!important;
  border-radius:8px!important;
  font-size:14px!important;
  text-align:center!important;
  background:#fff!important;
  outline:none!important;
  margin:0!important
}
.wp_paging button,.page_nav button,.listPage button,
.wp_paging input[type="button"],.page_nav input[type="button"],.listPage input[type="button"]{
  min-width:auto!important;
  height:40px!important;
  padding:8px 16px!important;
  border:1px solid var(--border)!important;
  border-radius:8px!important;
  font-size:14px!important;
  background:#fff!important;
  cursor:pointer!important;
  margin:0!important
}

/* --- CMS相关文章面板 (SameColumnArticle) --- */
.sidebar .wp_article_list{padding:0!important}
.sidebar .wp_article_list .list_item{
  display:block!important;padding:8px 0!important;border-bottom:1px solid var(--divider)!important;
  height:auto!important;margin:0!important;border-top:none!important;border-left:none!important;border-right:none!important;background:transparent!important
}
.sidebar .wp_article_list .list_item:last-child{border-bottom:none!important}
.sidebar .wp_article_list .list_item .Article_Index{display:none!important}
.sidebar .wp_article_list .list_item .Article_Title{white-space:normal!important;overflow:hidden!important;text-overflow:ellipsis!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important}
.sidebar .wp_article_list .list_item .Article_Title a{color:var(--foreground)!important;font-size:14px!important;text-decoration:none!important;transition:color .3s!important}
.sidebar .wp_article_list .list_item .Article_Title a:hover{color:var(--primary)!important}
.sidebar .wp_article_list .list_item .pr_fields{font-size:12px!important;color:var(--text-tertiary)!important;padding-left:8px!important}
.sidebar .wp_article_list .list_item::before{content:'\2022';color:var(--primary);margin-right:8px;font-size:16px}

/* --- CMS栏目导航面板 (wp_listcolumn) --- */
.wp_listcolumn{display:block!important;width:100%!important;border-top:none!important}
.wp_listcolumn .wp_column{margin:0!important}
.wp_listcolumn .wp_column a{
  display:block!important;background:var(--surface)!important;border-bottom:1px solid var(--divider)!important;
  color:var(--foreground)!important;padding:12px 16px!important;transition:all .3s ease!important;border-radius:0!important;text-decoration:none!important
}
.wp_listcolumn .wp_column a:hover{background:var(--primary-50)!important;border-left:2px solid var(--primary)!important;color:var(--primary)!important}
.wp_listcolumn .wp_column a.selected,.wp_listcolumn .wp_column a.current{
  color:var(--primary)!important;background:var(--primary-50)!important;border-left:3px solid var(--primary)!important
}
.wp_listcolumn .wp_column a .column-name{padding:0!important}

/* --- CMS侧边栏导航面板 (simpleSudyNavi in sidebar) --- */
.sidebar-card .wp_nav{flex-direction:column!important;flex-wrap:nowrap!important}
.sidebar-card .wp_nav ul{flex-direction:column!important;flex-wrap:nowrap!important}
.sidebar-card .wp_nav .nav-item{width:100%!important}
.sidebar-card .wp_nav .nav-item>a,.sidebar-card .wp_nav .nav-item>a:link,.sidebar-card .wp_nav .nav-item>a:visited{
  display:block!important;padding:12px 16px!important;background:var(--surface)!important;color:var(--foreground)!important;
  border-bottom:1px solid var(--divider)!important;border-left:2px solid transparent!important;border-bottom-color:var(--divider)!important;
  border-radius:0!important;font-size:14px!important;white-space:normal!important;line-height:1.5!important
}
.sidebar-card .wp_nav .nav-item>a:hover,.sidebar-card .wp_nav .nav-item>a.current{
  background:var(--primary-50)!important;border-left-color:var(--primary)!important;color:var(--primary)!important;border-bottom-color:var(--divider)!important
}
.sidebar-card .wp_nav .nav-item .sub-menu,.sidebar-card .wp_nav .nav-item .sub-nav{
  position:static!important;box-shadow:none!important;border-radius:0!important;opacity:1!important;visibility:visible!important;transform:none!important;
  display:block!important;min-width:auto!important;border-top:none!important;background:var(--surface)!important
}
.sidebar-card .wp_nav .sub-menu a,.sidebar-card .wp_nav .sub-nav a{
  padding:10px 16px 10px 32px!important;font-size:13px!important;background:transparent!important;border-bottom:1px solid var(--divider)!important;border-left:2px solid transparent!important;color:var(--foreground)!important
}
.sidebar-card .wp_nav .sub-menu a:hover,.sidebar-card .wp_nav .sub-nav a:hover{
  background:var(--primary-50)!important;border-left-color:var(--primary)!important;color:var(--primary)!important;padding-left:32px!important
}

/* --- CMS文章内容面板 (simpleArticleAttri) --- */
.info-box{margin:0!important;padding:0!important}
.article{padding:0!important;margin:0!important}
.article h1.arti-title{line-height:1.3!important;padding:0!important;text-align:left!important;font-size:28px!important;font-weight:700!important;color:var(--primary)!important;border-bottom:1px solid var(--border)!important;padding-bottom:16px!important;margin-bottom:16px!important}
.article .arti-metas{height:auto!important;line-height:1.6!important;text-align:left!important;padding:0 0 16px 0!important;display:flex!important;align-items:center!important;gap:16px!important;flex-wrap:wrap!important;border-bottom:1px solid var(--border)!important;margin-bottom:24px!important}
.article .arti-metas span{display:inline-block!important;margin:0!important;font-size:14px!important;color:var(--muted-foreground)!important}
.article .arti-metas a{color:var(--primary)!important;font-size:14px!important}
.article .arti-metas .read-options{display:none!important}
.article .entry{margin:0!important;overflow:hidden!important;line-height:1.9!important;font-size:15px!important;text-align:justify!important}
.article .entry *{text-align:justify!important}
.article .entry p{margin-bottom:16px!important;line-height:1.9!important;text-align:justify!important}
.article .entry img{max-width:100%!important;height:auto!important}
.article .entry .read{width:100%!important;float:none!important;text-align:justify!important}
.article .entry .read img{vertical-align:middle!important}
.article .entry h1,.article .entry h2,.article .entry h3,.article .entry h4{font-size:20px!important;font-weight:600!important;margin-top:24px!important;margin-bottom:12px!important;text-align:left!important}
.article .entry table{text-align:left!important}
.article .entry td,.article .entry th{text-align:left!important}
.article .entry ul,.article .entry ol{padding-left:20px!important;margin-bottom:16px!important;list-style:disc!important;text-align:justify!important}
.article .entry li{margin-bottom:8px!important}
.article .entry table{width:100%!important;border-collapse:collapse!important;margin-bottom:16px!important}
.article .entry table td,.article .entry table th{border:1px solid var(--border)!important;padding:8px 12px!important}
#bdshare{margin-top:32px!important;padding-top:24px!important;border-top:1px solid var(--border)!important}
#bdshare .bdsharebuttonbox a{margin-right:8px!important}

/* --- CMS面包屑面板 (columnPath) --- */
.breadcrumb .wp_current_path{color:rgba(255,255,255,.7)!important;font-size:14px!important}
.breadcrumb .wp_current_path a{color:rgba(255,255,255,.7)!important;text-decoration:none!important}
.breadcrumb .wp_current_path a:hover{color:#fff!important}

/* --- 修复：隐藏CMS注入的多余元素 --- */
.wp_article_list .list_item .Article_Pubdate{display:none!important}
.wp_article_list .list_item .Article_Author{display:none!important}
.wp_article_list .list_item .Article_Click{display:none!important}
.newsTit img,.noticeMore img{display:none!important}
.wp_article_list_table img{padding:0 4px!important}
.wp_article_list_table td{text-align:center!important}

/* --- 确保sticky header正常 --- */
.header{position:sticky!important;top:0!important;z-index:50!important}
#nav-box{position:relative!important;z-index:49!important}

/* --- CMS默认样式覆盖（限定到首页区块，避免影响列表页/详情页） --- */
.notice-grid .wp_article_list,.notice-grid .news-box,.notice-grid .newsList{border:none!important;background:transparent!important}
.notice-grid .wp_article_list .list_item{border-bottom:none!important}
.news-list .wp_article_list,.news-list .news-box,.news-list .newsList{border:none!important;background:transparent!important}

/* --- 响应式补充 --- */
@media(max-width:1024px){
  .notice-grid .wp_article_list{grid-template-columns:1fr!important}
  .notice-grid .newsList{grid-template-columns:1fr!important}
  /* 移动端下拉菜单（与html/style.css一致） */
  .wp_nav .nav-item .sub-menu,.wp_nav .sub-nav{
    position:static!important;box-shadow:none!important;border-radius:0!important;
    opacity:1!important;visibility:visible!important;transform:none!important;
    display:none!important;border-top:none!important;min-width:auto!important;
    background:rgba(255,255,255,.05)!important
  }
  .wp_nav .nav-item:hover .sub-menu,.wp_nav .nav-item:hover .sub-nav{display:block!important}
  .wp_nav .sub-menu a,.wp_nav .sub-nav a,.wp_nav .sub-nav .nav-item a{padding-left:40px!important;color:rgba(255,255,255,.85)!important;border-bottom-color:rgba(255,255,255,.1)!important}
  .wp_nav .sub-menu a:hover,.wp_nav .sub-nav a:hover,.wp_nav .sub-nav .nav-item a:hover{background:rgba(255,255,255,.1)!important;color:#fff!important;padding-left:40px!important;border-left-color:transparent!important}
}
@media(max-width:768px){
  .article h1.arti-title{font-size:22px!important}
  .detail-hero h1{font-size:24px!important}
  .stat-value{font-size:22px!important}
  .stat-icon{width:44px!important;height:44px!important}
  .stat-icon svg{width:22px!important;height:22px!important}
  .stat-card{padding:16px 18px!important;gap:12px!important}
  .card-padded{padding:20px!important}
  .article-list .wp_article_list .list_item{padding:16px!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:8px!important}
  .article-list .wp_article_list .list_item .Article_Title a{font-size:16px!important;line-height:1.6!important}
  .article-list .wp_article_list .list_item .pr_fields{float:none!important;text-align:left!important;padding-left:0!important;font-size:13px!important;color:var(--text-tertiary)!important;margin-top:4px!important}
  .wp_nav .nav-item>a,.wp_nav .nav-item>a:link,.wp_nav .nav-item>a:visited{padding:10px 14px!important;font-size:14px!important}
  #nav.nav-open .wp_nav{flex-direction:column!important}
  #nav.nav-open .wp_nav ul{flex-direction:column!important}
  #nav.nav-open .wp_nav .sub-menu,#nav.nav-open .wp_nav .sub-nav{position:static!important;display:block!important;box-shadow:none!important;min-width:auto!important}
}

/* --- CMS生成内容自适应（表格、嵌入、图片等固定宽度元素） --- */
.entry table,.article .entry table,.read table,.article-content table{width:100%!important;max-width:100%!important;border-collapse:collapse!important;table-layout:auto!important;word-break:break-all!important;overflow-wrap:break-word!important}
.entry table td,.entry table th,.read table td,.read table th{word-break:break-all!important;overflow-wrap:break-word!important;max-width:0!important}
.entry iframe,.article .entry iframe,.read iframe,.article-content iframe{max-width:100%!important;height:auto!important}
.entry video,.article .entry video,.read video{max-width:100%!important;height:auto!important}
.entry embed,.article .entry embed,.read embed{max-width:100%!important}
.entry img,.article .entry img,.read img{max-width:100%!important;height:auto!important}
.entry div[style*="width"],.read div[style*="width"]{max-width:100%!important}
.entry p[style*="width"],.read p[style*="width"]{max-width:100%!important}
/* CMS附件/下载链接自适应 */
.entry .wp_download,.entry .attachment{max-width:100%!important;overflow:hidden!important}
.entry .wp_download a,.entry .attachment a{word-break:break-all!important}

/* --- 响应式补充：1024px断点 --- */
@media(max-width:1024px){
  /* 顶部栏自适应 */
  .top-bar .container{font-size:12px;gap:8px}
  .top-bar a{font-size:12px}
  /* 导航自适应 */
  .wp_nav{flex-wrap:wrap!important}
  .wp_nav ul{flex-wrap:wrap!important}
  .wp_nav .nav-item>a{padding:10px 14px!important;font-size:14px!important}
  /* 详情页自适应 */
  .content-grid,.content-grid.content-grid-3{grid-template-columns:1fr!important}
  .sidebar{margin-top:24px}
  /* 页面横幅自适应 */
  .page-banner h1,.detail-hero h1{font-size:28px}
  .page-header h1{font-size:28px}
}

/* --- 响应式补充：768px断点 --- */
@media(max-width:768px){
  /* 顶部栏 - 隐藏或简化 */
  .top-bar{display:none}
  /* Logo自适应 */
  #logo img{height:48px!important}
  .logo-text h1{font-size:20px!important;line-height:26px!important}
  .logo-text p{font-size:10px!important}
  .logo-wrap{gap:10px!important}
  /* Header自适应 */
  #header{padding:12px!important}
  /* 导航 - 汉堡菜单展开时全宽 */
  #nav.nav-open{width:100%!important;padding:8px 0!important}
  #nav.nav-open .wp_nav{flex-direction:column!important;width:100%!important}
  #nav.nav-open .wp_nav ul{flex-direction:column!important;width:100%!important}
  #nav.nav-open .wp_nav .nav-item{width:100%!important}
  #nav.nav-open .wp_nav .nav-item>a{display:block!important;padding:12px 20px!important;border-bottom:1px solid rgba(255,255,255,.1)!important;border-left:none!important}
  #nav.nav-open .wp_nav .sub-menu,#nav.nav-open .wp_nav .sub-nav{display:none!important;position:static!important;opacity:0!important;visibility:hidden!important;transform:none!important;box-shadow:none!important;border-radius:0!important;border-top:none!important;background:rgba(255,255,255,.08)!important;max-height:0!important;overflow:hidden!important;transition:max-height 0.3s ease, opacity 0.3s ease}
  /* 展开状态的子菜单 - 强制覆盖 CMS 内联样式 */
  #nav.nav-open .wp_nav .nav-item.has-submenu.open > .sub-menu,
  #nav.nav-open .wp_nav .nav-item.has-submenu.open > .sub-nav{
    display:block!important;
    opacity:1!important;
    visibility:visible!important;  /* 覆盖 CMS 的 visibility: hidden */
    max-height:500px!important
  }
  /* 确保子菜单内的元素也可见 */
  #nav.nav-open .wp_nav .nav-item.has-submenu.open > .sub-menu *,
  #nav.nav-open .wp_nav .nav-item.has-submenu.open > .sub-nav *{
    visibility:visible!important
  }
  /* DEBUG: 强制显示所有子菜单（临时测试用） */
  /* 
  #nav.nav-open .wp_nav .sub-menu,
  #nav.nav-open .wp_nav .sub-nav{
    display:block!important;
    opacity:1!important;
    visibility:visible!important;
    max-height:500px!important
  }
  */
  #nav.nav-open .wp_nav .sub-menu li,#nav.nav-open .wp_nav .sub-nav li{cursor:pointer!important;pointer-events:auto!important}
  #nav.nav-open .wp_nav .sub-menu a,#nav.nav-open .wp_nav .sub-nav a{padding-left:40px!important;color:#fff!important;border-bottom-color:rgba(255,255,255,.1)!important;pointer-events:auto!important;cursor:pointer!important;display:block!important;text-decoration:none!important}
  /* 页面横幅自适应 */
  .page-banner,.detail-hero,.page-header{padding:32px 0!important}
  .page-banner h1,.detail-hero h1,.page-header h1{font-size:22px!important}
  .page-banner .subtitle,.detail-hero .subtitle,.page-header .subtitle{font-size:11px!important;letter-spacing:2px!important}
  /* 面包屑自适应 */
  .breadcrumb{font-size:12px!important;gap:4px!important;margin-top:12px!important}
  /* 内容区自适应 */
  .content-section{padding:24px 0!important}
  .listMain{padding:16px!important}
  .card-padded{padding:16px!important}
  /* 文章标题自适应 */
  .article h1.arti-title{font-size:20px!important}
  #dispTit{font-size:22px!important}
  /* 文章元信息自适应 */
  .article .arti-metas{gap:8px!important}
  .article .arti-metas span{font-size:12px!important}
  .detail-meta{gap:12px!important;font-size:12px!important}
  /* 文章正文自适应 */
  .article .entry,.article .entry p{font-size:14px!important;line-height:1.8!important}
  .article .entry h1,.article .entry h2,.article .entry h3,.article .entry h4{font-size:17px!important}
  /* 表格横向滚动 */
  .entry,.read,.article-content{overflow-x:auto!important;-webkit-overflow-scrolling:touch}
  .entry table,.read table{min-width:500px!important}
  /* 搜索框自适应 */
  .search-box{max-width:100%!important}
  /* 分页自适应 */
  .wp_paging,.page_nav,.listPage{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:8px!important;
    padding:0 12px!important;
    margin-top:24px!important;
    justify-content:center!important;
    align-items:center!important
  }
  /* 所有分页元素统一高度和样式 */
  .wp_paging a,.wp_paging span,.wp_paging input,.wp_paging select,.wp_paging button,
  .page_nav a,.page_nav span,.page_nav input,.page_nav select,.page_nav button,
  .listPage a,.listPage span,.listPage input,.listPage select,.listPage button{
    min-width:36px!important;
    height:36px!important;
    padding:6px 10px!important;
    border:1px solid var(--border)!important;
    border-radius:6px!important;
    font-size:12px!important;
    background:#fff!important;
    box-sizing:border-box!important;
    line-height:1.5!important;
    vertical-align:middle!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    margin:0!important
  }
  /* 链接和按钮可点击 */
  .wp_paging a,.page_nav a,.listPage a,
  .wp_paging button,.page_nav button,.listPage button,
  .wp_paging input[type="button"],.page_nav input[type="button"],.listPage input[type="button"]{
    cursor:pointer!important;
    text-decoration:none!important;
    color:var(--foreground)!important
  }
  /* 当前页高亮 */
  .wp_paging .current,.wp_paging span.current,
  .page_nav .current,.page_nav span.current,
  .listPage .current,.listPage span.current{
    background:var(--primary)!important;
    color:#fff!important;
    border-color:var(--primary)!important
  }
  /* 禁用状态 */
  .wp_paging .disabled,.page_nav .disabled,.listPage .disabled{
    opacity:.5!important;
    pointer-events:none!important
  }
  /* 总数文字不显示边框 */
  .wp_paging_total,.page_nav_total,.listPage_total,
  .wp_paging span:not(.current):not(.disabled),
  .page_nav span:not(.current):not(.disabled),
  .listPage span:not(.current):not(.disabled){
    border:none!important;
    background:transparent!important;
    padding:6px 8px!important;
    min-width:auto!important;
    height:auto!important;
    display:inline!important
  }
  /* 输入框特殊处理 - 移除可能的内边距和默认样式 */
  .wp_paging input[type="text"],.page_nav input[type="text"],.listPage input[type="text"]{
    width:50px!important;
    text-align:center!important;
    padding:6px 8px!important;
    outline:none!important;
    appearance:none!important;
    -webkit-appearance:none!important;
    -moz-appearance:none!important
  }
  /* 下拉框特殊处理 */
  .wp_paging select,.page_nav select,.listPage select{
    padding:6px 8px!important;
    appearance:none!important;
    -webkit-appearance:none!important
  }
  /* 强制覆盖所有嵌套容器的样式 */
  .wp_paging > *,.page_nav > *,.listPage > *{
    margin:0!important;
    padding:0!important
  }
  /* 操作按钮自适应 */
  .detail-actions{flex-wrap:wrap!important;gap:8px!important}
  .detail-actions button{padding:6px 12px!important;font-size:12px!important}
  /* 侧边栏自适应 */
  .sidebar-card{padding:16px!important}
  .sidebar-card h3{font-size:16px!important}
  /* 页脚自适应 */
  .footer-inner{padding:32px 0!important}
  .footer-grid{gap:24px!important}
  .footer-grid h3{font-size:16px!important;margin-bottom:16px!important}
  .footer-bottom{padding-top:20px!important;margin-top:20px!important}
  /* 友情链接自适应 */
  .footer-links{grid-template-columns:1fr!important}
  /* 公告通知卡片自适应 */
  .notice-cards{grid-template-columns:1fr!important}
  /* 教学动态 - 平板：上下排列 */
  .news-dynamic-layout{flex-direction:column!important;gap:24px!important}
  .news-carousel{flex:0 0 auto!important;width:100%!important;aspect-ratio:16/9!important;max-height:none!important}
  .news-side-list{height:auto!important}
  .news-side-item{padding:12px 0!important;gap:12px!important}
  .news-side-item .side-title a{font-size:14px!important}
  .news-side-item .side-date{width:64px!important;min-width:64px!important;padding:8px 4px!important;border-radius:8px!important}
  .news-side-item .side-date-md{font-size:20px!important}
  .news-side-item .side-date-sep{width:24px!important}
  .news-side-item .side-date-yr{font-size:13px!important}
  /* 工具网格自适应 */
  .tools-grid{grid-template-columns:repeat(2,1fr)!important}
}

/* --- 响应式补充：480px断点（小屏手机） --- */
@media(max-width:480px){
  /* Logo进一步缩小 */
  #logo img{height:40px!important}
  .logo-text h1{font-size:18px!important}
  .logo-text p{display:none!important}
  /* 导航文字缩小 */
  #nav.nav-open .wp_nav .nav-item>a{font-size:13px!important;padding:10px 16px!important}
  /* Banner进一步缩小 */
  .banner-section,.hero-section{height:220px!important}
  .banner-content h2{font-size:20px!important}
  .banner-content p{font-size:13px!important;letter-spacing:2px!important}
  .banner-indicators{bottom:16px!important}
  .banner-indicators button{width:24px!important}
  .banner-arrow{width:36px!important;height:36px!important;font-size:22px!important}
  .banner-arrow-prev{left:12px!important}
  .banner-arrow-next{right:12px!important}
  /* 页面横幅 */
  .page-banner,.detail-hero,.page-header{padding:24px 0!important}
  .page-banner h1,.detail-hero h1,.page-header h1{font-size:18px!important}
  /* 统计卡片 */
  .stats-grid{gap:12px!important}
  .stat-card{padding:14px 16px!important;gap:10px!important}
  .stat-value{font-size:22px!important}
  .stat-label{font-size:12px!important}
  .stat-icon{width:40px!important;height:40px!important}
  .stat-icon svg{width:20px!important;height:20px!important}
  /* 公告通知区块 */
  .notice-section,.news-section{padding:32px 0!important}
  .section-header{margin-bottom:16px!important}
  .section-title{font-size:18px!important}
  /* 工具网格3列 */
  .tools-grid{grid-template-columns:repeat(3,1fr)!important;gap:8px!important}
  .tool-card{padding:10px!important}
  .tool-card .icon-wrap{width:32px!important;height:32px!important;margin-bottom:6px!important}
  .tool-card .icon-wrap svg{width:16px!important;height:16px!important}
  .tool-card span{font-size:11px!important}
  /* 文章内容 */
  .article h1.arti-title{font-size:18px!important}
  #dispTit{font-size:18px!important}
  .article .entry,.article .entry p{font-size:13px!important}
  /* 页脚简化 */
  .footer-about{display:none!important}
  .footer-bottom p{font-size:11px!important;line-height:1.5!important}
  /* 公告卡片紧凑 */
  .notice-card{padding:12px 12px!important;gap:10px!important}
  .notice-card .card-title{font-size:13px!important}
  .notice-card .card-date .day{font-size:14px!important}
  /* 教学动态 - 手机 */
  .news-dynamic-layout{flex-direction:column!important;gap:16px!important}
  .news-carousel{aspect-ratio:4/3!important;max-height:none!important}
  .news-side-list{height:auto!important}
  .carousel-slide .slide-title{font-size:14px!important}
  .carousel-arrow{width:34px!important;height:34px!important;font-size:18px!important;border:1px solid rgba(255,255,255,0.3)!important}
  .news-side-item{padding:10px 0!important;gap:10px!important}
  .news-side-item .side-title a{font-size:13px!important}
  .news-side-item .side-date{width:56px!important;min-width:56px!important;padding:6px 3px!important;border-radius:8px!important}
  .news-side-item .side-date-md{font-size:16px!important}
  .news-side-item .side-date-yr{font-size:12px!important}
}

/* Keep the reference-style statistics layout above legacy mobile overrides. */
@media(max-width:767px){
  .stats-section>.container{display:block!important;min-height:0!important;padding:0!important}
  .stats-header{padding:32px 28px!important;margin:0!important;align-items:flex-start!important;text-align:left!important;background:linear-gradient(135deg,#fff,#f9dada)!important}
  .stats-header::after{display:none!important}
  .stats-header::before{left:28px!important;bottom:22px!important}
  .stats-header h2{font-size:27px!important;margin:0 0 7px!important}
  .stats-grid{grid-template-columns:repeat(2,1fr)!important;grid-template-rows:auto!important;padding:26px 14px!important;gap:24px 0!important}
  .stat-card{flex-direction:column!important;padding:8px 10px!important;gap:7px!important}
  .stat-card::before,.stat-card::after{display:none!important}
  .stat-info{flex:0!important;text-align:center!important}
}
