* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: #f4f8f2;
}

body {
    margin: 0;
    background: #f4f8f2;
    color: #26352d;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

img,
video,
iframe {
    max-width: 100%;
}

.wrap {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 20;
    color: #fff;
    background: linear-gradient(135deg, #074d30 0%, #0d7447 56%, #0b5f3a 100%);
    box-shadow: 0 14px 36px rgba(8, 65, 39, .18);
}

.site-header:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 34%, rgba(197, 217, 143, .16));
}

.header-main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 150px;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 310px;
    max-height: 78px;
    object-fit: contain;
}

.headline {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

.nav-toggle {
    display: none;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
}

.site-nav {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(5, 67, 40, .72);
    backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    min-height: 60px;
    gap: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.nav-item {
    position: relative;
}

.site-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 18px;
    color: rgba(255, 255, 255, .95);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.site-nav .nav-link:hover,
.nav-item:hover > .nav-link {
    background: #fff;
    color: #0b6b42;
    box-shadow: inset 0 -3px 0 #bfdc71;
}

.sub-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(19, 105, 67, .12);
    border-radius: 0 0 10px 10px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(7, 63, 38, .18);
}

.nav-item:hover .sub-nav {
    display: block;
}

.sub-nav a {
    display: block;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 7px;
    color: #315242;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

.sub-nav a:hover {
    background: #eef7ec;
    color: #0b6b42;
}

.top-search {
    display: flex;
    align-items: center;
    flex: 0 0 230px;
    margin-left: auto;
}

.top-search input {
    width: 100%;
    min-width: 0;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    background: rgba(255, 255, 255, .11);
    color: #fff;
    padding: 0 12px 0 16px;
    outline: none;
}

.top-search input::placeholder {
    color: rgba(255, 255, 255, .78);
}

.top-search button {
    flex: 0 0 auto;
    min-width: 58px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-left: 0;
    border-radius: 0 18px 18px 0;
    background: #e8f3c9;
    color: #0b5f3a;
    padding: 0 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.hero {
    background: #082a1c;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 320px;
    max-height: 520px;
    aspect-ratio: 12 / 5;
    background: #082a1c;
}

.hero-item {
    position: absolute;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #082a1c;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-item:first-child {
    display: block;
}

.hero-item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 31, 20, .56), rgba(3, 31, 20, .14) 56%, rgba(3, 31, 20, .36));
}

.hero-caption {
    position: absolute;
    left: max(40px, calc((100% - 1200px) / 2 + 24px));
    right: max(40px, calc((100% - 1200px) / 2 + 24px));
    bottom: 44px;
    z-index: 2;
    display: block;
    max-width: 760px;
    color: #fff;
}

.hero-caption strong {
    display: block;
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .3);
}

.hero-caption em {
    display: block;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    font-style: normal;
    line-height: 1.75;
}

.hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .56);
    cursor: pointer;
}

.hero-dot.active {
    width: 30px;
    background: #d9eda4;
}

main {
    display: block;
}

.home-top-grid,
.home-mid-grid,
.home-bottom-grid {
    display: grid;
    gap: 22px;
}

.home-top-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
    margin-top: 30px;
}

.home-mid-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-bottom-grid {
    grid-template-columns: minmax(0, 1fr);
}

.home-space {
    height: 22px;
}

.panel-box,
.detail-card,
.page-main,
.side-nav {
    border: 1px solid rgba(25, 96, 61, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(24, 72, 48, .08);
}

.panel-box {
    overflow: hidden;
}

.section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 20px;
    border-bottom: 1px solid #e4eee2;
    background: linear-gradient(90deg, #f9fcf6, #fff);
}

.section-title:before {
    content: "";
    width: 5px;
    height: 24px;
    margin-right: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0c7b49, #bfdc71);
}

.section-title h2 {
    flex: 1;
    margin: 0;
    color: #0b6b42;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.section-title h2 a {
    color: #0b6b42;
}

.section-more {
    flex: 0 0 auto;
    color: #6b806f;
    font-size: 14px;
}

.section-more:hover,
.more-link:hover {
    color: #0b6b42;
}

.video-body {
    padding: 18px;
    background: #f7faf4;
}

.home-video-player,
.empty-block {
    display: block;
    width: 100%;
    height: 340px;
    border-radius: 8px;
    background: #111;
}

.empty-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #edf5ea, #f9fbf6);
    color: #758277;
}

