/* ================================================
   1. CSS Reset - 浏览器样式重置
   ================================================ */
article, aside, dialog, footer, header, section, nav, figure, menu,
details, figcaption, hgroup {
    display: block;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body { line-height: 1; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

nav ul, nav li {
    margin: 0;
    list-style: none;
    list-style-image: none;
}

b, strong, th { font-weight: bold; }
em, i { font-style: italic; }

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

/* ================================================
   2. 基础样式
   ================================================ */
a, a:active {
    color: #09F;
    outline: 0;
}
a:hover { color: #09F; }

body {
    font: 14px "Microsoft YaHei", "微软雅黑", "Helvetica Neue", "Helvetica", "arial", sans-serif;
    background-color: #f4f7f9;
    min-height: 100%;
    position: static;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: none;
}

.skiplink { display: none; }
.clear { clear: both; }
img { max-width: 100%; }

/* ================================================
   3. 头部区域
   ================================================ */
#main-header {
    width: 100%;
    height: 180px;
    position: fixed;
    z-index: 2000;
}
#main-header.small {
    height: 60px;
}

#header-full {
    width: 100%;
    min-width: 1200px;
    background: rgba(250, 250, 250, 1);
}
#header-full.small {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    transition: height .2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#header {
    width: 1125px;
    height: 60px;
    margin: 0 auto;
    padding: 0 30px;
}
#header-full.small #header {
    height: 60px;
    position: relative;
}

#logo {
    float: left;
    margin: 10px 0 0 0;
}
#header-full.small #logo { margin: 5px 0 0 0; }
#header-full.small #logo img {
    width: 220px;
    height: auto;
    max-height: 50px;
    position: absolute;
    left: 30px;
    top: 8px;
}

#header-content {
    height: 90px;
    float: right;
}
#header-full.small #header-content { display: none; }

#nav-header {
    float: left;
    list-style: none;
    margin: 15px 0 0 10px;
}
#nav-header li {
    float: left;
    margin: 0 10px;
}
#nav-header li a {
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}
#nav-header li:last-child { margin-right: 0; }

/* ================================================
   4. 导航样式
   ================================================ */
#nav {
    float: none;
    height: 50px;
    background: #09F;
    clear: both;
}

#nav-container {
    height: 50px;
    float: none;
    width: 1125px;
    margin: 0 auto;
    padding: 0 30px;
}

#nav-main, #nav .menu ul {
    height: 50px;
    float: left;
}

#nav-main li, #nav .menu ul li {
    height: 50px;
    float: left;
    position: relative;
}

#nav-main li a, #nav .menu ul li a {
    height: 34px;
    float: left;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 15px 0 15px;
}

#nav-main li.current-menu-item a, #nav .menu ul li.current-menu-item a {
    color: #fff;
    height: 34px;
    background: rgba(0, 0, 0, 0.5);
    margin: -2px 0 0 0;
    padding-top: 18px;
    box-shadow: 1px 0 rgba(0, 0, 0, 0.7);
}

/* 滚动后导航 */
#header-full.small + #nav {
    background: 0;
    box-shadow: none;
    height: 40px;
}
#header-full.small + #nav #nav-container {
    height: 40px;
    margin: -50px auto 0 auto;
}
#header-full.small + #nav #nav-main,
#header-full.small + #nav .menu ul {
    padding-left: 230px;
    height: 40px;
}
#header-full.small + #nav #nav-main li,
#header-full.small + #nav .menu li {
    height: 40px;
}
#header-full.small + #nav #nav-main li a,
#header-full.small + #nav .menu li a {
    height: 30px;
    float: left;
    font-size: 13px;
    font-weight: 300;
    color: #333;
    padding: 10px 7px 0 7px;
}
#header-full.small + #nav #nav-main li.current-menu-item a,
#header-full.small + #nav .menu ul li.current-menu-item a {
    height: 30px;
    margin: 0;
    background: 0;
    font-weight: bold;
    box-shadow: none;
}
#header-full.small + #nav #nav-main li:hover a,
#header-full.small + #nav .menu ul li:hover a { background: 0; }

/* 二级菜单 */
#nav ul ul {
    position: absolute;
    z-index: 2000;
    display: none;
    width: 230px;
    margin: 0;
    top: 48px;
    left: 0;
    background: #004c7f;
    float: none;
    text-align: left;
    padding: 5px;
    box-shadow: 0 2px rgba(0, 0, 0, 0.3);
}
#header-full.small + #nav ul ul {
    background: rgba(255, 255, 255, 0.95);
    top: 40px;
}

