:root {
    --gold: #7f6000;
    --gold-light: #ac8714;
    --ink: #171717;
    --line: #e7e7e7;
    --muted: #777
}

* {
    
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	min-width: 0;
	word-break: break-word;
	word-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.75
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

button,
input {
    font: inherit
}

button,
a,
input {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(127, 96, 0, .18)
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 8px 12px;
    background: #111;
    color: #fff;
    transform: translateY(-160%);
    transition: transform .2s
}

.skip-link:focus-visible {
    transform: translateY(0)
}

.container {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px
}

.row>[class*="col-"] {
    padding: 0 10px
}

.col-3 {
    width: 25%
}

.col-4 {
    width: 33.3333%
}

.col-5 {
    width: 41.6667%
}

.col-6 {
    width: 50%
}

.col-7 {
    width: 58.3333%
}

.col-8 {
    width: 66.6667%
}

.col-9 {
    width: 75%
}

.text-center {
    text-align: center
}

.relative {
    position: relative
}

.overflow-hidden {
    overflow: hidden
}

.header {
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 1px 1px 10px rgba(68, 68, 68, .12)
}

.header .nav li {
    display: block;
    height: 70px;
    line-height: 70px;

}

.header .container {
    height: 70px;
    position: relative
}

.nav {
    margin-left: 190px;
    width: calc(100% - 440px)
}

.nav>ul {
    display: flex;
    justify-content: flex-end;
    height: 70px
}

.nav li {
    position: relative
}

.nav>ul>li>a {
    display: block;
    padding: 0 19px;
    color: #111;
    font-size: 15px;
    white-space: nowrap;
    transition: color .2s, background .2s
}

.nav>ul>li:hover>a,
.nav>ul>li.active>a {
    color: #fff;
    background: var(--gold)
}

.nav li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    min-width: 145px;
    background: #111;
    line-height: 42px;
    z-index: 10
}

.nav li:hover>ul,
.nav li:focus-within>ul {
    display: block
}

.nav li ul a {
    display: block;
    padding: 0 18px;
    color: #fff;
    white-space: nowrap
}

.nav li ul a:hover {
    background: var(--gold)
}

.product-mega {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 20;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 18px 28px rgba(20, 20, 20, .13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s, transform .22s, visibility .22s
}

.product-mega.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
}

.product-mega-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 3vw 0
}

.mega-sidebar {
    display: flex;
    flex-direction: column;
    padding-right: 28px;
    border-right: 1px solid var(--line)
}

.mega-kicker {
    margin: 0 0 4px;
    color: var(--gold-light);
    font-size: 12px;
    font-style: italic;
    letter-spacing: 2px
}

.product-mega h2 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2
}

.mega-categories a {
    display: block;
    padding: 7px 0;
    color: #333;
    font-size: 15px;
    transition: color .2s, padding .2s
}

.mega-categories a:hover,
.mega-categories a:focus-visible {
    padding-left: 6px;
    color: var(--gold)
}

.mega-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    color: var(--gold);
    font-size: 13px
}

.mega-all-link span {
    font-size: 18px;
    line-height: 1
}

.mega-showcase {
    min-width: 0
}

.mega-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px
}

.mega-heading p {
    margin: 0;
    color: #9d8c6c;
    font-size: 11px;
    font-style: italic;
    letter-spacing: 1.8px
}

.mega-heading h3 {
    margin: 2px 0 0;
    font-size: 22px;
    line-height: 1.2
}

.mega-controls {
    display: flex;
    gap: 8px
}

.mega-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: background .2s, color .2s
}

.mega-controls button:hover,
.mega-controls button:focus-visible {
    background: var(--gold);
    color: #fff
}

.mega-controls button:disabled {
    color: #bbb;
    cursor: default
}

.mega-controls button:disabled:hover {
    background: transparent
}

.mega-viewport {
    overflow: hidden
}

.mega-track {
    display: flex;
    gap: 18px;
    transition: transform .38s ease
}

.mega-product {
    flex: 0 0 calc((100% - 36px)/3);
    min-width: 0
}