.intro-body {
    padding: 22px 24px 26px;
    color: #3f5147;
    font-size: 15px;
    line-height: 1.95;
}

.intro-body p {
    margin: 0 0 18px;
}

.more-link,
.btn-link {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 18px;
    background: #eaf5e6;
    color: #0b6b42;
    padding: 0 16px;
    font-weight: 700;
}

.btn-link {
    margin: 10px 10px 0 0;
    background: #0b6b42;
    color: #fff;
}

.btn-link:hover {
    background: #085536;
}

.link-list,
.report-list,
.summary-stack,
.article-list,
.side-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.link-list li,
.report-list li,
.summary-stack li {
    border-bottom: 1px dashed #d8e4d5;
}

.link-list li:last-child,
.report-list li:last-child,
.summary-stack li:last-child {
    border-bottom: 0;
}

.link-list a,
.report-list a,
.summary-stack a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 20px;
    color: #314438;
}

.link-list a:hover,
.report-list a:hover,
.summary-stack a:hover {
    background: #f2f8ef;
    color: #0b6b42;
    transform: translateX(2px);
}

.apply-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
}

.apply-list-grid li {
    min-width: 0;
}

.apply-list-grid a {
    min-height: 42px;
    padding: 0 14px;
}

.apply-list-grid .index {
    flex-basis: 34px;
}

.numbered-list .index,
.report-list .date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    height: 24px;
    border-radius: 12px;
    background: #0b6b42;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.report-list .date {
    background: #dbeaa5;
    color: #315226;
}

.summary-stack a {
    min-height: 52px;
    font-weight: 700;
}

.summary-stack a:before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bfdc71;
    box-shadow: 0 0 0 4px rgba(191, 220, 113, .22);
}

.page-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 44px;
}

.side-nav {
    overflow: hidden;
    align-self: start;
}

.side-nav h3 {
    margin: 0;
    padding: 20px 22px;
    background: linear-gradient(135deg, #0b6b42, #138151);
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
}

.side-nav a {
    display: block;
    padding: 14px 22px;
    border-bottom: 1px solid #e6eee3;
    color: #384b40;
}

.side-nav a:hover,
.side-nav a.active {
    background: #eef7ec;
    color: #0b6b42;
    font-weight: 700;
}

.page-main {
    min-width: 0;
    padding: 30px 34px 34px;
}

.page-main.full {
    grid-column: 1 / -1;
}

.breadcrumb {
    margin-bottom: 18px;
    color: #708175;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #0b6b42;
}

.page-main h1,
.detail-card h1 {
    margin: 0 0 24px;
    color: #173a2a;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
}

.article-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 52px;
    border-bottom: 1px solid #e5eee2;
}

.article-list li:before {
    content: "";
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bfdc71;
}

.article-list a {
    flex: 1;
    min-width: 0;
    color: #30433a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-list a:hover {
    color: #0b6b42;
}

.article-list time {
    flex: 0 0 auto;
    color: #8c998f;
    font-size: 14px;
    white-space: nowrap;
}

.article-body {
    color: #34473d;
    font-size: 16px;
    line-height: 2;
}

.article-body img {
    height: auto;
    border-radius: 8px;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
}

.article-body table td,
.article-body table th {
    border: 1px solid #dfe9dc;
    padding: 8px 10px;
}

.detail-page {
    margin-top: 30px;
    margin-bottom: 44px;
}

.detail-card {
    padding: 36px 42px 42px;
}

.detail-card h1 {
    margin-bottom: 14px;
    text-align: center;
}

.meta {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4eee2;
    color: #7d8d82;
    text-align: center;
    font-size: 14px;
}

.detail-video {
    display: block;
    width: 100%;
    max-height: 520px;
    margin: 0 auto 24px;
    border-radius: 10px;
    background: #111;
}