#nav ul li ul li {
    display: inline;
    float: left;
    width: 230px;
    height: auto;
    padding: 0;
    position: relative;
    margin: 0;
    border: 0;
    box-shadow: none;
}

#nav ul ul ul {
    position: absolute;
    z-index: 1300;
    display: none;
    width: 230px;
    margin: 0;
    top: -5px;
    left: 230px;
}
#header-full.small + #nav ul ul ul {
    background: rgba(255, 255, 255, 0.95);
    top: -5px;
}

#nav ul li ul li ul li {
    display: inline;
    float: left;
    padding: 0;
    margin: 0 0 1px 0;
    height: auto;
}

#nav #nav-main li:hover ul li { background: 0; }

#nav #nav-main li:hover ul li a,
#nav #nav-main li:hover ul li a:link,
#nav #nav-main li:hover ul li a:visited {
    width: 180px;
    height: auto;
    text-transform: none;
    border: 0;
    padding: 8px 10px;
    margin: 0;
    font-size: 14px;
    color: #fff;
    line-height: 18px;
    font-weight: normal;
    background: 0;
    box-shadow: none;
}
#header-full.small + #nav #nav-main li:hover ul li a {
    text-decoration: none;
}

#nav #nav-main li:hover ul li a:hover,
#nav #nav ul li ul li a:hover {
    text-decoration: none;
    color: #fff;
    background: #09F;
}
#header-full.small + #nav #nav-main li:hover ul li a:hover {
    font-weight: bold;
    color: #f63;
}
#nav #nav-main li:hover ul li:hover { box-shadow: none; }

nav#nav li:hover ul ul, nav#nav li li:hover ul ul { display: none; }
nav#nav li:hover ul, nav#nav li li:hover ul { display: block; }

/* Desktop should not show mobile submenu toggles or separator pseudo-lines. */
.submenu-toggle { display: none; }
#nav-main > li::before,
#nav-main > li::after {
    content: none;
    display: none;
}

.open-menu, .close-menu, .close-menu-big { display: none; }

/* ================================================
   5. 侧边栏 - 右侧边栏组件
   ================================================ */
.slides {
    margin: 0;
    padding: 0;
    list-style: none;
}
.slides:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
html[xmlns] .slides { display: block; }
* html .slides { height: 1%; }
.no-js .slides > li:first-child { display: block; }
.loading .flex-viewport { max-height: 300px; }
.carousel li { margin-right: 5px; }

/* ================================================
   6. 内容区域
   ================================================ */
.home #content-container {
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/main_bg.png') calc(50% - 200px) 60px / cover no-repeat;
    min-width: 1200px;
    position: relative;
    z-index: 20;
    padding-top: 20px;
}
#content-container {
    padding-top: 150px;
}

#content {
    width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

#banner-homepage {
    margin: 0 0 50px 0;
    vertical-align: top;
}

#main-content {
    width: 732px;
    float: left;
    padding: 0 0 50px 0;
}
#nr-content {
    width: 900px;
    float: left;
    padding: 0 0 50px 0;
}

.news-group {
    background: #fff;
    border-radius: 12px;
}

#full-width { padding: 0 0 50px 0; }

.home #main-content {
    width: 1200px;
    float: none;
    margin: 0 auto;
    padding: 0 0 50px 0;
}
.home #main-content .news-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}
.home #main-content .news-wrap > .widget-title { flex: 0 0 100%; }
.home #main-content .news-wrap > div { min-width: 0; }

#news-slider { width: 40%; float: left; }
#news-list { width: 54%; float: right; }

/* ================================================
   7. 侧边栏
   ================================================ */
#sidebar {
    width: 200px;
    float: right;
    background: #f0f0f0;
    padding: 50px 20px 0 20px;
    margin: 0 0 50px 0;
    border-radius: 12px;
}

#nav-sidebar {
    margin: 0 0 50px 0;
    list-style: none;
}
#nav-sidebar li {
    margin: 0 0 25px 0;
    line-height: 1.4;
}
#nav-sidebar li a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    display: block;
}
#nav-sidebar li a img {
    width: 36px;
    height: 36px;
}
#nav-sidebar li a:hover figure {
    background: #09F;
    box-shadow: 0 0 0 4px #09F;
}
#nav-sidebar li a .title-nav-sidebar {
    display: block;
    margin: 5px 0;
    text-transform: uppercase;
    color: #222;
    font-size: 16px;
}
#nav-sidebar li a:hover .title-nav-sidebar { color: #09F; }