.mega-product img {
    display: block;
    width: 100%;
    height: 142px;
    object-fit: cover;
    background: #f4f1ec;
    transition: transform .25s
}

.mega-product:hover img {
    transform: translateY(-4px)
}

.mega-product span,
.mega-product small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mega-product span {
    margin-top: 5px;
    color: #222;
    font-size: 14px
}

.mega-product small {
    color: #999;
    font-size: 11px;
    font-style: italic;
    line-height: 1.4
}

.nav .news-nav>ul {
    left: 0;
    top: 70px;
    min-width: 145px
}

.ss-box {
    position: absolute;
    right: 0;
    top: 15px;
    display: flex;
    align-items: center;
    height: 40px;
    width: 40px;
    border: 1px solid #d9d4ca;
    border-radius: 999px;
    background: #fff;
    line-height: 1;
    overflow: hidden;
    transition: width .35s cubic-bezier(.22, .61, .36, 1), border-color .2s, box-shadow .2s
}

.ss-box.is-expanded {
    width: 270px;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(71, 55, 12, .12)
}

.s-input {
    order: 2;
    min-width: 0;
    width: 0;
    height: 100%;
    border: 0;
    padding: 0;
    color: #333;
    opacity: 0;
    outline: 0;
    background: transparent;
    transition: width .28s ease, opacity .18s ease, padding .28s ease
}

.ss-box.is-expanded .s-input {
    width: 184px;
    padding: 0 9px;
    opacity: 1
}

.s-input::placeholder {
    color: #a09a90
}

.s-btn {
    order: 1;
    position: relative;
    flex: 0 0 38px;
    align-self: stretch;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer
}

.s-btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    background: #222;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m21 21-4.35-4.35M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m21 21-4.35-4.35M19 11a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat
}

.s-btn:hover:before,
.s-btn:focus-visible:before {
    background: var(--gold)
}

.s-btn:focus-visible,
.search-collapse:focus-visible {
    outline: 0
}

.search-collapse {
    order: 3;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin-right: 4px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #777;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: scale(.7);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease
}

.ss-box.is-expanded .search-collapse {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto
}

.search-collapse:hover,
.search-collapse:focus-visible {
    background: #f2f0eb;
    color: #222
}

.logo-box {
    height: 0;
    position: relative;
    z-index: 31
}

.logo {
    position: absolute;
    top: -58px;
    left: 0;
    display: block
}

.logo img {
    width: 160px;
    height: auto;
    display: block
}

.nav-toggle {
    display: none;
    position: absolute;
    right: 4px;
    top: 10px;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer
}

.nav-toggle img {
    width: 30px;
    height: 30px
}

.mask-bg {
    display: none
}

.home-banner {
    position: relative;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
    background: #171717;
    color: #fff
}

.home-banner-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 822
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    backface-visibility: hidden;
    contain: paint
}

.home-banner-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 12, .62) 0, rgba(12, 12, 12, .28) 43%, rgba(12, 12, 12, .05) 72%)
}

.home-banner-slide.is-active {
    z-index: 1;
    visibility: visible;
    pointer-events: auto
}

.home-banner-slide.is-entering {
    z-index: 1
}

.home-banner-slide.is-leaving {
    z-index: 2;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 91% 98%, 82% 93%, 72% 99%, 62% 92%, 51% 98%, 40% 93%, 29% 100%, 18% 94%, 8% 98%, 0 93%);
    animation: home-banner-liquid-out 1.05s cubic-bezier(.65, 0, .2, 1) both;
    will-change: transform
}

.home-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035) translateZ(0);
    backface-visibility: hidden
}

.home-banner-slide.is-active img {
    animation: home-banner-settle 6.5s cubic-bezier(.2, .7, .2, 1) both
}

.home-banner-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    line-height: 1.2
}

.home-banner-copy-inner {
    max-width: 720px;
    padding-bottom: 2vw;
    opacity: 0;
    transform: translateY(24px)
}