.pdf-box,
.attach-box {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #e4eee2;
}

.pdf-box h2,
.attach-box h2 {
    margin: 0 0 14px;
    color: #0b6b42;
    font-size: 20px;
}

.pdf-box iframe {
    display: block;
    width: 100%;
    height: 760px;
    border: 1px solid #d9e5d5;
    border-radius: 10px;
    background: #eef4eb;
}

.attach-box a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin: 8px 10px 0 0;
    border-radius: 18px;
    background: #edf7e8;
    color: #0b6b42;
    padding: 0 14px;
    font-weight: 700;
}

.attach-box a:hover {
    background: #0b6b42;
    color: #fff;
}

.search-page {
    display: flex;
    margin-bottom: 22px;
}

.search-page input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 1px solid #cddfc8;
    border-right: 0;
    border-radius: 22px 0 0 22px;
    background: #fff;
    color: #26352d;
    padding: 0 16px;
    outline: none;
}

.search-page input:focus {
    border-color: #0b6b42;
}

.search-page button {
    height: 44px;
    border: 0;
    border-radius: 0 22px 22px 0;
    background: #0b6b42;
    color: #fff;
    padding: 0 26px;
    font-weight: 700;
    cursor: pointer;
}

.pager {
    margin-top: 24px;
    text-align: center;
}

.pager ul,
.pager ol {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pager a,
.pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border: 1px solid #dce8d8;
    border-radius: 17px;
    background: #fff;
    color: #526358;
    padding: 0 10px;
}

.pager .active span,
.pager a:hover {
    border-color: #0b6b42;
    background: #0b6b42;
    color: #fff;
}

.site-footer {
    margin-top: 36px;
    background: #107b3e;
    color: #fff;
}

.footer-image {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 46px;
    min-height: 168px;
    padding: 34px 0;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    display: block;
    width: auto;
    max-width: 260px;
    max-height: 72px;
    margin-bottom: 14px;
    object-fit: contain;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
}

.footer-text {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.9;
    white-space: pre-line;
}

.footer-right {
    text-align: right;
}

.footer-side-image {
    display: inline-block;
    max-width: 112px;
    max-height: 112px;
    margin-top: 10px;
    border-radius: 6px;
    background: #fff;
}

