@font-face {
    font-family: 'Noto Sans SC';
    src: url('fonts/NotoSansSC-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif SC';
    src: url('fonts/NotoSerifSC-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Oxanium';
    src: url('fonts/Oxanium-Regular.woff2') format('woff2');
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

:root {
    --g: #1e7e45;
    --g2: #29a05a;
    --gp: #f0f9f3;
    --gp2: #e4f4ea;
    --line: rgba(30, 126, 69, .14);
    --bk: #111;
    --dk: #1e1e1e;
    --md: #3a3a3a;
    --sf: #666
}

body {
    background: #fff;
    color: var(--dk);
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    line-height: 1.78;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: var(--g);
    border-radius: 3px
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 66px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    gap: 16px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(30, 126, 69, .3))
}

.logo-txt h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--bk);
    line-height: 1.3
}

.logo-txt p {
    font-size: 8.5px;
    color: var(--sf);
    letter-spacing: .08em;
    text-transform: uppercase
}

.flogo-txt h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

nav {
    display: flex;
    gap: 0;
    flex-shrink: 0
}

nav>a,
nav>.nav-dd>a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--md);
    white-space: nowrap;
    padding: 19px 14px;
    display: block;
    transition: color .22s;
    position: relative
}

nav>a::after,
nav>.nav-dd>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--g);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s
}

nav>a:hover,
nav>a.active,
nav>.nav-dd>a:hover,
nav>.nav-dd>a.active {
    color: var(--g)
}

nav>a:hover::after,
nav>a.active::after,
nav>.nav-dd>a:hover::after,
nav>.nav-dd>a.active::after {
    transform: scaleX(1)
}

.nav-dd {
    position: relative
}

.nav-dd:hover .submenu {
    display: block
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    min-width: 170px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    z-index: 400
}

.submenu a {
    display: block;
    padding: 10px 16px;
    font-size: 12.5px;
    color: var(--md);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: .2s
}

.submenu a:last-child {
    border-bottom: none
}

.submenu a:hover {
    background: var(--gp);
    color: var(--g)
}

.hd-tel {
    text-align: right;
    flex-shrink: 0
}

.hd-tel small {
    display: block;
    font-size: 9px;
    color: var(--sf);
    letter-spacing: .08em
}

.hd-tel strong {
    font-family: 'Oxanium', sans-serif;
    font-size: 17px;
    color: var(--g);
    letter-spacing: .04em;
    font-weight: 700
}

.page-hero {
    padding: 120px 7vw 60px;
    background: linear-gradient(160deg, var(--gp) 0%, #fff 60%);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(30, 126, 69, .05);
    pointer-events: none
}

.page-hero-en {
    font-family: 'Oxanium', sans-serif;
    font-size: 10.5px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(30, 126, 69, .5);
    margin-bottom: 10px;
    font-weight: 600
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--sf);
    margin-bottom: 16px
}

.breadcrumb a {
    color: var(--sf);
    text-decoration: none;
    transition: .2s
}

.breadcrumb a:hover {
    color: var(--g)
}

.breadcrumb .cur {
    color: var(--g)
}

.page-hero h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    color: var(--bk);
    line-height: 1.2;
    margin-bottom: 12px
}

.page-hero p {
    font-size: 14.5px;
    color: var(--md);
    max-width: 560px;
    line-height: 1.88
}

.ticker {
    background: var(--gp);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap
}

.ticker-t {
    display: inline-flex;
    animation: roll 30s linear infinite
}

.ti {
    font-family: 'Oxanium', sans-serif;
    font-size: 11px;
    letter-spacing: .18em;
    color: rgba(30, 126, 69, .5);
    padding: 0 22px;
    font-weight: 500
}

.sep {
    color: var(--g);
    margin: 0 8px
}

@keyframes roll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.sec {
    padding: 80px 7vw
}

.sec-lbl {
    font-size: 10.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--g);
    font-weight: 700;
    margin-bottom: 7px
}

.sec-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 700;
    color: var(--bk);
    line-height: 1.3
}

.sec-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 12px
}