.home-banner-slide.is-active .home-banner-copy-inner {
    animation: home-banner-copy-in .8s .35s cubic-bezier(.16, 1, .3, 1) both
}

.home-banner-copy h1 {
    max-width: 16ch;
    margin: 0;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.18;
    text-wrap: balance
}

.home-banner-copy p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(14px, 1.5vw, 21px);
    font-style: italic;
    letter-spacing: .04em
}

.home-banner-pagination {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 4;
    display: flex;
    gap: 10px;
    pointer-events: none
}

.home-banner-pagination button {
    display: flex;
    align-items: center;
    width: 42px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto
}

.home-banner-pagination span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .42);
    transition: background .25s, transform .25s;
    transform-origin: left center
}

.home-banner-pagination button:hover span,
.home-banner-pagination button:focus-visible span,
.home-banner-pagination button.is-active span {
    background: var(--gold-light);
    transform: scaleY(2)
}

@keyframes home-banner-liquid-out {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(0, -105%, 0)
    }
}

@keyframes home-banner-settle {
    from {
        transform: scale(1.035)
    }

    to {
        transform: scale(1)
    }
}

@keyframes home-banner-copy-in {
    to {
        opacity: 1;
        transform: none
    }
}

.headline {
    padding: 68px 0 36px;
    text-align: center
}

.headline .en {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: italic;
    color: #222
}

.headline .tit {
    font-size: 30px;
    line-height: 1.3;
    margin-top: 5px;
    font-weight: 700;
    text-wrap: balance
}

.category-bg {
    position: relative;
    margin: 30px auto 90px
}

.category-bg:before,
.category-bg:after {
    content: "";
    position: absolute;
    height: 8px;
    background: var(--gold);
    width: 50%;
    z-index: 0
}

.category-bg:before {
    left: 0;
    top: 3px
}

.category-bg:after {
    right: 0;
    bottom: 39px
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    z-index: 1;
    gap: 5px
}

.category-item {
    height: 180px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 18px;
    font-style: italic;
    transition: transform .25s
}

.category-item:first-child {
    color: #fff;
    background: #111
}

.category-item:first-child .category-inner {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #111
}

.category-item img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    margin-bottom: 6px;
    filter: brightness(0) invert(1);
    transition: transform .2s
}

.category-item:hover img {
    transform: translateY(-5px)
}

.category-item strong {
    font-size: 19px;
    color: #fff
}

.aboutus-home {
    padding-bottom: 70px
}

.aboutus-home .headline {
    text-align: left;
    padding-top: 0;
    padding-bottom: 42px
}

.info-content {
    font-size: 15px;
    line-height: 2.05;
    color: #444
}

.btn-view-more {
    display: block;
    margin-top: 28px;
    padding: 12px 20px;
    border: 1px solid #111;
    text-align: center;
    transition: .25s
}

.btn-view-more:hover,
.about-buttons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.accordion {
    height: 385px;
    display: flex;
    overflow: hidden
}

.accordion li {
    flex: 1;
    transition: flex .35s;
    position: relative;
    overflow: hidden
}

.accordion-control {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer
}

.accordion li.active {
    flex: 2.1
}

.accordion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about-buttons {
    display: flex;
    gap: 10px;
    margin-top: 26px
}

.about-buttons a {
    flex: 1;
    padding: 10px 8px;
    border: 1px solid #111;
    text-align: center;
    transition: .25s
}

.ourAdvantages {
    padding: 0 0 88px
}

.ourAdvantages .headline {
    text-align: left;
    padding-bottom: 45px
}

.sectionFranchising {
    padding: 0 110px 29px 0
}

.ourAdvantages>.row {
    align-items: flex-start
}

@media (min-width:992px) {
    .ourAdvantages>.row>[class*="col-"]:last-child {
        position: sticky;
        top: 90px;
        align-self: flex-start
    }
}

.section-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px
}

.section-title .en {
    font-weight: 700;
    font-style: italic;
    font-size: 17px
}

.section-title .cn {
    font-size: 22px;
    font-weight: 700
}

