body:has(.pc-product-center) {
    background: #fff;
    color: #243a2f;
    min-width: 1200px;
}

.pc-product-center,
.pc-product-center * {
    box-sizing: border-box;
}

.pc-product-center a {
    text-decoration: none;
}

.pc-product-wrap {
    width: 1220px;
    margin: 0 auto;
}

.pc-product-hero {
    overflow: hidden;
    background: #f5f4ec;
}

.pc-product-hero__slide {
    display: block;
    width: 100%;
}

.pc-product-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.pc-product-main {
    padding: 40px 0 48px;
    background:
        radial-gradient(circle at 8% 7%, rgba(221,235,222,.72), transparent 21%),
        radial-gradient(circle at 92% 17%, rgba(231,238,225,.7), transparent 18%),
        linear-gradient(180deg,#fff 0%,#fbfcfa 42%,#fff 100%);
}

.pc-product-titlebar {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.pc-product-titlebar h2 {
    margin: 0;
    color: #223329;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.pc-product-titlebar span {
    color: #8a958e;
    font-size: 15px;
}

.pc-product-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.pc-product-tabs a {
    min-width: 122px;
    height: 46px;
    padding: 0 25px;
    border: 1px solid #d7ded8;
    border-radius: 6px;
    color: #2f4037;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 8px 22px rgba(30,58,42,.04);
}

.pc-product-tabs a.active,
.pc-product-tabs a:hover {
    color: #fff;
    border-color: #317d4a;
    background: #1f6b45;
}

.pc-product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.pc-product-filters,
.pc-product-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-product-filters a {
    min-width: 64px;
    height: 34px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7ded8;
    border-radius: 999px;
    color: #4c5d54;
    background: #fff;
    font-size: 14px;
}

.pc-product-filters a.active,
.pc-product-filters a:hover {
    color: #fff;
    border-color: #2d7947;
    background: #1f6b45;
}

.pc-product-sort {
    gap: 0;
    height: 42px;
    padding: 0 8px;
    border: 1px solid #dde4df;
    border-radius: 5px;
    background: #fff;
}

.pc-product-sort a {
    min-width: 78px;
    padding: 0 12px;
    color: #596961;
    font-size: 14px;
    text-align: center;
    border-left: 1px solid #edf1ee;
}

.pc-product-sort a:first-child {
    border-left: 0;
}

.pc-product-sort a:first-child:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.pc-product-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 24px 24px;
    margin: 0;
    padding: 0;
}

.pc-product-card {
    overflow: hidden;
    min-height: 392px;
    border: 1px solid #dce3dd;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(25,58,39,.045);
    transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1), border-color .3s cubic-bezier(.22,.61,.36,1);
}

.pc-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45,121,71,.38);
    box-shadow: 0 18px 38px rgba(25,58,39,.12);
}

.pc-product-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f4f7f4;
}

.pc-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

.pc-product-card:hover .pc-product-card__image img {
    transform: scale(1.035);
}

.pc-product-card__body {
    padding: 17px 18px 16px;
}

.pc-product-card__title {
    display: block;
    overflow: hidden;
    color: #1f2e25;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pc-product-card__body p {
    margin: 9px 0 22px;
    color: #8b958e;
    font-size: 14px;
    line-height: 1.4;
}

.pc-product-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-product-card__foot strong {
    color: #1d201e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 23px;
    font-weight: 700;
}

.pc-product-card__foot small {
    margin-left: 1px;
    font-size: 12px;
    font-weight: 400;
}

.pc-product-card__btn {
    height: 31px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #315c42;
    border: 1px solid #b8cdbd;
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
}

.pc-product-card__btn:hover {
    color: #fff;
    border-color: #1f6b45;
    background: #1f6b45;
}

.pc-product-strength {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    margin: 30px 0 28px;
    padding: 0 48px 0 54px;
    overflow: hidden;
    border-radius: 5px;
    color: #f7f2dd;
    background:
        radial-gradient(circle at 93% 50%, rgba(222,191,112,.25), transparent 24%),
        linear-gradient(135deg,#0d4427 0%,#1d6b3f 54%,#0d4229 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 16px 32px rgba(22,75,43,.16);
}

.pc-product-strength__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    width: 760px;
}

.pc-product-strength__stats div {
    position: relative;
    min-width: 0;
}

.pc-product-strength__stats div:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 9px;
    vertical-align: 4px;
    border: 1px solid rgba(232,216,159,.55);
    border-radius: 50%;
    background: radial-gradient(circle,#e2cf91 0 26%, transparent 27%);
}

.pc-product-strength__stats strong {
    color: #f4e6ad;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
}

.pc-product-strength__stats small {
    margin-left: 2px;
    font-size: 18px;
}

.pc-product-strength__stats span,
.pc-product-strength__stats em {
    display: block;
    font-style: normal;
}

.pc-product-strength__stats span {
    margin-top: 4px;
    color: #fff6d5;
    font-size: 15px;
    font-weight: 600;
}

.pc-product-strength__stats em {
    margin-top: 7px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.pc-product-strength img {
    display: block;
    width: 292px;
    height: auto;
    margin-right: -10px;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.2));
}

