.theme-medpack {
    color: #333;
    background: #fff;
}

.theme-medpack a {
    text-decoration: none;
}

.theme-medpack img {
    max-width: 100%;
}

.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%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    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;
    flex: 0 0 auto;
    color: #fff;
}

.brand-logo img {
    width: auto;
    max-width: 250px;
    max-height: 68px;
}

.site-header.is-scrolled .brand-logo {
    color: #244626;
}

.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;
}

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

.site-header-contact a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.site-header.is-scrolled .site-header-contact a {
    color: #5c665d;
}

.primary-nav {
    margin-left: auto;
}

.primary-nav-list {
    display: flex;
    align-items: center;
    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: #1e9e3b;
    transition: all 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;
}

.nav-item-cta {
    display: block;
}

.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: #1e9e3b;
}

.nav-item:hover > .nav-link-row::after,
.nav-item.is-current > .nav-link-row::after {
    width: 100%;
}

.nav-link-cta {
    min-height: 100px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #262626 !important;
}

.site-header.is-scrolled .nav-link-cta {
    color: #262626 !important;
}

.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: "";
}

.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, 34, 22, 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: #2f8e31;
    background: #f6faf6;
}

.nav-item.has-children:hover > .submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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: #fff;
    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: #18271b;
    color: rgba(255, 255, 255, 0.8);
    padding: 68px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, 0.8fr)) 160px;
    gap: 28px;
}

.footer-brand-logo img {
    max-width: 210px;
    max-height: 56px;
}

.footer-brand-name {
    margin: 22px 0 12px;
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

.footer-brand-text {
    margin: 0 0 18px;
    line-height: 1.85;
}

.footer-contact-list {
    display: grid;
    gap: 8px;
}

.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #8fda8f;
}

.footer-qrcode-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-qrcode {
    width: 130px;
    max-width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.06);
    background: #fff;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.78);
}

.floating-toolbar {
    position: fixed;
    right: 18px;
    bottom: 28px;
    z-index: 999;
    display: grid;
    gap: 10px;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 58px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 39, 27, 0.88);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 12px 28px rgba(20, 34, 22, 0.16);
    cursor: pointer;
}

.floating-btn-primary {
    background: linear-gradient(-30deg, #5ab95d, #29882a);
}

.floating-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Shared inner pages */
.page-banner {
    position: relative;
    min-height: 340px;
    padding: 170px 0 58px;
    background: linear-gradient(rgba(30, 62, 32, 0.45), rgba(30, 62, 32, 0.45)), center/cover no-repeat;
}

.page-banner-kicker {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.page-banner-title {
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
    margin: 0 0 10px;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin: 0;
}

.channel-switch-band {
    background: #fff;
}

.channel-switch-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.channel-switch-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 72px;
    padding: 0 34px;
    border-bottom: 1px solid #ededed;
    background: #fff;
    color: #333;
    font-size: 18px;
    transition: 0.25s ease;
}

.channel-switch-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: #23903b;
    transform: translateX(-50%);
    transition: 0.25s ease;
}

.channel-switch-link:hover,
.channel-switch-link.is-current {
    color: #23903b;
}

.channel-switch-link:hover::after,
.channel-switch-link.is-current::after {
    width: 100%;
}

.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 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;
}

.grid-layout {
    display: grid;
    gap: 42px;
}

.two-col-layout {
    grid-template-columns: 300px minmax(0, 1fr);
}

.panel-card {
    background: transparent;
    border: 0;
}

.side-panel {
    overflow: hidden;
}

.side-panel-head {
    background: #1c1c1c;
    color: #fff;
    padding: 30px 26px 26px;
}