.section-text {
    margin: 0;
    color: #555;
    line-height: 1.9
}

.advantage-card {
    height: 620px;
    position: relative;
    overflow: hidden;
    background: #222
}

.advantage-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.advantage-item {
    position: absolute;
    left: 0;
    right: 0;
    height: 33.333%;
    overflow: hidden
}

.advantage-item:nth-last-child(3) {
    top: 0
}

.advantage-item:nth-last-child(2) {
    top: 33.333%
}

.advantage-item:last-child {
    top: 66.666%
}

.advantage-item .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    transition: background .25s
}

.advantage-item:hover .mask {
    background: rgba(127, 96, 0, .65)
}

.advantage-item h3 {
    margin: 0;
    font-size: 24px
}

.advantage-item p {
    margin: 0;
    font-style: italic
}

.advantage-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: #fff;
    z-index: 2
}

.advantage-line.one {
    top: 33.333%
}

.advantage-line.two {
    top: 66.666%
}

.productshow-home {
    position: relative;
    padding: 0 0 85px;
    margin: 20px 0
}

.productshow-home:before,
.productshow-home:after {
    content: "";
    position: absolute;
    height: 180px;
    width: 30%;
    background: var(--gold);
    z-index: 0
}

.productshow-home:before {
    left: 0;
    top: 0
}

.productshow-home:after {
    right: 0;
    bottom: 0
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1
}

.product-card {
    background: #fff;
    overflow: hidden
}

.product-card .visual {
    position: relative;
    overflow: hidden;
    transition: transform .3s
}

.product-card img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover
}

.product-card:nth-child(odd):hover .visual {
    transform: translateY(-15px)
}

.product-card:nth-child(even):hover .visual {
    transform: translateY(15px)
}

.product-card .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.product-card:hover .mask {
    opacity: 1
}

.product-card .mask img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    transition: filter .2s
}

.product-card:hover .mask img,
.product-card:focus-within .mask img {
    filter: brightness(0) invert(1)
}

.product-label {
    background: var(--gold);
    color: #fff;
    text-align: center;
    padding: 11px 4px
}

.product-label .cn,
.product-label .en {
    display: block;
    font-style: italic
}

.product-label .cn {
    font-size: 18px
}

.product-label .en {
    font-weight: 700;
    font-size: 14px
}

.news-home {
    position: relative;
    padding: 50px 0 70px;
    margin-bottom: -45px
}

.news-home:before,
.news-home:after {
    content: "";
    position: absolute;
    background: #080808;
    z-index: 0
}

.news-home:before {
    right: 0;
    top: 0;
    width: 30%;
    height: 244px
}

.news-home:after {
    left: 0;
    bottom: 80px;
    width: 35%;
    height: 154px
}

.news-layout {
    display: grid;
    grid-template-columns: 28% 72%;
    position: relative;
    z-index: 1
}

.sub-nav {}

.sub-nav a {
    background: #eae5e5;
    display: block;
    line-height: 76px;
    text-align: center;
    margin-bottom: 4px;
    color: #000;
    transition: .25s
}

.sub-nav li:last-child a {
    border-bottom: 0
}

.sub-nav a:hover,
.sub-nav li.active a {
    color: #fff;
    background: #000
}

.Product_thumb .Item {
    padding: 4px;
    cursor: pointer;
}

.Product_thumb .zhenshangyin-slide-active img {

    opacity: 1;
    outline: 2px solid var(--gold);
}

.Product_thumb img {
    opacity: .6;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feature {
    display: block;
    margin-top: 20px;
    position: relative;
    height: 154px;
    overflow: hidden
}

.news-feature img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.62)
}

.news-feature span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    font-style: italic
}

.news-list {
    padding-left: 32px;
    background: #fff;
}

.news-item {
    padding: 0 0 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #ddd
}

.news-item a {
    display: block
}

.news-item h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45
}

.news-item time {
    font-size: 13px;
    color: #888
}