.sec-more {
    font-size: 12px;
    color: var(--sf);
    text-decoration: none;
    letter-spacing: .1em;
    font-weight: 500;
    border-bottom: 1px solid rgba(30, 126, 69, .25);
    padding-bottom: 2px;
    transition: .25s
}

.sec-more:hover {
    color: var(--g);
    border-color: var(--g)
}

.btn-g {
    background: var(--g);
    color: #fff;
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: 0 4px 14px rgba(30, 126, 69, .3);
    transition: all .28s;
    display: inline-block
}

.btn-g:hover {
    background: var(--g2);
    transform: translateY(-2px)
}

.btn-o {
    background: transparent;
    border: 1.5px solid rgba(30, 126, 69, .3);
    color: var(--md);
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 2px;
    transition: all .28s;
    display: inline-block
}

.btn-o:hover {
    border-color: var(--g);
    color: var(--g)
}

.cband {
    background: linear-gradient(135deg, #1a6e3c, #16592f);
    padding: 48px 7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden
}

.cband::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none
}

.cband h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px
}

.cband p {
    font-size: 13px;
    color: rgba(255, 255, 255, .7)
}

.cb-tel small {
    display: block;
    font-size: 9px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2px
}

.cb-tel strong {
    font-family: 'Oxanium', sans-serif;
    font-size: 34px;
    color: #fff;
    letter-spacing: .04em;
    font-weight: 700
}

.btn-w {
    background: rgba(255, 255, 255, .14);
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    transition: .28s;
    border-radius: 2px;
    white-space: nowrap
}

.btn-w:hover {
    background: rgba(255, 255, 255, .24);
    transform: translateY(-2px)
}

footer {
    background: #0b1d11;
    padding: 52px 7vw 24px
}

.fg {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.fb p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.82;
    margin-top: 12px;
    max-width: 240px
}

.fc h4 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 13px
}

.fc h4::after {
    content: '';
    display: block;
    width: 14px;
    height: 1.5px;
    background: var(--g);
    margin-top: 4px
}

.fc ul {
    list-style: none
}

.fc ul li {
    margin-bottom: 7px
}

.fc ul li a {
    text-decoration: none;
    font-size: 12px;
    color: rgba(255, 255, 255, .36);
    transition: .22s
}

.fc ul li a::before {
    content: '› ';
    color: var(--g)
}

.fc ul li a:hover {
    color: rgba(255, 255, 255, .75)
}

.fbot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.fbot p {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .2)
}

.fbot a {
    color: rgba(255, 255, 255, .26);
    text-decoration: none
}

.fbot a:hover {
    color: rgba(255, 255, 255, .6)
}

.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--gp2)
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ph-box {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gp2)
}

.ph-box {
    position: absolute;
    inset: 0
}

.ph-box .ph-ico {
    font-size: 30px;
    opacity: .45
}

.ph-box span {
    font-size: 11px;
    color: rgba(30, 126, 69, .55);
    letter-spacing: .1em;
    font-weight: 500
}

.hero {
    min-height: 100vh;
    padding-top: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(150deg, var(--gp) 0%, #fff 60%);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 65% at 10% 55%, rgba(30, 126, 69, .07) 0, transparent 60%)
}

.hero-l {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5vw 80px 7vw
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1.5px;
    background: var(--g);
    flex-shrink: 0
}

.eyebrow span {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--g);
    font-weight: 600
}

.hero-h {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(30px, 3.6vw, 52px);
    font-weight: 900;
    line-height: 1.16;
    color: var(--bk);
    margin-bottom: 20px
}

.hero-h em {
    color: var(--g);
    font-style: normal
}

.hero-sub {
    font-size: 14.5px;
    color: var(--md);
    line-height: 1.9;
    max-width: 420px;
    margin-bottom: 38px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line)
}

.hs-n {
    font-family: 'Oxanium', sans-serif;
    font-size: 36px;
    color: var(--g);
    line-height: 1;
    font-weight: 700
}

.hs-n sup {
    font-size: 14px
}

.hs-l {
    font-size: 11px;
    color: var(--sf);
    margin-top: 5px;
    letter-spacing: .04em
}

.hero-r {
    position: relative;
    overflow: hidden
}

