/* ==========================================
   全站基础重置 & 现代化排版
========================================== */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: "Microsoft YaHei", "微软雅黑", sans-serif !important; }
body, html { background: #f4f6f9; } /* 极浅的蓝灰底色，提升白色卡片的对比度 */
body { word-break: break-all; font-size: 15px; line-height: 1.8; color: #333333; }
button, img, em { border: 0; }
img { vertical-align: middle; max-width: 100%; }
li, ul { list-style: none; }
i, em { font-style: normal; font-weight: normal; }
a { text-decoration: none; outline: none; cursor: pointer; color: #333333; transition: all 0.3s ease; }
a:hover { text-decoration: none; color: #0056b3; } /* 全局悬停改为职教深蓝 */
input, textarea { outline: none; }
table { border-collapse: collapse; border-spacing: 0; }
label { display: block; }

/* 常用辅助类 */
.clearfix::after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clear { clear: both; }
.center { text-align: center; }
.bold { font-weight: bold; }
.ell { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.fl { float: left; }
.fr { float: right; }
.hide { display: none; }
.allWidth { width: 1200px; margin: 0 auto; position: relative; }

/* ==========================================
   一、头部区域 (通栏自适应)
========================================== */
.logoBox {
    width: 100%;
    height: auto;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: block;
}
.logoBox img {
    width: 100%;
    display: block;
}

/* ==========================================
   二、导航栏 (对标主站：职教深蓝底 + 亮金黄交互)
========================================== */
.nav {
    background: #0056b3; /* 提取自主站的深蓝色 */
    height: 54px;
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
    position: relative;
    z-index: 10;
}
.navbar_ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
    gap: 0;
}
.navbar_ul > li { 
    position: relative; 
    flex: 1; /* 均匀平铺 */
}
.navbar_ul > li > a {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold; /* 加粗使得导航栏更有分量 */
    padding: 0;
    text-align: center;
    line-height: 54px;
    display: block;
    transition: all 0.2s;
}

/* 导航悬停与激活状态 - 采用主站的亮金黄色 */
.navbar_ul > li > a.action, .navbar_ul > li:hover > a {
    color: #ffffff;
    background: #ffb800; /* 主站选中时的亮金黄色 */
}

/* 移除旧版的下划线 */
.navbar_ul > li > a.action::after, .navbar_ul > li:hover > a::after {
    display: none; 
}

/* 下拉菜单 */
.navbar_ul .menu {
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    min-width: 160px;
    background: #ffffff;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 3px solid #ffb800; /* 顶部金黄线条呼应 */
}
.navbar_ul > li:hover .menu { display: block; }
.navbar_ul .menu li { line-height: 42px; border-bottom: 1px solid #f0f4f8; }
.navbar_ul .menu li:last-child { border-bottom: none; }
.navbar_ul .menu li a {
    color: #444444;
    font-size: 14px;
    padding: 0 20px;
    text-align: center;
    font-weight: normal;
    display: block;
}
.navbar_ul .menu li:hover a {
    color: #ffffff;
    background: #0056b3; /* 下拉悬停使用深蓝 */
}

/* ==========================================
   三、主页内容区块 (大方、微阴影、现代化)
========================================== */
.one_floor { margin-top: 35px; }
.two_floor { margin: 20px 0 40px; }

/* 模块标题 */
.common_title {
    height: 46px;
    line-height: 46px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0; 
}
.common_title span.normal {
    height: 46px;
    color: #0056b3; /* 标题使用深蓝色 */
    font-weight: bold;
    font-size: 22px;
    float: left;
    position: relative;
    padding-left: 14px;
}
/* 左侧加入黄色点缀线，经典蓝黄搭配 */
.common_title span.normal::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 26px;
    background: #ffb800; 
    border-radius: 3px;
}
.common_title span.normal::after { display: none; }
.common_title span.normal i { display: none; }

.common_title .more { float: right; }
.common_title .more a { color: #888888; font-size: 14px; }
.common_title .more a:hover { color: #ffb800; font-weight: bold; }

/* 左右分栏尺寸 */
.jsnr_tabs { width: 580px; }
.notice_tabs { width: 580px; }

/* 通用白色内容卡片 */
.list_cover {
    background: #ffffff;
    border-radius: 8px; /* 增加圆角 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* 增加柔和阴影 */
    border: 1px solid #ebeef5;
    overflow: hidden;
    transition: all 0.3s;
}
.list_cover:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* 悬浮加深阴影 */
    transform: translateY(-2px); /* 悬浮微动效 */
}

/* 简介列表排版 */
.jsnr_tabs .list_cover ul { padding: 25px 30px; height: 320px; }
.jsnr_tabs .list_cover ul li { font-size: 15px; line-height: 1.9; color: #444444; text-align: justify; }
.jsnr_tabs .list_cover a.read-more { color: #0056b3 !important; font-weight: bold; margin-left: 5px; }
.jsnr_tabs .list_cover a.read-more:hover { color: #ffb800 !important; text-decoration: underline; }

/* 视频/轮播图排版 */
.notice_tabs .list_cover .videos { height: 320px; width: 100%; }
.notice_tabs .list_cover .videos video { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; }

/* 底部滚动图展示 */
.show_tabs .list_cover { width: 1200px; padding: 20px; }
.show_tabs .list_cover ul li {
    float: left; width: 220px; height: 160px; margin-right: 18px; position: relative; border-radius: 6px; overflow: hidden; border: 1px solid #f1f5f9;
}
.show_tabs .scroll_li img { width: 100%; height: 100%; transition: all 0.5s ease; }
.show_tabs .scroll_li:hover img { transform: scale(1.08); }
.show_tabs .scroll_li p {
    width: 100%; line-height: 36px; font-size: 14px; color: #fff; position: absolute; left: 0; bottom: 0; background: rgba(0, 86, 179, 0.8); text-align: center; backdrop-filter: blur(2px);
}

/* ==========================================
   四、子页面公共样式
========================================== */
.page_con { padding: 40px 0; overflow: hidden; } /* 清除浮动防止塌陷 */

/* 左侧菜单 (包含最强防护，防止文字变灰) */
.left_page { width: 246px; float: left; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.left_page .page_title {
    height: 56px; line-height: 56px; background: #0056b3; font-size: 18px; text-align: center; font-weight: bold; letter-spacing: 1px;
}
.left_page .page_title a { color: #ffffff !important; display: block; } /* 标题连接强制变白 */

.left_page ul { background: #fff; border: 1px solid #ebeef5; border-top: none; border-radius: 0 0 8px 8px; overflow: hidden; }
.left_page ul li { border-bottom: 1px solid #f1f5f9; }

/* 默认状态 */
.left_page ul li a { 
    display: block; background: #ffffff; color: #444444; font-size: 15px; padding: 15px 20px; text-align: center; transition: all 0.2s; 
}

/* 选中状态与悬停状态 (:hover) 采用亮金黄色 */
.left_page ul li a.normal, 
.left_page ul li a.active, 
.left_page ul li a.on, 
.left_page ul li a.current,
.left_page ul li a.cur,
.left_page ul li a:hover { 
    background: #ffb800 !important; color: #ffffff !important; font-weight: bold; 
}

/* 终极防线 */
.left_page ul li a.normal *, 
.left_page ul li a.active *, 
.left_page ul li a.on *, 
.left_page ul li a.current *,
.left_page ul li a.cur *,
.left_page ul li a:hover * { color: #ffffff !important; }

/* 右侧内容区 */
.right_page {
    width: 920px; float: right; min-height: 600px; background: #fff; padding: 40px 45px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.03); border: 1px solid #ebeef5;
}
.right_page .address { height: 40px; line-height: 40px; border-bottom: 1px solid #ebeef5; margin-bottom: 30px; }
.right_page .address .add_title { font-size: 22px; color: #0056b3; float: left; font-weight: bold; }
.right_page .address .local { float: right; color: #888888; font-size: 14px;}
.right_page .address .local a { color: #888888; }
.right_page .address .local a:hover { color: #0056b3; }
.right_page .address .local a:last-child { color: #0056b3; font-weight: bold; }

/* 图文列表 */
.images_list { margin-top: 20px; }
.images_list li {
    width: 260px; height: 230px; margin: 0 20px 30px 0; border-radius: 8px; border: 1px solid #ebeef5; overflow: hidden; transition: all 0.3s;
}
.images_list li:nth-child(3n) { margin-right: 0; }
.images_list li img { width: 100%; height: 180px; object-fit: cover; border-bottom: 1px solid #f1f5f9; }
.images_list li p { line-height: 50px; font-size: 15px; text-align: center; color: #333333; }
.images_list li:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); border-color: #ffb800; transform: translateY(-3px); }
.images_list li:hover p { color: #ffb800; font-weight: bold; }

/* ==========================================
   列表样式 (加入引导圆点，增加条理性)
========================================== */
.page_list li {
    line-height: 50px;
    border-bottom: 1px dashed #d1d5db;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
}
/* 列表左侧增加深蓝色修饰圆点 */
.page_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 23px;
    width: 5px;
    height: 5px;
    background: #0056b3;
    border-radius: 50%;
}
.page_list li a { color: #333333; float: left; transition: all 0.2s; width: calc(100% - 100px); }
.page_list li i { float: right; color: #888888; font-size: 14px; }
.page_list li:hover a { color: #0056b3; padding-left: 5px; }

/* ==========================================
   分页样式
========================================== */
.page_num { margin: 40px 0; text-align: center; }
.page_num .page { display: inline-block; }

.page_num .page > li { float: left; margin: 0 4px; padding: 0 14px; height: 36px; line-height: 34px; background: #ffffff; border: 1px solid #d1d5db; border-radius: 4px; color: #888888; }
.page_num .page > li > a { display: block; margin: 0 -14px; padding: 0 14px; color: #444444; border-radius: 4px; transition: all 0.2s; }
.page_num .page > li > a:hover { color: #ffffff; background: #0056b3; border-color: #0056b3; }

.page_num .page > li.pageBtn { background: transparent; border: none; padding: 0; }
.page_num .page > li.pageBtn > a { float: left; margin: 0 4px; padding: 0 14px; height: 36px; line-height: 34px; background: #fff; border: 1px solid #d1d5db; color: #444444; border-radius: 4px; transition: all 0.2s; }
.page_num .page > li.pageBtn > a:hover,
.page_num .page > li.pageBtn > a.active { background: #0056b3; color: #fff; border-color: #0056b3; }

.page_num .page > li.currPage,
.page_num .page > li.allPage { background: transparent; border: none; color: #888888; padding: 0; margin-left: 10px; }
.page_num .page > li span { color: #0056b3; font-weight: bold; margin: 0 3px; }

/* ==========================================
   详情正文
========================================== */
.con_text .tit h4 { font-size: 26px; color: #0056b3; text-align: center; margin: 10px 0 25px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; font-weight: bold; }
.con_text .text { font-size: 16px; line-height: 2; color: #333333; text-align: justify; }
.con_text .text img { max-width: 100%; border-radius: 6px; margin: 20px auto; display: block; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.con_text .text table { width: 100%; margin: 20px 0; border-collapse: collapse; }
.con_text .text th { background: #f0f4f8; font-weight: bold; }
.con_text .text th, .con_text .text td { padding: 12px 15px; border: 1px solid #d1d5db; }
.text_next { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e2e8f0; line-height: 2; color: #666; }
.text_next a { color: #0056b3; margin-left: 5px; }

/* ==========================================
   五、底部区域
========================================== */
.footer { width: 100%; background: #004a99; border-top: 4px solid #ffb800; padding: 35px 0; margin-top: 40px; } /* 采用沉稳的深蓝底色+金黄色顶边框 */
.foot_con p { text-align: center; color: #d1e2f3; font-size: 14px; line-height: 28px; }
.foot_con p a { color: #d1e2f3; }
.foot_con p a:hover { color: #ffffff; font-weight: bold; }