.news-item p {
    margin: 6px 0 0;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.pagination {
    display: flex;
    gap: 7px;
    justify-content: center;
    padding: 35px 0 10px
}

.pagination span,
.pagination a {
    min-width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd
}

.pagination svg {
    height: 1em;
}

.pagination a.active,
.pagination a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.page-shell {
    padding-bottom: 30px
}

.search-container {
    max-width: 980px
}

.search-page-form {
    display: flex;
    width: 100%;
    height: 48px;
    border: 1px solid #cfc9bd;
    background: #fff;
    transition: border-color .2s, box-shadow .2s
}

.search-page-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(127, 96, 0, .1)
}

.search-page-form input {
    min-width: 0;
    flex: 1;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: #222;
    outline: 0
}

.search-page-form input::placeholder {
    color: #999
}

.search-page-form button {
    width: 96px;
    border: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
    transition: background .2s
}

.search-page-form button:hover,
.search-page-form button:focus-visible {
    background: var(--gold)
}

.search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 13px;
    border-bottom: 2px solid #111;
    color: #777
}

.search-summary p {
    margin: 0
}

.search-summary strong {
    color: #222;
    font-weight: 600
}

.search-summary span {
    font-size: 13px
}

.search-results {
    border-bottom: 1px solid var(--line)
}

.search-result-item {
    border-bottom: 1px solid var(--line)
}

.search-result-item:last-child {
    border-bottom: 0
}

.search-result-item>a {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
    padding: 24px 0
}

.search-result-item>a:has(.search-result-content:first-child) {
    grid-template-columns: 1fr
}

.search-result-image {
    height: 126px;
    overflow: hidden;
    background: #f5f5f5
}

.search-result-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease
}

.search-result-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start
}

.search-result-meta {
    color: #999;
    font-size: 12px;
    line-height: 1.4
}

.search-result-content h2 {
    margin: 5px 0 7px;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 600;
    transition: color .2s
}

.search-result-content p {
    display: -webkit-box;
    margin: 0;
    color: #777;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.search-result-more {
    margin-top: auto;
    padding-top: 7px;
    color: var(--gold);
    font-size: 13px
}

.search-result-item a:hover h2,
.search-result-item a:focus-visible h2 {
    color: var(--gold)
}

.search-result-item a:hover img {
    transform: scale(1.04)
}

.search-empty {
    padding: 76px 20px;
    text-align: center;
    border-bottom: 1px solid var(--line)
}

.search-empty h2 {
    margin: 0 0 6px;
    font-size: 20px
}

.search-empty p {
    margin: 0;
    color: #888
}

.search-page .pagination {
    padding-top: 32px
}

.search-page .pagination span,
.search-page .pagination a {
    display: block;
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    border: 1px solid #ddd;
    line-height: 28px;
    text-align: center
}

.search-page .pagination .active,
.search-page .pagination .current,
.search-page .pagination a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff
}

.sub-nav-box {
    background: #000;
    margin: 0 0 20px;
}

.sub-nav-box ul {
    display: flex;
    justify-content: center
}

.sub-nav-box li {
    flex: 1
}

.sub-nav-box a {
    color: #fff;
    line-height: 50px;
    padding: 0 20px;
    display: block;
    text-align: center
}

.sub-nav-box li.active a,
.sub-nav-box a:hover {
    background: var(--gold)
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px
}

.list-card {
    text-align: center;
    overflow: hidden
}

.list-card .show {
    overflow: hidden;
    background: #fafafa
}

.list-card img {
    width: 100%;
    height: 236px;
    object-fit: cover;
    display: block;
    transition: transform .3s
}

.list-card a:hover img {
    transform: scale(1.08)
}

.list-card h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 10px 0 0
}

.list-card p {
    margin: 3px 0 0;
    color: #888;
    font-size: 13px
}

.detail-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px
}

.gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px
}

.thumbs img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
    opacity: .6;
    cursor: pointer
}

.thumbs img.active,
.thumbs img:hover {
    opacity: 1;
    outline: 2px solid var(--gold)
}

