@charset "utf-8";

/* ========== Reset & Base ========== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, div, dl, dt, dd, ul, ol, li, p, blockquote, pre, hr, figure, table, caption, th, td, form, fieldset, legend, input, button, textarea, menu {
  margin: 0;
  padding: 0;
}

header, footer, section, article, aside, nav, hgroup, address, figure, figcaption, menu, details {
  display: block;
}

table { border-collapse: collapse; border-spacing: 0; }
caption, th { text-align: left; font-weight: normal; }
html { overflow-x: hidden; scroll-behavior: smooth; }

i, cite, em, var, address, dfn { font-style: normal; }
[hidefocus], summary { outline: 0; }
li { list-style: none; }
h1, h2, h3, h4, h5, h6, small { font-size: 100%; }
sup, sub { font-size: 83%; }
pre, code, kbd, samp { font-family: inherit; }
q::before, q::after { content: none; }
textarea { overflow: auto; resize: none; }
label, summary { cursor: default; }
a, button { cursor: pointer; }
h1, h2, h3, h4, h5, h6, em, strong, b { font-weight: bold; }
del, ins, u, s, a, a:hover { text-decoration: none; }

body, textarea, input, button, select, keygen, legend {
  font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "思源黑体 CN", "PingFang SC", "Hiragino Sans GB", sans-serif;
  color: #333;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus { outline: 0; }

img, iframe, abbr { border: 0; }
img { vertical-align: top; max-width: 100%; }

/* ========== CSS Variables - 高校主题色系 ========== */
:root {
  --primary: #215da3;          /* 学校主题色 */
  --primary-dark: #164a85;     /* 深色 */
  --primary-light: #3a7fd4;    /* 亮色 */
  --primary-bg: #f2f7fc;       /* 浅背景 */
  --primary-gradient: linear-gradient(135deg, #164a85 0%, #215da3 50%, #3a7fd4 100%);
  --accent: #c9302c;           /* 强调色-学术红 */
  --accent-light: #e74c3c;
  --text-primary: #1a1a2e;     /* 主文字 */
  --text-secondary: #4a5568;   /* 次要文字 */
  --text-muted: #718096;       /* 辅助文字 */
  --border-color: #e8edf2;     /* 边框色 */
  --bg-light: #f8fafc;         /* 浅背景 */
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(33, 93, 163, 0.06);
  --shadow-md: 0 6px 20px rgba(33, 93, 163, 0.1);
  --shadow-lg: 0 12px 36px rgba(33, 93, 163, 0.12);
  --shadow-hover: 0 8px 24px rgba(33, 93, 163, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Utility Classes ========== */
.none { display: none !important; }
.hidden { visibility: hidden; }
.clear { width: 100%; height: 0; line-height: 0; font-size: 0; overflow: hidden; clear: both; display: block; }

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ========== Body & Links ========== */
body {
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
}

p { line-height: 1.8; margin-bottom: 0.5em; }

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--primary); }

/* ========== Layout - 响应式容器 ========== */
.wrapper { width: 100%; }
.wrapper .inner {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
}

/* ========== Header 头部区域 ========== */
#header {
  background: var(--primary) url(images/head.png) no-repeat center center;
  background-size: cover;
  position: relative;
}

#header .inner {
  min-height: 200px;
  position: relative;
}

.header .head-left {
  display: none;
}

.header .head-right {
  position: absolute;
  top: 16px;
  right: 0;
  z-index: 2;
}

/* 右上角导航链接 */
.site-lang ul { float: right; }
.site-lang ul li.links { float: left; }
.site-lang ul li.links a {
  line-height: 28px;
  margin: 0 8px;
  padding: 0 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.site-lang ul li.links a:hover {
  color: #fff;
  background: rgba(0,0,0,0.3);
}

/* ========== Navigation 主导航 ========== */
#nav {
  background: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 6px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.wp-menu {
  margin: 0 auto;
  text-align: center;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-menu .menu-item {
  display: inline-block;
  position: relative;
}

.wp-menu .menu-item.i1 { background: none; }

.wp-menu .menu-switch-arrow {
  display: none;
  width: 0;
  height: 0;
  vertical-align: middle;
}

.wp-menu .menu-item a.menu-link {
  display: inline-block;
  padding: 0 34px;
  line-height: 56px;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.wp-menu .menu-item a.menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.25s ease;
}

.wp-menu .menu-item.hover a.menu-link,
.wp-menu .menu-item a.menu-link:hover {
  color: #fff;
}

.wp-menu .menu-item.hover a.menu-link::after,
.wp-menu .menu-item a.menu-link:hover::after {
  width: 60%;
}

/* 下拉子菜单 */
.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 56px;
  min-width: 190px;
  z-index: 100;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

.sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
}

.sub-menu .sub-item a {
  display: block;
  color: var(--text-primary);
  height: 44px;
  line-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  text-align: center;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.sub-menu .sub-item:last-child a { border-bottom: none; }

.sub-menu .sub-item.hover > a,
.sub-menu .sub-item a:hover {
  color: #fff;
  background: var(--primary);
}

.sub-menu .sub-menu {
  left: 100%;
  top: 0;
  z-index: 200;
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--primary);
}

/* ========== Banner 轮播区 ========== */
#banner {
  background: var(--bg-light);
}