.hero-r::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background: linear-gradient(to right, var(--gp), transparent);
    z-index: 2;
    pointer-events: none
}

.mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 2px
}

.mc {
    overflow: hidden;
    background: #cde6d5;
    position: relative
}

.mc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.7) brightness(.78);
    transition: all .55s;
    display: block
}

.mc:hover img {
    filter: saturate(.95) brightness(.86);
    transform: scale(1.04)
}

.mc .hero-badge {
    position: absolute;
    bottom: 40px;
    right: 4vw;
    z-index: 5;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    padding: 13px 17px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
    border-radius: 2px
}

.hero-badge .bi {
    font-size: 22px;
    margin-bottom: 5px
}

.hero-badge p {
    font-size: 10px;
    color: var(--md);
    line-height: 1.65;
    font-weight: 500
}

.about-strip {
    background: var(--gp);
    padding: 72px 7vw
}

.as-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.as-img {
    position: relative
}

.as-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #cde6d5;
    position: relative
}

.as-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82);
    transition: transform .5s;
    display: block
}

.as-img-box:hover img {
    transform: scale(1.04)
}

.as-corner {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 46px;
    height: 46px;
    border-top: 2.5px solid var(--g);
    border-left: 2.5px solid var(--g)
}

.as-body p {
    font-size: 14.5px;
    color: var(--md);
    line-height: 1.92;
    margin-bottom: 14px
}

.as-body strong {
    color: var(--g)
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px
}

.feat {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: rgba(30, 126, 69, .055);
    border-left: 3px solid rgba(30, 126, 69, .38);
    transition: .28s
}

.feat:hover {
    background: rgba(30, 126, 69, .1);
    border-color: var(--g)
}

.feat-ico {
    width: 28px;
    height: 28px;
    background: rgba(30, 126, 69, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px
}

.feat h4 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--bk);
    margin-bottom: 2px
}

.feat p {
    font-size: 11px;
    color: var(--sf);
    line-height: 1.6
}

.prod-strip {
    background: #fff;
    padding: 72px 7vw
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px
}

.pc {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #cde6d5;
    cursor: pointer;
    text-decoration: none
}

.pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6) brightness(.75);
    transition: all .48s;
    display: block
}

.pc:hover img {
    filter: saturate(.9) brightness(.82);
    transform: scale(1.04)
}

.pc .po {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 36, 18, .9) 0%, rgba(8, 36, 18, .05) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    transition: .38s
}

.pc:hover .po {
    background: linear-gradient(to top, rgba(30, 126, 69, .78) 0%, rgba(8, 36, 18, .2) 100%)
}

.p-cat {
    font-family: 'Oxanium', sans-serif;
    font-size: 9px;
    letter-spacing: .2em;
    color: rgba(120, 220, 160, .9);
    margin-bottom: 4px;
    font-weight: 500
}

.p-name {
    font-family: 'Noto Serif SC', serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .45)
}

.p-arr {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(120, 220, 160, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ce6aa;
    font-size: 11px;
    opacity: 0;
    transform: translateY(-4px);
    transition: .28s
}

.pc:hover .p-arr {
    opacity: 1;
    transform: translateY(0)
}

.news-strip {
    background: var(--gp);
    padding: 72px 7vw
}

.ng {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.nfi {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #cde6d5;
    margin-bottom: 16px;
    position: relative
}

.nfi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78);
    transition: transform .5s;
    display: block
}

.nfi .news-feat:hover .nfi img {
    transform: scale(1.04)
}

.ntag {
    display: inline-block;
    background: rgba(30, 126, 69, .1);
    border: 1px solid rgba(30, 126, 69, .28);
    color: var(--g);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 3px 9px;
    margin-bottom: 9px;
    border-radius: 1px
}

.nft {
    font-family: 'Noto Serif SC', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bk);
    margin-bottom: 9px;
    line-height: 1.55
}

.nfd {
    font-size: 13.5px;
    color: var(--md);
    line-height: 1.88
}

.nlist {
    display: flex;
    flex-direction: column
}

.ni {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: .25s
}

.ni:hover {
    padding-left: 7px
}