.gallery-main {
    height: 420px;
    overflow: hidden;
    background: #fafafa
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-content h1 {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 12px
}

.price {
    font-size: 24px;
    color: var(--gold);
    margin: 8px 0 18px
}

.product-meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
    color: #666;
    line-height: 2
}

.detail-text {
    margin-top: 35px;
    line-height: 2;
    color: #555
}

.detail-text h2 {
    font-size: 22px;
    color: #222
}

.detail-text img {
    display: block;
    margin: 22px auto;
    max-width: 100%
}

.detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    color: #666
}

.join-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 40px
}

.join-image {
    height: 450px;
    overflow: hidden
}

.join-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sectionFranchising.join-section {
    padding: 0 0 26px
}

.join-section .section-title {
    justify-content: flex-start
}

.join-section .section-text {
    line-height: 2;
    color: #555
}

.contact-form-section {
    padding: 44px 0 52px
}

.contact-form-heading {
    margin-bottom: 24px
}

.contact-form-heading h2 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.3
}

.contact-form-heading p {
    margin: 0;
    color: var(--muted)
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px
}

.contact-form label {
    display: block
}

.contact-form label span {
    display: block;
    margin-bottom: 6px;
    color: #333
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px 12px;
    color: #222;
    line-height: 1.4
}

.contact-form input,
.contact-form select {
    height: 42px
}

.contact-form textarea {
    resize: vertical
}

.contact-form-message {
    grid-column: 1/-1
}

.contact-form button {
    justify-self: start;
    border: 0;
    background: #111;
    color: #fff;
    padding: 11px 28px;
    cursor: pointer
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: var(--gold)
}

.contact-strip {
    background: #f7f7f7;
    padding: 50px 0 
}

.contact-info {
    padding: 0 40px 30px 0
}

.contact-info h3 {
    font-size: 23px;
    margin: 0 0 14px
}

.contact-info p {
    margin: 6px 0;
    color: #555
}

.topBanner {
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    aspect-ratio: 1920/300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
}

.topBanner .tit {

    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.topBanner .en {

    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 1.8px;
    line-height: 1.2;
}

.map-box {}

.map-box img {
    width: 100%;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px
}

.contact-card {
    height: 145px;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.contact-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.contact-card .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    object-fit: contain
}

.contact-card .mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(180, 138, 0, .88);
    color: #fff;
    transform: translateX(-100%);
    transition: transform .45s
}

.contact-card:hover .mask,
.contact-card:focus-within .mask {
    transform: translateX(0)
}

.contact-card h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 400
}

.contact-card p {
    margin: 0;
    font-weight: 700
}

footer {
    background: #f7f7f7;
    border-top: 4px solid var(--gold);
    padding: 45px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px
}

.footer-logo img {
    width: 160px
}

.footer-title {
    font-size: 20px;
    color: var(--gold);
    margin: 0 0 10px
}

.footer-copy {
    color: #555
}