@media (max-width: 1120px) {
    .wrap {
        width: min(100% - 32px, 1200px);
    }

    .header-main {
        min-height: 128px;
    }

    .brand-logo {
        max-width: 260px;
        max-height: 66px;
    }

    .headline {
        font-size: 23px;
    }

    .nav-inner {
        gap: 12px;
    }

    .nav-menu {
        overflow-x: auto;
    }

    .site-nav .nav-link {
        padding: 0 14px;
    }

    .top-search {
        flex-basis: 190px;
    }

    .home-top-grid,
    .home-mid-grid {
        grid-template-columns: 1fr;
    }

    .home-video-player,
    .empty-block {
        height: 300px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .wrap {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-main {
        min-height: 96px;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .brand-logo {
        max-width: 205px;
        max-height: 58px;
    }

    .headline {
        order: 3;
        flex: 0 0 100%;
        font-size: 16px;
        line-height: 1.55;
        white-space: normal;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .site-nav {
        display: none;
    }

    .site-nav.open {
        display: block;
    }

    .nav-inner {
        display: block;
        min-height: 0;
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .nav-menu {
        display: block;
        overflow: visible;
    }

    .site-nav .nav-link {
        justify-content: flex-start;
        min-height: 44px;
        padding: 0 12px;
        border-radius: 8px;
    }

    .nav-item:hover .sub-nav {
        display: none;
    }

    .nav-item .sub-nav {
        position: static;
        display: block;
        min-width: 0;
        padding: 0 0 6px;
        border: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, .08);
        box-shadow: none;
    }

    .sub-nav a {
        color: rgba(255, 255, 255, .88);
        padding-left: 28px;
        background: transparent;
    }

    .sub-nav a:hover {
        background: rgba(255, 255, 255, .12);
        color: #fff;
    }

    .top-search {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }

    .top-search input {
        background: #fff;
        color: #26352d;
    }

    .top-search input::placeholder {
        color: #7b887e;
    }

    .hero-slider {
        min-height: 220px;
        height: 220px;
        aspect-ratio: auto;
    }

    .hero-caption {
        left: 18px;
        right: 18px;
        bottom: 36px;
    }

    .hero-caption strong {
        font-size: 22px;
    }

    .hero-caption em {
        font-size: 14px;
        line-height: 1.55;
    }

    .home-top-grid,
    .home-mid-grid,
    .home-bottom-grid {
        display: block;
        margin-top: 18px;
    }

    .home-space {
        height: 0;
    }

    .panel-box {
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .section-title {
        min-height: 54px;
        padding: 10px 14px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .video-body,
    .intro-body {
        padding: 14px;
    }

    .home-video-player,
    .empty-block {
        height: 220px;
    }

    .link-list a,
    .report-list a,
    .summary-stack a {
        min-height: 46px;
        padding: 0 14px;
    }

    .apply-list-grid {
        display: block;
    }

    .page-layout {
        display: block;
        margin-top: 18px;
        margin-bottom: 28px;
    }

    .side-nav,
    .page-main,
    .detail-card {
        border-radius: 10px;
    }

    .side-nav {
        margin-bottom: 16px;
    }

    .side-nav h3 {
        padding: 16px;
        font-size: 18px;
    }

    .side-nav a {
        padding: 12px 16px;
    }

    .page-main,
    .detail-card {
        padding: 22px 16px;
    }

    .page-main h1,
    .detail-card h1 {
        font-size: 24px;
    }

    .article-list li {
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .article-list a {
        white-space: normal;
    }

    .article-list time {
        font-size: 12px;
    }

    .article-body {
        font-size: 15px;
        line-height: 1.9;
    }

    .pdf-box iframe {
        height: 520px;
    }

    .search-page button {
        padding: 0 18px;
    }

    .footer-layout {
        display: block;
        padding: 24px 16px;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .footer-logo {
        max-width: 220px;
        max-height: 62px;
    }

    .footer-right {
        text-align: left;
    }

}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 178px;
    }

    .hero-slider,
    .hero-item {
        height: 200px;
    }

    .hero-caption strong {
        font-size: 20px;
    }

    .hero-caption em {
        display: none;
    }

    .home-video-player,
    .empty-block {
        height: 190px;
    }

    .article-list li {
        display: grid;
        grid-template-columns: 7px minmax(0, 1fr);
    }

    .article-list li:before {
        margin-top: 9px;
    }

    .article-list time {
        grid-column: 2;
    }
}

/* Hainan University teaching achievement display theme */
:root {
    --hnu-green: #009b4b;
    --hnu-green-dark: #02743a;
    --hnu-gold: #cc9146;
    --hnu-red: #e60000;
    --hnu-bg: #f5f5f5;
    --hnu-line: rgba(0, 0, 0, .06);
}

html,
body {
    background: var(--hnu-bg);
    color: #0b0b0b;
}

a:hover {
    color: var(--hnu-red);
}

.wrap {
    width: min(1300px, calc(100% - 40px));
}

.site-header {
    color: #222;
    background: #f1f3f1;
    box-shadow: none;
}

.site-header:before {
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background: url("/assets/img/nav-top-right-bg.png") no-repeat center top / 100% 100%;
    opacity: 1;
    filter: none;
    transform: none;
}

.header-main {
    min-height: 150px;
    gap: 8px;
}

.brand-logo {
    max-width: 310px;
    max-height: 94px;
}

.headline {
    padding-left: 6px;
    position: relative;
    color: #003888;
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: .5px;
    text-align: left;
    text-shadow: none;
}

.headline-title {
    display: block;
    position: relative;
    z-index: 1;
    color: var(--hnu-green);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.08;
    text-shadow: .8px 0 0 currentColor, -.8px 0 0 currentColor;
}

.headline-subtitle {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 4px;
    color: #000;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.headline-subtitle img {
    display: block;
    margin-left: 0;
    width: 226px;
    max-width: 100%;
    height: auto;
    image-rendering: auto;
    filter: contrast(1.08) saturate(1.05);
}

.site-nav {
    background: #cc9146;
    border-top: 0;
    backdrop-filter: none;
}

.nav-inner {
    width: min(1300px, calc(100% - 40px));
    min-height: 55px;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
}

.nav-menu {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.nav-item,
.site-nav .nav-menu > .nav-link,
.nav-placeholder {
    flex: 1;
    min-width: 0;
}

.nav-placeholder {
    display: block;
}

.nav-item > .nav-link {
    width: 100%;
}

.site-nav .nav-link {
    min-height: 55px;
    padding: 0;
    color: #fff;
    font-family: "Microsoft Yahei", "宋体", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.headline-title,
.home-intro-box .section-title h2 a {
    font-family: SimSun, "宋体", serif;
}

.site-nav .nav-link:hover,
.nav-item:hover > .nav-link {
    background: #009b4b;
    color: #fff;
    box-shadow: none;
}

.sub-nav {
    left: 0;
    top: 100%;
    min-width: 220px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
}

.sub-nav a {
    min-height: 0;
    padding: 12px 18px;
    border-top: 1px solid #f7f7f7;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-size: 15px;
    line-height: 1.3;
}

.sub-nav a:hover {
    background: #009b4b;
    color: #fff;
}

.top-search input {
    border-color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .14);
}

.top-search button {
    border-color: rgba(255, 255, 255, .86);
    background: #fff;
    color: var(--hnu-green-dark);
}

.hero {
    background: var(--hnu-bg);
    padding-top: 12px;
}

.hero-slider {
    width: min(1300px, calc(100% - 40px));
    min-height: 380px;
    max-height: none;
    aspect-ratio: 13 / 5;
    margin: 0 auto;
    background: #ddd;
}

.hero-item:before {
    background: linear-gradient(0deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0) 46%);
}

.hero-caption {
    left: 32px;
    right: 32px;
    bottom: 38px;
    max-width: 900px;
    display: none;
}

.hero-caption strong {
    font-size: 30px;
    font-weight: 700;
}

.hero-dot.active {
    background: var(--hnu-green);
}

.home-top-grid {
    grid-template-columns: 670px minmax(0, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.home-mid-grid {
    grid-template-columns: 590px minmax(0, 1fr) 330px;
    gap: 20px;
}

.home-bottom-grid {
    margin-bottom: 18px;
}

.home-space {
    height: 20px;
}

.home-poster-section {
    box-sizing: border-box;
}

.home-poster {
    overflow: hidden;
    padding-top: 15px;
}

.home-poster img {
    display: block;
    width: 100%;
    height: auto;
}

.panel-box,
.detail-card,
.page-main,
.side-nav {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.section-title {
    min-height: 56px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    overflow: hidden;
}

.section-title:before {
    display: none;
}

.section-title h2 {
    position: relative;
    flex: 0 1 auto;
    min-width: 172px;
    height: 56px;
    margin: 0;
    padding: 0;
    background: none;
    color: #fff;
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 56px;
}

.section-title h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 172px;
    height: 56px;
    background: url("/assets/img/title-cgjd.png") left top / 172px 56px no-repeat;
    filter: hue-rotate(95deg) saturate(1.25) brightness(.9);
}

.section-title-intro h2 {
    min-width: 178px;
}

.section-title-intro h2:before {
    width: 178px;
    background-image: url("/assets/img/title-cgjj.png");
    background-size: 178px 56px;
}

.section-title-material h2:before {
    background-image: url("/assets/img/title-zdhj.png");
}

.home-bottom-video-box .section-title-video h2:before {
    left: -8px;
    top: -4px;
    width: 172px;
    background: url("/assets/img/title-cgsp.png") left top / 172px 56px no-repeat;
    filter: hue-rotate(95deg) saturate(1.25) brightness(.9);
}

.section-title h2 a {
    position: absolute;
    left: 55px;
    top: 0;
    z-index: 1;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 56px;
}

.section-title h2 a:after {
    display: none;
}

.section-title h2:after {
    display: none;
}

.section-title h2 a,
.section-title h2 a:hover {
    color: #fff;
}

.section-more {
    height: 56px;
    margin-right: 0;
    padding: 0 15px;
    color: var(--hnu-green);
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 56px;
    text-transform: none;
}

.intro-body {
    background: #fff;
}

.home-feature-video-box {
    position: relative;
    width: 670px;
    height: 423px;
    overflow: hidden;
}

.home-feature-video-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 634px;
    height: 364px;
    background: url("/assets/img/cgsp_bg.png") left top / 634px 364px no-repeat;
    filter: hue-rotate(95deg) saturate(1.25) brightness(.9);
}

.home-feature-video-box h2 {
    position: absolute;
    left: 70px;
    top: 15px;
    z-index: 2;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.home-feature-video-box h2 a,
.home-feature-video-box h2 a:hover {
    color: #fff;
}

.home-feature-video-pic {
    display: block;
    position: relative;
    z-index: 1;
    margin: 65px 0 0 25px;
    background: #000;
    padding-top: 53%;
}

.home-feature-video-pic:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.home-feature-video-pic .home-video-player,
.home-feature-video-pic .empty-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 340px;
    border-radius: 0;
}

.home-video-player,
.empty-block {
    height: 340px;
    border-radius: 0;
}

.intro-body {
    min-height: 360px;
    padding: 12px 20px;
    color: #222;
    font-size: 16px;
    line-height: 2;
}

.intro-body p {
    margin-bottom: 6px;
}

.more-link,
.btn-link {
    min-height: auto;
    border-radius: 0;
    background: transparent;
    color: #559600;
    padding: 0;
    font-weight: 400;
}

.link-list,
.report-list,
.summary-stack {
    padding: 10px 13px 13px;
    background: #fff;
}

.link-list li,
.report-list li,
.summary-stack li {
    margin-top: 9px;
    border-bottom: 0;
    background: #f5f5f5;
}

.link-list li:first-child,
.report-list li:first-child,
.summary-stack li:first-child {
    margin-top: 0;
}

.link-list a,
.report-list a,
.summary-stack a {
    position: relative;
    min-height: 46px;
    padding: 0 12px 0 28px;
    color: #111;
    font-size: 16px;
    line-height: 46px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-list a:before,
.summary-stack a:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--hnu-green-dark);
    box-shadow: none;
}

.numbered-list a:before {
    display: none;
}

.link-list a:hover,
.report-list a:hover,
.summary-stack a:hover {
    background: #eef7ec;
    color: var(--hnu-green-dark);
    transform: none;
}

.numbered-list .index,
.report-list .date {
    flex: 0 0 38px;
    height: 24px;
    border-radius: 0;
    background: var(--hnu-green);
    color: #fff;
}

.home-mid-grid .link-list a,
.home-mid-grid .report-list a {
    padding-left: 28px;
}

.home-mid-grid .numbered-list .index,
.home-mid-grid .report-list .date {
    position: absolute;
    left: 12px;
    top: 50%;
    flex: none;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-radius: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--hnu-green-dark);
    background: transparent;
    color: transparent;
    font-size: 0;
}

.home-mid-grid .link-list:not(.numbered-list) a:before {
    left: 12px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border-radius: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--hnu-green-dark);
    background: transparent;
}

.report-list a {
    padding-left: 12px;
}

.home-mid-grid .report-list a {
    padding-left: 28px;
}

.home-mid-grid .apply-list-grid {
    column-gap: 10px;
    row-gap: 9px;
}

.home-mid-grid .apply-list-grid li {
    margin-top: 0;
}

.home-mid-grid .apply-list-grid a {
    height: 46px;
    min-height: 46px;
    padding: 0 8px 0 28px;
    font-size: 15px;
    line-height: 46px;
}

.home-mid-grid .material-list-grid {
    display: block;
}

.home-mid-grid .material-list-grid li {
    margin-top: 9px;
}

.home-mid-grid .material-list-grid li:first-child {
    margin-top: 0;
}

.home-mid-grid .material-list-grid a {
    height: 46px;
    min-height: 46px;
    padding: 0 8px 0 28px;
    font-size: 15px;
    line-height: 46px;
}

.summary-stack a {
    font-weight: 400;
}

.home-bottom-video-box {
    overflow: hidden;
}

.home-video-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    min-height: 120px;
    padding: 15px 13px;
    background: #fff;
}

.home-video-card {
    display: block;
    min-width: 0;
    background: #f5f5f5;
    color: #111;
    text-align: center;
}

.home-video-thumb {
    display: block;
    width: 100%;
    height: 190px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-video-name {
    display: block;
    height: 44px;
    padding: 0 8px;
    overflow: hidden;
    color: #111;
    font-size: 14px;
    line-height: 22px;
}

.home-video-card:hover .home-video-name {
    color: var(--hnu-red);
}

.home-video-empty {
    grid-column: 1 / -1;
    height: 120px;
    border-radius: 0;
    background: #f5f5f5;
    color: #777;
}

.page-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    margin-top: 24px;
}

.side-nav h3 {
    position: relative;
    padding: 24px 20px 24px 46px;
    background: var(--hnu-green);
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
    font-size: 24px;
}

.side-nav h3:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 14px;
    height: 17px;
    margin-top: -9px;
    border: 2px solid #fff;
    border-radius: 1px;
    box-sizing: border-box;
}

.side-nav h3:after {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    width: 7px;
    height: 2px;
    margin-top: -3px;
    background: #fff;
    box-shadow: 0 4px 0 #fff;
}

.side-nav ul {
    padding: 10px 0 14px;
    background: #fff;
}

.side-nav a {
    position: relative;
    width: 92%;
    margin: 8px auto 0;
    padding: 12px 14px 12px 30px;
    border-bottom: 0;
    background: #f5f5f5;
    color: #111;
}

.side-nav a:before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--hnu-green-dark);
}

