﻿.theme-medpack {
    margin: 0;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: "aba34633-06f8-4e29-a276-4d8ef2e5b99a";
    src: url("/assets/huifeng/fonts/aba34633-06f8-4e29-a276-4d8ef2e5b99a.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6";
    src: url("/assets/huifeng/fonts/97976190-4f8b-4df7-b797-b7f2505662e6.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "a4e0340e-3b31-4220-8dcf-d62dd9746884";
    src: url("/assets/huifeng/fonts/a4e0340e-3b31-4220-8dcf-d62dd9746884.otf") format("opentype");
    font-display: swap;
}

.theme-medpack a {
    text-decoration: none;
}

.theme-medpack img {
    max-width: 100%;
}

body.has-product-side-open {
    overflow: hidden;
}

.layout-shell {
    width: 94%;
    max-width: 1420px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

/* Site shell */
.site-shell {
    min-height: 100vh;
    background: #fff;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.06);
}

.site-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 100px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0;
    order: 1;
    flex: 0 0 auto;
    color: #204869;
}

.brand-logo img {
    width: auto;
    max-width: 250px;
    max-height: 68px;
}

.site-header.is-scrolled .brand-logo {
    color: #204869;
}

.brand-copy {
    display: none;
}

.brand-copy strong {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.brand-copy em {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    font-style: normal;
    opacity: 0.78;
}

.site-header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 3;
    flex: 0 0 auto;
}

.header-lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #d4d4d4;
    color: #333;
    font-size: 14px;
    line-height: 1;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-lang-link:hover {
    color: #fff;
    background: #207ebc;
    border-color: #207ebc;
}

.header-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-search-trigger svg {
    width: 24px;
    height: 24px;
    fill: #262626;
    transition: fill 0.25s ease;
}

.site-header.is-scrolled .header-search-trigger svg,
.header-search-trigger:hover svg {
    fill: #0c58cf;
}

.site-header-contact {
    display: none;
}

.site-header-contact a {
    color: #5c665d;
    font-size: 14px;
}

.site-header.is-scrolled .site-header-contact a {
    color: #5c665d;
}

.primary-nav {
    order: 2;
    flex: 1 1 auto;
    margin-left: auto;
}

.primary-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
}

.nav-item.has-children {
    position: static;
}

.nav-link-row {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link-row::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    margin: 0 auto;
    background: #0c58cf;
    transition: width 0.3s ease;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 100px;
    padding: 0;
    color: #262626;
    font-size: 17px;
    transition: color 0.25s ease;
}

.site-header.is-scrolled .nav-link {
    color: #262626;
}

.nav-item.is-current>.nav-link-row .nav-link,
.nav-link:hover,
.site-header.is-scrolled .nav-link:hover {
    color: #0c58cf;
}

.nav-item:hover>.nav-link-row::after,
.nav-item.is-current>.nav-link-row::after {
    width: 100%;
}

.submenu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.submenu-toggle span,
.submenu-toggle span::before {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    content: "";
}

.p_navCon,
.p_navCon2 {
    margin: 0;
}

@media screen and (min-width: 1025px) {
    .primary-nav>.p_navBox1 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .primary-nav>.p_navBox1>.p_navItem1 {
        position: relative;
    }

    .primary-nav>.p_navBox1>.p_navItem1.has-children {
        position: static;
    }

    .primary-nav>.p_navBox1>.p_navItem1>.p_navCon {
        display: flex;
        align-items: center;
        position: relative;
    }

    .primary-nav>.p_navBox1>.p_navItem1>.p_navCon::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        margin: 0 auto;
        background: #0c58cf;
        transition: width 0.3s ease;
    }

    .primary-nav>.p_navBox1>.p_navItem1:hover>.p_navCon::after,
    .primary-nav>.p_navBox1>.p_navItem1.is-current>.p_navCon::after {
        width: 100%;
    }

    .primary-nav>.p_navBox1>.p_navItem1>.p_navCon>.nav-link {
        display: inline-flex;
        align-items: center;
        min-height: 100px;
        padding: 0;
    }

    .primary-nav>.p_navBox1>.p_navItem1>.p_navCon>.submenu-toggle {
        display: none;
    }

    .primary-nav>.p_navBox1>.p_navItem1>.p_navBox2 .p_navCon2 a {
        text-decoration: none;
    }

    .primary-nav>.p_navBox1>.p_navItem1>.p_navBox2 .p_img {
        display: none;
    }
}

.submenu-list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(20, 26, 34, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.22s ease;
}

.submenu-list li a {
    display: block;
    padding: 10px 18px;
    color: #38413a;
    font-size: 14px;
}

.submenu-list li a:hover {
    color: #207ebc;
    background: #f6faf6;
}

.nav-item.has-children:hover>.submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-item {
    display: none;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #262626;
    transition: 0.2s ease;
}

.site-header.is-scrolled .nav-toggle span {
    background: #2c332d;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-main {
    min-height: calc(100vh - 420px);
}

.site-footer {
    background: #252525;
    color: #afafaf;
    padding: 36px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 130px 130px;
    gap: 28px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-links {
    display: grid;
    gap: 0;
}

.footer-links a {
    color: #afafaf;
    font-size: 14px;
    line-height: 2.5;
    font-family: "Microsoft YaHei", sans-serif;
}

.footer-links a:hover {
    color: #fff;
}

.footer-qrcode-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.footer-qrcode-box h3 {
    margin: 12px 0 0;
}

.footer-qrcode {
    width: 130px;
    max-width: 100%;
    border: 0;
    background: #fff;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    color: #7f7f7f;
}

.footer-bottom a {
    color: #afafaf;
}

.float-drawer {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 998;
}

.float-drawer-item {
    position: relative;
    width: 50px;
    height: 50px;
}

.float-drawer-item a {
    display: block;
    height: 100%;
    font-size: 0;
    cursor: pointer;
}

.float-drawer-item i,
.float-drawer-item span {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    line-height: 50px;
}

.float-drawer-item i {
    width: 50px;
    text-align: center;
    background: rgba(47, 102, 142, 0.9);
    transition: background 0.3s ease;
}

.float-drawer-item i img,
.float-drawer-item-main img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    object-fit: contain;
}

.float-drawer-item span {
    background: #232323;
    color: #fff;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    transition: background 0.5s ease, color 0.5s ease;
    overflow: hidden;
    text-overflow: ellipsis;
}

.float-drawer-item:not(.float-drawer-item-main) {
    position: absolute;
    transition: all 0.5s ease;
}

.float-drawer-item-main {
    width: 50px;
    height: 150px;
    background: #222;
    text-align: center;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-drawer-item-main a {
    width: 50px;
    height: auto;
}

.float-drawer-item-main a,
.float-drawer-item-main img,
.float-drawer-item-main i,
.float-drawer-item-main span {
    display: block;
}

.float-drawer-item-main img {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    background: transparent;
}

.float-drawer-item-main i {
    width: 1px;
    height: 20px;
    margin: 10px auto;
    background: #fff;
}

.float-drawer-item-main span {
    width: auto;
    height: auto;
    line-height: 1;
    background: transparent;
    font-size: 14px;
    letter-spacing: 2px;
    writing-mode: vertical-lr;
    margin: 0 auto;
    overflow: visible;
    text-overflow: clip;
}

.float-drawer-item-main:hover {
    background: rgb(39, 91, 129);
}

.float-drawer-item-main:hover a img {
    animation: drawer-jitter 0.5s;
}

.float-drawer-item-phone {
    top: 151px;
    right: -140px;
    width: 190px;
}

.float-drawer-item-phone span {
    width: 140px;
}

.float-drawer-item-email {
    top: 202px;
    right: -190px;
    width: 240px;
}

.float-drawer-item-email span {
    width: 190px;
}

.float-drawer-item-tel {
    top: 253px;
    right: -140px;
    width: 190px;
}

.float-drawer-item-tel span {
    width: 140px;
}

.float-drawer-item-top {
    top: 305px;
    right: -90px;
    width: 140px;
}

.float-drawer-item-top span {
    width: 90px;
    font-size: 14px;
}

.float-drawer-item-top {
    display: none;
}

.float-drawer-item-top.is-visible {
    display: block;
    animation: float-drawer-fade-in 0.2s ease;
}

.float-drawer-item:not(.float-drawer-item-main):hover {
    right: 0;
}

.float-drawer-item:not(.float-drawer-item-main):hover i {
    background: rgb(39, 91, 129);
}

@keyframes drawer-jitter {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }

    75% {
        transform: translateX(-1px);
    }
}

@keyframes float-drawer-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Shared inner pages */
.page-banner {
    position: relative;
    min-height: 340px;
    padding: 170px 0 58px;
    background: linear-gradient(rgba(30, 47, 62, 0.45), rgba(30, 47, 62, 0.45)), center/cover no-repeat;
}

.page-banner-kicker {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
}

.page-banner-title {
    font-size: 38px;
    line-height: 1;
    color: #fff;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    margin: 0 0 10px;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin: 0;
}

.contact-page-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-page-banner .layout-shell {
    min-height: inherit;
}

.contact-page-banner .page-banner-kicker {
    opacity: 0;
    margin: 0;
    line-height: 1;
    user-select: none;
}

.news-reference-banner,
.product-reference-banner,
.contact-page-banner {
    min-height: 360px;
    padding: 156px 0 44px;
}