.side-panel-head .title {
    display: block;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.side-panel-head .sub {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.side-menu-list {
    background: #f8f8f8;
    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: 62px;
    padding: 0 22px;
    color: #4d4d4d;
    border-bottom: 1px solid #ececec;
    transition: 0.25s ease;
}

.side-contact-box {
    margin-top: 18px;
    padding: 30px 28px 26px;
    background: #f5f5f5;
}

.side-contact-box p {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.8;
}

.side-contact-box p:last-child {
    margin-bottom: 0;
}

.side-contact-box a {
    color: #2f8e31;
}

.side-contact-title {
    margin-bottom: 8px !important;
    color: #2a2a2a !important;
    font-size: 28px;
    line-height: 1.2;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.side-contact-en {
    margin-bottom: 28px !important;
    color: #8f8f8f !important;
    font-size: 16px;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.product-side-tree {
    padding: 12px 0 0;
}

.product-side-list,
.product-side-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-side-item {
    border-bottom: 1px solid #e8e8e8;
}

.product-side-link {
    min-height: 66px;
    padding: 0 26px;
    color: #363636;
    background: transparent;
}

.product-side-link-copy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.product-side-link-icon,
.product-side-subdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9c9c9;
}

.product-side-item.active > .product-side-link,
.product-side-link:hover,
.product-side-sublist li.active > a,
.product-side-sublist a:hover {
    background: transparent;
    color: #2f8e31;
}

.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: #2f8e31;
}

.product-side-sublist {
    padding: 0 0 14px;
}

.product-side-sublist li {
    border-top: 1px solid #efefef;
}

.product-side-sublist a {
    min-height: 54px;
    padding: 0 26px 0 48px;
    justify-content: flex-start;
    gap: 12px;
    color: #696969;
    border-bottom: 0;
    background: transparent;
}

.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;
}

/* Product listing */
.product-grid-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.product-card-box {
    position: relative;
    margin: 0 15px 40px;
    padding: 10px;
    overflow: hidden;
    background: #f5f5f5;
    transition: 0.35s ease;
}

.product-card-box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 0;
    background: #004ba5;
    transition: 0.5s ease;
}

.product-card-box:hover::after {
    height: 100%;
}

.product-card-link {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 302px;
    padding: 0;
    background: transparent;
}

.product-card-media img {
    width: 100%;
    max-width: 211px;
    max-height: 302px;
    aspect-ratio: auto;
    object-fit: contain;
    transition: transform 0.5s ease 0.2s;
}

.product-card-body {
    padding: 0 12px 4px;
}

.product-card-title {
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    min-height: 52px;
    text-align: center;
    transition: color 0.5s ease;
}

.product-card-box:hover .product-card-title {
    color: #fff;
}

.product-card-box:hover .product-card-media img {
    transform: scale(1.1);
}

/* News listing */
.news-list-wrap {
    display: grid;
    gap: 28px;
}

.news-card-box {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    padding: 0 0 28px;
    border-bottom: 1px solid #ececec;
    background: #fff;
    transition: 0.25s ease;
}

.news-card-thumb img {
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card-date-tag {
    color: #888;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.news-card-title {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.4;
    color: #333;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.news-card-excerpt {
    margin: 0 0 26px;
    color: #7b7b7b;
    line-height: 1.9;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #888;
    font-size: 14px;
}

.news-card-link,
.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;
}

.news-card-link:hover,
.action-btn:hover {
    color: #fff;
    background: #23903b;
    border-color: #23903b;
}

.hero-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero-btn-ghost:hover {
    background: #fff;
    color: #2f8e31;
}

/* Homepage */
.home-hero-banner {
    position: relative;
    min-height: 820px;
    padding: 0;
    background: linear-gradient(rgba(20, 38, 23, 0.45), rgba(20, 38, 23, 0.55)), center/cover no-repeat;
}

.home-hero-title {
    margin: 0;
    font-size: 48px;
    line-height: 1.2;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.home-hero-text {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.hero-carousel {
    position: relative;
    min-height: 820px;
}

.hero-carousel-stage {
    position: relative;
    min-height: 820px;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    background: linear-gradient(rgba(20, 38, 23, 0.45), rgba(20, 38, 23, 0.55)), center/cover no-repeat;
}

.hero-carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-carousel-shell {
    display: flex;
    align-items: end;
    min-height: 820px;
    padding-top: 180px;
    padding-bottom: 116px;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0;
    margin-bottom: 18px;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    letter-spacing: 3px;
}

.hero-carousel-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 45px;
    z-index: 3;
}

.hero-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
}