.footer-links a {
    display: block;
    color: #555;
    line-height: 2
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-qr img {
    width: 120px;
    height: 120px;
    object-fit: cover
}

.copyright {
    margin-top: 35px;
    padding: 14px 0;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #777;
    font-size: 12px
}

.footer-fixed {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s, transform .65s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 0
}

@media (max-width:1199px) {
    .container {
        width: 1000px
    }

    .nav {
        margin-left: 180px;
        width: calc(100% - 400px)
    }

    .nav>ul>li>a {
        padding: 0 12px
    }

    .ss-box {
        width: 190px
    }

    .sectionFranchising {
        padding-right: 40px
    }
}

@media (max-width:991px) {
    .container {
        max-width: calc(100% - 30px);
        width: auto
    }

    .header {
        height: 64px;
        line-height: 64px
    }

    .header .container {
        height: 64px
    }

    .logo {
        top: -53px
    }

    .logo img {
        width: 140px
    }

    .nav-toggle {
        display: block
    }

    .ss-box {
        right: 62px;
        width: 190px;
        top: 14px
    }

    .nav {
        position: fixed;
        top: 64px;
        right: -290px;
        width: 280px;
        height: calc(100vh - 64px);
        margin: 0;
        background: #111;
        transition: right .3s;
        overflow: auto;
        z-index: 40
    }

    .nav.open {
        right: 0
    }

    .nav>ul {
        display: block;
        height: auto
    }

    .nav>ul>li>a {
        color: #fff;
        line-height: 52px;
        padding: 0 25px;
        border-bottom: 1px solid #333
    }

    .nav>ul>li:hover>a,
    .nav>ul>li.active>a {
        background: var(--gold)
    }

    .nav li ul {
        position: static;
        display: block;
        line-height: 40px;
        background: #242424
    }

    .nav li ul a {
        padding-left: 42px
    }

    .product-mega {
        display: none
    }

    .mask-bg {
        display: block;
        position: fixed;
        inset: 64px 0 0;
        background: rgba(0, 0, 0, .45);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
        z-index: 35
    }

    .mask-bg.active {
        opacity: 1;
        pointer-events: auto
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .category-item:first-child {
        display: none
    }

    .category-item {
        height: 135px
    }

    .aboutus-home .row,
    .ourAdvantages .row {
        display: block
    }

    .aboutus-home .col-6,
    .ourAdvantages .col-6 {
        width: 100%
    }

    .accordion {
        margin-top: 35px;
        height: 350px
    }

    .sectionFranchising {
        padding-right: 0
    }

    .advantage-card {
        height: 470px;
        margin-top: 25px
    }

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

    .news-layout {
        grid-template-columns: 1fr
    }

    .news-list {
        padding: 38px 0 0
    }

    .news-feature {
        display: none
    }

    .sub-nav ul {
        display: flex
    }

    .sub-nav a {
        line-height: 52px
    }

    .sub-nav li {
        flex: 1
    }

    .list-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .detail-layout {
        grid-template-columns: 1fr
    }

    .gallery-main {
        height: 460px
    }

    .join-grid {
        grid-template-columns: 1fr
    }

    .join-image {
        height: 380px
    }

    .login-panel {
        grid-template-columns: 1fr
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-fixed {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding-bottom: env(safe-area-inset-bottom);
        background: #fff;
        border-top: 2px solid #111;
        z-index: 29
    }

    .footer-fixed ul {
        display: flex;
        justify-content: space-around
    }

    .footer-fixed a {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px 0;
        font-size: 12px;
        color: #333
    }

    .footer-fixed img {
        width: 24px;
        height: 24px;
        object-fit: contain
    }
}

@media (max-width:600px) {
    body {
        font-size: 13px
    }

    .container {
        max-width: calc(100% - 24px)
    }

    .header {
        height: 58px
    }

    .header .container {
        height: 58px
    }

    .logo {
        top: -48px
    }

    .logo img {
        width: 118px
    }

    .nav-toggle {
        top: 5px;
        right: -2px
    }

    .ss-box {
        right: 43px;
        top: 12px;
        width: 145px;
        height: 32px
    }

    .s-input {
        width: 100px
    }

    .s-btn {
        width: 45px
    }

    .nav {
        top: 58px;
        height: calc(100vh - 58px)
    }

    .mask-bg {
        inset: 58px 0 0
    }

    .home-banner-stage {
        aspect-ratio: 4 / 3
    }

    .home-banner-slide:after {
        background: linear-gradient(90deg, rgba(12, 12, 12, .62), rgba(12, 12, 12, .12))
    }

    .home-banner-copy-inner {
        padding: 0 0 34px
    }

    .home-banner-copy h1 {
        font-size: 28px;
        letter-spacing: .02em
    }

    .home-banner-copy p {
        margin-top: 10px;
        font-size: 13px
    }

    .home-banner-pagination {
        bottom: 10px
    }

    .home-banner-pagination button {
        width: 34px
    }

    .headline {
        padding: 44px 0 24px
    }

    .headline .en {
        font-size: 15px
    }

    .headline .tit {
        font-size: 25px
    }

    .category-bg {
        margin: 24px auto 52px
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px
    }

    .category-item {
        height: 110px;
        font-size: 16px
    }

    .category-item img {
        width: 68px;
        height: 68px
    }

    .category-item strong {
        font-size: 16px
    }

    .aboutus-home {
        padding-bottom: 48px
    }

    .aboutus-home .headline {
        padding-bottom: 24px
    }

    .info-content {
        font-size: 14px;
        line-height: 1.9
    }

    .accordion {
        height: 235px
    }

    .about-buttons {
        gap: 6px
    }

    .about-buttons a {
        font-size: 13px;
        padding: 8px 3px
    }

    .ourAdvantages {
        padding-bottom: 45px
    }

    .ourAdvantages .headline {
        padding-bottom: 28px
    }

    .section-title {
        gap: 9px
    }

    .section-title .en {
        font-size: 13px
    }

    .section-title .cn {
        font-size: 18px
    }

    .section-text {
        line-height: 1.8
    }

    .advantage-card {
        height: 345px
    }

    .advantage-item h3 {
        font-size: 19px
    }

    .productshow-home {
        padding-bottom: 54px
    }

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

    .product-card img {
        height: 180px
    }

    .product-label {
        padding: 7px 3px
    }

    .product-label .cn {
        font-size: 15px
    }

    .product-label .en {
        font-size: 11px
    }

    .news-home {
        padding: 32px 0 50px
    }

    .news-list {
        padding-top: 25px
    }

    .news-item h3 {
        font-size: 15px
    }

    .sub-nav-box ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .sub-nav-box a {
        padding: 0;
        line-height: 42px;
        font-size: 13px;
        text-align: center
    }

    .list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px
    }

    .list-card img {
        height: 165px
    }

    .list-card h3 {
        font-size: 14px
    }

    .detail-layout {
        gap: 18px
    }

    .gallery {
        grid-template-columns: 58px 1fr
    }

    .thumbs img {
        width: 58px;
        height: 58px
    }

    .gallery-main {
        height: 300px
    }

    .product-content h1 {
        font-size: 21px
    }

    .detail-text {
        font-size: 14px
    }

    .join-image {
        height: 235px
    }

    .contact-info {
        padding-right: 0
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .contact-card {
        height: 120px
    }

    .contact-card .icon {
        width: 52px;
        height: 52px
    }

    .contact-card h4 {
        font-size: 15px
    }

    .contact-card p {
        font-size: 12px
    }

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

    .footer-logo img {
        width: 120px
    }

    .footer-title {
        font-size: 17px
    }

    .footer-qr img {
        width: 90px;
        height: 90px
    }

    footer {
        margin-top: 45px;
        padding-top: 30px;
        margin-bottom: 48px
    }
}

@media (max-width:600px) {
    .search-page-form {
        height: 44px
    }

    .search-page-form button {
        width: 72px
    }

    .search-summary {
        align-items: flex-start;
        padding-top: 19px
    }

    .search-summary p {
        max-width: 72%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .search-result-item>a {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0
    }

    .search-result-image {
        height: 82px
    }

    .search-result-content h2 {
        margin: 3px 0 0;
        font-size: 15px
    }

    .search-result-content p {
        display: none
    }

    .search-result-more {
        padding-top: 4px
    }

    .search-empty {
        padding: 56px 12px
    }

    .search-page .pagination {
        flex-wrap: wrap
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important
    }
}

@media (max-width:991px) {
    .contact-form {
        grid-template-columns: 1fr
    }

    .contact-form-message {
        grid-column: auto
    }

    body {
        padding-bottom: 52px
    }
}

@media (max-width:600px) {
    .ss-box {
        width: 40px;
        height: 40px;
        top: 9px
    }

    .ss-box.is-expanded {
        width: min(270px, calc(100vw - 88px))
    }

    .ss-box.is-expanded .s-input {
        width: calc(100% - 74px)
    }
}

.nav {
    margin-left: 0;
    width: max-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

@media (max-width:991px) {
    .nav {
        position: fixed;
        left: auto;
        transform: none;
        width: 280px;
        margin: 0
    }
}