.news-reference-banner .layout-shell,
.product-reference-banner .layout-shell,
.contact-page-banner .layout-shell {
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-reference-banner .page-banner-kicker,
.product-reference-banner .page-banner-kicker,
.contact-page-banner .page-banner-kicker {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.08em;
}

.news-reference-banner .page-banner-title,
.product-reference-banner .page-banner-title,
.contact-page-banner .page-banner-title {
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 8px;
}

.news-reference-banner .page-banner-subtitle,
.product-reference-banner .page-banner-subtitle,
.contact-page-banner .page-banner-subtitle {
    font-size: 18px;
    line-height: 1.4;
}

.news-reference-banner .page-banner-title {
    margin-bottom: 0;
}

.contact-page-banner .page-banner-kicker {
    display: none;
}

.channel-switch-band {
    background: #fff;
    padding: 18px 0 0;
}

.channel-switch-scroll {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: min(860px, 100%);
    margin: 0 auto;
    border: 1px solid #e2e2e2;
    border-right: 0;
    background: #fff;
}

.channel-switch-link {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    border-right: 1px solid #e2e2e2;
    border-bottom: 2px solid transparent;
    background: #fff;
    color: #333;
    font-size: 16px;
    line-height: 1;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.channel-switch-link:hover,
.channel-switch-link.is-current {
    background: #fff;
    color: #0c58cf;
    box-shadow: inset 0 -2px 0 #0c58cf;
}

.about-toolbar {
    background: #f4f4f4;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #e5e5e5;
}

.about-toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.about-toolbar-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.about-nav-scroll {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    gap: 8px;
    overflow-x: auto;
    background: transparent;
}

.about-nav-scroll::-webkit-scrollbar {
    height: 0;
}

.about-nav-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1;
    font-family: "Microsoft YaHei", sans-serif;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.about-nav-link:hover,
.about-nav-link.is-current {
    color: #fff;
    border-color: #207ebc;
    background: linear-gradient(180deg, #2a82d8 0%, #1b71bd 100%);
}

.about-crumb-nav {
    flex: 0 0 auto;
    margin-left: auto;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1;
}

.about-crumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-crumb-list li {
    display: inline-flex;
    align-items: center;
    color: #969696;
}

.about-crumb-list li+li::before {
    content: "/";
    margin: 0 8px;
    color: #c4c4c4;
}

.about-crumb-list li:first-child a {
    display: inline-flex;
    align-items: center;
}

.about-crumb-list li:first-child a::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1029 1024'%3E%3Cpath d='M44.799492 528.986943a42.836848 42.836848 0 0 1-31.231646-13.567846 42.725916 42.725916 0 0 1 2.133309-60.329983L491.685094 11.446142a42.68325 42.68325 0 0 1 58.538003 0.34133l465.658723 443.642972c17.066473 16.21315 17.749132 43.26351 1.45065 60.329983s-43.26351 17.749132-60.329983 1.45065L520.442102 101.301124 73.897829 517.552406c-8.27724 7.679913-18.687788 11.434537-29.098337 11.434537z'/%3E%3Cpath d='M752.716803 1024H282.876794c-111.188073 0-201.640381-86.697684-201.640381-193.27781V434.524014c0-23.551733 19.11445-42.666183 42.666183-42.666183s42.666183 19.11445 42.666183 42.666183v396.283509c0 59.476659 52.138076 107.945443 116.308015 107.945443h469.925341c64.084607 0 116.308015-48.383452 116.308015-107.945443V434.524014c0-23.551733 19.11445-42.666183 42.666183-42.666183s42.666183 19.11445 42.666183 42.666183v396.283509c-0.085332 106.494793-90.537641 193.192477-201.725713 193.192477z'/%3E%3Cpath d='M657.400549 1017.173411H383.142324c-23.551733 0-42.666183-19.11445-42.666183-42.666183V625.839179c0-23.551733 19.11445-42.666183 42.666183-42.666183h274.258225c23.551733 0 42.666183 19.11445 42.666184 42.666183v348.668049c0 23.551733-19.11445 42.666183-42.666184 42.666183z m-231.592041-85.332367h188.925858V668.505362H425.808508v263.335682z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1029 1024'%3E%3Cpath d='M44.799492 528.986943a42.836848 42.836848 0 0 1-31.231646-13.567846 42.725916 42.725916 0 0 1 2.133309-60.329983L491.685094 11.446142a42.68325 42.68325 0 0 1 58.538003 0.34133l465.658723 443.642972c17.066473 16.21315 17.749132 43.26351 1.45065 60.329983s-43.26351 17.749132-60.329983 1.45065L520.442102 101.301124 73.897829 517.552406c-8.27724 7.679913-18.687788 11.434537-29.098337 11.434537z'/%3E%3Cpath d='M752.716803 1024H282.876794c-111.188073 0-201.640381-86.697684-201.640381-193.27781V434.524014c0-23.551733 19.11445-42.666183 42.666183-42.666183s42.666183 19.11445 42.666183 42.666183v396.283509c0 59.476659 52.138076 107.945443 116.308015 107.945443h469.925341c64.084607 0 116.308015-48.383452 116.308015-107.945443V434.524014c0-23.551733 19.11445-42.666183 42.666183-42.666183s42.666183 19.11445 42.666183 42.666183v396.283509c-0.085332 106.494793-90.537641 193.192477-201.725713 193.192477z'/%3E%3Cpath d='M657.400549 1017.173411H383.142324c-23.551733 0-42.666183-19.11445-42.666183-42.666183V625.839179c0-23.551733 19.11445-42.666183 42.666183-42.666183h274.258225c23.551733 0 42.666183 19.11445 42.666184 42.666183v348.668049c0 23.551733-19.11445 42.666183-42.666184 42.666183z m-231.592041-85.332367h188.925858V668.505362H425.808508v263.335682z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-crumb-list a {
    color: #969696;
    font-size: 13px;
    line-height: 1.6;
}

.about-crumb-list a:hover {
    color: #207ebc;
}

.about-toolbar+.section-block {
    padding-top: 38px;
}

.crumb-nav {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #ececec;
}

.crumb-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #888;
}

.crumb-nav li {
    display: inline-flex;
    align-items: center;
}

.crumb-nav li+li::before {
    content: "/";
    margin-right: 8px;
    color: #b5b5b5;
}

.crumb-nav a {
    color: #666;
}

.section-block {
    padding: 50px 0;
}

.section-head {
    margin-bottom: 30px;
}

.section-head .en {
    display: block;
    font-size: 40px;
    color: #999;
    line-height: 1;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
    font-weight: 700;
}

.section-head .cn {
    display: block;
    margin-top: 6px;
    font-size: 40px;
    line-height: 1.2;
    color: #333;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.channel-current-name {
    margin: -8px 0 28px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    font-family: "Microsoft YaHei", sans-serif;
}

.grid-layout {
    display: grid;
    gap: 42px;
}

.two-col-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
}

.panel-card {
    background: transparent;
    border: 0;
}

.side-panel {
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.side-panel-head {
    background: #207ebc;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    max-width: 320px;
    padding: 16px 20px;
    border-radius: 20px 0 0 0;
}

.side-panel-head .title {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    font-family: "Microsoft YaHei", sans-serif;
    text-align: center;
}

.side-panel-head .sub {
    display: block;
    margin-top: 8px;
    color: #e6e6e6;
    font-size: 18px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.side-panel-head .channel-current-name {
    display: none;
}

.side-menu-list {
    background: transparent;
    padding: 0;
}

.side-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 0 10px;
    color: #4d4d4d;
    border-bottom: 0;
    transition: 0.25s ease;
}

.side-contact-box {
    margin-top: 30px;
    padding: 0;
    background: transparent;
}

.side-contact-box p {
    margin: 0;
    color: #696969;
    line-height: 2;
}

.side-contact-box a {
    color: inherit;
}

.side-contact-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    max-width: 320px;
    padding: 16px 20px;
    box-sizing: border-box;
    background: #207ebc;
    border-radius: 20px 0 0 0;
}

.side-contact-copy {
    width: 100%;
    max-width: 320px;
    padding: 25px 16px 30px;
    box-sizing: border-box;
    background: #f5f5f5;
}

.side-contact-title {
    margin-bottom: 0 !important;
    color: #fff !important;
    font-size: 36px;
    line-height: 1;
    font-family: "Microsoft YaHei", sans-serif;
    text-align: center;
    font-weight: 700;
}

.side-contact-en {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    color: #e6e6e6 !important;
    font-size: 18px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.product-side-tree {
    padding: 0;
}

.product-side-list,
.product-side-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-side-item {
    margin-bottom: 3px;
    border-bottom: 0;
    transition: transform 0.25s ease;
}

.product-side-link {
    min-height: 60px;
    padding: 0 0 0 10px;
    color: #4d4d4d;
    background: #f5f5f5;
    justify-content: flex-start;
}

.product-side-link-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding-left: 0;
    border-left: 0;
    font-size: 18px;
    line-height: 1.5;
    transition: color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.product-side-item.has-children>.product-side-link {
    cursor: pointer;
}

.product-side-link-thumb {
    position: relative;
    display: inline-flex;
    flex: 0 0 27px;
    width: 27px;
    height: 100%;
    overflow: hidden;
    transition: width 0.25s ease, opacity 0.25s ease, margin-right 0.25s ease;
}

.product-side-link-thumb img {
    max-width: 100%;
    object-fit: contain;
}

.product-side-item.active>.product-side-link .product-side-link-thumb,
.product-side-link:hover .product-side-link-thumb {
    width: 0;
    opacity: 0;
    margin-right: 0;
}

.product-side-link-icon,
.product-side-subdot {
    width: 27px;
    height: 27px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(47, 102, 142, 0.16), rgba(47, 102, 142, 0.06));
}

.product-side-item.active>.product-side-link,
.product-side-link:hover,
.product-side-sublist li.active>a,
.product-side-sublist a:hover {
    background: rgba(47, 102, 142, 0.1);
    color: #4d4d4d;
}

.product-side-item.active>.product-side-link .product-side-link-copy,
.product-side-link:hover .product-side-link-copy,
.product-side-sublist li.active>a,
.product-side-sublist a:hover {
    transform: translateX(4px);
}

.product-side-arrow {
    position: relative;
    flex: 0 0 50px;
    width: 50px;
    height: 60px;
    margin-left: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.product-side-arrow::before,
.product-side-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform 0.25s ease;
}

.product-side-arrow::before {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translate(-60%, -50%) rotate(-45deg);
}

.product-side-arrow::after {
    display: none;
}

.product-side-item.active>.product-side-link .product-side-link-icon,
.product-side-link:hover .product-side-link-icon,
.product-side-sublist li.active .product-side-subdot,
.product-side-sublist a:hover .product-side-subdot {
    background: linear-gradient(180deg, rgba(47, 102, 142, 0.28), rgba(47, 102, 142, 0.08));
}

.product-side-item.active>.product-side-link .product-side-arrow,
.product-side-link:hover .product-side-arrow,
.product-side-item.is-open>.product-side-link .product-side-arrow {
    color: #4d4d4d;
}

.product-side-sublist {
    padding: 0;
    background: #f2f2f2;
    display: none;
}

.product-side-sublist li {
    border-bottom: 1px solid #e1e1e1;
}

.product-side-sublist a {
    min-height: 50px;
    padding: 0 12px;
    justify-content: flex-start;
    gap: 10px;
    color: #7d7d7d;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 0;
    background: transparent;
}

.product-side-item.is-open>.product-side-sublist {
    display: block;
}

.product-side-item.is-open>.product-side-link .product-side-arrow::before {
    transform: translate(-50%, -60%) rotate(45deg);
}

.product-side-panel .side-contact-box {
    display: block;
    margin: 30px 0 0;
    padding-top: 0;
    border-top: 0;
}

.product-side-mobile-trigger,
.product-side-mobile-close,
.product-side-mobile-overlay {
    display: none;
}

.product-list-page-shell {
    padding-top: 0;
}

.product-reference-layout {
    gap: 0;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    align-items: start;
}

.content-panel {
    padding: 0;
    background: transparent;
    border: 0;
}

.content-panel img {
    height: auto !important;
}

.rich-content {
    line-height: 1.95;
    color: #555;
    font-size: 16px;
}

.rich-content p {
    margin: 0 0 16px;
}

.rich-content img {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 16px 0;
}

.rich-content iframe,
.rich-content video,
.rich-content embed,
.rich-content object {
    display: block;
    max-width: 100%;
    margin: 16px 0;
}

/* Product listing */
.product-grid-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-card-box {
    position: relative;
    margin: 15px;
    padding: 15px 20px 20px;
    overflow: hidden;
    background: #fff;
    transition: none;
}

.product-grid-list-page .product-card-box::after {
    display: none;
}

.product-card-link {
    display: block;
    height: 100%;
}

.product-grid-list-page .product-card-link {
    position: relative;
    z-index: 2;
}

.product-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 302px;
    padding: 0;
    border: 0;
    background: #fff;
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card-body {
    display: flex;
    align-items: stretch;
    margin-top: 20px;
    padding: 0;
    background: #f1f1f1;
    transition: background 0.25s ease;
}

.product-card-title {
    margin: 0;
    color: #6c6c6c;
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    min-height: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    transition: none;
}

.product-card-box:hover .product-card-title {
    color: #6c6c6c;
}

.product-card-box:hover .product-card-body {
    background: #f1f1f1;
}

.product-card-box:hover .product-card-media img {
    transform: scale(1.2);
}

.product-grid-list-page .product-card-media {
    min-height: 302px;
    border: 0;
    background: #fff;
    padding: 0;
}

.product-grid-list-page .product-card-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
}

.product-grid-list-page .product-card-body {
    display: flex;
    margin-top: 20px;
    padding: 0;
    background: #f1f1f1;
}

.product-grid-list-page .product-card-title {
    min-height: 0;
}

.product-grid-list-page .product-card-box:hover::after {
    height: 100%;
}

.product-grid-list-page .product-card-box:hover .product-card-body {
    background: #f1f1f1;
}

.product-grid-list-page {
    align-items: stretch;
    margin: 0;
    gap: 0;
}

.product-grid-list-page .product-card-box {
    margin: 15px;
    padding: 15px 20px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: none;
}

.product-grid-list-page .product-card-link {
    display: block;
    height: 100%;
}

.product-grid-list-page .product-card-body {
    display: flex;
    margin-top: 20px;
    padding: 0;
}

.product-grid-list-page .product-card-title {
    min-height: 0;
    padding: 0;
    color: #6c6c6c;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.product-card-copy {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    padding: 0 0 0 15px;
}

.product-card-desc {
    display: none;
}

.product-card-plus {
    display: inline-flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-height: 50px;
    margin-left: auto;
    background: #207ebc;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    transition: background 0.25s ease;
}

.product-card-box:hover .product-card-plus {
    background: #5ea5d7;
}

.product-reference-main {
    padding-top: 0;
}

.product-reference-head {
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.product-reference-head-en {
    margin: 0;
    color: #999;
    font-size: 18px;
    line-height: 1;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
}

.product-reference-head-cn {
    margin: 10px 0 0;
    color: #202020;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
}

.product-reference-desc {
    margin: 12px 0 0;
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.85;
}

.product-grid-list-page .product-card-box:hover .product-card-title {
    color: #6c6c6c;
}

.product-grid-list-page .product-card-box:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.product-grid-list-page .product-card-box:hover .product-card-media img {
    transform: scale(1.2);
}

/* News listing */
.news-reference-banner .page-banner-title {
    margin-bottom: 0;
}

.news-reference-toolbar {
    background: #f5f5f5;
}

.news-reference-toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(90%, 1400px);
    margin: 0 auto;
    padding: 20px 10px;
}

.news-reference-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1 1 auto;
}

.news-reference-cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 42px;
    padding: 10px 20px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 20px;
    font-family: "Microsoft YaHei", sans-serif;
    text-align: center;
    transition: all 0.35s ease;
}

.news-reference-cat:hover,
.news-reference-cat.is-current {
    background: linear-gradient(-30deg, #5aa3d8, #1a78b5);
    border-color: #1a78b5;
    color: #fff;
}

.news-reference-breadcrumb {
    flex: 0 0 auto;
    margin-left: auto;
}

.news-reference-breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-reference-breadcrumb li {
    position: relative;
    color: #666;
    font-size: 14px;
    line-height: 20px;
}

.news-reference-breadcrumb li:not(:first-child) {
    padding-left: 15px;
    margin-left: 3px;
}

.news-reference-breadcrumb li:not(:first-child)::before {
    content: ">";
    position: absolute;
    left: 3px;
    color: #999;
}

.news-reference-breadcrumb a {
    color: #666;
}

.news-reference-page {
    padding: 50px 0;
}

.news-reference-shell {
    width: min(90%, 1400px);
    margin: 0 auto;
    padding: 0 10px;
}

.news-reference-list {
    display: grid;
    gap: 20px;
}

.news-reference-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    background: #f5f5f5;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-reference-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
    background: #fff;
}

.news-reference-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 12px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-reference-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px 42px;
}

.news-reference-title {
    margin: 0;
    color: #222;
    font-size: 22px;
    line-height: 1.4;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    word-break: break-all;
}