#banner .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mbanner .focus {
  min-height: 440px;
}

.mbanner .focus .focus-title-bar {
  bottom: 40px;
  left: 0;
  margin-left: 0;
}

.mbanner .focus .focus-title-bg {
  background: rgba(22, 74, 133, 0.85);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.mbanner .focus .focus-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 14px 24px;
}

.mbanner .focus .focus-pagination {
  position: absolute;
  right: 0;
  bottom: 25px;
  margin-right: 0;
  z-index: 60;
  width: 100%;
  text-align: center;
}

.mbanner .focus .focus-page {
  display: inline-block;
  width: 32px;
  height: 4px;
  margin-right: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.mbanner .focus .focus-page:hover {
  background: rgba(255,255,255,0.8);
}

.mbanner .focus .focus-page-active {
  width: 48px;
  background: #fff;
}

.mbanner .focus .focus-navigation {
  width: 48px;
  height: 48px;
  opacity: 0.5;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: var(--transition);
  text-indent: 0;
}

.mbanner .focus .focus-navigation:hover {
  opacity: 1;
  background: var(--primary);
}

.mbanner .focus .focus-prev {
  left: 30px;
}

.mbanner .focus .focus-next {
  right: 30px;
}

/* ========== Main Content Sections - 新布局系统 ========== */

/* ---------- 通用行列布局 ---------- */
.row { position: relative; }
.row::after { content: ""; display: table; clear: both; }

/* 列容器统一样式 - 关键修复：box-sizing防止宽度溢出 */
.col {
  box-sizing: border-box;
}

/* 两列布局: 左列 | 右列 */
.row-2col {
  display: flex;
  align-items: stretch;
}

.row-2col .col-left {
  width: 50%;
  padding-right: 9px;
  box-sizing: border-box;
  min-width: 0;
}
.row-2col .col-right {
  width: 50%;
  padding-left: 9px;
  box-sizing: border-box;
  min-width: 0;
}

.row-3col {
  display: flex;
  align-items: stretch;
}

/* 三列布局: 1/3 | 1/3 | 1/3 */
.row-3col .col-1-3 {
  float: none;
  width: 33.333%;
  padding-right: 12px;
  box-sizing: border-box;
  min-width: 0;
}
.row-3col .col-2-3 {
  float: none;
  width: 33.333%;
  padding: 0 6px;
  box-sizing: border-box;
  min-width: 0;
}
.row-3col .col-3-3 {
  float: none;
  width: 33.333%;
  padding-left: 12px;
  box-sizing: border-box;
  min-width: 0;
}

/* ---------- 板块整体分隔 ---------- */
.main-row-2col,
.main-row-3col,
.main-gallery {
  padding: 60px 0;
}

/* ---------- 第一行：学院要闻 - 大图 + 2x2 卡片 ---------- */
#container-1.main-row-2col {
  background: var(--primary-bg);
}

/* 居中大标题 */
#container-1 .section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

#container-1 .section-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 3px;
  position: relative;
}

#container-1 .section-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
  padding-bottom: 10px;
  position: relative;
  transition: var(--transition);
}

#container-1 .section-title a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

#container-1 .section-title a:hover {
  color: var(--primary);
}

#container-1 .section-title a:hover::after {
  background: var(--accent);
  width: 100%;
}

#container-1 .section-title span {
  color: var(--text-primary);
}

#container-1 .section-title em {
  color: var(--primary);
  font-style: normal;
}

#container-1 .section-title i {
  color: var(--primary);
  font-style: normal;
}

/* 左列 - 大图新闻 */
#container-1 .col-left .post { height: 100%; }
#container-1 .col-left .post .con { padding: 0; height: 100%; }
#container-1 .col-left .post .con > div { height: 100%; }

#container-1 .post-11 .focus {
  width: 100% !important;
  min-height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