.hero-carousel-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.hero-carousel-dots {
    display: flex;
    gap: 10px;
}

.hero-carousel-dot {
    width: 38px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.hero-carousel-dot.is-active {
    width: 48px;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.about-intro-title {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.35;
    color: #333;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.about-intro-text {
    margin-bottom: 26px;
    color: #666;
    line-height: 1.95;
    font-size: 16px;
}

.about-intro-panel {
    position: relative;
    min-height: 100%;
    background: #f5f5f5 center/cover no-repeat;
    overflow: hidden;
    padding: 0;
}

.about-intro-panel-inner {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 110px 34px 34px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-intro-badge {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.3;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.about-intro-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.95;
}

.home-stats-section {
    padding: 8px 0 56px;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-stat-card {
    background: #f5f5f5;
    padding: 28px 24px;
    text-align: center;
}

.home-stat-card strong {
    display: block;
    font-size: 48px;
    line-height: 1;
    color: #2f8e31;
    font-family: Arial, sans-serif;
}

.home-stat-card strong em {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
}

.home-stat-card span {
    display: block;
    margin-top: 10px;
    color: #666;
}

.home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.home-news-section {
    background: #fff;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-news-feature-card,
.home-news-side-card {
    background: #fff;
}

.home-news-feature-card a {
    position: relative;
    display: block;
    height: 100%;
    color: inherit;
    overflow: hidden;
}

.home-news-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.76;
    object-fit: cover;
}

.home-news-feature-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 46px 34px 28px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
}

.home-news-feature-date,
.home-news-side-date {
    display: inline-block;
    color: #999;
    font-family: Arial, sans-serif;
    margin-bottom: 12px;
}

.home-news-feature-date {
    color: #fff;
}

.home-news-feature-card h3 {
    margin: 0;
    font-size: 24px;
    color: #fff;
    line-height: 1.35;
}

.home-news-feature-card p {
    display: none;
}

.home-news-side-list {
    display: grid;
    gap: 18px;
}

.home-news-side-card a {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    width: 96%;
    margin-left: auto;
    padding: 4% 6%;
    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 h4 {
    margin: 6px 0 12px;
    font-size: 20px;
    color: #3b3b3b;
    line-height: 1.4;
}

.home-news-side-card p {
    margin: 0;
    color: #9b9b9b;
    line-height: 1.5;
}

.home-category-head {
    margin-bottom: 22px;
}

/* 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: #2f8e31;
}

.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: #2f8e31;
}

.single-page-shell,
.news-page-shell,
.news-detail-shell {
    max-width: 100%;
}

.single-page-shell .section-head {
    margin-bottom: 22px;
}

.single-page-shell .section-head .en {
    color: #303030;
    font-size: 42px;
    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: 14px;
    color: #7b7b7b;
    font-size: 16px;
    line-height: 1.9;
    font-family: "Microsoft YaHei", sans-serif;
}

.list-empty-state {
    padding: 36px 24px;
    text-align: center;
    color: #999;
    border: 1px dashed #d9d9d9;
}

.contact-form-block {
    padding: 34px 30px;
    background: #f5f5f5;
}

.contact-form-block .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-block .form-row {
    margin: 0;
}

.contact-form-block .form-row.textarea {
    grid-column: 1 / -1;
}

.contact-form-block input,
.contact-form-block textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    background: #fff;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
}

.contact-form-block textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form-block button {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 180px;
    min-height: 50px;
    border: 0;
    color: #fff;
    background: linear-gradient(-30deg, #5ab95d, #29882a);
    border-radius: 999px;
    padding: 0 28px;
}

.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: 32px;
}

.pager-block .pagination {
    margin: 0;
}

.pager-block .pagination > li > a,
.pager-block .pagination > li > span {
    color: #555;
    border-color: #e5e5e5;
    margin: 0 3px;
}

.pager-block .pagination > .active > span,
.pager-block .pagination > .active > a,
.pager-block .pagination > .active > a:hover {
    background: #2f8e31;
    border-color: #2f8e31;
}

.contact-cta-block {
    padding-bottom: 60px;
}

/* Unified theme refresh */
.submenu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    min-width: 0;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: 0.22s ease;
}

.nav-item.has-children:hover > .submenu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.submenu-panel-grid {
    display: grid;
    grid-template-columns: 36.25% 35.15% 28.6%;
    gap: 0;
    overflow: hidden;
    background: #f2f3f1;
    border-bottom: 4px solid #1e9e3b;
    box-shadow: none;
    border-radius: 0;
}

.submenu-panel-links,
.submenu-panel-center,
.submenu-panel-side {
    padding: 40px 0;
}

.submenu-panel-title {
    margin: 0 0 26px;
    font-size: 26px;
    line-height: 1;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
    color: #202020;
}

.submenu-panel-links {
    padding-right: 5.5%;
}

.submenu-panel-center {
    background: #fff;
}

.submenu-panel-center-box {
    min-height: 280px;
    background: #fff;
}

.submenu-panel-side {
    padding-left: 6.5%;
    padding-top: 4.2%;
}

.submenu-panel .submenu-list {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: grid;
    gap: 0;
    background: transparent;
}

.submenu-panel .submenu-list li a {
    position: relative;
    padding: 15px 24px 15px 0;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
    background: transparent;
    color: #333;
    font-size: 17px;
    line-height: 1.4;
}

.submenu-panel .submenu-list li a::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.submenu-panel .submenu-list li a:hover {
    color: #1e9e3b;
}

.submenu-side-title {
    margin: 0 0 36px;
    color: #333;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.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 20px;
    color: #333;
    line-height: 1;
    border: 2px solid #bfbfbf;
    transition: all 0.5s ease;
}

.submenu-side-links a::after {
    content: "›";
    font-size: 12px;
}

.submenu-side-links a:hover {
    color: #fff;
    background: #1e9e3b;
    border-color: #1e9e3b;
}

.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;
}

.submenu-side-contact a {
    color: #2f8e31;
    font-size: 30px;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.home-category-band {
    position: relative;
    z-index: 1;
    padding-top: 8px;
}

.home-category-scroller {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    padding: 0;
    background: transparent;
}

.home-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 0 22px;
    border-radius: 0;
    border: 1px solid #e1e1e1;
    background: #f5f5f5;
    color: #4b554b;
    transition: 0.2s ease;
}

.home-category-chip:hover {
    background: #2f8e31;
    color: #fff;
}

.home-about-wrap {
    align-items: stretch;
}

.home-about-actions {
    margin-top: 40px;
}

.home-product-shell {
    padding: 0;
    background: transparent;
}

.product-grid-list-wide {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.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 #e7ece7;
    background: #fff;
    transition: 0.25s ease;
}

.certificate-card:hover,
.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(20, 34, 22, 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: #283228;
    line-height: 1.65;
}

.page-content-lead {
    margin-bottom: 28px;
}

.contact-page-top {
    display: grid;
    grid-template-columns: 1.05fr 0.8fr 0.8fr;
    gap: 22px;
    margin-bottom: 28px;
}

.contact-page-top-primary,
.contact-page-top-card {
    padding: 36px 34px;
    background: #f5f5f5;
}

.contact-page-top-primary {
    background: #1f4f2a;
    color: #fff;
}

.contact-page-top-primary h2,
.contact-page-top-card h3 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.contact-page-top-primary p,
.contact-page-top-card p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.9;
}

.contact-page-top-primary p:last-child,
.contact-page-top-card p:last-child {
    margin-bottom: 0;
}

.contact-page-top-card a {
    color: #23903b;
}

.contact-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
    margin-bottom: 28px;
}