#content-principal { padding-left: 341px; }

/* ================================================
   8. 小部件容器
   ================================================ */
.sidebar-homepage .widget-container,
#sidebar .widget-container {
    background: #fff;
    margin: 0 0 20px 0;
    padding: 0 20px 20px 20px;
    border-radius: 12px;
}

/* 首页侧边栏卡片增强样式 */
#main-content .sidebar-homepage .widget-container {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#main-content .sidebar-homepage .widget-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
#main-content .sidebar-homepage .widget-container {
    margin: 0 0 50px 0;
}

.sidebar-homepage .widget-container ul,
#sidebar ul {
    list-style: none;
    margin: 0 0 20px 0;
}

.sidebar-homepage .widget-container ul li {
    font-size: 14px;
    color: #444;
    padding: 8px 0 7px 0;
    border-bottom: 1px solid #dadada;
    line-height: 1.4;
    word-wrap: break-word;
}
#sidebar ul li {
    font-size: 14px;
    color: #000;
    padding: 10px 0;
    border-bottom: 1px solid #dadada;
    line-height: 1.4;
}

.sidebar-homepage .widget-container ul li a {
    color: #777;
    float: left;
    font-size: 14px;
    text-decoration: none;
}
#sidebar ul li a {
    color: #444;
    text-decoration: none;
}
#sidebar ul li a:hover,
.sidebar-homepage .widget-container ul li a:hover { color: #09F; }

/* ================================================
    9. 新闻侧边栏
   ================================================ */
.sidebar-homepage .widget-container ul.news-sidebar li,
#sidebar .widget-container ul.news-sidebar li {
    padding: 0 0 35px 0;
    margin: 0;
}

.sidebar-homepage .widget-container ul.news-sidebar li img,
#sidebar .widget-container ul.news-sidebar li img {
    border: 1px solid #fff;
}

.sidebar-homepage .imgrame,
#sidebar .imgframe {
    border: 1px solid #fff;
    box-shadow: 2px 2px 0 0 #dadada;
}

.sidebar-homepage .widget-container ul.news-sidebar h4,
#sidebar .widget-container ul.news-sidebar h4 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 2px 0;
    padding: 5px 0 0 0;
}

.sidebar-homepage .widget-container ul.news-sidebar h4 a,
#sidebar .widget-container ul.news-sidebar h4 a {
    color: #444;
    text-align: left;
}
.sidebar-homepage .widget-container ul.news-sidebar h4 a:hover,
#sidebar .widget-container ul.news-sidebar h4 a:hover {
    color: #09F;
    font-weight: bold;
    float: left;
}

.sidebar-homepage .widget-container ul.news-sidebar .date-news {
    font-size: 14px;
    color: #898989;
    text-transform: uppercase;
    font-weight: 300;
    float: left;
}
#sidebar .widget-container ul.news-sidebar .date-news {
    font-size: 10px;
    color: #898989;
    text-transform: uppercase;
    font-weight: 300;
}

.date-news {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sidebar-homepage .widget-container ul.news-sidebar h5 { display: none; }

/* ================================================
    10. 事件侧边栏
   ================================================ */
.event-date-widget {
    width: 61px;
    float: left;
    background-size: 61px 80px;
    margin: 0 20px 0 0;
    text-align: center;
    background: #0099ff;
    border-radius: 6px;
    height: 75px;
    padding: 5px 0;
}

.sidebar-homepage .event-date-widget strong,
#sidebar .event-date-widget strong {
    display: block;
    font-size: 32px;
    color: #fff;
    padding: 8px 0 0 0;
}

.sidebar-homepage .event-date-widget span,
#sidebar .event-date-widget span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 0 0 0;
}

.sidebar-homepage .event-content-widget { width: 260px; float: left; }
#sidebar .event-content-widget { width: 179px; float: left; }

/* 合并重复的 article 样式 */
.sidebar-homepage .event-content-widget article,
#sidebar .event-content-widget article {
    margin: 0 0 12px 0;
    vertical-align: middle;
}

.sidebar-homepage .event-content-widget h4,
#sidebar .event-content-widget h4 {
    font-size: 15px;
    font-weight: 600;
    padding: 5px 0 4px 0;
    line-height: 1.4;
}