.pc-product-pages {
    min-height: 44px;
    text-align: center;
    color: #506056;
}

.pc-product-pages a,
.pc-product-pages span,
.pc-product-pages .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    margin: 0 7px;
    padding: 0 10px;
    color: #3b4a41;
    border: 1px solid #dbe4de;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

.pc-product-pages .current,
.pc-product-pages span.current {
    color: #fff;
    border-color: #2d7947;
    background: #1f6b45;
}

.pc-product-contact {
    height: 106px;
    color: #fff;
    background: linear-gradient(90deg,#29753d,#0e4d2e 66%,#1d6c3d);
}

.pc-product-contact__inner {
    height: 106px;
    display: grid;
    grid-template-columns: 340px 1fr 315px;
    align-items: center;
    column-gap: 44px;
}

.pc-product-contact__phone {
    padding-left: 54px;
    position: relative;
}

.pc-product-contact__phone:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 50%;
}

.pc-product-contact__phone:after {
    content: "";
    position: absolute;
    left: 13px;
    top: 18px;
    width: 14px;
    height: 14px;
    border: 3px solid rgba(255,255,255,.78);
    border-top: 0;
    border-left: 0;
    transform: rotate(25deg);
    border-radius: 0 0 7px 0;
}

.pc-product-contact__phone span,
.pc-product-contact__time span,
.pc-product-contact__qr span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.pc-product-contact__phone strong {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 31px;
    font-weight: 500;
}

.pc-product-contact__time {
    color: #fff;
    font-size: 18px;
}

.pc-product-contact__time strong {
    font-size: 18px;
    font-weight: 400;
}

.pc-product-contact__qr {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 35px;
    border-left: 1px solid rgba(255,255,255,.28);
}

.pc-product-contact__qr img {
    width: 68px;
    height: 68px;
    padding: 4px;
    background: #fff;
}

.pc-product-contact__qr strong {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.pc-product-footer {
    padding: 42px 0 30px;
    color: #4f5e55;
    background: #fff;
}

.pc-product-footer__inner {
    display: grid;
    grid-template-columns: 300px 1fr 210px;
    gap: 52px;
    align-items: start;
}

.pc-product-footer__brand img {
    display: block;
    width: 135px;
    height: auto;
    margin-bottom: 18px;
}

.pc-product-footer__brand p {
    margin: 0 0 38px;
    color: #8a968e;
    font-size: 17px;
}

.pc-product-footer__brand small {
    color: #89948c;
    font-size: 12px;
}

.pc-product-footer__cols {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 34px;
}

.pc-product-footer__cols h3 {
    margin: 0 0 14px;
    color: #253a2f;
    font-size: 16px;
    font-weight: 600;
}

.pc-product-footer__cols a {
    display: block;
    margin: 8px 0;
    color: #647269;
    font-size: 14px;
}

.pc-product-footer__cols a:hover {
    color: #1f6b45;
}

.pc-product-footer__social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 92px;
}

.pc-product-footer__social span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6b45;
    border-radius: 50%;
    background: #eef6f1;
    font-size: 12px;
}

/* KXC-FIX(2026-08-22): 这里原本还要藏 #particles-js，现在那个元素已经整个删掉了
   （它是一块盖住页面左上角的白方块，而 particles 库从未加载），规则一并移除。 */

@media (max-width: 1366px) {
    .pc-product-wrap {
        width: 1160px;
    }

    .pc-product-strength__stats {
        width: 720px;
        gap: 28px;
    }
}

/* ============================================================
 * KXC-FIX(2026-08-22) 窄屏适配
 *
 * 实测（视口 1009px，桌面 UA）：
 *   html/body 都是 overflow-x:hidden（所以不会出横向滚动条），
 *   而 .pc-product-wrap 仍是固定 1160px，商品网格 4 列 x 272px，
 *   最后一列右边界 1160 > 视口 1009 —— 每一行第 4 个商品被直接裁掉，
 *   而且因为没有横向滚动，用户根本滚不过去，等于静默丢失 25% 的商品。
 *   受影响场景：1200px 以下的桌面窗口（小笔记本、iPad 横屏、分屏浏览）。
 *   注：body:has(.pc-product-center){min-width:1200px} 实测没有生效
 *   （computed min-width 为 0），所以那条不能作为兜底。
 *
 * 网格本身写的是 repeat(4, minmax(0,1fr))，已经是流式的，
 * 症结只在外层容器的固定宽度。这里让容器在窄屏下变流式，
 * 并按宽度递减列数。只加 @media 块，不改任何既有规则。
 * ============================================================ */

@media (max-width: 1200px) {
    body:has(.pc-product-center) {
        min-width: 0;
    }

    .pc-product-wrap {
        width: auto;
        max-width: calc(100% - 32px);
    }

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

    .pc-product-strength__stats {
        width: auto;
        max-width: 100%;
        gap: 24px;
    }

    .pc-product-toolbar,
    .pc-product-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .pc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pc-product-strength__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pc-product-contact__inner,
    .pc-product-footer__inner {
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media (max-width: 620px) {
    .pc-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pc-product-strength__stats {
        grid-template-columns: minmax(0, 1fr);
    }
}