.contact-page-form-block {
    padding: 38px 34px;
}

.contact-page-form-head {
    margin-bottom: 22px;
}

.contact-page-form-head h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    color: #2c2c2c;
    font-family: "97976190-4f8b-4df7-b797-b7f2505662e6", "Microsoft YaHei", sans-serif;
}

.contact-page-map {
    min-height: 580px;
    background: #f5f5f5;
    overflow: hidden;
}

.contact-page-map .rich-content {
    height: 100%;
}

.contact-page-map iframe,
.contact-page-map #mapContainer {
    width: 100% !important;
    min-height: 580px !important;
}

.contact-sheet {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-sheet-text {
    margin: 0;
    color: #6d776d;
    line-height: 1.9;
}

.contact-sheet-meta {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-sheet-meta p {
    margin: 0;
}

.contact-sheet-meta strong {
    display: block;
    margin-bottom: 6px;
    color: #2a332a;
}

.contact-sheet-meta span {
    color: #667066;
}

.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%;
        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, 34, 22, 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;
    }

    .nav-item-cta {
        display: block;
        padding: 12px 16px 16px;
    }

    .nav-link-cta {
        width: 100%;
        justify-content: center;
        border-color: #d7d7d7;
        color: #333 !important;
    }

    .submenu-panel {
        position: static;
        left: auto;
        min-width: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
    }

    .nav-item.is-open > .submenu-panel {
        display: block;
    }

    .submenu-panel-grid,
    .contact-page-top,
    .contact-page-shell,
    .contact-sheet,
    .certificate-grid-page {
        grid-template-columns: 1fr;
    }

    .submenu-panel-links,
    .submenu-panel-center,
    .submenu-panel-side {
        padding: 18px 20px;
    }

    .submenu-panel-center {
        display: none;
    }

    .submenu-toggle {
        display: inline-flex;
    }

    .submenu-panel .submenu-list li a {
        padding: 10px 14px;
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-col-layout,
    .detail-top-layout,
    .news-card-box,
    .about-intro-grid,
    .home-news-grid {
        grid-template-columns: 1fr;
    }

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

    .product-grid-list-wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .home-category-band {
        margin-top: 0;
    }

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

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

    .floating-toolbar {
        right: 14px;
        bottom: 18px;
    }
}

@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: 1fr;
    }

    .footer-qrcode-box {
        align-items: flex-start;
    }

    .home-hero-banner {
        min-height: 620px;
    }

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

    .hero-carousel-shell {
        padding-top: 140px;
        padding-bottom: 90px;
    }

    .page-banner {
        min-height: 220px;
        padding-top: 110px;
    }

    .page-banner-kicker {
        font-size: 18px;
    }

    .channel-switch-scroll {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .channel-switch-link {
        flex: 0 0 auto;
        min-width: 180px;
        min-height: 62px;
        padding: 0 24px;
        font-size: 16px;
    }

    .page-banner-title,
    .section-head .cn {
        font-size: 28px;
    }

    .section-head .en {
        font-size: 34px;
    }

    .product-grid-list,
    .contact-form-block .contact-form-grid {
        grid-template-columns: 1fr;
    }

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

    .home-hero-title {
        font-size: 32px;
    }

    .about-intro-title,
    .home-news-feature-card h3,
    .detail-page-title {
        font-size: 28px;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-news-side-card a,
    .home-stats-grid,
    .detail-thumb-grid {
        grid-template-columns: 1fr;
    }

    .home-news-side-card a {
        width: 100%;
        margin-left: 0;
    }

    .certificate-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .news-card-box {
        gap: 16px;
    }

    .product-card-box {
        margin: 0 5px 20px;
    }

    .news-card-title {
        font-size: 20px;
    }

    .content-panel,
    .contact-form-block {
        padding: 18px;
    }

    .detail-page-title {
        font-size: 28px;
    }

    .detail-page-nav {
        grid-template-columns: 1fr;
    }

    .floating-toolbar {
        display: none;
    }
}