#container-1 .post-11 .focus .focus-container {
  visibility: visible !important;
  position: relative;
}

#container-1 .post-11 .focus .focus-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#container-1 .post-11 .focus img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右列 - 2x2 新闻卡片 */
#container-1 .col-right .post {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  height: 100%;
}

#container-1 .col-right .post .con {
  height: 100%;
}

.news_grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  height: 100%;
}

.news_grid::after {
  display: none;
}

.news_grid .grid-item:nth-child(n+7) {
  display: none;
}

.news_grid .grid-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-bottom: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: var(--transition);
  box-sizing: border-box;
}

.news_grid .grid-item:hover {
  background: var(--primary-bg);
  border-color: var(--primary-light);
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.news_grid .grid-title {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  width: 100%;
}

.news_grid .grid-title a {
  color: var(--text-primary);
  transition: var(--transition);
}

.news_grid .grid-title a:hover {
  color: var(--primary);
}

.news_grid .grid-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- 第二行：两列 - 通知公告 | 教育教学 ---------- */
#container-2.main-row-2col {
  background: #fff;
}

#container-2 .col-left .post,
#container-2 .col-right .post {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: var(--transition);
}

#container-2 .col-left .post:hover,
#container-2 .col-right .post:hover {
  box-shadow: var(--shadow-md);
}

#container-2 .col-left .post .con,
#container-2 .col-right .post .con {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  /* 让内容区向两侧延伸至卡片边缘，列表项即可撑满 .post */
  margin-right: -26px;
  margin-left: -20px;
  padding: 0;
}

#container-2 .news_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#container-2 .news_list li.news:nth-child(n+7) {
  display: none;
}

/* 教育教学列表项撑满 .post 卡片 */
#container-2 .col-right .news_list li.news {
  padding: 14px 26px 14px 20px;
}

/* ---------- 第三行：三列 - 团学活动 | 招生就业 | 社会服务 ---------- */
.main-row-3col {
  background: var(--primary-bg);
}

.main-row-3col .col .post {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: var(--transition);
}

.main-row-3col .col .post:hover {
  box-shadow: var(--shadow-md);
}

.main-row-3col .col .post .con {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  /* 让内容区向两侧延伸至卡片边缘 */
  margin-right: -24px;
  margin-left: -24px;
  padding: 0;
}

.main-row-3col .news_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-row-3col .news_list li.news:nth-child(n+7) {
  display: none;
}

/* 团学活动、招生就业、社会服务列表项撑满 .post 卡片 */
.main-row-3col .news_list li.news {
  padding: 14px 24px;
}

#container-2 .rili2 .news_list li.news {
  margin-bottom: 0;
}

/* ---------- 精彩记录区 - 图片画廊 ---------- */
.main-gallery {
  background: var(--bg-light);
}

.gallery-wrap {
  overflow: hidden;
  position: relative;
}

