/* ===== 搜索组件样式 ===== */

.search-form {
    display: flex;
    align-items: center;}

.search-input {
    width: 160px;
    height: 28px;}

.search-keyword {
    width: 160px;
    height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.92);
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    outline: none;}

.search-keyword:focus {
    border-color: #fff;
    background: #fff;}

.search-button {
    width: 32px;
    height: 28px;
    margin-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;}

.search-submit {
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: block;}
/* ===== 顶部主导航组件 ===== */

#c1159814.nav {
    width: 100%;
    height: 50px;}

/* 一级导航列表：先按 1200px 固定版心处理 */
#c1159814.nav > ul {
    width: 1200px;
    height: 50px;

    margin: 0 auto;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    list-style: none;}

/* 一级栏目 */
#c1159814.nav > ul > li {
    position: relative;

    width: 150px;

    margin: 0;
    padding: 0;

    list-style: none;}

/* 一级栏目链接 */
#c1159814.nav > ul > li > a {
    display: block;

    width: 150px;
    height: 50px;
    line-height: 50px;

    font-size: 20px;
    color: #fff;

    text-align: center;
    text-decoration: none;}

/* 一级栏目 hover */
#c1159814.nav > ul > li:hover > a {
    background: #016bb7;
    color: #fff;}

/* 当前栏目 */
#c1159814.nav > ul > li > a#current {
    background: #004161;
    font-weight: bold;
    color: #fff;}

/* 二级菜单 */
#c1159814.nav > ul > li > ul {
    display: none;

    position: absolute;
    left: 0;
    top: 50px;

    width: 150px;

    margin: 0;
    padding: 0;

    list-style: none;

    z-index: 9999;}

/* hover 显示二级菜单 */
#c1159814.nav > ul > li:hover > ul {
    display: block;}

/* 二级栏目 */
#c1159814.nav > ul > li > ul > li {
    width: 150px;

    margin: 0;
    padding: 0;

    min-height: 35px;

    border-bottom: 1px solid #004161;

    list-style: none;}

/* 二级栏目链接 */
#c1159814.nav > ul > li > ul > li > a {
    display: block;

    width: 150px;
    min-height: 35px;
    line-height: 35px;

    text-align: center;

    font-size: 18px;

    color: #fff;
    background: #006699;

    text-decoration: none;}

/* 二级栏目 hover */
#c1159814.nav > ul > li > ul > li > a:hover {
    background: #016bb7;
    color: #fff;}
/* ===== 首页新闻动态模块 ===== */

.news-home-layout {
    width: 100%;

    padding-top: 34px;

    display: flex;
    justify-content: space-between;
    align-items: stretch;

    gap: 36px;}

/* ===== 左侧三张新闻卡片 ===== */

.news-featured {
    width: 65%;

    display: flex;

    gap: 22px;}