.sidebar-homepage .widget-container .event-content-widget h4 a,
#sidebar .widget-container .event-content-widget h4 a { color: #444; }
#sidebar .widget-container .event-content-widget h4 a:hover { color: #09F; }

.event-content-widget h4 a {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.sidebar-homepage .event-content-widget h4 a:hover,
#sidebar .event-content-widget h4 a:hover { color: #09F; }

.sidebar-homepage .event-content-widget p,
#sidebar .event-content-widget p {
    font-size: 10px;
    color: #898989;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.6;
}

.sidebar-homepage .event-content-widget em,
#sidebar .event-content-widget em {
    font-size: 11px;
    color: #555;
}

.sidebar-homepage .event-content-widget span,
#sidebar .event-content-widget span {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

.sidebar-homepage .event-content-widget article > div,
#sidebar .event-content-widget article > div {
    clear: both;
    float: none;
    display: block;
    margin-bottom: 4px;
}

.sidebar-homepage .widget-container ul.event-sidebar li,
#sidebar .widget-container ul.event-sidebar li {
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}

.event-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.event-sidebar .event-row {
    display: flex;
    width: 100%;
    gap: 5px;
    margin: 8px 0;
}

.event-sidebar h5 {
    color: #666;
    font-weight: bold;
    margin: 0 0 3px 0;
}

.event-sidebar h5 a {
    text-decoration: none;
    color: #666;
}

.event-sidebar h5 a:hover {
    color: #09F;
}

/* ================================================
   11. 按钮样式
   ================================================ */
.sidebar-homepage .button-more,
#sidebar .button-more {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 0;
    border: 1px solid #09F;
    text-decoration: none;
    background-color: #3CF;
    background-image: linear-gradient(to bottom, #3CF, #09F);
    text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
    transition: all .2s ease-in-out;
}
.sidebar-homepage .button-more:hover,
#sidebar .button-more:hover { background: #09F; }

/* ================================================
   13. 小部件合作伙伴信息
   ================================================ */
.sidebar-homepage .widget-container ul.slides { margin: 0; }
.sidebar-homepage .widget-container ul.slides li {
    padding: 0;
    border: 0;
}
.sidebar-homepage .widget-container .slides-image {
    padding: 4px;
    background: #dadada;
    margin: 0 0 20px 0;
}
.sidebar-homepage .widget-container .flexslider { position: relative; }
.sidebar-homepage .widget-container .flexslider .flex-control-nav { display: none; }
.sidebar-homepage .widget-container .flexslider h4 {
    text-align: center;
    margin: 0 60px;
    font-size: 14px;
    color: #444;
    font-weight: normal;
    line-height: 1.2;
}
.sidebar-homepage .widget-container ul.flex-direction-nav {
    margin: 0;
    height: 0;
}
.sidebar-homepage .widget-container ul.flex-direction-nav li {
    padding: 0;
    border: 0;
}
.sidebar-homepage .widget-container .flexslider .flex-next:hover,
.sidebar-homepage .widget-container .flexslider .flex-prev:hover { opacity: .7; }
.sidebar-homepage .widget-container .flexslider .flex-prev.flex-disabled,
.sidebar-homepage .widget-container .flexslider .flex-next.flex-disabled {
    opacity: .3;
    cursor: default;
}

/* ================================================
   14. 小部件标题
   ================================================ */
.sidebar-homepage .widget-title,
#sidebar .widget-title {
    background: linear-gradient(to bottom, #0CF, #09F);
    padding: 12px 10px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    margin: 0 0 10px 0;
}
#sidebar .widget-title {
    margin-left: 0;
    margin-top: 10px;
    width: 140px;
}

/* 覆盖样式 - 首页侧边栏标题 (通过提高选择器优先级避免 !important) */
#main-content .widget-title,
.home .sidebar-homepage .widget-title {
    background: transparent;
    color: #1a5d9a;
    border-bottom: 2px solid #1a5d9a;
    padding: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#main-content .widget-title span,
.home .sidebar-homepage .widget-title span {
    float: none;
    margin-left: auto;
}
.widget-title a {
    text-decoration: none;
    color: #fff;
}
.widget-title a:hover {
    text-decoration: none;
    color: #09f;
}
#main-content .widget-title .more,
.home .sidebar-homepage .widget-title .more {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    padding: 2px 10px;
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
}
.widget-title .more:hover {
    background: #0099ff;
    color: #fff;
    border-color: #0099ff;
}

/* ================================================
   15. 侧边栏通用样式
   ================================================ */
#sidebar img.alignleft { margin-right: 20px; }

#sidebar .text-widget img,
#sidebar .textwidget img { margin-bottom: 15px; }

#sidebar .text-widget,
#sidebar .textwidget {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}
#sidebar .text-widget { border-bottom: 1px solid #dadada; }

#sidebar .text-widget p,
#sidebar .textwidget p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px;
}

