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

.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;}
/* ===== 图片翻页列表组件 ===== */

.image-page-list {
    width: 100%;
    box-sizing: border-box;}

/* 图片网格 */
.image-page-grid {
    width: 100%;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 25px;

    list-style: none;}

/* 单个图片项 */
.image-page-item {
    margin: 0;
    padding: 0;
    list-style: none;

    background: #fff;}

/* 链接 */
.image-page-item a {
    display: block;
    color: #333;
    text-decoration: none;}

.image-page-item a:hover {
    color: #00528E;
    text-decoration: none;}

/* 图片容器 */
.image-page-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f3f3f3;}

/* 图片 */
.image-page-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;

    transition: transform 0.3s ease;}

/* hover 图片轻微放大 */
.image-page-item a:hover .image-page-img img {
    transform: scale(1.04);}

/* 标题 */
.image-page-title {
    min-height: 50px;

    padding: 10px 15px;
    margin: 0;

    background: #f8f8f8;

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

    color: #333;

    text-align: center;

    box-sizing: border-box;}

.image-page-item a:hover .image-page-title {
    color: #00528E;}

/* 分页 */
.image-page-bar {
    margin-top: 20px;
    text-align: center;}

/* ===== 响应式 ===== */

@media (max-width: 1200px) {
    .image-page-grid {
        grid-template-columns: repeat(2, 1fr);}
}

@media (max-width: 768px) {
    .image-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;}

    .image-page-img {
        height: 220px;}
}