.ndate {
    flex-shrink: 0;
    background: rgba(30, 126, 69, .06);
    border: 1px solid var(--line);
    padding: 6px 8px;
    width: 46px;
    text-align: center
}

.nd {
    font-family: 'Oxanium', sans-serif;
    font-size: 20px;
    color: var(--g);
    line-height: 1;
    font-weight: 700
}

.nm {
    font-size: 9px;
    color: var(--sf);
    text-transform: uppercase;
    letter-spacing: .07em
}

.nt {
    font-size: 13px;
    color: var(--dk);
    line-height: 1.75;
    flex: 1
}

.ni:hover .nt {
    color: var(--g)
}

.partner-strip {
    background: #fff;
    padding: 56px 7vw
}


/* .pt:hover {
    border-color: var(--g);
    color: var(--g);
    box-shadow: 0 4px 10px rgba(30, 126, 69, .1)
} */

.ab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: 72px 7vw;
    background: var(--gp)
}

.ab-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #cde6d5;
    position: relative
}

.ab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82);
    transition: transform .5s;
    display: block
}

.ab-img:hover img {
    transform: scale(1.04)
}

.ab-img .ab-corner {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 46px;
    height: 46px;
    border-top: 2.5px solid var(--g);
    border-left: 2.5px solid var(--g);
    pointer-events: none
}

.ab-body p {
    font-size: 14.5px;
    color: var(--md);
    line-height: 1.92;
    margin-bottom: 14px
}

.ab-body strong {
    color: var(--g)
}

.cg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.cc {
    padding: 26px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: .28s;
    border-radius: 2px
}

.cc:hover {
    border-color: rgba(30, 126, 69, .38);
    box-shadow: 0 8px 26px rgba(30, 126, 69, .07)
}

.cc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--g), #7ec850)
}

.cc-n {
    font-family: 'Oxanium', sans-serif;
    font-size: 46px;
    color: rgba(30, 126, 69, .06);
    font-weight: 700;
    position: absolute;
    top: 12px;
    right: 14px;
    line-height: 1;
    user-select: none
}

.cc-ico {
    font-size: 22px;
    margin-bottom: 10px
}

.cc-h {
    font-family: 'Noto Serif SC', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bk);
    margin-bottom: 8px
}

.cc-p {
    font-size: 13.5px;
    color: var(--md);
    line-height: 1.88
}

.cquote {
    margin-top: 34px;
    padding: 22px 36px;
    background: linear-gradient(135deg, var(--gp), var(--gp2));
    border-left: 4px solid var(--g);
    font-family: 'Noto Serif SC', serif;
    font-size: 38px;
    font-weight: 700;
    color: #173d20;
    text-align: center;
    border-radius: 0 3px 3px 0
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px
}

.qual-card {
    border: 1px solid var(--line);
    overflow: hidden;
    transition: .28s;
    border-radius: 2px
}

.qual-card:hover {
    border-color: rgba(30, 126, 69, .38);
    box-shadow: 0 6px 20px rgba(30, 126, 69, .08)
}

.qual-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--gp2);

    display: grid;
    place-items: center;
    /* 关键：水平+垂直居中 */
}

.qual-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.qual-img .qual-label {
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bk);
    text-align: center;
    background: var(--gp)
}

.cg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 72px 7vw;
    align-items: start
}

.ci-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.ci {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--gp);
    border: 1px solid var(--line);
    transition: .28s
}

.ci:hover {
    border-color: rgba(30, 126, 69, .38);
    box-shadow: 0 4px 14px rgba(30, 126, 69, .07)
}

.ci-ico {
    width: 38px;
    height: 38px;
    background: rgba(30, 126, 69, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}

.ci-h {
    font-size: 12px;
    font-weight: 700;
    color: var(--sf);
    letter-spacing: .06em;
    margin-bottom: 4px;
    text-transform: uppercase
}

.ci-v {
    font-size: 15px;
    color: var(--bk);
    font-weight: 500;
    line-height: 1.5
}

.ci-v a {
    color: var(--g);
    text-decoration: none
}

.map-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gp2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none
}

.prod-cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-bottom: 3px
}