#sidebar .text-widget ul {
    border-top: 1px solid #dadada;
    margin: 0 0 20px 0;
}

#sidebar .text-widget blockquote {
    clear: both;
    padding: 5px 0 0 0;
    font-size: 14px;
    color: #666;
}

/* Tabs小组件 */
#sidebar ul.tabs-widget {
    width: 300px;
    margin: 0 0 0 -20px;
}
#sidebar ul.tabs-widget li {
    width: 50%;
    float: left;
    border: 0;
    padding: 0;
    margin: 0 0 20px 0;
}
#sidebar ul.tabs-widget li a {
    text-align: center;
    display: block;
    padding: 12px 0;
    background-color: #6e5137;
    background-image: linear-gradient(to bottom, #6e5137, #62462d);
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    opacity: .8;
}
#sidebar ul.tabs-widget li.ui-tabs-active a { opacity: 1; }

/* 底部导航 */
#nav-sidebar-bottom li {
    width: 179px;
    height: 200px;
    float: left;
    border-right: 1px solid #dadada;
}
#nav-sidebar-bottom li a {
    width: 140px;
    height: 219px;
    float: left;
    transition: all .2s ease-in-out;
    padding: 0 20px;
    text-align: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    line-height: 1.6;
}
#nav-sidebar-bottom li a figure {
    width: 50px;
    height: 50px;
    background: #dadada;
    border-radius: 27px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #dadada;
    margin: -25px auto 25px auto;
    transition: all .2s ease-in-out;
}
#nav-sidebar-bottom li a figure img {
    width: 34px;
    height: 34px;
    margin: 8px 0 0 0;
}
#nav-sidebar-bottom li a:hover figure {
    background: #09F;
    box-shadow: 0 0 0 2px #09F;
}
#nav-sidebar-bottom li a:hover { background: #fff; }
#nav-sidebar-bottom .title-nav-sidebar {
    display: block;
    font-size: 12px;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

/* ================================================
   16. 新闻样式
   ================================================ */
.news-container {
    margin: 0 48px 40px 0;
    width: 220px;
    float: left;
    position: relative;
}
.news-container.last { margin-right: 0; }
.news-container figure img {
    border-top: 3px solid #09F;
    margin: 0 0 5px 0;
}
.news-container h2.title-news {
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.news-container header p {
    margin: 0 0 3px 0;
    font-size: 11px;
}
.news-container header p a {
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}
.news-container h2.title-news a {
    color: #222;
    text-decoration: none;
}
.news-container h2.title-news a:hover { color: #09F; }
.news-container header { margin: 0 0 15px 0; }
.news-container header time {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.news header aside {
    width: 340px;
    float: left;
}
.news header aside.no-featured {
    width: 100%;
    float: none;
}
.news header figure {
    width: 351px;
    float: right;
}
.news header figure img {
    border: 1px solid #fff;
    box-shadow: 2px 2px 0 0 #dadada;
}

#news-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    padding: 0 0 14px 0;
    border-bottom: 1px solid #dadada;
}
.news header p {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #dadada;
}

#link-category {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}
#link-category a { text-decoration: none; }

#blog-time time {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    float: left;
    padding: 0 7px 0 0;
    border-right: 1px solid #999;
    margin: 0 7px 0 0;
}

#link-comment-header {
    float: left;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
}
#link-comment-header:hover { text-decoration: underline; }

#social-link {
    list-style: none;
    margin: 10px 0 25px 0;
}
#social-link li {
    float: left;
    margin: 0 10px 0 0;
}

.news {
    border-bottom: 1px solid #dadada;
    margin: 0 0 25px 0;
}

/* 学院新闻div列表 */
.college-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.college-news-item {
    background: #fdfdfd;
    border: 1px solid #f0f3f5;
    border-radius: 8px;
    padding: 15px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.college-news-item:hover {
    background: #ecf5ff;
    border-color: #09f;
}

.college-news-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
}