.gallery-wrap::before,
.gallery-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.gallery-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.gallery-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.gallery-post {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.gallery-post .con {
  padding: 0;
}

/* 图片网格 */
.gallery-grid {
  margin: 0;
  padding: 0 0 8px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.gallery-grid::before,
.gallery-grid::after {
  display: none;
}

.gallery-item {
  list-style: none;
  position: relative;
  flex: 0 0 auto;
  width: calc((100% - 60px) / 4);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  scroll-snap-align: start;
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
}

.gallery-img:empty::before {
  content: "图片";
  color: var(--text-muted);
  font-size: 14px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.05);
}

.gallery-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(22, 74, 133, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

/* CMS 图片滚动表格 - 精彩记录真实结构兼容 */
.imgscroll2_tpl {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  display: block;
}

.imgscroll2_tpl tbody {
  display: block;
}

.imgscroll2_tpl tr {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: imgscroll-move 30s linear infinite;
}

.imgscroll2_tpl tr > td:not(.imgscroll2_td) {
  display: none;
}

.imgscroll2_tpl:hover tr {
  animation-play-state: paused;
}

@keyframes imgscroll-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.imgscroll2_tpl td.imgscroll2_td {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 320px;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--primary-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 0;
}

.imgscroll2_td:hover {
  box-shadow: var(--shadow-md);
}

.imgscroll2_td > div:first-child {
  flex: 1;
  width: 100%;
  height: 100%;
}

.imgscroll2_td > div:first-child a {
  display: block;
  width: 100%;
  height: 100%;
}

.imgscroll2_img {
  display: block;
  width: 100%;
  height: 100%;
}

.imgscroll2_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.imgscroll2_td:hover .imgscroll2_img img {
  transform: scale(1.05);
}

.imgscroll2_td > div:last-child {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(22, 74, 133, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.imgscroll2_td:hover > div:last-child {
  transform: translateY(0);
}

.imgscroll2_td > div:last-child a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== Post Components 通用模块 ========== */

.post .tt {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

.post .tt .tit {
  display: inline-block;
  float: none;
  font-size: 16px;
  font-weight: normal;
}

.post .tt .tit .title {
  display: inline-block;
  line-height: 44px;
  color: var(--text-primary);
  font-weight: 700;
  white-space: nowrap;
}

.post .con {
  padding: 8px 0;
  margin: 0 auto;
}

/* 标题样式 - post1 (标准标题) */
.post1 .tt {
  background: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post1 .tt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 22px;
  background: var(--primary);
  border-radius: 3px;
}

.post1 .tt .tit .title {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1.3;
}

.post1 .tt .tit .title a {
  display: inline-flex;
  align-items: center;
  color: var(--text-primary);
  transition: var(--transition);
}

.post1 .tt .tit .title a:hover {
  color: var(--primary);
}

.post1 .more_btn {
  flex-shrink: 0;
  margin-left: 12px;
}

.post1 .more_btn a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  transition: var(--transition);
}

.post1 .more_btn a img {
  display: none;
}

.post1 .more_btn a::before {
  content: "更多";
}

.post1 .more_btn a::after {
  content: ">";
  font-size: 11px;
}

.post1 .more_btn a:hover {
  color: #fff;
  background: var(--primary);
}

/* 标题样式 - post3 (居中标题) */
.post3 .tt {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 36px;
}

.post3 .tt::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.post3 .tt .tit {
  float: none;
}

.post3 .tt .tit .title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 24px;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post3 .tt .tit .title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(images/tt7.png) no-repeat center;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.7;
}

.post3 .tt .tit .title a {
  color: var(--text-primary);
  transition: var(--transition);
}

.post3 .tt .tit .title a:hover {
  color: var(--primary);
}

.post3 .more_btn {
  flex-shrink: 0;
  margin-left: 0;
  float: none;
}

.post3 .more_btn a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  transition: var(--transition);
}

.post3 .more_btn a img {
  display: none;
}

.post3 .more_btn a:hover {
  color: #fff;
  background: var(--primary);
}

/* 隐藏内容区 CMS 自动注入的更多按钮 */
.gallery-post .more_btn,
.gallery-wrap .more_btn {
  display: none !important;
}

.post-11 .focus,
.mbanner .focus {
  min-height: 450px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  visibility: hidden;
}

.post-11 .focus img,
.mbanner .focus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 无图片时的占位提示 */
.post-11 .focus:empty::before,
.mbanner .focus:empty::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url(images/loading.gif) no-repeat center;
  background-size: contain;
  opacity: 0.6;
}

/* 新闻图片轮播区域 - 样式已在上方统一定义 */

.post-11 .focus .focus-title {
  height: 90px;
  line-height: 90px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "思源黑体 CN", sans-serif;
  font-size: 22px;
  color: var(--text-primary);
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 500;
}

.post-11 .focus .focus-title a { color: var(--text-primary); }

.post.post1.post-11.mbox .focus-text-box {
  width: 380px;
  left: 0;
  height: 60px;
  bottom: -110px;
  top: inherit;
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.post.post1.post-11.mbox .focus-text-bg {
  background: #fff;
}

.post.post1.post-11.mbox .focus-text {
  font-size: 14px;
  line-height: 24px;
  padding: 0 18px;
  font-family: "Microsoft YaHei";
  max-height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-secondary);
}

.post.post1.post-11.mbox .focus-text a { color: var(--text-secondary); }

.post-11 .focus .focus-title-bar {
  height: 90px;
  bottom: -90px;
  left: 0;
  right: 0;
}

.post-11 .focus .focus-title-bg {
  background: #fff;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.post-11 .focus .focus-pagination {
  position: absolute;
  right: 14px;
  bottom: 42px;
}

.post-11 .focus .focus-page {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  border: 1px solid var(--border-color);
}

.post-11 .focus .focus-page span { display: block; }

.post-11 .focus .focus-page:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.post-11 .focus .focus-page-active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.post-11 .focus .focus-navigation {
  width: 44px;
  height: 44px;
  opacity: 0.85;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  font-size: 0;
  color: var(--primary);
  text-indent: 0;
  line-height: 44px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.post-11 .focus .focus-prev::before,
.post-11 .focus .focus-next::before {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.post-11 .focus .focus-prev::before { content: "‹"; }
.post-11 .focus .focus-next::before { content: "›"; }

.post-11 .focus .focus-prev { left: 12px; }
.post-11 .focus .focus-next { right: 12px; }

.post-11 .focus .focus-navigation:hover {
  opacity: 1;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.post-11 .focus .focus-navigation:hover::before {
  color: #fff;
}

/* 新闻列表区域 - 布局已在上方统一定义 */

.post.post1.post-12.mbox .con {
  padding: 0;
  margin-top: 5px;
}

/* ========== News List 自定义新闻列表 ========== */

.news_list {
  width: 100%;
}

.news_list li.news {
  line-height: 1;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_list li.news:last-child {
  border-bottom: none;
}

.news_list li.news:hover {
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
}

.news_list li.news span.news_title {
  float: none;
  font-size: 16px;
  line-height: 1.6;
  padding-left: 18px;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: var(--transition);
  position: relative;
}

.news_list li.news span.news_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
}

.news_list li.news:hover span.news_title {
  color: var(--primary);
}

.news_list li.news:hover span.news_title::before {
  opacity: 1;
}

.news_list li.news span.news_meta {
  float: right;
  margin-left: 15px;
  color: var(--text-muted);
  font-size: 13px;
  flex-shrink: 0;
}

.time-1 {
  float: none;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 20px;
}

.post .news_list li.news .news_imgs {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.post .news_list li.news .news_imgs img {
  transition: transform 0.4s ease;
}

.post .news_list li.news:hover .news_imgs img {
  transform: scale(1.03);
}

/* 日历通知公告样式 */
.rili2 {
  padding-top: 8px !important;
}

.rili2 .con { padding: 0; }

.rili2 .news_list li.news {
  margin-bottom: 10px;
  height: auto;
  min-height: auto;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: 10px 26px 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.rili2 .news_list li.news:hover {
  background: #fff;
  border: 1px solid var(--primary-light);
}

.rili2 .news_list li.news.n1 {}

.rili2 .news_list li.news .news_date {
  float: none;
  width: auto;
  min-width: 56px;
  margin-right: 0;
  background: var(--primary);
  text-align: center;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.rili2 .news_list li.news .news_date .news_day {
  line-height: 1.2;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.rili2 .news_list li.news .news_date .news_month {
  line-height: 1.2;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

.rili2 .news_list li.news .news_wz {
  width: auto;
  flex: 1;
  min-width: 0;
  margin-left: 12px;
}

.rili2 .news_list li.news .news_wz .news_con {
  margin-left: 0;
  padding-right: 0;
  height: auto;
  display: block;
}

.rili2 .news_list li.news .news_title {
  line-height: 1.5;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

/* ========== 链接图标区域 ========== */
.link_icon { margin-bottom: 0; }
.link_icon .news_list {}
.link_icon .news_list li.news {
  float: left;
  width: 14.28%;
  text-align: center;
  border: none;
}
.link_icon .news_list li.news .news_box { margin: 0 10px; }
.link_icon .news_list li.news .link_icon {
  display: inline-block;
  width: 90px;
  float: left;
  transition: var(--transition);
}
.link_icon .news_list li.news .link_icon:hover { opacity: 0.85; }
.link_icon .news_list li.news .link_icon .icon {
  width: 90px;
  height: 90px;
  margin: 14px 0;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.link_icon .news_list li.news .link_icon:hover .icon {
  box-shadow: var(--shadow-md);
}
.link_icon .news_list li.news.i1 .link_icon .icon { background: url(images/icon1.png) center/contain no-repeat; }
.link_icon .news_list li.news.i2 .link_icon .icon { background: url(images/icon2.png) center/contain no-repeat; }
.link_icon .news_list li.news.i3 .link_icon .icon { background: url(images/icon3.png) center/contain no-repeat; }
.link_icon .news_list li.news.i4 .link_icon .icon { background: url(images/icon4.png) center/contain no-repeat; }
.link_icon .news_list li.news .link_con {
  display: block;
  line-height: 118px;
  color: #000;
  float: left;
  margin-left: 10px;
}
.link_icon .news_list li.news .link_con a {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

/* ========== 图文列表 ========== */
.news_tu {}
.news_tu .con { padding: 12px 0; }
.news_tu .news_list { margin: 0 -17px; }
.news_tu .news_list li.news { float: left; width: 25%; }
.news_tu .news_list li.news .news_box {
  margin: 0 17px;
  transition: var(--transition);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.news_tu .news_list li.news .news_box:hover {
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.news_tu .news_list li.news .news_imgs {
  height: 160px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}
.news_tu .news_list li.news .news_imgs img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news_tu .news_list li.news .news_box:hover .news_imgs img {
  transform: scale(1.03);
}
.news_tu .news_list li.news .news_wz {}
.news_tu .news_list li.news .news_wz .news_con {}
.news_tu .news_list li.news .news_title {
  line-height: 48px;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

/* ========== 列表页样式 ========== */

/* 栏目Banner */
.l-banner {
  height: 280px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#container-1 .l-banner {
  height: 280px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#container-1 .l-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

#container-1 .l-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.l-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.l-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

/* 列表页主体 */
#l-container {}
#l-container .inner { padding: 40px 20px; }

/* 文章页主体 */
#d-container {}
#d-container .inner { padding: 30px 0; }

/* 左侧栏目菜单 */
.col_menu {
  width: 260px;
  float: left;
  margin-right: -260px;
  position: relative;
}

.col_menu .l-qh { margin-bottom: 15px; }

.col_menu .col_menu_head {
  background: var(--primary-gradient);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 0 20px;
}

.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 54px;
  letter-spacing: 2px;
}

.col_menu .col_menu_con {
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* 栏目列表 */
.col_list {}
.col_list .wp_listcolumn {
  border-top: none;
  border-bottom: none;
}

.col_list .wp_listcolumn .wp_column a {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 400;
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid var(--border-color);
  display: block;
  transition: var(--transition);
  padding: 2px 0;
}

.col_list .wp_listcolumn .wp_column a .column-name {
  padding: 10px 0 10px 28px;
  line-height: 1.6;
  display: block;
}

.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: var(--primary);
  background: var(--primary-bg);
  font-weight: 600;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: var(--primary);
  font-weight: 600;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: var(--text-secondary);
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: 600;
  color: var(--primary);
}

/* 二级子栏目 */
.col_list .wp_listcolumn .wp_column .sub_list a {
  color: var(--text-secondary);
  border-top: 1px solid rgba(0,0,0,0.04);
  margin-top: -1px;
}

.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px 5px 52px;
  cursor: pointer;
  font-size: 14px;
}

.col_list .wp_listcolumn .sub_list a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  font-weight: 600;
  color: var(--primary);
}

/* 三级子栏目 */
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a { background: none; }
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 68px;
  cursor: pointer;
  font-size: 13px;
}

.col_list .wp_listcolumn .wp_column .sub_list .sub_list a:hover,
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a.selected {
  font-weight: 600;
  color: var(--primary);
}

/* 右侧内容区 */
.col_news {
  width: 100%;
  min-height: 500px;
  float: right;
}

.col_news .col_news_box { margin-left: 300px; }

.col_news_head {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 25px;
  padding-bottom: 12px;
}

.col_metas {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
  gap: 0;
}

.col_metas .col_path {
  grid-column: 1;
  justify-self: start;
}

.col_metas .col_title {
  grid-column: 2;
  justify-self: center;
  display: inline-block;
  float: none;
  height: auto;
  line-height: 1;
}

.col_metas .col_title h2 {
  display: inline-block;
  font-size: 22px;
  font-family: "Microsoft YaHei", "思源黑体 CN", sans-serif;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.col_metas .col_path {
  display: inline-block;
  white-space: nowrap;
  height: auto;
  line-height: 40px;
  color: var(--text-muted);
  font-size: 14px;
}

.col_metas .col_path a { color: var(--text-secondary); }
.col_metas .col_path a:hover { color: var(--primary); }

.col_news_con { padding: 10px 0 20px; margin: 0 7px; }
.col_news_list { margin-top: 10px; }

.col_news_list .wp_article_list .list_item {}

.col_news_list .wp_article_list .list_item .Article_Index {}

.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.8;
  font-size: 15px;
  color: var(--text-primary);
}

.col_news_list .wp_entry p { margin-bottom: 12px; }
.col_news_list .wp_entry table { margin-bottom: 8px; }
.col_news_list .wp_entry img {
  max-width: 100%;
  height: auto;
}

/* ========== 文章详情页 ========== */
.infobox { width: auto; margin: 0 auto; }
.article { padding-top: 20px; }

.article h1.arti_title {
  line-height: 1.4;
  font-family: "Microsoft YaHei", "思源黑体 CN", sans-serif;
  font-size: 30px;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0 40px;
  margin-bottom: 15px;
}

.article h2.arti_title {
  line-height: 1.6;
  font-family: "Microsoft YaHei";
  font-size: 17px;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 400;
}

.article .arti_metas {
  padding: 15px 10px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.article .arti_metas span,
.article .arti_metas .arti_publisher,
.article .arti_metas .arti_update,
.article .arti_metas .arti_views {
  margin: 0 15px;
  font-size: 14px;
  color: var(--text-muted);
}

.article .arti_metas .arti_views .WP_VisitCount,
.article .arti_metas .WP_VisitCount {
  display: inline !important;
  visibility: visible !important;
  color: var(--text-muted) !important;
  font-size: 14px !important;
  opacity: 1 !important;
}

.article .entry {
  margin: 0 auto;
  overflow: hidden;
  margin-top: 20px;
  min-height: 500px;
  padding: 0 60px;
}

.article .entry .read,
.article .entry .read p {
  line-height: 2;
  font-size: 16px;
  color: var(--text-primary);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Microsoft YaHei", "思源黑体 CN", sans-serif;
}

.article .entry .read p { margin-bottom: 16px; }

.article .entry .read img {
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.article .entry .read table {
  margin: 20px auto;
  border: none;
  max-width: 100%;
}

.article .entry .read td,
.article .entry .read th {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
}

/* ========== Footer 页脚 ========== */
#footer {
  background: var(--primary-dark);
  min-height: 120px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .inner {
  padding: 32px 0;
}

#footer .inner .foot-xx p {
  font-size: 14px;
  line-height: 26px;
  font-weight: normal;
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin: 4px 0;
}

#footer .inner .copyright a { color: rgba(255,255,255,0.8); }
#footer .inner .copyright a:hover { color: #fff; }

/* ========== 搜索框 ========== */
.searchbox { text-align: right; margin-top: 50px; }

.wp-search {
  position: relative;
  background: rgba(255,255,255,0.15);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.wp-search form { display: block; }

.wp-search .search-input { margin-left: 4px; margin-right: 50px; }

.wp-search .search-input input.search-title {
  width: 100%;
  height: 40px;
  padding: 4px 0;
  line-height: 22px;
  background: none;
  color: #FFFFFF;
  font-size: 14px;
  border: 0;
  outline: 0;
  opacity: 0.95;
  font-family: "Microsoft YaHei";
  text-indent: 18px;
}

.wp-search .search-btn {
  width: 50px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 50px;
  height: 40px;
  border: 0;
  outline: 0;
  background: url(images/sous.png) no-repeat center;
  background-size: 20px;
  cursor: pointer;
  border-radius: 0 25px 25px 0;
  transition: var(--transition);
}

.wp-search .search-btn input.search-submit:hover {
  background-color: rgba(255,255,255,0.15);
}

/* ========== 分享按钮 ========== */
.shares { text-align: center; }
.shares ul { width: auto; margin: 0 auto; text-align: right; float: right; }
.shares li.i1 { margin-left: 0; }
.shares li {
  float: left;
  margin-left: 15px;
  position: relative;
}

.shares li a {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-size: 70% !important;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.shares li a:hover {
  box-shadow: var(--shadow-md);
  opacity: 1 !important;
}

.shares li.i1 a { background: url(images/wb.png) no-repeat center #e6162d; }
.shares li.i2 a { background: url(images/wx.png) no-repeat center #07c160; }
.shares li.i3 a { background: url(images/dy.png) no-repeat center #fe2c55; }
.shares li.i4 a { background: url(images/pu.png) no-repeat center #ff4d94; }

.shares li span {
  display: block;
  line-height: 22px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.shares li .con {
  display: none;
  position: absolute;
  bottom: 52px;
  left: 50%;
  z-index: 100;
  margin-left: -52px;
  width: 120px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.shares li .con img {
  width: 100px;
  height: 100px;
  vertical-align: top;
  background: #fff;
  border-radius: var(--radius-sm);
}

/* ========== 标题栏各区块图标样式 ========== */
/* 已统一使用 .post1 / .post3 标题样式 */
#container-2 .col-left .post1 .tt::before {
  background: var(--accent);
}

.main-row-3col .col:nth-child(1) .post1 .tt::before {
  background: var(--primary);
}

.main-row-3col .col:nth-child(2) .post1 .tt::before {
  background: var(--primary-light);
}

.main-row-3col .col:nth-child(3) .post1 .tt::before {
  background: var(--accent);
}

/* ========== 其他修复 ========== */
.article .entry .read { min-height: 500px; }
.article .entry .photos { min-height: 650px; }
.article .entry .photos .pic s { display: none; }
.article .entry .photos .preview { display: none; }
.zt_column_list { margin-top: -50px; margin-bottom: 30px; }

.entry span.tips { display: none; }

/* ========== 滚动条美化（可选） ========== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1a1; }

/* ========== Selection ========== */
::selection {
  background: var(--primary);
  color: #fff;
}

::-moz-selection {
  background: var(--primary);
  color: #fff;
}

/* ========== Responsive 响应式适配 ========== */
@media screen and (max-width: 1500px) {
  .wrapper .inner { max-width: 92%; }
}

@media screen and (max-width: 1200px) {
  .wrapper .inner { max-width: 96%; }

  /* 两列变单列 */
  .row-2col {
    flex-direction: column;
  }
  .row-2col .col-left,
  .row-2col .col-right {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
  .row-2col .col-left:last-child,
  .row-2col .col-right:last-child {
    margin-bottom: 0;
  }

  /* 三列变单列 */
  .row-3col .col-1-3,
  .row-3col .col-2-3,
  .row-3col .col-3-3 {
    float: none;
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }

  .post-video,
  .post-imgs {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gallery-wrap { flex-direction: column; }

  #d4 { margin: 0 -8px; }
  #d4 li { width: calc(50% - 16px); }

  #d3 .news_box,
  #d3 .news_imgs { min-height: 280px; }

  .col_metas {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .col_metas .col_path,
  .col_metas .col_title {
    grid-column: 1;
    justify-self: start;
  }

  .col_news .col_news_box { margin-left: 0; }
  .col_menu { width: 100%; float: none; margin-right: 0; margin-bottom: 20px; }
  .col_news { float: none; }
  .article .entry { padding: 0 20px; }
  .article h1.arti_title { padding: 0 20px; font-size: 24px; }
}

@media screen and (max-width: 768px) {
  #header .inner { height: auto; padding: 15px 0; }
  .header .head-left,
  .header .head-right { float: none; width: 100%; text-align: center; }
  .site-lang ul { float: none; text-align: center; }
  .site-lang ul li.links { display: inline-block; float: none; }
  
  .menu-toggle { display: block; }
  .wp-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .wp-menu.active { display: flex; }
  .wp-menu .menu-item { width: 100%; text-align: left; }
  .wp-menu .menu-item a.menu-link { padding: 12px 20px; font-size: 15px; line-height: 1.5; }
  .sub-menu { position: static; box-shadow: none; background: rgba(255,255,255,0.05); }
  .post1 .tt .tit .title { font-size: 20px; }

  /* 精彩记录图片画廊 */
  .gallery-grid {
    gap: 16px;
  }
  .gallery-item {
    width: calc((100% - 16px) / 2);
  }
  .post3 .tt .tit .title { font-size: 22px; }
  .news_list li.news span.news_title { font-size: 14px; }
  .time-1 { font-size: 12px; }
  #footer { min-height: auto; padding: 24px 0; }
  #header .inner { min-height: 120px; padding: 0; }
  .header .head-right { top: 10px; right: 10px; }
  .site-lang ul li.links a { font-size: 12px; padding: 0 6px; line-height: 24px; margin: 0 4px; }

  /* 移动端卡片内边距 */
  #container-1 .col-right .post,
  #container-2 .col-left .post,
  #container-2 .col-right .post,
  .main-row-3col .col .post { padding: 20px; }

  /* 移动端内容区负边距同步为 20px，避免溢出 */
  #container-2 .col-left .post .con,
  #container-2 .col-right .post .con {
    margin-right: -20px;
    margin-left: -20px;
  }

  .rili2 .news_list li.news,
  #container-2 .col-right .news_list li.news {
    padding: 10px 20px;
  }

  .main-row-3col .col .post .con {
    margin-right: -20px;
    margin-left: -20px;
  }

  .main-row-3col .news_list li.news {
    padding: 14px 20px;
  }

  .main-row-2col,
  .main-row-3col,
  .main-gallery { padding: 50px 0; }

  /* 学院要闻移动端 */
  #container-1 .section-title { font-size: 24px; }
  #container-1 .section-header { margin-bottom: 28px; }
  .post1 .tt .tit .title { font-size: 18px; }
  .post1 .more_btn a {
    font-size: 12px;
    padding: 3px 8px;
  }
  .news_grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .news_grid .grid-item {
    padding: 18px 16px;
  }
  #container-1 .post-11 .focus { min-height: 300px; }

  /* 精彩记录图片画廊移动端 */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-info {
    transform: translateY(0);
    padding: 24px 14px 10px;
    background: linear-gradient(to top, rgba(22, 74, 133, 0.85), transparent);
  }
}