.news-featured-item {
    width: 33.333%;

    background: #fff;

    overflow: hidden;

    box-shadow: 0 2px 12px rgba(0,0,0,0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;}

/* hover 效果 */
.news-featured-item:hover {
    transform: translateY(-4px);

    box-shadow: 0 8px 24px rgba(0,0,0,0.14);}

/* 卡片整体链接 */
.news-featured-item a {
    display: flex;
    flex-direction: column;

    height: 100%;

    color: #222;

    text-decoration: none;}

/* 新闻图片区域 */
.news-featured-img {
    height: 230px;

    overflow: hidden;

    background: #f3f3f3;}

/* 新闻图片 */
.news-featured-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.35s ease;}

/* 图片 hover 放大 */
.news-featured-item:hover .news-featured-img img {
    transform: scale(1.04);}

/* 新闻标题 */
.news-featured-title {
    padding: 14px 18px 6px;

    font-size: 17px;
    line-height: 26px;

    color: #222;

    font-weight: bold;

    max-height: 80px;

    overflow: hidden;}

/* 标题 hover */
.news-featured-item:hover .news-featured-title {
    color: #00528e;}

/* 新闻日期 */
.news-featured-date {
    padding: 0 18px 14px;

    color: #888;

    font-size: 12px;
    line-height: 18px;}

/* ===== 右侧新闻列表 ===== */

.news-list-right {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;}

/* 单条新闻 */
.news-list-item {
    display: flex;

    padding-bottom: 8px;
    margin-bottom: 8px;

    border-bottom: 1px solid #e5e5e5;}

/* 最后一条新闻 */
.news-list-item:last-child {
    margin-bottom: 0;}

/* 日期区域 */
.news-list-date {
    width: 66px;

    flex-shrink: 0;

    text-align: center;

    color: #00528e;}

/* 日期数字 */
.news-list-date strong {
    display: block;

    font-size: 22px;
    line-height: 30px;

    font-weight: normal;}

/* 日期年月 */
.news-list-date span {
    display: block;

    font-size: 11px;

    color: #666;}

/* 新闻文字区域 */
.news-list-text {
    flex: 1;

    padding-left: 16px;}

/* 新闻标题 */
.news-list-text h3 {
    font-size: 15px;
    line-height: 22px;

    font-weight: normal;

    margin-bottom: 4px;

    height: 25px;

    overflow: hidden;}

/* 新闻标题链接 */
.news-list-text h3 a {
    color: #222;

    text-decoration: none;}

/* hover */
.news-list-text h3 a:hover {
    color: #00528e;

    text-decoration: none;}

/* 新闻摘要 */
.news-list-text p {
    font-size: 13px;
    line-height: 20px;

    color: #777;

    height: 22px;

    overflow: hidden;}

/* 全部链接 hover 不显示下划线 */
.news-featured-item a:hover,
.news-list-text h3 a:hover {
    text-decoration: none;}
/* 整体区域 */
.notice {
    width: 100%;
    height: auto;
    margin-top: 40px;}

/* 单条通知 */
.notice-list {
    width: 100%;
    min-height: 65px;

    margin-bottom: 15px;

    display: flex;
    align-items: flex-start;

    overflow: hidden;}

/* 左侧日期区域 */
.notice-list-left {
    width: 69px;
    height: 65px;

    flex: 0 0 69px;

    position: relative;

    font-size: 14px;
    text-align: center;

    background: #0062A9;}

/* 顶部橙色横条 */
.notice-list-left::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: #F5A400;}

/* 顶部中间小三角 */
.notice-list-left::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 4px;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #F5A400;}

/* 月-日 */
.notice-list-left h3 {
    line-height: 33px;

    font-size: 16px;
    font-weight: normal;

    color: #ffffff;

    margin: 0;}

/* 年份 */
.notice-list-left p {
    line-height: 32px;

    color: #ffffff;

    margin: 0;}

/* 右侧内容区域 */
.notice-list-right {
    flex: 1;
    min-width: 0;

    height: 65px;

    margin-left: 31px;

    overflow: hidden;}

/* 链接整体 */
.notice-list-right a {
    display: block;

    color: #333333;

    text-decoration: none;}

/* hover */
.notice-list-right a:hover {
    color: #00528E;

    text-decoration: none;}

/* 标题 */
.notice-list-right h3 {
    line-height: 33px;

    font-size: 16px;
    font-weight: normal;

    color: #000000;

    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;}

/* 摘要 */
.notice-list-right p {
    line-height: 32px;

    color: #505050;

    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;}
/* =========================================================
   通知公告 / 媒体聚焦列表组件
========================================================= */

/* 整体区域 */
.notice {
    width: 100%;
    height: auto;
    margin-top: 40px;}

/* 单条通知 */
.notice-list {
    width: 100%;
    min-height: 65px;

    margin-bottom: 15px;

    display: flex;
    align-items: flex-start;

    overflow: hidden;}

/* 左侧日期区域 */
.notice-list-left {
    width: 69px;
    height: 65px;

    flex: 0 0 69px;

    position: relative;

    font-size: 14px;
    text-align: center;

    background: #0062A9;}

/* 顶部橙色横条 */
.notice-list-left::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: #F5A400;}

/* 顶部中间小三角 */
.notice-list-left::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 4px;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #F5A400;}

/* 月-日 */
.notice-list-left h3 {
    line-height: 33px;

    font-size: 16px;
    font-weight: normal;

    color: #ffffff;

    margin: 0;}

/* 年份 */
.notice-list-left p {
    line-height: 32px;

    color: #ffffff;

    margin: 0;}

/* 右侧内容区域 */
.notice-list-right {
    flex: 1;
    min-width: 0;

    height: 65px;

    margin-left: 31px;

    overflow: hidden;}

/* 链接整体 */
.notice-list-right a {
    display: block;

    color: #333333;

    text-decoration: none;}

/* hover */
.notice-list-right a:hover {
    color: #00528E;

    text-decoration: none;}

/* 标题 */
.notice-list-right h3 {
    line-height: 33px;

    font-size: 16px;
    font-weight: normal;

    color: #000000;

    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;}

/* 摘要 */
.notice-list-right p {
    line-height: 32px;

    color: #505050;

    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;}