.college-news-item h4 a {
    color: #444;
    text-decoration: none;
}

.college-news-item h4 a:hover {
    color: #09F;
}

.college-news-date-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    flex: 0 0 auto;
}

/* 学院公告响应式网格 */
.college-notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 16px;
}

.college-notice-item {
    display: flex;
    flex-direction: column;
    background: #fdfdfd;
    border: 1px solid #f0f3f5;
    border-left: 3px solid #09F;
    border-radius: 0;
    padding: 18px 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.college-notice-item:hover {
    background: #ecf5ff;
    border-color: #09f;
}

.college-notice-item h4 {
    order: 2;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    line-height: 1.5;
}

.college-notice-item h4 a {
    color: #222;
    text-align: left;
    text-decoration: none;
}

.college-notice-item h4 a:hover {
    color: #09F;
}

.college-notice-item .date-news {
    order: 1;
    display: block;
    margin: 0 0 8px 0;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    color: #09F;
    line-height: 1.2;
}

.college-notice-item .date-news span {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.college-notice-item .notice-date-icon {
    display: none;
}

@media (max-width: 1200px) {
    .college-notice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .college-notice-item {
        padding: 14px 16px;
    }

    .college-notice-item .date-news {
        font-size: 13px;
    }

    .college-notice-item h4 {
        font-size: 15px;
    }
}

.notice-date-icon {
    width: 14px;
    height: 14px;
    vertical-align: text-bottom;
}

/* ================================================
   17. 事件样式
   ================================================ */
#slider-event {
    margin: 0 0 50px 0;
    height: 295px;
    position: relative;
}

#main-title.event-title {
    float: left;
    margin-top: 0;
}
#title-month {
    float: right;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    margin-top: 8px;
}

.title-event-one a {
    text-decoration: none;
    color: #222;
}
.title-event-one a:hover { color: #7b1733; }

.content-faq { padding: 20px 0 0 10px; }

.content-home .static-page h3 { color: #79aea6; }

/* ================================================
   18. 页面包装导航
   ================================================ */
#breadcrumbs { margin: 25px 0; }
#breadcrumbs div {
    height: 34px;
    float: left;
}
#breadcrumbs div a {
    height: 24px;
    float: left;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 0 0 0;
}
#breadcrumbs div a.icon-home {
    width: 34px;
    height: 34px;
    background: #09F url(../images/icon-home.png) no-repeat 50% 8px;
    text-indent: -9999px;
    background-size: 17px 17px;
    padding: 0;
}
#breadcrumbs div a.icon-home:hover { opacity: .7; }
#breadcrumbs div .arrow {
    width: 8px;
    height: 14px;
    background: url(../images/arrow-breadcrumbs.png) no-repeat;
    background-size: 8px 14px;
    text-indent: -9999px;
    margin: 9px 12px 0 12px;
    float: left;
}
.last-breadcrumbs {
    float: left;
    font-size: 14px;
    text-transform: uppercase;
    color: #09F;
    margin: 10px 0 0 0;
}
#breadcrumbs div a:hover { color: #09F; }

/* ================================================
   20. 布局辅助类
   ================================================ */
#main-content .colhalf {
    width: 341px;
    float: left;
    display: inline;
    margin-right: 50px;
}
#full-width .colhalf {
    width: 537px;
    float: left;
    display: inline;
    margin-right: 50px;
}
#main-content .colhalf.lastcol,
#full-width .colhalf.lastcol { margin-right: 0; }

.fr { float: right; margin-right: 30px; display: inline; }
.fl { float: left; display: inline; }

.separator {
    border: 1px solid #ececec;
    height: 4px;
    margin: 0 0 25px 0;
    background: #f3f3f3;
    clear: both;
}
.separator a {
    float: right;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 300;
    background: #fff;
    padding: 3px 0 3px 5px;
    margin: -10px 0 0 0;
}

/* ================================================
   22. 页脚样式
   ================================================ */
#main-footer {
    position: relative;
    width: 100%;
    min-width: 1200px;
}

#footer-container {
    width: 1125px;
    margin: 0 auto;
    padding: 0 30px;
}

#sidebar-footer-left,
#sidebar-footer-middle {
    width: 341px;
    float: left;
    margin: 25px 50px 0 0;
}

#footer-address {
    background: #fff;
    width: 301px;
    float: right;
    margin: -5px 0 0 0;
    padding: 30px 20px 25px 20px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}