.prod-cat-card {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
    background: #8f9691;
    cursor: pointer;
    text-decoration: none;
    display: block
}

.prod-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.6) brightness(.72);
    transition: all .48s;
    display: block
}

.prod-cat-card:hover img {
    filter: saturate(.9) brightness(.82);
    transform: scale(1.03)
}

.prod-cat-card .pco {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
    transition: .38s
}

.prod-cat-card:hover .pco {
    background: rgba(30, 126, 69, .3);
}

.pco-num {
    font-family: 'Oxanium', sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(120, 220, 160, .8);
    margin-bottom: 6px;
    font-weight: 600
}

.pco-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3)
}

.pco-items {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7
}

.pco-arr {
    font-size: 20px;
    color: rgba(120, 220, 160, .8);
    margin-top: 12px;
    transition: .28s;
    display: inline-block
}

.prod-cat-card:hover .pco-arr {
    transform: translateX(6px)
}

.prod-items {
    display: flex;
    flex-direction: column;
    gap: 64px
}

.pi {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 52px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid var(--line)
}

.pi:last-child {
    border-bottom: none
}

.pi.alt {
    direction: rtl
}

.pi.alt>* {
    direction: ltr
}

.pi-imgs {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pi-img-main {
    aspect-ratio: 1;
    overflow: hidden;
    /* background: var(--gp2); */
    position: relative
}

.pi-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85);
    display: block
}

.pi-img-main .pi-img-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px
}

.pi-img-row.two {
    grid-template-columns: 1fr 1fr
}

.pi-img-sm {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--gp2);
    position: relative
}

.pi-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pi-img-sm .pi-body .tag {
    font-family: 'Oxanium', sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--g);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px
}

.pi-body h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bk);
    margin-bottom: 14px;
    line-height: 1.3
}

.pi-body .desc {
    font-size: 14px;
    color: var(--md);
    line-height: 1.92;
    margin-bottom: 20px
}

.pi-body .fl {
    list-style: none
}

.pi-body .fl li {
    font-size: 13.5px;
    color: var(--dk);
    padding: 9px 0 9px 22px;
    border-bottom: 1px solid var(--line);
    position: relative;
    line-height: 1.7
}

.pi-body .fl li::before {
    content: '✓';
    color: var(--g);
    position: absolute;
    left: 0;
    font-weight: 700
}

.pi-body .fl li strong {
    color: var(--bk);
    font-weight: 700
}

.sidenav {
    position: sticky;
    top: 80px;
    background: var(--gp);
    border: 1px solid var(--line);
    padding: 20px
}

.sidenav h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 14px
}

.sidenav a {
    display: block;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--md);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: .22s;
    margin-bottom: 2px
}

.sidenav a:hover,
.sidenav a.cur {
    border-color: var(--g);
    color: var(--g);
    background: rgba(30, 126, 69, .06)
}

.layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    padding: 72px 7vw
}

@media(max-width:900px) {
    .fg {
        grid-template-columns: 1fr 1fr
    }

    .hero,
    .as-grid,
    .ng {
        grid-template-columns: 1fr
    }

    .hero-r,
    .hero-badge {
        display: none
    }

    .prod-grid {
        grid-template-columns: 1fr 1fr
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .ab-grid {
        grid-template-columns: 1fr
    }

    .cg {
        grid-template-columns: 1fr
    }

    .qual-grid {
        grid-template-columns: 1fr 1fr
    }

    .pi {
        grid-template-columns: 1fr
    }

    .pi.alt {
        direction: ltr
    }

    .layout {
        grid-template-columns: 1fr
    }

    .sidenav {
        display: none
    }

    .pi-img-row,
    .pi-img-row.two {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:700px) {
    nav {
        display: none
    }

    .fg {
        grid-template-columns: 1fr
    }

    .cband {
        flex-direction: column;
        text-align: center
    }

    .prod-cats {
        grid-template-columns: 1fr
    }
}


.prow {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 50px;
}

.pt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
}

.pt {

    /* border-radius:10px; */
    /* box-shadow:0 2px 8px rgba(0,0,0,.08); */
}

.pt img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.pt span {
    font-size: 14px;
    color: #333;
}