.news-reference-title a {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-reference-summary {
    margin: 8px 0 0;
    color: #828282;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Microsoft YaHei", sans-serif;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-reference-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 14px;
}

.news-reference-card.is-compact .news-reference-body {
    justify-content: center;
}

.news-reference-card.is-compact .news-reference-footer {
    margin-top: 12px;
}

.news-reference-date {
    color: #878787;
    font-size: 16px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.news-reference-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    margin-top: 14px;
    padding: 8px 14px;
    border: 1px solid #207ebc;
    border-radius: 2px;
    background: #207ebc;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.news-reference-card:hover .news-reference-media img {
    transform: scale(1.12);
}

.news-reference-card:hover .news-reference-title a {
    color: #207ebc;
}

.news-reference-card:hover .news-reference-btn {
    border-radius: 50px;
}

.news-reference-page .pager-block {
    margin-top: 26px;
}

.news-reference-page .pager-block .pagination {
    gap: 0;
}

.news-reference-page .pager-block .pagination>li {
    display: inline-flex;
}

.news-reference-page .pager-block .pagination>li>a,
.news-reference-page .pager-block .pagination>li>span {
    min-width: 40px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 0;
    border: 1px solid #dcdcdc;
    color: #666;
    font-size: 14px;
    line-height: 1;
}

.news-reference-page .pager-block .pagination>li+li>a,
.news-reference-page .pager-block .pagination>li+li>span {
    margin-left: -1px;
}

.news-reference-page .pager-block .pagination>.active>span,
.news-reference-page .pager-block .pagination>.active>a,
.news-reference-page .pager-block .pagination>.active>a:hover {
    background: #0c58cf;
    border-color: #0c58cf;
    color: #fff;
}

@media (max-width: 1024px) {
    .news-reference-toolbar-inner {
        width: 100%;
    }

    .news-reference-card {
        grid-template-columns: 1fr;
    }

    .news-reference-media {
        height: 220px;
    }

    .news-reference-body {
        padding: 28px 30px;
    }
}

@media (max-width: 768px) {
    .news-reference-toolbar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .news-reference-cats {
        justify-content: center;
    }

    .news-reference-cat {
        min-width: 0;
        flex: 1 1 calc(50% - 10px);
    }

    .news-reference-breadcrumb {
        margin-left: 0;
    }

    .news-reference-breadcrumb ul {
        justify-content: flex-start;
    }

    .news-reference-page {
        padding: 30px 0;
    }

    .news-reference-shell {
        width: 100%;
        padding: 0;
    }

    .news-reference-list {
        gap: 15px;
    }

    .news-reference-media {
        height: 180px;
    }

    .news-reference-body {
        padding: 20px;
    }

    .news-reference-title {
        font-size: 20px;
        line-height: 1.6;
    }

    .news-reference-summary {
        font-size: 14px;
        color: #999;
    }

    .news-reference-date {
        font-size: 14px;
    }
}

.news-list-wrap {
    display: grid;
    gap: 0;
}

.news-card-box {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 37px;
    width: 96%;
    margin: 0 0 3% auto;
    padding: 4% 6%;
    border: 0;
    background: #f7f7f7;
    transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}

.news-card-box:hover {
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.news-card-thumb {
    display: block;
    overflow: hidden;
    background: #fff;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 320 / 224;
    object-fit: cover;
    transition: transform 0.5s ease 0.1s;
}

.news-card-box:hover .news-card-thumb img {
    transform: scale(1.04);
}

.news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 0;
}

.news-card-date-tag {
    display: inline-block;
    color: #999;
    font-size: 16px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.news-card-title {
    margin: 8px 0 2px;
    font-size: 20px;
    line-height: 2;
    color: #3b3b3b;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.news-card-title a {
    color: inherit;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    margin: 0 0 18px;
    color: #9b9b9b;
    line-height: 1.5;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    height: 50px;
    padding: 0 28px;
    border: 1px solid #1a78b5;
    border-radius: 30px;
    background: linear-gradient(-30deg, #5aa3d8, #1a78b5);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card-box:hover .news-card-title a {
    color: #207ebc;
}

.news-card-link:hover,
.news-card-box:hover .news-card-link {
    color: #fff;
    box-shadow: 0 10px 20px rgba(41, 97, 136, 0.18);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid #cbcbcb;
    border-radius: 0;
    color: #4a4a4a;
    background: #fff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: 0.25s ease;
}

.action-btn:hover {
    color: #fff;
    background: #1357bf;
    border-color: #1357bf;
}

.hero-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero-btn-ghost:hover {
    background: #fff;
    color: #207ebc;
}

/* Homepage */
.home-hero-banner {
    position: relative;
    padding: 0;
    background: #191f2b;
}

.home-hero-title {
    margin: 0;
    display: none;
}

.hero-carousel {
    position: relative;
}

.hero-carousel.swiper-container {
    overflow: hidden;
}

.hero-carousel-stage {
    position: relative;
}

.hero-carousel-slide {
    position: relative;
    overflow: hidden;
    background: #191f2b;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(20, 28, 38, .28), rgba(20, 28, 38, .28));
    pointer-events: none;
}

.hero-carousel-shell {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-content {
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 2;
    width: 50%;
    transform: translate(50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-carousel-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    pointer-events: none;
}

.hero-carousel-controls {
    position: absolute;
    left: 50%;
    bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    pointer-events: auto;
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 19, 24, 0.12);
    box-shadow: none;
    transition: background 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    background-image: none !important;
}

.hero-carousel-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid rgba(255, 255, 255, 0.82);
    border-right: 2px solid rgba(255, 255, 255, 0.82);
    transform: translate(-50%, -50%) rotate(225deg);
}

.hero-carousel-arrow-prev {
    left: 80px;
}

.hero-carousel-arrow-next {
    right: 80px;
}

.hero-carousel-arrow-next::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero-carousel-arrow:hover {
    background: rgba(16, 19, 24, 0.28);
}

.hero-carousel-dots {
    display: flex;
    gap: 10px;
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-carousel-dot.is-active {
    background: #fff;
}

.hero-carousel.is-swiper-ready {
    cursor: grab;
}

.hero-carousel.is-swiper-ready.is-dragging {
    cursor: grabbing;
}

.hero-carousel.is-swiper-ready,
.hero-carousel.is-swiper-ready .hero-carousel-stage,
.hero-carousel.is-swiper-ready .hero-carousel-slide,
.hero-carousel.is-swiper-ready .hero-carousel-shell {
    min-height: auto;
    height: auto;
}

.hero-carousel.is-swiper-ready .swiper-pagination-bullet {
    margin: 0;
}

.hero-carousel-slide {
    display: none;
}

.hero-carousel-slide.is-active {
    display: block;
}

.hero-carousel.is-swiper-ready .hero-carousel-slide {
    display: block;
}

.home-about-section {
    padding: 18px 0 54px;
    background: #f5f5f5 url("https://omo-oss-image1.thefastimg.com/portal-saas/new2021110918274281731/cms/image/2dec3994-9410-4e25-9709-b2176ab1a0a2.png") no-repeat top center;
    overflow: hidden;
}

.home-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 26px;
    background: url("https://omo-oss-image1.thefastimg.com/portal-saas/new2021110918274281731/cms/image/9d26757d-64f2-477b-82ea-ddac58240eea.png") no-repeat center top;
}

.home-about-copy {
    margin-top: 6%;
}

.home-about-caption {
    margin: 0;
    color: #1b1b1b;
    font-size: 48px;
    line-height: 1;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
    font-weight: 400;
}

.home-about-title {
    margin: 10px 0 0;
    color: #222;
    font-size: 36px;
    line-height: 1.25;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
    font-weight: 400;
}

.home-about-text {
    max-width: 668px;
    margin-top: 6%;
    color: #666;
    line-height: 2.4;
    font-size: 16px;
    font-family: a4e0340e-3b31-4220-8dcf-d62dd9746884, "Microsoft YaHei", sans-serif;
    letter-spacing: 0.01em;
    text-indent: 2em;
}

.home-about-visual {
    display: flex;
    justify-content: flex-end;
    align-self: end;
    margin-top: 9%;
}

.home-about-visual img {
    width: 100%;
    max-width: 720px;
    object-fit: contain;
}

.home-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    min-height: 50px;
    margin-top: 40px;
    padding: 0 28px;
    border: 1px solid #b8b8b8;
    border-radius: 30px;
    background: linear-gradient(-30deg, #5aa3d8, #1a78b5);
    color: #fff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    letter-spacing: 0;
    transition: all 0.35s ease;
}

.home-about-link {
    display: block;
    width: 105px;
    margin-top: 6%;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.home-about-link img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.home-about-link:hover {
    transform: translateX(4px);
    filter: saturate(1.05);
}

.home-pill-btn:hover {
    color: #fff;
    letter-spacing: 1px;
    box-shadow: 0 8px 18px rgba(41, 97, 136, 0.18);
}

.home-pill-btn-left {
    margin-top: 40px;
    margin-bottom: 50px;
    margin-left: 35px;
    margin-right: 35px;
}

.home-data-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 90%;
    max-width: 1420px;
    margin: 0 auto;
    padding-top: 6px;
    padding-bottom: 0;
}

.home-data-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-data-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-top: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.home-data-icon-found {
    background-image: url("https://omo-oss-image.thefastimg.com/portal-saas/new2022051319473980818/cms/image/8e6eaed7-8c2d-430c-bc49-65591c096548.png");
}

.home-data-icon-area {
    background-image: url("https://omo-oss-image.thefastimg.com/portal-saas/new2022051319473980818/cms/image/86e72a89-79a2-495b-826b-0c88ea2763e8.png");
}

.home-data-icon-partner {
    background-image: url("https://omo-oss-image.thefastimg.com/portal-saas/new2022051319473980818/cms/image/4a5d8993-a07e-481f-9758-f88f91a17619.png");
}

.home-data-icon-line {
    background-image: url("https://omo-oss-image.thefastimg.com/portal-saas/new2022051319473980818/cms/image/e30402ce-63f9-488b-99c2-58181c283c1a.png");
}

.home-data-copy strong {
    display: inline-flex;
    align-items: flex-end;
    height: 60px;
    line-height: 60px;
    font-size: 52px;
    color: #111;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Impact, Arial, sans-serif;
    letter-spacing: 0.02em;
}

.home-data-copy strong em {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.home-data-copy span {
    display: block;
    margin-top: 0;
    color: #666;
    font-size: 18px;
    line-height: 2;
    font-family: a4e0340e-3b31-4220-8dcf-d62dd9746884, "Microsoft YaHei", sans-serif;
}

.home-product-section {
    margin: 30px 0 4%;
}

.home-product-combo {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 30px;
}

.home-category-panel {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    background: #f5f5f5;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 30px;
}

.home-category-head {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    margin: 0 0 16px;
    background: #207ebc;
}

.home-category-title {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 2;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    text-align: center;
}

.home-category-list {
    display: grid;
    gap: 0;
    padding: 0 35px;
}

.home-category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
    padding: 20px 10px 16px 10px;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    color: #545454;
    font-size: 18px;
    line-height: 1.5;
    font-family: a4e0340e-3b31-4220-8dcf-d62dd9746884, "Microsoft YaHei", sans-serif;
    transition: color 0.35s ease, padding-left 0.35s ease;
}

.home-category-arrow {
    width: 19px;
    height: 19px;
    object-fit: contain;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.home-category-card:hover {
    padding-left: 16px;
    color: #207ebc;
}

.home-category-card:hover .home-category-arrow {
    opacity: 0.9;
    transform: translateX(4px);
}

.home-product-grid-wrap {
    width: 100%;
}

.home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-product-grid .product-card-box {
    margin: 18px 0 0;
    padding: 0 10px;
    background: transparent;
}

.home-product-grid .product-card-box::after {
    display: none;
}

.home-product-grid .product-card-link {
    display: block;
}

.home-product-grid .product-card-media {
    min-height: 230px;
    max-height: 230px;
    border: 1px solid #e5e5e5;
    background: #fff;
    overflow: hidden;
}

.home-product-grid .product-card-media img {
    max-width: 100%;
    max-height: 230px;
    height: 100%;
    transition: transform 0.5s ease 0.2s;
}

.home-product-grid .product-card-body {
    justify-content: center;
    margin-top: 0;
    padding: 15px 10px;
    background: transparent;
    transition: background 0.35s ease;
}

.home-product-grid .product-card-title {
    min-height: 24px;
    color: #4d4d4d;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    line-height: 1.6;
}

.home-product-grid .product-card-box:hover .product-card-body {
    background: #207ebc;
}

.home-product-grid .product-card-box:hover .product-card-title {
    color: #fff;
}

.home-product-grid .product-card-box:hover .product-card-media img {
    transform: scale(1.1);
}

.home-honor-section {
    padding: 50px 0;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: 90%;
    margin: 0 auto 24px;
}

.home-honor-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 24px;
    width: 94%;
    max-width: 1420px;
    margin: 0 auto;
}

.home-honor-card {
    position: relative;
    display: block;
    margin: 0;
    padding: 10px 14px 8px;
    overflow: hidden;
    background: #f5f5f5;
    transition: box-shadow 0.35s ease;
}

.home-honor-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 0;
    background: #005cc4;
    transition: 0.45s ease;
}

.home-honor-card:hover::after {
    height: 100%;
}

.home-honor-card:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.home-honor-media,
.home-honor-card strong {
    position: relative;
    z-index: 2;
}

.home-honor-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 288px;
    padding: 4px 8px 0;
}

.home-honor-media img {
    width: 100%;
    max-width: 224px;
    max-height: 288px;
    object-fit: contain;
    transition: transform 0.5s ease 0.2s;
}

.home-honor-card strong {
    display: block;
    padding: 4px 10px 6px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    font-family: "Microsoft YaHei", sans-serif;
    text-align: center;
    transition: color 0.5s ease;
}

.home-honor-card:hover strong {
    color: #fff;
}

.home-honor-card:hover .home-honor-media img {
    transform: scale(1.1);
}

.home-news-section {
    padding: 0 0 4%;
    background: #fff;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 90%;
    margin: 2% auto 0;
}

.home-news-grid,
.home-news-feature-card,
.home-news-side-list,
.home-news-side-card,
.home-news-side-card a,
.home-news-side-copy {
    min-width: 0;
}

.home-news-feature-card,
.home-news-side-card {
    background: #fff;
}

.home-news-feature-card a {
    display: block;
    height: 100%;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.home-news-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.home-news-feature-card a:hover .home-news-feature-image img {
    transform: scale(1.02);
}

.home-news-feature-body {
    position: relative;
    width: 90%;
    height: 142px;
    margin: -142px auto 0;
}

.home-news-feature-copy {
    width: 94%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-news-feature-date,
.home-news-side-date {
    display: inline-block;
    color: #999999;
    font-size: 16px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    margin-bottom: 0;
}

.home-news-feature-date {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
}

.home-news-feature-card h3 {
    margin: 5px 0 0;
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    font-family: a4e0340e-3b31-4220-8dcf-d62dd9746884, "Microsoft YaHei", sans-serif;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news-feature-summary {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.65;
    font-family: a4e0340e-3b31-4220-8dcf-d62dd9746884, "Microsoft YaHei", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news-side-list {
    display: grid;
    gap: 16px;
    align-content: start;
    overflow: hidden;
}

.home-news-side-card a {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    padding: 24px 28px;
    box-sizing: border-box;
    color: inherit;
    background: #f7f7f7;
    transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}

.home-news-side-card a:hover {
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.home-news-side-card a:hover .home-news-side-copy h4,
.home-news-side-card a:hover .home-news-side-more {
    color: #207ebc;
}

.home-news-side-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-news-side-clock {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #999999;
    border-radius: 50%;
}

.home-news-side-clock::before,
.home-news-side-clock::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #999999;
    transform-origin: top center;
}

.home-news-side-clock::before {
    width: 2px;
    height: 6px;
    transform: translate(-50%, -100%);
}

.home-news-side-clock::after {
    width: 5px;
    height: 2px;
    transform: translate(0, -50%);
}

.home-news-side-copy h4 {
    margin: 16px 0 8px;
    font-size: 20px;
    color: #3b3b3b;
    line-height: 2;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news-side-copy p {
    margin: 0;
    color: #9b9b9b;
    line-height: 1.5;
    font-size: 16px;
    font-family: a4e0340e-3b31-4220-8dcf-d62dd9746884, "Microsoft YaHei", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news-side-more {
    display: inline-block;
    margin-top: 14px;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
    font-family: "Microsoft YaHei", sans-serif;
    transition: color 0.3s ease;
}

/* Detail pages */
.detail-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 36px;
    margin-bottom: 36px;
}

.detail-gallery-box {
    background: #f5f5f5;
    padding: 20px;
}

.detail-gallery-box img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: contain;
    background: #fff;
}

.detail-thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.detail-thumb-item {
    background: #fff;
    border: 1px solid #ececec;
    padding: 6px;
}

.detail-thumb-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.detail-page-title {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.25;
    color: #333;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.detail-page-meta {
    margin: 0 0 18px;
    color: #8a8a8a;
    font-size: 15px;
}

.detail-page-summary {
    margin: 0 0 24px;
    padding: 24px 26px;
    background: #f7f7f7;
    color: #666;
    line-height: 1.9;
}

.detail-contact-panel {
    border-top: 1px solid #e5e5e5;
    padding-top: 22px;
}

.detail-contact-panel p {
    margin: 0 0 10px;
    color: #555;
}

.detail-contact-panel a {
    color: #207ebc;
}

.product-detail-meta-list {
    display: grid;
    gap: 16px;
}

.product-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    line-height: 1.8;
}

.product-detail-meta-row strong {
    color: #333;
}

.product-detail-meta-row a {
    color: #207ebc;
}

.product-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border: 1px solid #dcdcdc;
    background: #f8f8f8;
    color: #555;
    font-size: 14px;
}

.product-detail-tags a:hover {
    color: #fff;
    background: #207ebc;
    border-color: #207ebc;
}

.product-detail-summary-label,
.product-detail-keywords {
    margin: 0;
    color: #666;
    line-height: 1.9;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.action-btn-primary {
    color: #fff;
    background: #1357bf;
    border-color: #1357bf;
}

.action-btn-primary:hover {
    color: #fff;
    background: #1150ab;
    border-color: #1150ab;
}

.product-page-shell,
.product-detail-shell {
    padding-top: 8px;
}

.product-detail-fullwidth {
    width: 100%;
}

.product-related-head {
    margin: 42px 0 22px;
    color: #303030;
    font-size: 38px;
    line-height: 1;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.detail-page-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.detail-page-nav a {
    display: block;
    padding: 20px 22px;
    background: #f7f7f7;
    color: #555;
    min-height: 86px;
}

.detail-page-nav a strong {
    display: block;
    margin-bottom: 8px;
    color: #207ebc;
}

.product-detail-page {
    padding: 30px 0 55px;
    background: #f5f5f5;
}

.product-detail-page-shell {
    width: min(90%, 1400px);
    margin: 0 auto;
}

.product-detail-breadcrumb {
    margin-top: 100px;
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}

.product-detail-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.7;
}

.product-detail-breadcrumb-item+.product-detail-breadcrumb-item::before {
    content: "/";
    margin: 0 10px;
    color: #b3b3b3;
}

.product-detail-breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.product-detail-breadcrumb-home {
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-right: 6px;
}

.product-detail-breadcrumb-home svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.product-detail-breadcrumb-label {
    display: inline-block;
}

.product-detail-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 42px;
    padding: 40px 30px 30px;
    background: #fff;
}

.product-detail-gallery-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.product-detail-gallery-main img {
    width: 100%;
    max-height: 410px;
    object-fit: contain;
}

.product-detail-gallery-thumbs {
    margin-top: 16px;
    overflow: hidden;
}

.product-detail-gallery-thumb {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 4px;
    margin-right: 10px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-gallery-thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-detail-gallery-thumb.is-active,
.product-detail-gallery-thumb:hover {
    border-color: #207ebc;
}

.product-detail-hero-copy .detail-page-title {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.1;
}

.product-detail-category-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    color: #666;
    line-height: 1.9;
}

.product-detail-category-row strong {
    color: #666;
    font-weight: 400;
}

.product-detail-page .product-detail-tags {
    gap: 0;
}

.product-detail-page .product-detail-tags a {
    min-height: 0;
    margin-right: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 16px;
    line-height: 1.9;
}

.product-detail-page .product-detail-tags a:hover {
    color: #207ebc;
    background: transparent;
    border-color: transparent;
}

.product-detail-contact-line {
    margin: 0;
    color: #207ebc;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
}

.product-detail-contact-line+.product-detail-contact-line {
    margin-top: 12px;
}

.product-detail-contact-line a {
    color: inherit;
}

.product-detail-summary-label {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

.product-detail-page .product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 6px;
    gap: 0;
}

.product-detail-page .product-detail-actions .action-btn {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    flex: 0 0 130px;
    min-width: 0;
    min-height: 0;
    padding: 8px 0;
    margin-right: 30px;
    border: none;
    border-radius: 0;
    background-color: #606060;
    color: #fff;
    font-size: 16px;
    font-family: "Microsoft YaHei", sans-serif;
    transition: background 0.3s;
}

.product-detail-page .product-detail-actions .action-btn:last-child {
    margin-right: 0;
}

.product-detail-page .product-detail-actions .action-btn:hover {
    background: #207ebc;
    color: #fff;
}

.product-detail-keywords {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.product-detail-extra-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.product-detail-extra-meta p {
    margin: 0;
    color: #666;
    line-height: 2;
}

.product-detail-extra-meta a {
    color: #207ebc;
}

.product-detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.9fr);
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

.product-detail-article-card,
.product-detail-related-card {
    background: #fff;
}

.product-detail-article-card {
    padding: 30px 40px 36px;
}

.product-detail-related-card {
    padding: 30px 20px 26px;
}

.product-detail-section-head {
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 4px solid #207ebc;
}

.product-detail-section-head h2 {
    margin: 0;
    color: #262626;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.product-detail-article {
    color: #666;
    font-size: 16px;
    line-height: 2;
}

.product-detail-article p {
    margin: 0 0 18px;
}

.product-detail-article img {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 16px 0;
}

.product-detail-article iframe,
.product-detail-article video,
.product-detail-article embed,
.product-detail-article object {
    display: block;
    max-width: 100%;
    margin: 16px 0;
}

.product-detail-article table {
    width: 100% !important;
    margin: 26px 0;
    border-collapse: collapse;
    border: 1px solid #dedede;
}

.product-detail-article table tr:first-child td,
.product-detail-article table tr:first-child th {
    background: #207ebc;
    color: #fff;
    font-size: 18px;
}

.product-detail-article table tr:not(:first-child):nth-child(even) {
    background: #f5f5f5;
}

.product-detail-article table td,
.product-detail-article table th {
    padding: 10px 12px;
    border: 1px solid #dedede;
    color: inherit;
    font-size: 16px;
    line-height: 1.8;
}

.product-detail-related-list {
    display: grid;
    gap: 26px;
}

.product-detail-related-item {
    display: block;
}

.product-detail-related-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.product-detail-related-media img {
    width: 100%;
    max-height: 188px;
    object-fit: contain;
}

.product-detail-related-title {
    display: block;
    margin-top: 10px;
    color: #333;
    font-size: 16px;
    line-height: 2;
    text-align: center;
    transition: color 0.25s ease;
}

.product-detail-related-item:hover .product-detail-related-title {
    color: #207ebc;
}

.product-detail-prevnext {
    margin-top: 24px;
}

.product-detail-message-section {
    padding: 0 0 30px;
    background: #f5f5f5;
}

.product-detail-message-card {
    background: #fff;
    padding: 50px;
}

.product-detail-message-title {
    margin: 0;
    color: #262626;
    font-size: 26px;
    line-height: 1.5;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.product-detail-message-form {
    margin-top: 20px;
}

.product-detail-message-grid {
    display: grid;
    gap: 0;
}

.product-detail-message-row-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-detail-message-section .contact-form-block input,
.product-detail-message-section .contact-form-block textarea {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 2px solid #ced4da;
    border-radius: 4px;
    background: #fbfbfb;
    font-size: 14px;
}

.product-detail-message-section .contact-form-block textarea {
    min-height: 150px;
}

.product-detail-message-section .contact-form-block input:focus,
.product-detail-message-section .contact-form-block textarea:focus {
    border-color: #30d9bb;
}

.product-detail-message-submit {
    width: 200px !important;
    height: auto !important;
    min-height: 50px;
    margin-top: 0;
    padding: 12px 24px !important;
    border: 1px solid rgba(64, 158, 255, 0.02) !important;
    border-radius: 10px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-family: "Microsoft YaHei", sans-serif !important;
}

.product-detail-message-submit:hover {
    background: #30d9bb !important;
    border-color: #30d9bb !important;
}

.single-page-shell,
.news-page-shell,
.news-detail-shell {
    max-width: 100%;
    width: min(90%, 1420px);
    margin: 0 auto;
}

.news-detail-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
}

.news-detail-shell-main {
    width: 100%;
    margin: 0;
    padding-bottom: 3%;
}

.news-detail-prevnext {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-detail-prevnext-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    color: #555;
    font-size: 14px;
    line-height: 2;
}

.news-detail-prevnext-item.is-next {
    justify-content: flex-end;
    text-align: right;
}

.news-detail-prevnext-label {
    flex: 0 0 auto;
    color: #555;
}

.news-detail-prevnext-link,
.news-detail-prevnext-empty {
    min-width: 0;
    color: #555;
    line-height: 2;
}

.news-detail-prevnext-link {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.news-detail-prevnext-link:hover {
    color: #207ebc;
}

.news-related-panel {
    padding: 25px 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.news-related-panel .section-head {
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #207ebc;
}

.news-related-panel .section-head .en {
    font-size: 28px;
}

.news-related-panel .section-head .cn {
    margin-top: 4px;
    font-size: 26px;
    font-weight: 700;
    color: #262626;
    font-family: "Microsoft YaHei", sans-serif;
}

.news-related-list {
    display: grid;
    gap: 0;
}

.news-related-item {
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}

.news-related-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.news-related-date {
    display: block;
    margin-bottom: 6px;
    color: #999;
    font-size: 16px;
    line-height: 1.2;
}

.news-related-item a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    color: #424242;
    font-size: 18px;
    font-weight: 700;
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.news-related-item a:hover {
    color: #207ebc;
}

.single-page-shell .section-head {
    margin-bottom: 34px;
    padding-bottom: 0;
    border-bottom: 0;
}

.single-page-shell .section-head::after {
    content: "";
    display: block;
    width: 74px;
    margin-top: 20px;
    border-bottom: 2px solid #d9d9d9;
}

.single-page-shell .section-head .en {
    color: #303030;
    font-size: 38px;
    line-height: 1.2;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
    text-transform: none;
}

.single-page-shell .section-head .cn {
    margin-top: 10px;
    color: #7b7b7b;
    font-size: 16px;
    line-height: 1.9;
    font-family: "Microsoft YaHei", sans-serif;
    max-width: 980px;
}

.page-content-lead {
    margin-bottom: 28px;
}

.single-page-shell .rich-content {
    color: #666;
    font-size: 16px;
    line-height: 2;
}

.single-page-shell .rich-content p {
    margin: 0 0 14px;
}

.single-page-shell .rich-content h2,
.single-page-shell .rich-content h3,
.single-page-shell .rich-content h4 {
    color: #303030;
    margin: 28px 0 12px;
    line-height: 1.5;
}

.single-page-shell .rich-content ul,
.single-page-shell .rich-content ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.single-page-shell .rich-content li {
    margin-bottom: 8px;
}

.single-page-shell .rich-content img {
    display: block;
    max-width: 100%;
    margin: 24px auto;
}

.about-single-shell {
    width: min(90%, 1400px);
}

.about-single-shell.content-panel {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.about-reference-page {
    display: block;
}

.about-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.86fr);
    align-items: start;
    column-gap: 56px;
    margin: 0 0 34px;
    scroll-margin-top: 136px;
}

.about-intro-shell.is-text-only {
    grid-template-columns: 1fr;
}

.about-intro-copy {
    min-width: 0;
}

.about-company-head {
    margin: 0 0 18px;
    max-width: none;
}

.about-company-head h2 {
    margin: 0;
    color: #202020;
    font-size: 30px;
    line-height: 1.35;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.about-company-head p {
    margin: 8px 0 0;
    color: #8a8a8a;
    font-size: 16px;
    line-height: 1.75;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.04em;
}

.about-company-head span {
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 18px;
    background: #207ebc;
}

.about-intro-lead {
    color: #7f7f7f;
    font-size: 16px;
    line-height: 30px;
    font-family: "Microsoft YaHei", sans-serif;
}

.about-intro-lead p {
    margin: 0;
    line-height: 30px;
    text-indent: 2em;
}

.about-intro-media {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 0;
}

.about-intro-media img,
.about-intro-media video {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0;
    background: #f5f5f5;
}

.about-intro-media img {
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
}

.about-intro-media video {
    min-height: 320px;
    object-fit: cover;
}

.about-single-shell .rich-content {
    font-size: 16px;
    color: #7f7f7f;
    line-height: 30px;
    font-family: "Microsoft YaHei", sans-serif;
}

#hf-about-story,
#hf-about-culture {
    scroll-margin-top: 136px;
}

.about-single-shell .detail-page-summary {
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    color: #7f7f7f;
    line-height: 30px;
}

.about-single-shell .rich-content p {
    margin: 0 0 8px;
    line-height: 30px;
}

.about-single-shell .about-intro-lead p {
    margin: 0;
    text-indent: 2em;
}

.about-main-copy {
    margin-top: 8px;
}

.about-main-copy h1,
.about-main-copy h2,
.about-main-copy h3 {
    margin: 30px 0 14px;
    color: #222;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    line-height: 1.45;
}

.about-main-copy h1 {
    font-size: 30px;
}

.about-main-copy h2 {
    font-size: 24px;
}

.about-main-copy h3 {
    font-size: 20px;
}

.about-main-copy p {
    color: #7f7f7f;
}

.about-main-copy strong {
    color: #2e2e2e;
    font-weight: 700;
}

.about-main-copy video {
    display: block;
    width: 100%;
    max-width: 100%;
    background: #000;
}

.about-culture-section {
    position: relative;
    margin-top: 64px;
    padding: 82px 0;
    overflow: hidden;
    background: linear-gradient(125deg, #f5f9fa 0%, #e0edf1 30%, #cee3e9 100%);
}

.about-culture-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(28, 42, 57, 0.78), rgba(72, 97, 122, 0.42)),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 26%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.1), transparent 22%);
}

.about-culture-section::after {
    content: "";
    position: absolute;
    left: 8%;
    bottom: -18%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.about-culture-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    margin-left: auto;
    padding: 52px 56px 56px;
    background: #fff;
    box-shadow: 0 28px 56px rgba(28, 39, 52, 0.16);
}

.about-culture-head {
    margin-bottom: 26px;
}

.about-culture-head h2 {
    margin: 0;
    color: #202020;
    font-size: 32px;
    line-height: 1.2;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.about-culture-head p {
    margin: 10px 0 0;
    color: #8a8a8a;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
}

.about-culture-list {
    display: grid;
    gap: 22px;
}

.about-culture-item {
    padding: 0 0 22px;
    background: transparent;
    border-bottom: 1px solid #ececec;
}

.about-culture-item h3 {
    margin: 0 0 10px;
    color: #2b2b2b;
    font-size: 20px;
    line-height: 1.4;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.about-culture-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-culture-item .rich-content,
.about-culture-item .rich-content p {
    color: #666;
    line-height: 30px;
}

.about-culture-item .rich-content p {
    margin: 0;
}

.single-page-shell .rich-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
}

.single-page-shell .rich-content table td,
.single-page-shell .rich-content table th {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    color: #666;
}

.list-empty-state {
    padding: 36px 24px;
    text-align: center;
    color: #999;
    border: 1px dashed #d9d9d9;
}

.contact-form-block {
    padding: 34px 30px;
    background: transparent;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 12px 14px;
    border: 1px solid #ececec;
    color: #666;
}

.info-table td:first-child {
    width: 160px;
    color: #333;
    background: #fafafa;
    font-weight: 700;
}

.pager-block {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.pager-block .pagination {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.pager-block .pagination>li {
    margin-right: 0;
    list-style: none;
}

.pager-block .pagination>li:last-child {
    margin-right: 0;
}

.pager-block .pagination>li>a,
.pager-block .pagination>li>span {
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 1px solid #dcdcdc;
    margin: 0;
    border-radius: 0;
    background: #fff;
    transition: all 0.25s ease;
}

.pager-block .pagination>li>a:hover,
.pager-block .pagination>li>span:hover {
    color: #0c58cf;
    background: #fff;
    border-color: #0c58cf;
}

.pager-block .pagination>.active>span,
.pager-block .pagination>.active>a,
.pager-block .pagination>.active>a:hover {
    background: #0c58cf;
    border-color: #0c58cf;
    color: #fff;
}

.contact-cta-block {
    display: flex;
    align-items: center;
    min-height: 100px;
    padding: 0;
    background-image: linear-gradient(-60deg, #5aa3d8, #1a78b5);
}

.contact-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    color: #fff;
}

.contact-bar-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-bar-copy p {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.45;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
    font-weight: 400;
    max-width: 100%;
}

.contact-bar-copy a {
    color: #fff;
}

/* Unified submenu simple dropdown */
.submenu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: #fff;
    border-top: 2px solid #0c58cf;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.nav-item.has-children:hover>.submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Full-width mega menu - matching zs-huifeng.com */
.megamenu-panel-fullwidth {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    background: #f2f3f1;
    border-top: none;
    border-bottom: 4px solid #0c58cf;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 200;
}

.megamenu-header {
    padding: 30px 0 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
}

.megamenu-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 36px;
    padding: 24px 0 30px;
}

.megamenu-category-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    font-family: "Microsoft YaHei", sans-serif;
}

.megamenu-header-copy {
    margin: 0 0 18px;
    color: #7e7e7e;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.megamenu-grid-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 1px solid #ddd;
}

.megamenu-grid-item {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.megamenu-grid-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.megamenu-grid-link:hover {
    color: #2484c7;
    background: #eaebe8;
}

.megamenu-grid-text {
    flex: 1;
}

.megamenu-grid-arrow {
    flex: 0 0 auto;
    font-size: 20px;
    color: #aaa;
    line-height: 1;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.megamenu-grid-link:hover .megamenu-grid-arrow {
    color: #2484c7;
}

.megamenu-grid-list-single {
    grid-template-columns: 1fr;
    border: 1px solid #ddd;
    border-left: 0;
    background: #fff;
}

.megamenu-grid-list-single .megamenu-grid-item {
    border-right: 0;
}

.megamenu-grid-list-single .megamenu-grid-link {
    padding: 16px 24px;
}

/* Three-column product mega menu */
.megamenu-shell-three {
    grid-template-columns: 36.25% 35.15% 28.6%;
    gap: 0;
    padding: 0 0 30px;
}

.megamenu-left-col {
    padding: 40px 0;
}

.megamenu-cat-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
}

.megamenu-cat-tab {
    border-bottom: 1px solid #e0e0e0;
}

.megamenu-cat-tab:last-child {
    border-bottom: none;
}

.megamenu-cat-tab a {
    display: block;
    padding: 0 25px;
    line-height: 100px;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.megamenu-cat-tab:hover a,
.megamenu-cat-tab.is-active a {
    background: #fff;
    color: #0c58cf;
    font-weight: 700;
}

.megamenu-center-col {
    background: #fff;
    min-height: 300px;
    padding: 30px 0 20px;
}

.megamenu-sub-panel {
    display: none;
    padding: 0 50px;
}

.megamenu-sub-panel.is-active {
    display: block;
}

.megamenu-sub-title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.megamenu-sub-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.megamenu-sub-list-single {
    grid-template-columns: 1fr;
}

.megamenu-sub-list li {
    margin: 0;
    padding: 0;
}

.megamenu-sub-list li a {
    display: block;
    padding: 0;
    line-height: 46px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.megamenu-sub-list li a:hover {
    color: #0c58cf;
}

.megamenu-right-col {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.megamenu-side-card {
    height: 100%;
    padding: 28px 30px;
    background: #fff;
    border: 1px solid #ddd;
}

.megamenu-side-title {
    margin: 0 0 18px;
    color: #333;
    font-size: 30px;
    line-height: 1.2;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.megamenu-side-links {
    display: grid;
    gap: 12px;
}

.megamenu-side-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 20px;
    border: 2px solid #bfbfbf;
    color: #333;
    font-size: 15px;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.megamenu-side-links a:hover {
    color: #fff;
    background: #207ebc;
    border-color: #207ebc;
}

.megamenu-side-contact {
    margin-top: 24px;
    color: #666;
}

.megamenu-side-contact span {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.megamenu-side-contact a {
    color: #207ebc;
    font-size: 30px;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.hf-product-dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 4px solid #0c58cf;
    box-shadow: none;
    z-index: 10;
    transform: translateX(-50%) translateY(10px);
    transition: all ease 0.3s;
}

.nav-item.has-children:hover>.hf-product-dropdown {
    transform: translateX(-50%) translateY(0);
}

.hf-product-dropdown-shell {
    padding: 0;
}

.hf-product-dropdown-warp {
    width: min(94%, 1280px);
    margin: 0 auto;
    padding: 42px 0 160px;
}

.hf-product-dropdown-title {
    margin: 0 0 26px;
    color: #333;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    font-family: "Microsoft YaHei", sans-serif;
}

.hf-product-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 38px;
    max-width: 760px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hf-product-dropdown-item {
    border-bottom: 1px solid #d7d7d7;
}

.hf-product-dropdown-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 6px 0 0;
    color: #333;
    transition: color 0.3s ease;
}

.hf-product-dropdown-label {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.hf-product-dropdown-arrow {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    margin-left: 12px;
}

.hf-product-dropdown-arrow::before,
.hf-product-dropdown-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 1px;
    background: currentColor;
}

.hf-product-dropdown-arrow::before {
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
}

.hf-product-dropdown-arrow::after {
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: right center;
}

.hf-product-dropdown-item a:hover {
    color: #0c58cf;
}


.submenu-dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.submenu-dropdown-title {
    display: none;
}

.submenu-dropdown-item {
    padding: 0;
    margin: 0;
}

.submenu-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px dashed #f0f0f0;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.submenu-dropdown-item:last-child .submenu-dropdown-link {
    border-bottom: none;
}

.submenu-dropdown-link:hover {
    color: #0c58cf;
    background: #fbfbfb;
}

.submenu-dropdown-arrow {
    fill: currentColor;
    margin-left: 10px;
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

.submenu-dropdown-link:hover .submenu-dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
}

.side-title {
    margin: 0 0 40px;
    color: #333;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.submenu-side-inner {
    display: flex;
    flex-direction: column;
}

.submenu-side-links {
    display: grid;
    gap: 15px;
}

.submenu-side-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
    height: 46px;
    padding: 0 30px;
    color: #333;
    line-height: 1;
    border: 2px solid #bfbfbf;
    transition: all 0.5s ease;
}

.submenu-side-links a:hover {
    color: #fff;
    background: #0c58cf;
    border-color: #0c58cf;
}

.submenu-side-contact {
    margin-top: 25px;
    padding-top: 10px;
    border-top: 0;
}

.submenu-side-contact span {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 16px;
    letter-spacing: 0;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.certificate-grid-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.certificate-card,
.equipment-card {
    display: block;
    padding: 14px;
    border: 1px solid #f7f9fb;
    background: #fff;
    transition: 0.25s ease;
}

.certificate-card:hover,
.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(20, 26, 34, 0.1);
}

.certificate-media,
.equipment-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 14px;
    background: #f7f8f7;
}

.certificate-media img,
.equipment-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-card strong,
.equipment-card strong {
    display: block;
    color: #294150;
    line-height: 1.65;
}

.page-content-lead {
    margin-bottom: 28px;
}

.contact-section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-page-panel {
    padding: 40px 0 0;
    background: transparent;
}

.contact-page-heading {
    padding: 0 34px 30px;
    text-align: center;
}

.contact-page-heading h2 {
    margin: 0;
    color: #262626;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    font-family: "Microsoft YaHei", sans-serif;
}

.contact-page-heading p {
    margin: 8px 0 0;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    font-family: aba34633-06f8-4e29-a276-4d8ef2e5b99a, Arial, sans-serif;
}

.contact-top-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-form-section {
    padding: 0 0 60px;
}

.contact-top-card {
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-top-card:hover {
    transform: translateY(-5px);
}

.contact-top-card.bg-green {
    background-color: #2484c7;
    color: #fff;
}

.contact-top-card.bg-gray {
    background-color: #f7f7f7;
    color: #333;
}

.contact-card-title {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.contact-top-card.bg-green .contact-card-title {
    color: #fff;
}

.contact-top-card.bg-gray .contact-card-title {
    color: #333;
}

.contact-card-copy p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 28px;
    word-break: break-word;
}

.contact-top-card.bg-green .contact-card-copy p {
    color: #fff;
}

.contact-top-card.bg-gray .contact-card-copy p {
    color: #666;
}

.contact-card-copy a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-top-card.bg-gray .contact-card-copy a:hover {
    color: #2484c7;
}

.contact-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    margin-top: 0;
    background: #f5f5f5;
    border-top: 0;
}

.contact-page-form-block {
    padding: 34px 34px 30px;
    height: 100%;
}

.contact-page-form-head {
    margin-bottom: 16px;
}

.contact-page-form-head h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    color: #2c2c2c;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.contact-page-form-head::after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 14px;
    border-bottom: 1px solid #d8d8d8;
}

.contact-page-map {
    min-height: 580px;
    background: #f5f5f5;
    overflow: hidden;
    border-left: 1px solid #ebebeb;
}

.contact-page-map .rich-content {
    height: 100%;
    margin: 0;
    font-size: 0;
    line-height: 0;
}

.contact-page-map .rich-content>* {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.contact-page-map-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 580px;
    padding: 48px;
    background:
        linear-gradient(rgba(47, 102, 142, 0.08), rgba(47, 102, 142, 0.08)),
        repeating-linear-gradient(0deg, #ffffff, #ffffff 39px, #ffffff 40px),
        repeating-linear-gradient(90deg, #ffffff, #ffffff 39px, #ffffff 40px);
}

.contact-page-map-placeholder h3 {
    margin: 0 0 18px;
    color: #2c2c2c;
    font-size: 34px;
    line-height: 1;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
}

.contact-page-map-placeholder p {
    margin: 0 0 14px;
    color: #4f4f4f;
    font-size: 18px;
    line-height: 1.9;
}

.contact-page-map iframe,
.contact-page-map #mapContainer {
    width: 100% !important;
    min-height: 580px !important;
}

.contact-form-block input,
.contact-form-block textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background: #fbfbfb;
    color: #555;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-form-block input:focus,
.contact-form-block textarea:focus {
    border-color: #1971ad;
    background: #fff;
    outline: none;
}

.contact-form-block textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-grid-columns .form-col-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contact-form-block .btn-submit {
    width: 150px;
    height: 50px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form-block .btn-submit:hover {
    background: #1971ad;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media screen and (max-width: 1024px) {
    .site-header-inner {
        flex-wrap: wrap;
        min-height: 78px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-header-contact {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        width: 100%;
        order: 4;
        margin-left: 0;
        display: none;
        padding-bottom: 12px;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(20, 26, 34, 0.08);
    }

    .nav-link {
        min-height: 54px;
        color: #2c332d;
        width: 100%;
        padding: 0;
    }

    .nav-link-row {
        justify-content: space-between;
    }

    .nav-link-row::after {
        display: none;
    }

    .nav-item {
        padding-left: 0;
        padding-right: 0;
    }

    .submenu-panel {
        position: static;
        left: auto;
        min-width: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
    }

    .megamenu-panel-fullwidth {
        position: static;
        padding: 0;
        background: #f0f0f0;
        border-top: none;
        box-shadow: none;
    }

    .megamenu-header {
        padding: 14px 16px 10px;
        border-bottom: 1px solid #ddd;
    }

    .megamenu-category-title {
        font-size: 15px;
        margin-bottom: 0;
        color: #555;
    }

    .megamenu-grid-list {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .megamenu-grid-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hf-product-dropdown-shell,
    .hf-product-dropdown-warp {
        width: 100%;
    }

    .hf-product-dropdown {
        position: static;
        left: auto;
        top: auto;
        right: auto;
        display: block;
        justify-content: flex-start;
        padding: 0;
        transform: none;
    }

    .hf-product-dropdown-warp {
        display: block;
        padding: 12px 0 10px;
    }

    .hf-product-dropdown-title {
        margin: 0;
        padding: 0 18px 10px;
        font-size: 16px;
        line-height: 1.4;
    }

    .hf-product-dropdown-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: none;
    }

    .hf-product-dropdown-item a {
        min-height: 48px;
        padding: 0 18px;
    }

    .hf-product-dropdown-label {
        font-size: 14px;
    }

    .nav-item.is-open>.submenu-panel {
        display: block;
    }

    .contact-top-grid,
    .contact-form-grid-columns .form-col-3,
    .contact-page-shell,
    .certificate-grid-page {
        grid-template-columns: 1fr;
    }

    .submenu-toggle {
        display: inline-flex;
    }

    .submenu-link-row {
        padding: 10px 14px;
        font-size: 16px;
        min-height: 56px;
    }

    .submenu-link-text {
        font-size: 16px;
    }

    .contact-text-grid {
        gap: 20px;
        padding: 0 18px;
    }

    .contact-page-panel {
        padding-top: 24px;
    }

    .contact-page-shell {
        margin-top: 0;
    }

    .contact-page-heading {
        padding: 0 22px 20px;
    }

    .contact-page-heading h2 {
        font-size: 30px;
    }

    .contact-page-heading p {
        margin-top: 6px;
        font-size: 14px;
    }

    .contact-page-top-primary,
    .contact-page-top-card,
    .contact-page-form-block {
        padding: 22px 22px 20px;
    }

    .contact-page-indent {
        padding-left: 40px;
    }

    .contact-page-top-primary,
    .contact-page-top-card {
        min-height: 0;
    }

    .contact-page-top-title {
        margin-bottom: 6px;
    }

    .contact-page-top-copy p {
        line-height: 27px;
    }

    .contact-page-top-card {
        border-top: 1px solid #e3e3e3;
    }

    .contact-page-form-head h3 {
        font-size: 30px;
    }

    .contact-page-map {
        min-height: 420px;
    }

    .contact-page-map iframe,
    .contact-page-map #mapContainer {
        min-height: 420px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .two-col-layout,
    .detail-top-layout,
    .news-card-box,
    .home-about-grid,
    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-box {
        width: 100%;
        margin-left: 0;
    }

    .product-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-reference-layout {
        gap: 36px;
    }

    .home-product-combo {
        grid-template-columns: 1fr;
    }

    .home-category-panel {
        display: none;
    }

    .home-category-head {
        height: 88px;
        margin-left: -22px;
        margin-right: -22px;
    }

    .home-category-title {
        font-size: 30px;
    }

    .home-data-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-honor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .certificate-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-bar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 24px;
    }

    .contact-page-top-card,
    .contact-page-map {
        border-left: 0;
    }

    .contact-page-top-card {
        border-top: 1px solid #e3e3e3;
    }

    .contact-page-map {
        border-top: 1px solid #e3e3e3;
    }
}

@media screen and (max-width: 768px) {
    .site-header-inner {
        gap: 14px;
    }

    .brand-logo img {
        max-width: 168px;
        max-height: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px 16px;
    }

    .footer-qrcode-box {
        display: none;
    }

    .footer-column h3 {
        margin-bottom: 8px;
        font-size: 16px;
        color: #fff;
    }

    .footer-links a {
        font-size: 14px;
        line-height: 2;
        color: #bfbfbf;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 14px;
        font-size: 13px;
        color: #7f7f7f;
    }

    .home-hero-banner {
        margin-top: 102px;
    }

    .hero-carousel,
    .hero-carousel-stage,
    .hero-carousel-shell {
        min-height: auto;
        height: auto;
    }

    .hero-carousel-slide {
        position: relative;
    }

    .hero-carousel-slide .layout-shell {
        min-height: 0;
    }

    .home-hero-content {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        transform: none;
        text-align: center;
        padding: 20px 15px;
    }

    .page-banner {
        min-height: 180px;
        padding-top: 90px;
        text-align: center;
    }

    .contact-page-banner,
    .contact-page-banner .layout-shell {
        min-height: 180px;
        padding-top: 90px;
    }

    .contact-page-banner .page-banner-kicker {
        line-height: 1;
    }

    .news-reference-banner,
    .product-reference-banner,
    .contact-page-banner {
        min-height: 180px;
        padding: 80px 0 28px;
    }

    .news-reference-banner .layout-shell,
    .product-reference-banner .layout-shell,
    .contact-page-banner .layout-shell {
        min-height: inherit;
        padding-top: 0;
        padding-bottom: 0;
    }

    .news-reference-banner .page-banner-kicker,
    .product-reference-banner .page-banner-kicker {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .news-reference-banner .page-banner-title,
    .product-reference-banner .page-banner-title,
    .contact-page-banner .page-banner-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .news-reference-banner .page-banner-subtitle,
    .product-reference-banner .page-banner-subtitle,
    .contact-page-banner .page-banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }

    .page-banner-kicker {
        font-size: 16px;
    }

    .channel-switch-scroll {
        gap: 8px;
        width: auto;
        min-width: 100%;
        border: 0;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .channel-switch-link {
        flex: 0 0 auto;
        min-width: 138px;
        min-height: 42px;
        padding: 0 18px;
        font-size: 14px;
        border: 1px solid #d8d8d8;
    }

    .about-toolbar-inner {
        flex-direction: column;
        align-items: center;
        min-height: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 12px;
        text-align: center;
    }

    .about-nav-scroll {
        gap: 8px;
        width: 100%;
        min-width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        background: transparent;
    }

    .about-nav-link {
        flex: 0 0 auto;
        min-width: 108px;
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
        border: 1px solid #d8d8d8;
        background: #fff;
        box-shadow: none;
    }

    .about-nav-link:hover,
    .about-nav-link.is-current {
        border-color: #0c58cf;
        box-shadow: none;
    }

    .about-crumb-nav {
        display: none;
    }

    .about-crumb-list {
        justify-content: center;
    }

    .about-toolbar+.section-block {
        padding-top: 25px;
    }

    .page-banner-title,
    .section-head .cn {
        font-size: 24px;
        text-align: center;
    }

    .section-head .en {
        font-size: 28px;
        text-align: center;
    }

    .contact-form-block .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .product-grid-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-reference-layout {
        gap: 20px;
    }

    .product-reference-head {
        padding-bottom: 18px;
    }

    .product-reference-head-en {
        font-size: 18px;
    }

    .product-reference-head-cn {
        font-size: 30px;
    }

    .product-reference-main {
        padding: 0;
        width: 100%;
        min-width: 0;
    }

    .product-grid-list-page {
        margin: 0;
    }

    .side-panel {
        padding: 0;
    }

    .product-side-panel {
        position: relative;
    }

    .product-side-panel .side-panel-head,
    .product-side-panel .side-contact-box {
        display: none;
    }

    .product-side-mobile-trigger {
        display: block;
        width: 100%;
        border: 0;
        background: rgb(47 102 142);
        padding: 10px 15px;
        border-radius: 2px;
        font-size: 14px;
        color: rgb(255 255 255 / 80%);
        outline: 0;
        text-align: center;
    }

    .product-side-mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 999;
        border: 0;
        background: rgb(0 0 0 / 70%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .product-side-panel.is-mobile-open .product-side-mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    .product-side-tree {
        position: fixed;
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        z-index: 1000;
        width: min(80vw, 320px);
        height: 100vh;
        padding: 54px 0 18px;
        overflow-y: auto;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -8px 0 28px rgba(0, 0, 0, 0.14);
    }

    .product-side-panel.is-mobile-open .product-side-tree {
        transform: translateX(0);
    }

    .product-side-mobile-close {
        position: absolute;
        top: 0;
        right: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #4d4d4d;
        font-size: 28px;
        line-height: 1;
        z-index: 2;
    }

    .side-panel-head .title,
    .side-contact-title {
        font-size: 28px;
    }

    .side-panel-head .sub,
    .side-contact-en {
        font-size: 18px;
    }

    .single-page-shell,
    .news-page-shell,
    .news-detail-shell {
        width: 100%;
    }

    .about-company-head h2 {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
    }

    .about-intro-shell {
        display: flex;
        flex-direction: column-reverse;
        row-gap: 24px;
    }

    .about-company-head p {
        margin-top: 8px;
        font-size: 14px;
        text-align: center;
    }

    .about-company-head span {
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-intro-lead {
        text-align: justify;
        text-indent: 0;
        font-size: 15px;
        line-height: 1.8;
    }

    .about-intro-lead p {
        text-indent: 0 !important;
        margin-bottom: 12px;
    }

    .about-intro-media {
        justify-content: center;
    }

    .about-intro-media img {
        width: 100%;
        max-width: 100%;
        border-radius: 4px;
    }

    .about-intro-media video {
        min-height: 0;
    }

    .about-culture-section {
        margin-top: 36px;
        padding: 36px 0;
    }

    .about-culture-panel {
        width: 100%;
        margin-left: 0;
        padding: 24px 20px 28px;
    }

    .about-culture-head {
        margin-bottom: 18px;
        text-align: center;
    }

    .about-culture-head h2 {
        font-size: 26px;
    }

    .about-culture-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .about-culture-item .rich-content,
    .about-culture-item .rich-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Global: force responsive for fixed-size media in rich-content */
    .rich-content iframe,
    .rich-content video,
    .rich-content embed,
    .rich-content object {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
    }

    .rich-content img {
        max-width: 100% !important;
        height: auto !important;
    }

    .rich-content [style*="width"] {
        max-width: 100% !important;
    }

    .home-product-section {
        margin: 15px 0;
    }

    .home-product-grid,
    .home-honor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-product-grid-wrap {
        width: 100%;
        padding: 0;
    }

    .home-product-grid .product-card-box {
        margin: 0;
        padding: 0;
    }

    .home-product-grid .product-card-box::after {
        display: none;
    }

    .home-product-grid .product-card-media img {
        width: 100%;
        max-height: 140px;
        object-fit: contain;
    }

    .home-product-grid .product-card-body {
        padding: 5px 6px 8px;
        text-align: center;
    }

    .home-product-grid .product-card-title {
        font-size: 14px;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }

    .hero-carousel-arrow {
        display: none;
    }

    .home-about-title,
    .home-news-feature-card h3,
    .detail-page-title {
        font-size: 22px;
    }

    .home-news-feature-body {
        height: 90px;
        margin-top: -90px;
    }

    .home-news-feature-summary {
        font-size: 14px;
        line-height: 1.6;
    }

    .home-about-caption {
        font-size: 30px;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .section-head .en {
        font-size: 36px;
        color: #999;
        line-height: 1.2;
    }

    .section-head .cn {
        font-size: 28px;
    }

    .home-pill-btn {
        margin-top: 0;
        font-size: 13px;
        min-height: 40px;
        width: auto;
        padding: 0 18px;
    }

    .home-data-row {
        display: none;
    }

    .detail-thumb-grid {
        grid-template-columns: 1fr;
    }

    .home-news-feature-card h3 {
        font-size: 18px;
        line-height: 1.2;
    }

    .home-news-section {
        padding: 0 0 20px;
    }

    .home-news-side-card a {
        width: 100%;
        margin-left: 0;
        padding: 15px;
    }

    .home-news-side-copy h4 {
        font-size: 16px;
        margin: 12px 0 6px;
    }

    .home-news-side-copy p {
        font-size: 14px;
        color: #999;
    }

    .home-data-item {
        align-items: flex-start;
    }

    .home-about-grid,
    .home-data-row,
    .home-section-head,
    .home-news-grid,
    .home-honor-grid,
    .contact-bar {
        width: 100%;
    }

    .home-about-copy,
    .home-about-visual {
        margin-top: 0;
    }

    .home-about-visual img {
        width: 100%;
        max-width: 100%;
    }

    .home-about-section {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .home-about-grid {
        padding-bottom: 0;
        gap: 15px;
    }

    .home-about-link {
        margin-top: 15px;
    }

    .home-about-link img {
        height: 36px;
    }

    .home-about-text {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.8;
        text-indent: 2em;
    }

    .home-data-row {
        margin-top: 8px;
        padding-top: 0;
    }

    .home-data-copy strong {
        font-size: 40px;
    }

    .home-data-copy span {
        font-size: 16px;
    }

    .home-category-title {
        font-size: 20px;
    }

    .home-category-card {
        min-height: 50px;
        padding: 0 15px;
        font-size: 14px;
    }

    .home-product-grid .product-card-title,
    .home-honor-card strong,
    .home-news-side-copy h4,
    .home-news-side-copy p {
        line-height: 1.5;
    }

    .home-news-feature-body {
        left: 0;
        right: 0;
    }

    .home-honor-section {
        padding: 30px 0 20px;
    }

    .home-honor-card {
        margin: 0;
        padding: 5px 8px 5px;
    }

    .home-honor-card strong {
        font-size: 14px;
        line-height: 1.5;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .header-search-trigger {
        margin-left: 8px;
        margin-right: 0;
    }

    .contact-bar-copy p {
        font-size: 16px;
    }

    .contact-bar-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .certificate-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .news-card-box {
        gap: 16px;
        padding: 18px;
    }

    .news-card-thumb img {
        aspect-ratio: 16 / 10;
    }

    .news-card-body {
        padding-right: 0;
    }

    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .product-grid-list-page .product-card-box {
        margin: 5px;
        padding: 0;
    }

    .product-grid-list-page .product-card-title {
        font-size: 16px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }

    .product-grid-list-page .product-card-body {
        margin-top: 0;
        padding: 10px 5px;
        flex-direction: column;
        align-items: center;
    }

    .product-grid-list-page .product-card-media {
        min-height: 180px;
        padding: 0;
    }

    .product-card-copy {
        padding: 0;
        justify-content: center;
    }

    .product-card-plus {
        display: none;
    }

    .product-card-desc {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.7;
        min-height: 44px;
    }

    .product-card-more {
        margin-top: 14px;
        font-size: 13px;
    }

    .product-side-link {
        min-height: 56px;
    }

    .product-side-sublist a {
        min-height: 46px;
        padding-left: 12px;
    }

    .content-panel.product-page-shell.product-reference-main {
        padding: 0 !important;
        margin: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .pager-block {
        margin-top: 16px;
    }

    .pager-block .pagination {
        gap: 6px;
    }

    .pager-block .pagination>li>a,
    .pager-block .pagination>li>span {
        min-width: 32px;
        min-height: 32px;
        padding: 0 8px;
        font-size: 13px;
    }

    .news-card-title {
        font-size: 20px;
    }

    .content-panel,
    .contact-form-block {
        padding: 18px;
    }

    .contact-page-heading {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-page-shell {
        margin-top: 18px;
    }

    .contact-page-form-head h3 {
        font-size: 26px;
    }

    .detail-page-title {
        font-size: 28px;
    }

    .news-detail-prevnext {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-detail-prevnext-item,
    .news-detail-prevnext-item.is-next {
        justify-content: flex-start;
        text-align: left;
    }

    .news-detail-prevnext-item.is-next .news-detail-prevnext-label {
        order: -1;
    }

    .news-related-panel {
        width: 100%;
        padding: 10px;
        margin-left: 0;
        margin-right: 0;
        border: 1px solid #e5e5e5;
    }

    .news-related-panel .section-head {
        margin-bottom: 10px;
        padding-left: 12px;
        border-left: 3px solid #207ebc;
    }

    .news-related-panel .section-head .en {
        display: none;
    }

    .news-related-panel .section-head .cn {
        font-size: 22px;
        line-height: 1;
    }

    .news-related-item a {
        font-size: 16px;
    }

    .news-related-date {
        font-size: 14px;
    }

    .detail-page-nav {
        grid-template-columns: 1fr;
    }

    .float-drawer {
        display: none;
    }

    .contact-bar {
        display: none;
    }
}

@media (max-width: 1200px) {

    .megamenu-shell,
    .news-detail-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .header-lang-link {
        min-width: 72px;
        height: 32px;
        padding: 0 12px;
        font-size: 13px;
    }

    .megamenu-shell {
        gap: 0;
        padding: 0;
    }

    .megamenu-side-card {
        padding: 20px;
        border-top: 0;
    }

    .product-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-detail-actions .action-btn {
        width: 100%;
    }
}

/* ========== Huifeng Themed Components ========== */

/* Generic Buttons */
.hf-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
    border: none;
    line-height: 1.5;
}

.hf-btn-primary {
    background: #0c58cf;
    color: #fff;
}

.hf-btn-primary:hover {
    background: #084db4;
    color: #fff;
}

.hf-btn-default {
    background: #fff;
    color: #666;
    border: 1px solid #ddd;
}

.hf-btn-default:hover {
    border-color: #0c58cf;
    color: #0c58cf;
}

.hf-btn-accent {
    background: #e8a317;
    color: #fff;
}

.hf-btn-accent:hover {
    background: #d4930f;
    color: #fff;
}

.hf-btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

.hf-btn-wechat {
    background: #0020e7;
    color: #fff;
}

.hf-btn-wechat:hover {
    background: #001dd2;
    color: #fff;
}

.hf-btn-alipay {
    background: #358cff;
    color: #fff;
}

.hf-btn-alipay:hover {
    background: #0266ff;
    color: #fff;
}

.hf-btn-balance {
    background: #faad14;
    color: #fff;
}

.hf-btn-balance:hover {
    background: #d48806;
    color: #fff;
}

/* Empty tip */
.empty-tip {
    text-align: center;
    padding: 48px 20px;
    color: #999;
    font-size: 15px;
}

.empty-tip ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.empty-tip ul li {
    margin-bottom: 4px;
}

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 6px;
}

.status-badge.status-normal {
    background: #fdfeff;
    color: #216ea9;
}

.status-badge.status-rejected {
    background: #fbe9e7;
    color: #d84315;
}

.status-badge.status-pending {
    background: #fff3e0;
    color: #ef6c00;
}

/* Download card (for download list pages) */
.download-card {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.download-card:last-child {
    border-bottom: none;
}

.download-card-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
}

.download-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-card-body {
    flex: 1;
    min-width: 0;
}

.download-card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.4;
}

.download-card-title a {
    color: #333;
    text-decoration: none;
}

.download-card-title a:hover {
    color: #0c58cf;
}

.download-card-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.download-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.download-card-btn {
    display: inline-block;
    padding: 5px 16px;
    background: #0c58cf;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    text-decoration: none;
}

.download-card-btn:hover {
    background: #084db4;
    color: #fff;
}

/* Download group (for channel_download) */
.download-group {
    margin-bottom: 32px;
}

.download-group-title {
    font-size: 18px;
    color: #204869;
    padding-bottom: 12px;
    border-bottom: 2px solid #0c58cf;
    margin-bottom: 16px;
}

.download-group-title a {
    color: #204869;
    text-decoration: none;
}

/* Download stat */
.download-stat {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.download-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #0c58cf;
}

.download-stat-label {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

/* Detail alert */
.detail-alert {
    background: #fff8f0;
    border: 1px solid #ffe0b2;
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.detail-alert p {
    margin: 0 0 12px;
    color: #666;
    font-size: 14px;
}

.detail-alert strong {
    color: #c00;
}

/* Detail download section */
.detail-download-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.detail-section-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
}

.detail-section-title small {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin-left: 8px;
}

.detail-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-pay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.paytype-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Detail donate */
.detail-donate {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.hf-btn-like {
    background: #ffffff;
    color: #0c58cf;
    border: 1px solid #e4eff6;
}

.hf-btn-like:hover {
    background: #0c58cf;
    color: #fff;
}

/* Detail share */
.detail-share {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.detail-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #999;
    text-decoration: none;
    transition: all .2s;
}

.detail-share-btn:hover {
    background: #0c58cf;
    color: #fff;
}

/* Detail related */
.detail-related {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.detail-related-card {
    display: block;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all .2s;
}

.detail-related-card:hover {
    border-color: #0c58cf;
    box-shadow: 0 2px 8px rgba(30, 78, 158, .12);
}

.detail-related-thumb {
    display: block;
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.detail-related-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-related-title {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #333;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Comments */
.comment-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.comment-author {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.comment-author:hover {
    color: #0c58cf;
}

.comment-date {
    font-size: 12px;
    color: #bbb;
}

.comment-reply {
    font-size: 12px;
    color: #0c58cf;
    text-decoration: none;
    margin-left: auto;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    background: #f9f9f9;
    padding: 10px 14px;
    border-radius: 4px;
}

.comment-pager {
    text-align: center;
    padding: 16px 0;
}

.comment-form-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0c58cf;
}

.comment-form-title small {
    color: #0c58cf;
    margin-left: 8px;
    cursor: pointer;
}

.comment-form-group {
    margin-bottom: 12px;
}

.comment-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.comment-textarea:focus {
    border-color: #0c58cf;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 78, 158, .15);
}

.comment-form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.comment-form-subscribe {
    margin-top: 8px;
    font-size: 13px;
    color: #888;
}

/* Author card */
.author-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.author-card-inner {
    padding: 20px;
    text-align: center;
}

.author-card-avatar {
    margin-bottom: 12px;
}

.author-card-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fdfeff;
}

.author-card-name a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.author-card-name a:hover {
    color: #0c58cf;
}

.author-card-bio {
    font-size: 13px;
    color: #999;
    margin: 6px 0 16px;
}

.author-card-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.author-stat {
    text-align: center;
}

.author-stat-num {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.author-stat-num a {
    color: #0c58cf;
    text-decoration: none;
}

.author-stat-label {
    font-size: 12px;
    color: #999;
}

/* Side card (generic sidebar widget) */
.side-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.side-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #204869;
    padding: 14px 16px;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    background: #f9fdf9;
}

.side-card-body {
    padding: 12px 16px;
}

.side-hot-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.side-hot-item:last-child {
    border-bottom: none;
}

.side-hot-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fdfeff;
    color: #0c58cf;
    font-size: 12px;
    font-weight: 600;
}

.side-hot-item:nth-child(1) .side-hot-num {
    background: #0c58cf;
    color: #fff;
}

.side-hot-item:nth-child(2) .side-hot-num {
    background: #5aa3d8;
    color: #fff;
}

.side-hot-item:nth-child(3) .side-hot-num {
    background: #86bae0;
    color: #fff;
}

.side-hot-item a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    line-height: 1.5;
}

.side-hot-item a:hover {
    color: #0c58cf;
}

.side-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.side-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .2s;
}

.side-tag:hover {
    background: #0c58cf;
    color: #fff;
}

.side-related-item {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    text-decoration: none;
}

.side-related-item:last-child {
    border-bottom: none;
}

.side-related-title {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.side-related-item:hover .side-related-title {
    color: #0c58cf;
}

.side-info-list {
    font-size: 14px;
}

.side-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.side-info-row:last-child {
    border-bottom: none;
}

.side-info-row>span:first-child {
    color: #999;
}

.side-info-row a {
    color: #0c58cf;
    text-decoration: none;
}

.side-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* User profile page */
.user-profile-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #0c58cf 0%, #204869 100%);
    color: #fff;
    padding: 32px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.user-profile-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .3);
}

.user-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-info {
    flex: 1;
}

.user-profile-info h2 {
    font-size: 20px;
    margin: 0 0 4px;
}

.user-profile-info p {
    font-size: 14px;
    opacity: .8;
    margin: 0;
}

.user-profile-stats {
    display: flex;
    gap: 24px;
}

.user-stat-item {
    text-align: center;
}

.user-stat-num {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.user-stat-label {
    font-size: 13px;
    opacity: .7;
}

.user-content-area {
    margin-bottom: 32px;
}

.user-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #0c58cf;
    margin-bottom: 20px;
}

.user-tab-link {
    padding: 12px 28px;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
}

.user-tab-link:hover {
    color: #0c58cf;
}

.user-tab-link.is-current {
    color: #0c58cf;
    font-weight: 600;
    border-bottom-color: #0c58cf;
}

.user-tab-content {
    min-height: 200px;
}

.news-card-comment {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    background: #f9f9f9;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Xunsearch (full-text search) page */
.xunsearch-form {
    margin-bottom: 24px;
    background: #f9fdf9;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #fdfeff;
}

.xunsearch-input-wrap {
    display: flex;
    gap: 12px;
}

.xunsearch-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
}

.xunsearch-input:focus {
    border-color: #0c58cf;
}

.xunsearch-btn {
    padding: 10px 32px;
    background: #0c58cf;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}

.xunsearch-btn:hover {
    background: #084db4;
}

.xunsearch-options {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

.xunsearch-options label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.xunsearch-status {
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.xunsearch-suggestion {
    margin-top: 8px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 4px;
}

.xunsearch-suggestion a {
    color: #c00;
    margin-right: 8px;
}

.xunsearch-results {
    margin-bottom: 24px;
}

.xunsearch-result-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.xunsearch-result-item:last-child {
    border-bottom: none;
}

.xunsearch-result-item h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.xunsearch-result-item h4 a {
    color: #0e00d7;
    text-decoration: none;
}

.xunsearch-result-item h4 a:hover {
    text-decoration: underline;
}

.xunsearch-result-item h4 em {
    color: #c00;
    font-style: normal;
}

.xunsearch-result-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 6px;
}

.xunsearch-result-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 12px;
}

.xunsearch-pager {
    text-align: center;
    padding: 16px 0;
}

.xunsearch-related {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.xunsearch-related h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.xunsearch-related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.xunsearch-related-tags a {
    display: inline-block;
    padding: 4px 14px;
    background: #f5f5f5;
    color: #555;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
}

.xunsearch-related-tags a:hover {
    background: #0c58cf;
    color: #fff;
}

/* Filter bar */
.filter-bar {
    background: #f9fdf9;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #fdfeff;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-option {
    display: inline-block;
    padding: 3px 12px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    border-radius: 3px;
    transition: all .2s;
}

.filter-option:hover,
.filter-option.is-active {
    background: #0c58cf;
    color: #fff;
}

/* DIY Form pages */
.diyform-detail {
    max-width: 720px;
    margin: 0 auto;
}

.diyform-row {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.diyform-row:last-child {
    border-bottom: none;
}

.diyform-label {
    flex-shrink: 0;
    width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.diyform-value {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.diyform-value p {
    margin: 0;
}

.diyform-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.diyform-images a {
    display: block;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.diyform-images a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diyform-files {
    display: flex;
    gap: 8px;
}

.diyform-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
}

.diyform-post-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.diyform-form .diyform-row {
    flex-direction: column;
    gap: 8px;
}

.diyform-form .diyform-label {
    width: auto;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.diyform-form .diyform-field {
    width: 100%;
}

.diyform-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.diyform-input:focus {
    border-color: #0c58cf;
    box-shadow: 0 0 0 2px rgba(30, 78, 158, .15);
}

.diyform-captcha {
    display: flex;
    gap: 10px;
    align-items: center;
}

.diyform-captcha input {
    width: 160px;
}

.diyform-captcha img {
    cursor: pointer;
    border-radius: 4px;
}

/* Override Bootstrap form styles in themed forms */
.diyform-form .form-group {
    margin-bottom: 16px;
}

.diyform-form .control-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.diyform-form .form-control {
    border-radius: 4px;
    border-color: #ddd;
}

.diyform-form .form-control:focus {
    border-color: #0c58cf;
    box-shadow: 0 0 0 2px rgba(30, 78, 158, .15);
}

.diyform-form .btn-primary {
    background: #0c58cf;
    border-color: #0c58cf;
}

.diyform-form .btn-primary:hover {
    background: #084db4;
    border-color: #084db4;
}

.diyform-form .btn-danger {
    background: #0c58cf;
    border-color: #0c58cf;
    color: #fff;
}

.diyform-form .btn-success {
    background: #5aa3d8;
    border-color: #5aa3d8;
}

/* Special intro blockquote */
.special-intro blockquote {
    border: none;
    background: #f9fdf9;
    padding: 16px 20px;
    border-left: 4px solid #0c58cf;
    border-radius: 0 4px 4px 0;
    margin: 0 0 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Detail article body overrides */
.detail-article {
    background: #fff;
}

.detail-header {
    margin-bottom: 24px;
}

.detail-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.detail-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
}

.detail-image {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.detail-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding: 12px 16px;
    background: #f9fdf9;
    border-radius: 4px;
    margin-bottom: 20px;
}

.detail-body {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.detail-comment-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

/* Top search dropdown */
.search-top-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease;
}

.search-top-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-top-panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.search-top-form.e_form-28 {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    position: fixed;
    top: -90px;
    left: 0;
    right: 0;
    height: 90px;
    padding: 0;
    margin: 0;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 3001;
}

.search-top-overlay.is-open .search-top-form.e_form-28,
.search-top-form.e_form-28.boxForm.active {
    top: 0;
}

.search-top-form.e_form-28>.p_formItem {
    max-width: 1420px;
    width: 94%;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    height: 100%;
    gap: 15px;
    min-width: 0;
    position: relative !important;
    float: none !important;
}

.search-top-form .e_input-29 {
    grid-column: 1;
    display: block !important;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    position: relative !important;
    padding: 0 !important;
    float: none !important;
}

.search-top-form .e_input-29>div,
.search-top-form .input-group {
    width: 100% !important;
    position: relative !important;
}

.search-top-input {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 48px;
    padding: 0 24px;
    border: 1px solid #ddd !important;
    outline: 0;
    background: #f8f8f8;
    border-radius: 24px;
    color: #333;
    font-size: 15px;
    line-height: 46px;
    position: relative !important;
    float: none !important;
    margin: 0 !important;
}

.search-top-input::placeholder {
    color: #aaa;
}

.search-top-input:focus {
    border-color: #0c58cf;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 78, 158, 0.1);
}

.search-top-feedback,
.search-top-form .invalid-feedback {
    display: none;
}

.search-top-submit.e_formBtn-30 {
    grid-column: 2;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 110px;
    min-width: 110px;
    height: 44px;
    background: #0c58cf !important;
    border: 0 !important;
    border-radius: 22px !important;
    padding: 0 !important;
    cursor: pointer;
    transition: all 0.3s;
    float: none !important;
}

.search-top-submit.e_formBtn-30 span {
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

.search-top-close.closeFrom {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    min-width: 50px;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent !important;
    cursor: pointer;
    position: relative !important;
    margin: 0 !important;
}

.search-top-close.closeFrom svg {
    width: 20px;
    height: 20px;
    fill: #0c58cf !important;
    transition: all ease 0.3s;
}

.search-top-close.closeFrom:hover {
    background: transparent !important;
}

.search-top-close.closeFrom:hover svg {
    transform: rotate(90deg);
    fill: #0047b8 !important;
}

/* Responsive for new components */
@media (max-width: 1024px) {
    .product-detail-breadcrumb {
        margin-top: 102px;
    }

    .product-detail-hero-card {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .product-detail-content-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-related-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .product-detail-message-card {
        padding: 36px 30px;
    }

    .user-profile-card {
        flex-direction: column;
        text-align: center;
    }

    .user-profile-stats {
        justify-content: center;
    }

    .detail-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-card {
        flex-direction: column;
    }

    .download-card-thumb {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .product-detail-breadcrumb {
        margin-top: 102px;
    }

    .product-detail-page {
        padding: 20px 0 40px;
    }

    .product-detail-page-shell {
        width: 94%;
    }

    .product-detail-hero-card,
    .product-detail-article-card,
    .product-detail-related-card {
        padding: 22px 18px;
    }

    .product-detail-gallery-main {
        min-height: 320px;
        padding: 12px;
    }

    .product-detail-gallery-main img {
        max-height: 280px;
    }

    .product-detail-gallery-thumbs {
        overflow: hidden;
    }

    .product-detail-gallery-thumb {
        width: 50px;
        height: 50px;
        margin-right: 8px;
    }

    .product-detail-gallery-thumb img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .product-detail-hero-copy .detail-page-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
        color: #222;
    }

    .product-detail-category-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .product-detail-contact-line {
        font-size: 14px;
        margin-bottom: 8px;
        color: #666;
    }

    .product-detail-page .product-detail-actions {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 0;
        margin-top: 16px;
        margin-bottom: 6px;
    }

    .product-detail-page .product-detail-actions .action-btn {
        flex: 0 0 110px;
        padding: 7px 0;
        font-size: 14px;
        margin-right: 20px;
    }

    .product-detail-page .product-detail-actions .action-btn:last-child {
        margin-right: 0;
    }

    .product-detail-summary-label {
        font-size: 14px;
        color: #888;
        line-height: 1.6;
        margin-top: 15px;
        padding: 12px;
        background: #f9f9f9;
        border-radius: 4px;
    }

    .product-detail-section-head {
        margin-bottom: 15px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .product-detail-section-head h2 {
        font-size: 18px;
    }

    .product-detail-article {
        font-size: 15px;
        line-height: 1.8;
    }

    /* Force responsive for fixed-size video/iframe/embed in article content */
    .product-detail-article iframe,
    .product-detail-article video,
    .product-detail-article embed,
    .product-detail-article object {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px;
    }

    .product-detail-article img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }

    .product-detail-article [style*="width"],
    .product-detail-article [style*="height"] {
        max-width: 100% !important;
    }

    .product-detail-article table {
        width: 100% !important;
        display: block;
        overflow-x: auto;
    }

    .product-detail-related-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-detail-related-media {
        min-height: 140px;
    }

    .product-detail-related-title {
        font-size: 14px;
        padding: 0 5px;
    }

    .product-detail-page .detail-page-nav {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-page-nav a {
        padding: 15px;
        min-height: 0;
    }

    .detail-page-nav a strong {
        font-size: 13px;
    }

    .detail-page-nav a span {
        font-size: 14px;
    }

    .product-detail-message-section {
        padding-bottom: 20px;
    }

    .product-detail-message-card {
        padding: 28px 20px;
    }

    .product-detail-message-title {
        font-size: 22px;
    }

    .product-detail-message-row-top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-detail-message-submit {
        width: 100% !important;
    }

    /* Mobile Search Bar - Accurate Alignment */
    .search-top-form.e_form-28 {
        position: fixed !important;
        top: -81px !important;
        height: 81px !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 3001 !important;
        padding: 0 15px !important;
        display: flex !important;
        align-items: center !important;
        transition: top 0.4s ease !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .search-top-overlay.is-open .search-top-form.e_form-28,
    .search-top-form.e_form-28.active {
        top: 0 !important;
    }

    .search-top-form.e_form-28>.p_formItem {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr auto auto !important;
        align-items: center !important;
        gap: 10px !important;
        height: 100% !important;
    }

    .search-top-input {
        height: 40px !important;
        border-radius: 20px !important;
        border: 1px solid #ddd !important;
        padding: 0 15px !important;
        font-size: 14px !important;
    }

    .search-top-submit.e_formBtn-30,
    .search-top-close.closeFrom {
        width: auto !important;
        min-width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
    }

    .search-top-submit.e_formBtn-30 {
        background: #0c58cf !important;
        border-radius: 20px !important;
        padding: 0 15px !important;
        color: #fff !important;
    }

    .search-top-submit.e_formBtn-30 span {
        color: #fff !important;
        background: transparent !important;
    }

    .search-top-close.closeFrom svg {
        fill: #0c58cf !important;
    }

    /* Mobile Header Visibility */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 81px !important;
        z-index: 2500 !important;
        background: #fff !important;
        border-bottom: 1px solid #f2f2f2 !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-header-inner {
        width: 100% !important;
        padding: 0 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .brand-logo img {
        max-height: 40px !important;
    }

    .nav-toggle {
        z-index: 2600 !important;
    }

    .header-lang-link,
    .contact-cta-block {
        display: none !important;
    }

    /* Mobile Navigation Drawer - Start below header */
    .primary-nav {
        position: fixed !important;
        top: 81px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 81px) !important;
        z-index: 2400 !important;
        background: #fff !important;
        display: none !important;
        overflow-y: auto !important;
        border-top: 1px solid #eee !important;
    }

    .primary-nav.is-open {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .p_navBox1 {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .p_navItem1 {
        border-top: 1px solid #eee !important;
        padding: 15px 20px !important;
        display: block !important;
    }

    .p_navItem1:first-child {
        border-top: 0 !important;
    }

    .p_navItem1:last-child {
        margin-bottom: 100px !important;
    }

    .p_navCon {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        line-height: 22px !important;
        font-size: 14px !important;
        color: #333 !important;
    }

    .p_navCon a {
        font-size: 14px !important;
        color: #333 !important;
        text-decoration: none !important;
        flex: 1 !important;
        padding: 0 !important;
        width: 100% !important;
        display: contents;
    }

    .p_jtIcon {
        width: 16px !important;
        height: 16px !important;
        opacity: .5 !important;
        cursor: pointer !important;
        transition: all ease 0.3s !important;
    }

    .p_navItem1.is-open>.p_navCon .p_jtIcon {
        transform: rotate(90deg) !important;
        opacity: 1 !important;
        fill: #0c58cf !important;
    }

    /* Submenu - Accurate pkcclb style */
    .hf-product-dropdown {
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        position: static !important;
        width: 100% !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        border: 0 !important;
    }

    .hf-product-dropdown-shell {
        width: 100% !important;
        padding: 0 !important;
    }

    .hf-product-dropdown-warp {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hf-product-dropdown-title {
        display: none !important;
    }

    .hf-product-dropdown-grid {
        display: block !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .p_navItem2 {
        list-style: none !important;
        margin-bottom: 0 !important;
    }

    .p_navItem1.is-open .hf-product-dropdown {
        max-height: 1000px !important;
        /* margin-top: 15px !important; */
    }

    .p_navCon2:first-child a {
        border-top: none !important;
    }

    .p_navCon2:last-child a {
        padding-bottom: 0 !important;
        display: contents;
    }

    .p_navCon2 a {
        display: flex !important;
        align-items: center !important;
        padding: 0 15px 15px 15px !important;
        font-size: 14px !important;
        color: #333 !important;
        border-top: 1px solid #eee !important;
        text-decoration: none !important;
        background: transparent !important;
    }

    .p_img {
        display: none !important;
    }

    .hf-product-dropdown-arrow,
    .hf-product-dropdown-title {
        display: none !important;
    }

    .mobile-lang-item {
        display: block !important;
    }

    /* Other Mobile Tweaks */
    .page-banner {
        min-height: 180px !important;
        padding-top: 90px !important;
        text-align: center !important;
    }

    .about-intro-shell {
        display: flex !important;
        flex-direction: column-reverse !important;
        row-gap: 24px !important;
    }

    .about-crumb-nav {
        display: none !important;
    }
}

.site-footer {
    padding: 28px 0 70px;
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px 16px;
    }

    .footer-column h3 {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-links a {
        font-size: 14px;
        line-height: 2.15;
    }

    .footer-qrcode-box {
        align-items: center;
        text-align: center;
        display: none;
    }

    .footer-qrcode {
        width: 88px;
    }

    .footer-qrcode-box h3 {
        margin-top: 8px;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 14px;
        font-size: 12px;
        line-height: 1.8;
        text-align: center;
    }

    .footer-bottom p {
        line-height: 1.8;
        word-break: break-word;
    }
}

@media screen and (max-width: 575px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-column:nth-child(-n+4) {
        text-align: left;
    }
}

/* Mobile Footer Bar */
/* Image Zoom / Lightbox */
.image-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-zoom-overlay.is-active {
    display: flex;
    opacity: 1;
}

.image-zoom-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-zoom-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom-overlay.is-active img {
    transform: scale(1);
}

.image-zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.image-zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

[data-product-gallery-main-image] {
    cursor: zoom-in;
}

.mobile-footer-bar {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-footer-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #f5f5f5;
        border-top: 1px solid #dbdbdb;
        height: 54px;
    }

    .mobile-footer-bar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 11px;
        color: #1a1a1a;
        text-decoration: none;
        border-left: 1px solid #dbdbdb;
        padding: 6px 2px;
        line-height: 1;
    }

    .mobile-footer-bar a:first-child {
        border-left: 0;
    }

    .mobile-footer-bar a.mfb-highlight {
        background: #e80101;
        color: #fff;
    }

    .mobile-footer-bar a.mfb-highlight svg {
        color: #fff;
    }

    .mobile-footer-bar a svg {
        color: #555;
        flex-shrink: 0;
    }

    .mobile-footer-bar a span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}


@media screen and (max-width: 768px) {

    .product-detail-hero-card,
    .product-detail-article-card,
    .product-detail-related-card {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .product-detail-page-shell {
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .product-detail-actions .action-btn {
        min-width: 0 !important;
    }
}


@media screen and (max-width: 768px) {
    .product-detail-shell {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .content-panel.product-detail-shell {
        background: transparent !important;
    }
}


/* Thumbnail Swiper Styles - matching reference site */
.product-detail-gallery-thumbs-wrapper {
    position: relative;
    height: 92px;
    overflow: hidden;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 10px;
}

.product-detail-gallery-thumbs-wrapper .product-detail-gallery-thumbs {
    position: relative;
    overflow: hidden;
    height: 80px;
    padding-top: 10px;
    margin-top: 0 !important;
}

.product-detail-gallery-thumbs .swiper-wrapper {
    display: flex;
    align-items: center;
}

.product-detail-gallery-thumbs .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.product-detail-gallery-thumbs .swiper-slide.product-detail-gallery-thumb {
    width: 60px !important;
}

/* Arrow buttons - improved styling */
.thumb-prev,
.thumb-next {
    position: absolute;
    top: 50%;
    width: 30px !important;
    height: 60px !important;
    line-height: 60px !important;
    margin-top: -30px !important;
    text-align: center;
    font-size: 18px;
    z-index: 10;
    cursor: pointer;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9) !important;
    background-image: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.thumb-prev:hover,
.thumb-next:hover {
    background: rgba(47, 102, 142, 0.9) !important;
    box-shadow: 0 4px 12px rgba(47, 102, 142, 0.3);
}

.thumb-prev::after {
    content: "‹" !important;
    font-size: 28px !important;
    font-weight: bold;
    color: #333;
    background-image: none !important;
    line-height: 1;
}

.thumb-next::after {
    content: "›" !important;
    font-size: 28px !important;
    font-weight: bold;
    color: #333;
    background-image: none !important;
    line-height: 1;
}

.thumb-prev:hover::after,
.thumb-next:hover::after {
    color: #fff;
}

.thumb-prev {
    left: 0 !important;
    right: auto !important;
}

.thumb-next {
    right: 0 !important;
    left: auto !important;
}

.swiper-button-disabled.thumb-prev,
.swiper-button-disabled.thumb-next {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
    display: block !important;
}

/* Override swiper-button-lock which hides arrows when slides fit */
.thumb-prev.swiper-button-lock,
.thumb-next.swiper-button-lock {
    display: block !important;
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .product-detail-gallery-thumbs-wrapper {
        height: 72px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-detail-gallery-thumbs-wrapper .product-detail-gallery-thumbs {
        height: 60px;
        padding-top: 6px;
    }

    .product-detail-gallery-thumb {
        width: 50px !important;
        height: 50px !important;
        margin-right: 8px !important;
        padding: 3px !important;
    }

    .product-detail-gallery-thumb img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .thumb-prev,
    .thumb-next {
        width: 32px !important;
        height: 50px !important;
        line-height: 50px !important;
        margin-top: -25px !important;
    }

    .thumb-prev::after,
    .thumb-next::after {
        font-size: 24px !important;
    }
}

/* ========================================
   动态效果和交互动画
   ======================================== */

/* 滚动渐入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 为需要动画的元素添加类 */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* 产品卡片增强悬停效果 */
.product-card-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-card-media {
    overflow: hidden;
}

.product-card-media img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-box:hover .product-card-media img {
    transform: scale(1.1);
}

/* 新闻卡片增强悬停效果 */
.news-card-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 按钮悬停效果增强 */
.home-pill-btn,
.action-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-pill-btn::before,
.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.home-pill-btn:hover::before,
.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* 导航链接悬停效果 */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #207ebc;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* 分类卡片悬停效果增强 */
.home-category-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-category-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #207ebc;
    transition: height 0.3s ease;
}

.home-category-card:hover::before {
    height: 100%;
}

/* 荣誉卡片悬停效果 */
.home-honor-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-honor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.home-honor-card img {
    transition: transform 0.4s ease;
}

.home-honor-card:hover img {
    transform: scale(1.05);
}

/* 数据统计数字滚动效果 */
.home-data-copy strong {
    display: inline-block;
    transition: transform 0.3s ease;
}

.home-data-item:hover .home-data-copy strong {
    transform: scale(1.1);
    color: #207ebc;
}

/* 图片加载淡入效果 */
img {
    animation: fadeIn 0.5s ease-out;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 页面加载动画 */
body {
    animation: fadeIn 0.3s ease-out;
}

/* 搜索框展开动画 */
.search-top-overlay {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-top-panel {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.search-top-overlay.is-open .search-top-panel {
    transform: translateY(0);
}

/* 浮动按钮悬停效果 */
.float-drawer-item a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-drawer-item a:hover {
    transform: translateX(-5px);
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* Banner箭头悬停效果增强 */
.hero-carousel-arrow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel-arrow:hover {
    transform: scale(1.15);
}

/* 面包屑悬停效果 */
.crumb-nav a {
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.crumb-nav a:hover {
    color: #207ebc;
    transform: translateX(3px);
}

/* 页面切换动画 */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-block {
    animation: slideInFromRight 0.6s ease-out;
}

/* 表单输入框聚焦效果 */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 102, 142, 0.15);
}

/* 移动端优化 */
@media (max-width: 768px) {
    /* 减少移动端的动画以提升性能 */
    .product-card-box:hover,
    .news-card-box:hover,
    .home-honor-card:hover {
        transform: none;
    }
    
    /* 保留简单的过渡效果 */
    .product-card-box,
    .news-card-box,
    .home-honor-card {
        transition: box-shadow 0.3s ease;
    }
}

/* 减少动画偏好设置 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 搜索页面和列表页面的news-card样式 */
.news-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 37px;
    width: 96%;
    margin: 0 0 3% auto;
    padding: 4% 6%;
    border: 0;
    background: #f7f7f7;
    transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}

.news-card:hover {
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.news-card:hover .news-card-title a {
    color: #207ebc;
}

.news-card:hover .news-card-thumb img {
    transform: scale(1.04);
}

.news-card .news-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    font-size: 14px;
    color: #999;
}

.news-card .news-card-meta span {
    color: #999;
}

.news-card .news-card-channel {
    color: #207ebc;
    font-weight: 500;
}

/* 多图模式 */
.news-card .news-card-gallery {
    grid-column: 1 / -1;
}

.news-card .news-card-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.news-card .news-card-images a {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
}

.news-card .news-card-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card .news-card-images a:hover img {
    transform: scale(1.1);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-card {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
        gap: 16px;
        padding: 18px;
    }
    
    .news-card .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .news-card .news-card-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 修复手机端横向溢出问题 */
@media (max-width: 768px) {
    /* 防止body横向滚动 */
    body {
        overflow-x: hidden;
    }
    
    /* 确保所有容器不超出屏幕 */
    .layout-shell,
    .news-page-shell,
    .section-block,
    .news-card,
    .product-grid-list,
    .page-banner,
    .home-hero-banner {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* 修复可能超出的元素 */
    .layout-shell {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* 修复搜索页面卡片 */
    .news-card {
        width: 100%;
        margin: 0 0 20px 0;
        padding: 15px;
        box-sizing: border-box;
    }
    
    /* 修复图片容器 */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* 修复表格 */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }
    
    /* 修复长文本 */
    .news-card-title,
    .news-card-excerpt,
    .page-banner-title {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* 修复产品网格 */
    .product-grid-list {
        width: 100%;
        padding: 0;
    }
    
    /* 修复新闻页面容器 */
    .news-page-shell {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* 修复section容器 */
    .section-block {
        overflow-x: hidden;
    }
    
    /* 修复banner */
    .page-banner,
    .home-hero-banner {
        width: 100%;
        overflow-x: hidden;
    }
    
    /* 修复数据统计行 */
    .home-data-row {
        width: 100%;
        overflow-x: auto;
    }
    
    /* 修复产品分类面板 */
    .home-category-panel {
        width: 100%;
        max-width: 100%;
    }
}