#footer-address,
#footer-address p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}
#footer-address p { margin: 0 0 15px 0; }
#footer-address p strong {
    font-size: 14px;
    color: #222;
}

#footer-copyright {
    width: 100%;
    height: 170px;
    background: #09F;
    min-width: 1200px;
    position: relative;
    bottom: auto;
}
#footer-copyright-content {
    width: 1125px;
    height: 70px;
    margin: 0 auto;
    padding: 0 30px;
}

#logo-footer {
    width: 230px;
    height: 60px;
    float: left;
    margin: 6px 30px 0 0;
}

.text-address {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin: 28px 10px 0 0;
    line-height: 1.8
}

/* 合并 #nav-footer 的所有样式 */
#nav-footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    margin: 28px 0 0 0;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 0;
    list-style: none;
    font-size: 14px;
    font-weight: bold;
    border-left: none;
}
#nav-footer li {
    float: none;
    display: block;
    width: 100%;
    height: 15px;
    margin: 4px 0;
    padding: 0 10px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
    line-height: 1.5;
    border-left: none;
}
#nav-footer li:first-child {
    font-weight: normal;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
}
#nav-footer > li {
    padding-left: 18px;
    position: relative;
    display: flex;
    align-items: center;
}
#nav-footer > li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    line-height: 1;
}
#nav-footer li a {
    display: inline-block;
    padding: 2px 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.5;
}
#nav-footer li a:hover {
    color: #4fc3f7;
    text-shadow: 0 0 8px rgba(79, 195, 247, 0.5);
    text-decoration: none;
}

#text-copyright {
    float: right;
    font-size: 12px;
    color: #fff;
    margin: 28px 0 0 0;
}

/* ================================================
   23. 页脚扩展
   ================================================ */
.footer-info-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.friend-links-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    min-width: 200px;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.friend-links-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.friend-links-section ul li {
    margin: 0;
    padding: 0;
}

.friend-links-section ul li a {
    text-decoration: none;
}

.friend-links-section ul li a:hover {
    text-decoration: underline;
}
.friend-links-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 8px;
    padding: 0;
    line-height: 1.3;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    margin-left: auto;
    margin-top: 40px;
}

.footer-address {
    margin-top: 5px;
}
.footer-address p {
    font-size: 13px;
    color: #fff;
    margin: 0;
    padding: 2px 0;
}
.footer-address p:first-child {
    margin-bottom: 5px;
}

/* ================================================
   24. 文章内容样式
   ================================================ */