.side-nav a:hover:before,
.side-nav a.active:before {
    background: #fff;
}

.side-nav a:hover,
.side-nav a.active {
    background: var(--hnu-green);
    color: #fff;
}

.page-top-banner {
    margin-top: 15px;
}

.page-top-banner-inner {
    overflow: hidden;
}

.page-top-banner-inner img {
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.target-section-layout {
    margin-top: 10px;
}

.target-section-layout .side-nav {
    width: 260px;
    overflow: hidden;
    background: transparent;
}

.target-section-layout .side-title {
    height: 168px;
    padding: 20px 20px 0;
    overflow: hidden;
    background: #fff url("/assets/img/leftbar-tg81.png") left bottom / 100% auto no-repeat;
    color: #fff;
    box-sizing: border-box;
}

.target-section-layout .side-title span {
    display: block;
    margin-top: 5px;
}

.target-section-layout .side-title em {
    display: block;
    height: 70px;
    line-height: 25px;
}

.target-section-layout .side-title b {
    display: block;
    width: 100%;
    height: 70px;
    overflow: hidden;
    color: #fff;
    font-family: SimSun, "宋体", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    vertical-align: middle;
}

.target-section-layout .side-nav ul {
    width: 100%;
    padding: 10px 0 14px;
    background: #fff;
}

.target-section-layout .side-nav li {
    width: 92%;
    margin: 8px auto 0;
}

.target-section-layout .side-nav a {
    display: -webkit-box;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 12px 10px;
    overflow: hidden;
    background: #f5f5f5;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    box-sizing: border-box;
}

.target-section-layout .side-nav a:before {
    display: none;
}

.target-section-layout .side-nav a:hover,
.target-section-layout .side-nav a.active {
    background: var(--hnu-green);
    color: #fff;
}

.target-section-layout .side-decor {
    width: 100%;
    height: 224px;
    overflow: hidden;
    background: url("/assets/img/sidebar-menu-image.png") left top / 100% auto no-repeat;
}

.page-main,
.detail-card {
    padding: 34px 40px;
}

.breadcrumb {
    color: #777;
}

.page-main h1,
.detail-card h1 {
    color: #000;
    font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.article-list li {
    border-bottom-color: #eee;
}

.article-list li:before {
    background: var(--hnu-green);
}

.article-body {
    color: #222;
    font-size: 16px;
    line-height: 2;
}

.btn-link {
    display: inline-flex;
    min-height: 34px;
    margin-right: 12px;
    padding: 0 16px;
    background: var(--hnu-green);
    color: #fff;
}

.btn-link:hover {
    background: var(--hnu-green-dark);
    color: #fff;
}

.site-footer {
    margin-top: 36px;
    background: var(--hnu-green);
    color: rgba(255, 255, 255, .85);
    position: relative;
    overflow: hidden;
}

.site-footer:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(2, 72, 40, .34) 0%, rgba(2, 92, 48, .16) 22%, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0) 58%, rgba(204, 145, 70, .14) 82%, rgba(2, 82, 45, .28) 100%);
}