.nr {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.nrTitle {
    font-size: 26px;
    color: #1f5781;
    font-weight: bold;
    text-align: center;
}
.SubTitle {
    font-size: 20px;
    color: #1f5781;
    font-weight: bold;
    text-align: center;
}
.daty {
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    text-align: center;
    font-size: 14px;
}
.nrDate, .nrAuthor, .nrClick {
    font-size: 9pt;
    color: #f00;
}
.nrContent {
    padding: 20px;
    line-height: 1.8;
    font-size: 16px;
}
.nrClose { font-size: 9pt; }

.tpcontent {
    font-weight: bold;
    font-size: 11pt;
    color: #2b2b2b;
    font-family: "Microsoft YaHei", "微软雅黑", SimSun, "宋体";
}
.cytpstyle {
    font-size: 9pt;
    color: #2b2b2b;
    font-family: "Microsoft YaHei", "微软雅黑", SimSun, "宋体";
}

.fjlink { color: #444; }
.fjlink:hover { color: #09f; }

.link {
    width: 1170px;
    margin: 60px auto 100px;
    position: relative;
    height: 148px;
    border: 1px solid #ccc;
    border-width: 1px 0;
}
.link .title {
    position: absolute;
    width: 204px;
    left: 50%;
    margin-left: -102px;
    top: -14px;
    background-color: #fff;
    color: #959595;
    text-align: center;
    font-size: 18px;
    font-family: 'Microsoft YaHei';
}

#banner_en {
    position: relative;
    width: 100%;
    height: 510px;
}

/* ================================================
   25. Swiper轮播
   ================================================ */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
}
.swiper-pagination-bullet-active { background: #0099ff; }

/* ================================================
   26. 其他工具类
   ================================================ */
.titlestyle1172768 {
    color: #222222;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}
.summarystyle1172768 {
    line-height: 150%;
    color: #222222;
    font-size: 9pt;
}

/* ================================================
   27. 响应式 - Retina屏幕 (合并重复代码)
   ================================================ */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    #logo img { width: 260px; height: 50px; }
    .slider-tabs.flexslider .slides img { width: 190px; height: 230px; }
    .sidebar-homepage .widget-container ul.news-sidebar li img { width: 123px; height: 94px; }
    .img-history { width: 228px; height: 158px; }
    .news-container figure img { width: 342px; height: 170px; }
    .static-page .content-event img { width: 322px; height: 140px; }
    .static-page .content-event .event-container img { width: 250px; height: 270px; }
    #event-info img { width: 270px; height: 290px; }
    #sidebar .widget-container ul.news-sidebar li img { width: 123px; height: 94px; }
    #sidebar img.testimonial { width: 96px; height: 96px; }
    #sidebar .team-sidebar img { width: 65px; height: 65px; }
    .partner-sidebar img { width: 163px; height: 100px; }
    #logo-footer img { width: 200px; height: 60px; }
}

/* ================================================
   学术信息样式
   ================================================ */
.academic-info-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px;
    box-sizing: border-box;
}

.academic-info-item {
    flex: 1 1 320px;
    min-width: 280px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.academic-info-container .event-date-widget {
    float: left;
    margin-right: 20px;
}

.academic-info-container .event-content-widget {
    float: left;
    width: calc(100% - 81px);
}

.academic-info-container .event-content-widget h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.academic-info-container .event-content-widget h5 a {
    color: #333;
    text-decoration: none;
}

.academic-info-container .event-content-widget h5 a:hover {
    color: #09F;
}

.academic-info-container .academic-meta {
    font-size: 12px;
    line-height: 1.5;
}

.academic-info-container .academic-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0;
}

.academic-info-container .academic-meta-icon {
    width: 14px;
    height: 14px;
}

.academic-info-container .academic-meta-item span {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* ================================================
   主内容排版统一优化
   ================================================ */
#main-content {
    --ui-text-sm: 12px;
    --ui-text-base: 13px;
    --ui-text-title: 16px;
    --ui-line-base: 1.55;
    --ui-line-tight: 1.4;
    --ui-gap-block: 24px;
    --ui-gap-item: 8px;
    --ui-card-padding: 15px;
    --ui-card-bg: #fcfcfc;
    --ui-card-border: #e9eef2;
    --ui-card-hover-bg: #ecf5ff;
    --ui-card-hover-border: #09f;
}

#main-content .sidebar-homepage .widget-container {
    margin-bottom: var(--ui-gap-block);
}

#main-content .widget-title {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 1.3;
}

#main-content .widget-title .more {
    font-size: var(--ui-text-sm);
    line-height: 1.2;
}

#main-content .news-sidebar td,
#main-content .college-news-item,
#main-content .college-notice-item,
#main-content .academic-info-item {
    padding: var(--ui-card-padding);
    border: 1px solid var(--ui-card-border);
    background: var(--ui-card-bg);
}

#main-content .college-notice-item {
    border-left: 3px solid #09F;
}

#main-content .college-news-item:hover,
#main-content .college-notice-item:hover,
#main-content .academic-info-item:hover {
    background: var(--ui-card-hover-bg);
    border-color: var(--ui-card-hover-border);
}

#main-content .widget-container ul.news-sidebar h4,
#main-content .college-news-item h4,
#main-content .college-notice-item h4,
#main-content .academic-info-container .event-content-widget h5 {
    margin: 0 0 var(--ui-gap-item) 0;
    font-size: var(--ui-text-title);
    line-height: var(--ui-line-tight);
    font-weight: 600;
}

#main-content .date-news,
#main-content .academic-info-container .academic-meta,
#main-content .academic-info-container .academic-meta-item span {
    font-size: var(--ui-text-base);
    line-height: var(--ui-line-base);
    color: #5f6b76;
}

#main-content .academic-info-container {
    gap: var(--ui-gap-item);
}

#main-content .academic-info-container .academic-meta-item {
    margin: 3px 0;
}

@media (max-width: 1024px) {
    #main-content {
        --ui-text-sm: 12px;
        --ui-text-base: 13px;
        --ui-text-title: 15px;
        --ui-gap-block: 20px;
        --ui-card-padding: 14px;
    }

    #main-content .widget-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .college-news-slider-wrap {
        width: 100%;
        max-width: 100%;
    }
}

.college-news-slider-wrap {
    width: 40%;
}