.footer-image,
.footer-layout {
    position: relative;
    z-index: 1;
}

.footer-layout {
    grid-template-columns: 30% minmax(0, 1fr) 220px;
    gap: 34px;
    min-height: 168px;
    padding: 28px 0 34px;
}

.footer-logo {
    max-width: 180px;
    max-height: 76px;
}

.footer-column h3 {
    font-size: 17px;
}

.footer-text {
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
}

.footer-side-image {
    max-width: 92px;
    max-height: 92px;
    border-radius: 0;
}

@media (max-width: 1120px) {
    .wrap,
    .hero-slider {
        width: min(100% - 32px, 1300px);
    }

    .headline {
        font-size: 23px;
    }

    .home-top-grid,
    .home-mid-grid {
        grid-template-columns: 1fr;
    }

    .home-video-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-feature-video-box {
        width: min(670px, 100%);
    }
}

@media (max-width: 768px) {
    .wrap,
    .hero-slider {
        width: 100%;
    }

    .site-header:before {
        display: none;
    }

    .header-main {
        min-height: 104px;
    }

    .headline {
        text-align: left;
        font-size: 17px;
        padding-left: 6px;
    }

    .headline-subtitle {
        margin-top: 2px;
        font-size: 13px;
        letter-spacing: 0;
    }

    .site-nav {
        background: #cc9146;
    }

    .nav-item,
    .site-nav .nav-menu > .nav-link {
        flex: none;
    }

    .nav-placeholder {
        display: none;
    }

    .site-nav .nav-link {
        justify-content: flex-start;
        min-height: 44px;
        font-size: 16px;
    }

    .sub-nav a {
        color: rgba(255, 255, 255, .92);
    }

    .sub-nav a:hover {
        background: rgba(255, 255, 255, .12);
    }

    .hero {
        padding-top: 0;
    }

    .hero-slider {
        min-height: 220px;
    }

    .home-top-grid,
    .home-mid-grid,
    .home-bottom-grid {
        margin-top: 16px;
    }

    .section-title h2 {
        min-width: 132px;
        font-size: 18px;
    }

    .home-feature-video-box {
        height: auto;
        padding-bottom: 22px;
    }

    .home-feature-video-box:before {
        width: 100%;
        height: 100%;
        background-size: 100% auto;
    }

    .home-feature-video-box h2 {
        left: 11%;
        top: 12px;
        font-size: 22px;
    }

    .home-feature-video-pic {
        margin: 58px 4% 0;
    }

    .home-feature-video-pic .home-video-player,
    .home-feature-video-pic .empty-block {
        height: 100%;
    }

    .intro-body {
        min-height: 0;
    }

    .page-main,
    .detail-card {
        padding: 22px 16px;
    }

    .page-top-banner {
        margin-top: 10px;
    }

    .target-section-layout {
        margin-top: 16px;
    }

    .target-section-layout .side-nav {
        width: 100%;
    }

    .target-section-layout .side-decor {
        display: none;
    }

    .footer-layout {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 178px;
        max-height: 56px;
    }

    .headline {
        font-size: 15px;
    }

    .headline-subtitle {
        font-size: 12px;
    }

    .hero-slider,
    .hero-item {
        height: 200px;
    }

    .link-list a,
    .report-list a,
    .summary-stack a {
        font-size: 15px;
    }

    .home-video-list {
        grid-template-columns: 1fr;
    }
}
