@charset "UTF-8";

@font-face {
    font-family: Poppins;
    src: url("../fonts/poppins.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: BROADW;
    src: url("../fonts/broadw.ttf") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Great Vibes;
    src: url("../fonts/GreatVibes-Regular-2.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* -------------------------------------------------- Aszue -------------------------------------------------- */

body, div, 
dl, dt, dd, 
ul, ol, li, 
h1, h2, h3, h4, h5, h6, 
pre, code, form, fieldset, legend, 
input, textarea, p, blockquote, 
th, td, button, select {
    margin: 0;
    padding: 0;
}

th, td {
    padding: 5px 10px;
    border: 1px solid #ddd;
}

ol, ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Times New Roman;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4em;
    text-transform: uppercase;
    color: #392a25;
}

p, span {
    font-family: Arial;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    color: #333;
}

section {
    position: relative;
    width: 100%;
}

section .title {
    position: relative;
    width: 100%;
}
section .title > h1 {
    font-family: Times New Roman;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
}

section .desc {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
section .desc > p,
section .desc > span {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    text-align: left;
}

.back-to-top {
    position: fixed;
    overflow: hidden;
    bottom: 56px;
    right: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    z-index: 9;
}

.back-to-top > i {
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

/* -------------------------------------------------- Page -------------------------------------------------- */

section .banner-container {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: center center no-repeat;
    background-size: cover;
    background-color: #FFF;
}

section .banner-container .title {
    width: 90%;
    margin: 0 auto;
}

section .banner-container .title > h1 {
    font-family: Times New Roman;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.7em;
    text-align: center;
    color: #FFF;
}
section .banner-container .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

section .breadcrumb i {
    color: #FFF;
}

section .breadcrumb a,
section .breadcrumb span {
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    line-height: 2em;
    text-align: center;
    color: #FFF;
}

section .breadcrumb a:hover {
    text-decoration: underline !important;
    color: #5fbd74;
}

section .breadcrumb .breadcrumb-item:after {
    content: '';
    padding-left: 0;
}

section .page-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

section .page-container .title {
    position: relative;
    margin-bottom: 34px;
}

section .page-container .title > h1 {
    line-height: 1.7em;
    text-align: center;
}

section .page-container .desc {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}

section .page-container .desc > p,
section .page-container .desc > span {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    color: #555;
}

section .page-container .other {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

section .page-container .other > p {
    position: relative;
    overflow: hidden;
    max-width: 40%;
    padding: 10px;
    line-height: 22px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #efefef;
    border: 1px solid #ddd;
    border-radius: 10px
}

section .page-container .other a {
    color: #333;
}

section .page-container .other a:hover {
    text-decoration: underline !important;
    color: #5fbd74;
}

@media (max-width: 768px) {
    section .page-container .title > h1 {
        font-size: 32px;
    }

    section .page-container .other {
        display: grid;
        gap: 5px;
        justify-content: center;
    }

    section .page-container .other > p {
        width: 100%;
        max-width: 100%;
    }
}

section .page-container .content {
    position: relative;
    width: 100%;
}

section .page-container .content p, 
section .page-container .content span {
    word-wrap: break-word; /* 长单词换行 */
    overflow-wrap: break-word; /* 现代属性 */
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #333;
}

section .page-container .title .subscript {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #5fbd74;
}

section .page-container .title .subscript::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -36px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: #5fbd74;
}

section .page-container .title .subscript::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -36px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: #5fbd74;
}

.contact-column {
    position: relative;
    width: 100%;
    padding: 30px 0;
    margin: 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-column > li {
    padding-top: 76px;
    margin-bottom: 20px;
}

.contact-column .contact-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 20px;
    border: 6px solid #f2f2f2;
}

.contact-column .contact-item .icon {
    position: absolute;
    top: -84px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    background-color: #5fbd74;
    border: 6px solid #f2f2f2;
    border-radius: 50%;
}

.contact-column .contact-item .icon > i {
    font-size: 24px;
    color: #FFF;
}

.contact-column .contact-item .title {
    padding: 8px 0;
}

.contact-column .contact-item .title > h2 {
    font-family: Times New Roman;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
    color: #392a25;
}

.contact-column .contact-item .desc {
    width: 70%;
}

.contact-column .contact-item .desc > p,
.contact-column .contact-item .desc > span,
.contact-column .contact-item a {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
    color: rgb(85, 85, 85);
}

.contact-column .contact-item a:hover {
    text-decoration: underline !important;
    color: #5fbd74;
}

/* -------------------------------------------------- Form -------------------------------------------------- */

.form-section {
    position: relative;
    padding: 30px 0;
}

.form-section .desc {
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}

.form-section .desc > p,
.form-section .desc > span {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    color: #555;
}

.form-section .content {
    position: relative;
    width: 100%;
    padding: 15px 0;
}

.form-group {
    position: relative;
    float: left;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 16px;
    text-align: center;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    height: 36px;
    padding: 4px 0;
    text-indent: 6px;
    box-sizing: content-box;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) inset;
    transition: border .2s linear 0,box-shadow .2s linear 0s;
}

.form-group textarea {
    height: 80px;
}

.form-group .error-message {
    text-align: left;
    color: #e64545;
    clear: both;
}

.form-group button {
    border: 0 solid #2e6da4;
    border-radius: 4px;
    background: #5fbd74;
    color: #fff;
    font-size: 16px;
    width: 198px;
    height: 46px;
}

/* -------------------------------------------------- Table -------------------------------------------------- */

.inquire-table {
    position: relative;
    width: calc(100% - 20px);
    margin: 0 10px 10px 10px;
}

.inquire-table th, 
.inquire-table td {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 5px;
    text-align: left;
}

.inquire-table th {
    background-color: #f3f3f3;
    
}

.inquire-table .cover {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.inquire-table .cover > img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.inquire-table a {
    color: #333;
}

.inquire-table a:hover {
    text-decoration: underline !important;
    color: #5fbd74;
}

/* -------------------------------------------------- Layer -------------------------------------------------- */

body .inquiry-form-layer {
    background-color: #FFF;
    border-radius: 5px;   
}

body .inquiry-form-layer .layui-layer-title {
    background: none;
}

body .inquiry-form-layer .layui-layer-content {
    position: relative;
    overflow: unset;
    padding: 25px 28px;
}

body .inquiry-form-layer .desc {
    padding: 20px 0;
}

body .inquiry-form-layer .desc label {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #000;
}

body .inquiry-form-layer .desc p {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    color: #555;
}

body .inquiry-form-layer .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .inquiry-form-layer .icon > i {
    font-size: 64px;
    color: #5fbd74;
}

/* -------------------------------------------------- Header -------------------------------------------------- */

header {
    position: relative;
    width: 100%;
    padding: 10px 0 6px;
    background: #FFF;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    height: 66px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo-main {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 130px;
    height: 100%;
}
header .logo-main > img {
    width: 100%;
    height: auto;
}

header .nav-btn.nav-menu {
    display: none;
}

header .nav-main > .nav-head {
    position: relative;
    display: none;
    height: 46px;
    padding: 0 20px;
}

header .nav-main > .nav-body > ul {
    display: flex;
    justify-content: start;
    align-items: center;
}

header .nav-main > .nav-body li.nav-item {
    position: relative;
}

header .nav-main > .nav-body li.nav-item a.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
header .nav-main > .nav-body li.nav-item a.nav-link > span {
    font-size: 16px;
    line-height: 66px;
    text-transform: uppercase;
    color: #222;
}
header .nav-main > .nav-body li.nav-item a.nav-link:hover span {
    color: #5fbd74;
}

header .nav-main > .nav-body li.nav-item a.nav-link > .nav-icon.nav-arrow {
    display: none;
}

header .nav-main > .nav-body ul.nav-sub {
    display: none;
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    padding: 10px 0;
    background-color: rgba(82, 163, 100, 0.9);
}

header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 11em;
    max-width: 40em;
    padding: 0 40px 0 30px;
}
header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link > span {
    font-size: 15px;
    line-height: 38px;
    text-align: left; 
    text-transform: capitalize;   
    white-space: nowrap;
    color: #fff;
}

header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link > .nav-icon.nav-arrow {
    display: block;
    transform: rotate3d(0, 0, 1, -90deg);
    position: absolute;
    right: 0;
}
header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link > .nav-icon.nav-arrow > i {
    font-size: 14px;
    color: #FFF;
}

header .nav-main > .nav-body li.nav-item > ul.nav-sub li.nav-item > ul.nav-sub {
    position: absolute;
    top: 0;
    left: 100%;
}

header .nav-main > .nav-body ul.nav-sub li.nav-item:hover {
    background-color: #5fbd74;
}

header .nav-main > .nav-body li.nav-item:hover > ul.nav-sub {
    display: block;
}

header .nav-btn {
    float: right;
    height: 100%;
}

header .nav-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 6px;
}
header .nav-icon > svg {
    font-size: 16px;
    color: #333;
    width: 1em;
    height: 1em;
}
header .nav-icon > i {
    font-size: 18px;
    color: #333;
}

header .nav-btn .nav-icon {
    height: 100%;
}
header .nav-main .nav-head .nav-btn .nav-icon.nav-menu {
    display: flex;
}
header .nav-main .nav-head .nav-btn .nav-icon.nav-close {
    display: none;
}
header .nav-main.show .nav-head .nav-btn .nav-icon.nav-menu {
    display: none;
}
header .nav-main.show .nav-head .nav-btn .nav-icon.nav-close {
    display: flex;
}

@media (max-width: 1200px) {
    header .nav-main > .nav-body li.nav-item a.nav-link {
        padding: 0 20px;
    }
}

@media (max-width:992px) {
    header {
        padding: 0 0;
    }

    header .container {
        height: 46px;
    }

    header .logo-main {
        width: 65px;
    }

    header .nav-btn.nav-menu {
        display: block;
    }

    header .nav-main {
        position: fixed;
        overflow: hidden;
        z-index: 9;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: none;
        width: 100%;
        height: 100vh;
        background: #FFF;
    }
    header .nav-main.show {
        display: block;
    }
    
    header .nav-main > .nav-head {
        display: block;
    }

    header .nav-main > .nav-body {
        display: block;
        width: 100%;
        height: calc(100vh - 46px);
        overflow-y: auto;
    }

    header .nav-main > .nav-body > ul {
        display: block;
    }

    header .nav-main > .nav-body li.nav-item a.nav-link {
        display: flex;
        justify-content: space-between;
        margin: 0 20px;
        padding: 0 0;
        border-bottom: 1px solid #33333333;
    }
    header .nav-main > .nav-body li.nav-item a.nav-link > span {
        font-size: 14px;
        line-height: 50px;
        text-transform: capitalize;
    }
    header .nav-main > .nav-body li.nav-item a.nav-link > .nav-icon.nav-arrow {
        display: block;
    }

    header .nav-main > .nav-body ul.nav-sub {
        position: relative;
        top: 0;
        left: 0;
        padding: 0 0;
        background-color: #FFF;
    }
    
    header .nav-main > .nav-body ul.nav-sub li.nav-item:hover {
        background: none;
    }

    header .nav-main > .nav-body li.nav-item:hover > ul.nav-sub {
        display: none;
    }

    header .nav-main > .nav-body li.nav-item > ul.nav-sub li.nav-item > ul.nav-sub {
        position: relative;
        top: 0;
        left: 0;
        background-color: #FFF;
    }

    header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link {
        padding: 0 0;
    }

    header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link > span {
        line-height: 50px;
        color: #333;
    }

    header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link > .nav-icon.nav-arrow {
        position: relative;
        transform: rotate3d(0, 0, 1, 0deg);
    }
    header .nav-main > .nav-body ul.nav-sub li.nav-item a.nav-link > .nav-icon.nav-arrow > i {
        font-size: 14px;
        color: #333;
    }
    
    header .nav-main > .nav-body ul.nav-sub > li.nav-item a.nav-link {
        padding-left: 20px;
    }
    header .nav-main > .nav-body ul.nav-sub > li.nav-item > ul.nav-sub > li.nav-item a.nav-link {
        padding-left: 40px;
    }

    header .nav-main > .nav-body ul li.nav-item.active > ul.nav-sub {
        display: block;
    }

    header .nav-main > .nav-body ul li.nav-item.active > a.nav-link > .nav-icon.nav-arrow {
        transform: rotate3d(0, 0, 1, 180deg);
    }
}

/* -------------------------------------------------- Footer -------------------------------------------------- */

footer {
    position: relative;
    width: 100%;
    background: #444;
}

footer .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 30px 0 0;
}

footer .footer-cloumn {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

footer .footer-cloumn .cloumn-item > label {
    position: relative;
    width: 100%;
    padding: 15px 0 20px;
    margin-bottom: 20px;
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
}
footer .footer-cloumn .cloumn-item > label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 2.2em;
    height: 2px;
    background-color: #5fbd74;
}

footer .footer-cloumn .cloumn-item > p,
footer .footer-cloumn .cloumn-item > span {
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    text-align: left;
    color: rgba(255,255,255,0.8);
}

footer .footer-cloumn .cloumn-item ul li {
    width: 100%;
}

footer .footer-cloumn .cloumn-item ul li > p,
footer .footer-cloumn .cloumn-item ul li > span {
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    line-height: 2em;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-cloumn .cloumn-item ul li > a {
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    line-height: 2em;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}
footer .footer-cloumn .cloumn-item ul li:hover > a {    
    text-decoration: underline !important;
    color: #5fbd74;
}

footer .footer-cloumn .cloumn-item ul li > i {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #5fbd74;
}

footer .footer-copyright {
    padding: 12px 0;
    margin: 0 0;
    background: #333;
}

footer .footer-copyright a,
footer .footer-copyright p,
footer .footer-copyright span {
    font-family: Arial;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8em;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-copyright a:hover {
    text-decoration: underline !important;
    color: #5fbd74;
}

/* -------------------------------------------------- Main -------------------------------------------------- */

main {
    position: relative;
    width: 100%;
    background-color: #FFF;
}

.page-head > p,
.page-head > span {
    font-family: Great Vibes;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: left;
    color: #5fbd74;
}

.more {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
    z-index: 1;
}
.more > a {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background-color: #5fbd74;
}
.more > a > span {
    position: relative;
    z-index: 1;
    font-family: Arial;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    color: #FFF;
}
.more > a > i {
    position: relative;
    z-index: 1;
    margin-left: 0.4em;
    font-size: 14px;
    color: #FFF;
}
.more > a::before, 
.more > a::after {
    content: "";
    position: absolute;
    top: 0;
    display: inline-block;
    width: 0;
    height: 100%;
    background-color: #52a364;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.more > a::before {
    left: 0
}

.more > a::after {
    right: 0;
}

.more > a:hover::before {
    width: 100%;
}

/* -------------------------------------------------- Slide -------------------------------------------------- */

.slide-section {
    position: relative;
    width: 100%;
}

.slide-section .slide-item {
    position: relative;
    width: 100%;
    height: 568px;
    padding: 150px 120px;
    background: center center no-repeat;
    background-size: cover;
}

.slide-section .slide-item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;  
    object-position: center;
}

.slide-section .slide-item .title {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.slide-section .slide-item .title > h1 {
    width: 100%;
    font-family: Times New Roman;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    white-space: pre-line;
    text-align: left;
    color: #FFF;
}

.slide-section .slide-item .desc {
    position: relative;
    z-index: 1;
}
.slide-section .slide-item .desc > p {
    width: 50%;
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    white-space: pre-line;
    text-align: left;
    color: #FFF;
}

.slide-section .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #5fbd74;
    border: 1px solid #FFF;
}

@media (max-width:992px) {

    .slide-section .slide-item {
        height: 330px;
        padding: 80px 25px;
    }

    .slide-section .slide-item .title > h1 {
        font-size: 24px;
    }

    .slide-section .slide-item .desc {
        display: none;
    }

    .slide-section .slide-item .more {
        display: none;
    }
}


/* -------------------------------------------------- About -------------------------------------------------- */

.about-section {
    position: relative;
    width: 100%;
    padding: 60px 0 20px 0;
    background: url('../images/bg-about.png') center center no-repeat;
    background-size: cover;
    background-color: #FFF;
}

.about-section .title > h1 {
    text-align: left;
}

.about-section .desc > h2 {
    margin-bottom: 10px;
    font-family: Arial;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6em;
    text-align: left;
    color: #222;
}

.about-section .desc > p,
.about-section .desc > span {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    text-align: left;
    color: #444;
}

.about-section .desc > p {
    white-space: pre-wrap;
}

/* -------------------------------------------------- Product Category -------------------------------------------------- */

.product-category-section {
    position: relative;
    width: 100%;
    padding: 20px 0 34px;
    background: #FFF;
}

.product-category-section ul.category-column {
    display: flex;
    justify-items: center;
    align-items: center;
}

.product-category-section ul.category-column > li {
    width: calc(100% / 5 - 20px);
    margin: 0 10px;
    padding: 5px 0;
}

@media (max-width: 768px) {

    .product-category-section ul.category-column {
        display: grid;
    }

    .product-category-section ul.category-column > li {
        width: calc(70% - 20px);
    }
}

.category-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 10px 0;
    border: 2px solid #52a364;
    border-radius: 50%;
    cursor: pointer;
}

.category-item::after {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: 30px;
    right: 30px;
    background-color: #FFF;
}

.category-item .cover {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    z-index: 1;
    border-radius: 50%;
}

.category-item .cover > img {
    width: calc(100% - 16px);
    aspect-ratio: 1 / 1;
    margin: 8px;
    border-radius: 50%;
    object-fit: cover;  /* 关键属性：撑满容器，超出部分裁剪 */
    object-position: center;
}

.category-item .title {
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    z-index: 1;
    background-color: rgba(59, 118, 72, 0.6);
    
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.category-item .title > h2 {
    width: 70%;
    font-family: Arial;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
}

.category-item:hover .title {
    transform: translateY(0);
}

/* -------------------------------------------------- Advantage -------------------------------------------------- */

.advantage-section {
    position: relative;
    width: 100%;
}

.advantage-section .row > * {
    padding: 0 0;
}

.advantage-section .section-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.advantage-section .page-head p, 
.advantage-section .page-head span {
    color: #FFF;
}

.advantage-section .advantage-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 60px 50px;
}

.advantage-section .advantage-item-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../images/bg-dvantage2.jpg') center center no-repeat;
    background-size: cover;
    background-color: #5fbd74;
}

.advantage-section .cover {
    position: relative;
    overflow: hidden;
    left: -calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
    height: 100%;
}

.advantage-section .cover > img {
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;  /* 关键属性：撑满容器，超出部分裁剪 */
    object-position: center;
}

.advantage-section .title {
    margin-bottom: 10px;
}

.advantage-section .title > h1 {
    font-family: Times New Roman;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    text-transform: uppercase;
    color: #FFF;
}

.advantage-section .desc {
    margin-bottom: 26px;
}

.advantage-section .desc > p {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    text-align: left;
    color: #FFF;
}

.advantage-section .advantage-column {
    display: flex;
}

.advantage-section .advantage-column > li {
    padding: 0 10px;
}

.advantage-section .advantage-column > li .icon {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 70px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin: 15px 0;
}

.advantage-section .advantage-column > li label {
    font-family: Times New Roman;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4em;
    text-align: left;
    color: #fff;
}

.advantage-section .advantage-column > li p {
    font-family: Arial;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6em;
    text-align: left;
    color: #fff;
}

.advantage-section .more {
    margin-top: 26px;
}

.advantage-section .more > a {
    float: none;
    border: 1px solid #FFF;
}

.advantage-section .container .cover {
    opacity: 0;
}

@media (max-width:992px) {

    .advantage-section .container-fluid {
        display: none;
    }

    .advantage-section .container .cover {
        opacity: 1;
    }

    .advantage-section .advantage-item {
        background: url('../images/bg-dvantage2.jpg') center center no-repeat;
        background-size: cover;
        background-color: #5fbd74;
    }

    .advantage-section .advantage-column {
        display: grid;
    }
}

/* -------------------------------------------------- Products -------------------------------------------------- */

.products-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: url('../images/bg-products.jpg') repeat;
    background-color: #FFF;
}

.products-section .page-head {
    text-align: center;
}

.products-section .title {
    text-align: center;
    margin-bottom: 14px;
}

.products-section .title > h1 {
    font-size: 42px;
    line-height: 1.2em;
}

.products-section .desc {
    text-align: center;
}

.products-section .desc > a {
    position: relative;
    padding: 0 10px 0 15px;
}

.products-section .desc > a > span {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    text-transform: capitalize;
    color: #222;
}

.products-section .desc > a::before {
    content: '/';
    position: absolute;
    left: 0;
    font-family: Arial;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    color: #333;
}

.products-section .desc > a:first-child {
    padding-left: 10px;
}

.products-section .desc > a:first-child::before {
    content: '';
}

.products-section .desc > a:hover > p,
.products-section .desc > a:hover > span {
    text-decoration: underline;
    color: #5fbd74;
}

.products-section .more {
    display: flex;
    justify-content: center;
    text-align: center;
}

@media (max-width:992px) {

    .products-section .title > h1 {
        font-size: 32px;
        line-height: 1.2em;
    }

    .products-section .desc > a {
        display: block;
        padding-left: 10px;
    }

    .products-section .desc > a::before {
        content: '';
    }
}

.products-list {
    position: relative;
    width: 100%;
    padding: 30px 0;
    margin: 0 0;
}

.products-list > li {
    margin-bottom: 10px;
}

.products-list .products-item {
    position: relative;
    width: 100%;
    padding: 5px;
    background-color: #FFF;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.08);
}

@media (max-width:992px) {

    .products-list > li {
        width: 50%;
    }
}

.products-list .products-item .cover {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.products-list .products-item .cover > img {
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;  /* 关键属性：撑满容器，超出部分裁剪 */
    object-position: center;
}

.products-list .products-item .title {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 0 5px 0;
    cursor: pointer;
}

.products-list .products-item .title > p,
.products-list .products-item .title > span {
    font-family: Arial;
    font-size: 15px;
    font-weight: 400;
    height: 3.75em;
    line-height: 1.25em;
    text-align: center;
    color: #333;
}

.products-list .products-item .title:hover > p,
.products-list .products-item .title:hover > span {
    text-decoration: underline;
    color: #5fbd74;
}

.products-list .products-item .flag {
    position: absolute;
    top: 10px;
    right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    z-index: 1;
}

.products-list .products-item .flag span {
    float: right;
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin-bottom: 2px;
    font-size: 9px;
    font-style: italic;
    text-align: center;
}

.products-list .products-item .flag span.flag-new {
    background-color: #0ecd08;
    color: #FFF;
}

.products-list .products-item .flag span.flag-hot {
    background-color: #fe2e2f;
    color: #FFF;
}

/* -------------------------------------------------- Contact -------------------------------------------------- */

.contact-section {
    position: relative;
    width: 100%;
    padding: 66px 0;
    background: url('../images/bg-contact.jpg') center center no-repeat;
    background-size: cover;
}

.contact-section .page-head {
    text-align: center;
}

.contact-section .title {
    margin-bottom: 10px;
}

.contact-section .title > h1 {
    text-align: center;
    line-height: 1.2em;
    color: #FFF;
}

.contact-section .desc > p, 
.contact-section .desc > span {
    text-align: center;
    line-height: 1.8em;
    color: #FFF;
}

.contact-section .more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-section .title > h1 {
        font-size: 32px;
    }
}

/* -------------------------------------------------- News -------------------------------------------------- */

.news-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background-color: #FFF;
}

.news-section .page-head {
    text-align: center;
}

.news-section .title > h1 {
    text-align: center;
    line-height: 1.2em;
}

@media (max-width: 768px) {
    .news-section .title > h1 {
        font-size: 32px;
    }
}

.news-section .news-list {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news-section .news-list .news-item {
    position: relative;
    background-color: #FFF;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.08);
}

.news-section .news-list .news-item .cover {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 74 / 37;
}

.news-section .news-list .news-item .cover > img {
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;  /* 关键属性：撑满容器，超出部分裁剪 */
    object-position: center;
    transition: 0.36s ease;
}

.news-section .news-list .news-item .title {
    position: relative;
    display: block;
    width: calc(100% - 16px);
    margin: 40px 8px 0;
    cursor: pointer;
}

.news-section .news-list .news-item .title > p,
.news-section .news-list .news-item .title > span {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #333;
}

.news-section .news-list .news-item .desc {
    width: calc(100% - 16px);
    margin: 13px 8px 0;
    padding-bottom: 40px;
}

.news-section .news-list .news-item .time {
    position: relative;
    width: calc(100% - 16px);
    padding: 20px 0;
    margin: 0 8px;
    border-top: 1px solid rgba(170, 170, 170, 0.2);
    transition: all 0.36s ease;
}

.news-section .news-list .news-item .time > span {
    font-family: Arial;
    font-size: 20px;
    line-height: 1.8em;
    color: #888;
}

.news-section .news-list .news-item .time > .arrow {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.36s ease;
    opacity: 0;
}

.news-section .news-list .news-item .time > .arrow > i {
    font-size: 20px;
    color: #5fbd74;
}

.news-section .news-list .news-item .time > .after {
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    background: #5fbd74;
    width: 60%;
    transition: 0.56s ease;
    opacity: 0;
}

.news-section .news-list .news-item:hover .cover > img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    
}

.news-section .news-list .news-item:hover .title > p,
.news-section .news-list .news-item:hover .title > span {
    color: #5fbd74;
}

.news-section .news-list .news-item:hover .time > span {
    color: #5fbd74;
}

.news-section .news-list .news-item:hover .time > .arrow {
    opacity: 1;
}

.news-section .news-list .news-item:hover .time > .after {
    width: 100%;
    opacity: 1;
}

/* -------------------------------------------------- Download -------------------------------------------------- */

.annex-main {
    padding-bottom: 60px;
}

.annex-main .title > h1 {
    font-size: 42px;
}

.annex-main .annex-list .annex-item {
    display: flex;
    width: 96%;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(151, 151, 151, .31);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.08);
}

.annex-main .annex-list .annex-item .cover {
    position: relative;
    overflow: hidden;
    width: 172px;
    aspect-ratio: 1 / 1;
    background-color: rgba(151, 151, 151, .31);
}

.annex-main .annex-list .annex-item .cover > img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
}

.annex-main .annex-list .annex-item .desc {
    width: auto;
    padding: 16px;
}

.annex-main .annex-list .annex-item .desc > p {
    font-family: Arial;
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
    color: #333;
}

.annex-main .annex-list .annex-item .more {
    margin-top: 16px;
}

.annex-main .annex-list .annex-item .more > a {
    padding: 6px 17px 6px 12px;
}

@media (max-width: 768px) {
    .annex-main .annex-list .annex-item .more {
        display: grid;
    }
}

/* -------------------------------------------------- FAQ -------------------------------------------------- */

.faq-main {
    padding-bottom: 60px;
}

.faq-main .faq-list .faq-item {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.faq-main .faq-list .faq-item .title {
    position: relative;
    padding-left: 30px;
}

.faq-main .faq-list .faq-item .title > h3 {
    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 2em;
    text-align: left;
    color: #221815;
}

.faq-main .faq-list .faq-item .title::before {
    content: 'Q';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 30px;

    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
    line-height: 2em;
    text-align: left;
    color: #221815;
}

.faq-main .faq-list .faq-item .desc {
    position: relative;
    padding-left: 30px;
}

.faq-main .faq-list .faq-item .desc > p,
.faq-main .faq-list .faq-item .desc > span {
    font-family: Arial;
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
    color: #333;
}

.faq-main .faq-list .faq-item .desc::before {
    content: 'A';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 30px;

    font-family: Arial;
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
    color: #333;
}

/* -------------------------------------------------- News List -------------------------------------------------- */

.news-main {
    padding-bottom: 60px;
}

.news-main .news-list {
    margin-top: 60px;
}

.news-main .news-list .news-item {
    position: relative;
    display: flex;
    gap: 110px;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #FFF;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.news-main .news-list .news-item a {
    text-align: left;
    color: #333;
}

.news-main .news-list .news-item .cover {
    position: relative;
    overflow: hidden;
    width: 40%;
    aspect-ratio: 16 / 9;
    border: 1px solid #FFF;
}

.news-main .news-list .news-item .cover > img {
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;  /* 关键属性：撑满容器，超出部分裁剪 */
    object-position: center;
}

.news-main .news-list .news-item .desc {
    padding: 18px 12px;
}

.news-main .news-list .news-item .desc > label {
    margin-bottom: 12px;
    font-family: Arial;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    text-align: left;
    text-transform: uppercase;
    color: #333;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.news-main .news-list .news-item .desc > p {
    font-family: Arial;
    font-size: 14px;
    line-height: 2em;
    height: 6em;
    text-align: left;
    color: #333;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.news-main .news-list .news-item .more {
    margin-top: 25px;
}

.news-main .news-list .news-item .more > a {
    padding: 5px 15px;
    
    font-size: 16px;
    font-family: "Futura LT Medium";
    line-height: 1.4em;
    text-align: center;
    color: #666;
    background: none;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.news-main .news-list .news-item .more > a:hover {
    color: #FFF;
}

.news-main .news-list .news-item .more > a:hover::before {
    width: 0;
}

.news-main .news-list .news-item:hover {
    background-color: #5fbd74;
}

.news-main .news-list .news-item:hover a {
    color: #FFF;
}

.news-main .news-list .news-item a:hover {
    text-decoration: underline !important;
}

.news-main .news-list .news-item:hover .desc > p {
    color: #FFF;
}

@media (max-width: 768px) {
    .news-main .news-list .news-item {
        display: grid;
        gap: 0;
    }

    .news-main .news-list .news-item .cover {
        width: 100%;
    }

    .news-main .news-list .news-item .more {
        justify-content: center;
    }
}

/* -------------------------------------------------- News Detail -------------------------------------------------- */

.news-detail .title {
    margin-bottom: 0;
}

.news-detail .title > h1 {
    font-family: Arial;
    font-size: 2em;
    font-weight: normal;
    line-height: 1.8em;
    text-align: center;
    color: #333;
}

.news-detail .desc > p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.news-detail .content {
    position: relative;
}

.news-detail .content img {
    max-width: 100% !important;
}


@media (max-width: 768px) {

    .news-detail .desc > p {
        display: grid;
        gap: 5px;
    }
}

/* -------------------------------------------------- Product List -------------------------------------------------- */

.products-main {
    padding-bottom: 60px;
}

.products-main .products-list {
    margin-top: 60px;
    padding: 0 0;
}

.products-main .products-category {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.products-main .products-category .title {
    margin-bottom: 10px;
}

.products-main .products-category .title > h2 {
    font-family: Times New Roman;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: left;
    text-transform: capitalize;
    color: #392a25;
}

.products-main .products-category .more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.products-main .products-category .more > a {
    color: #FFF;
}

.products-main .products-list .products-li {
    margin-bottom: 20px;
}

.products-main .products-list .products-item {
    border: 1px solid #ccc;
}

.products-main .leftbar {
    position: relative;
    display: grid;
    gap: 30px;
    width: 100%;
}

.products-main .leftbar .leftbar-column {
    border: 1px solid #d6d6d6;
}

.products-main .leftbar .leftbar-column .title {
    padding-left: 15px;
    background-color: #5fbd74;
}

.products-main .leftbar .leftbar-column .title > h2 {
    padding-left: 12px;
    font-family: Times New Roman;
    font-size: 24px;
    font-weight: 400;
    line-height: 2.2em;
    text-align: left;
    text-transform: capitalize;
    color: #fff;
}

.products-main .leftbar .leftbar-column .content {
    padding: 20px 0;
}

.products-main .leftbar .leftbar-column > ul > li {
    border-bottom: 1px solid #d6d6d6;
}

.products-main .leftbar .leftbar-column > ul > li:last-child {
    border-bottom: 0;
}

.products-main .leftbar .leftbar-column .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 46px;
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 46px;
    text-align: left;
    color: #333;
}

.products-main .leftbar .leftbar-column .nav-item > a:hover > span {
    color: #5fbd74;
}

.products-main .leftbar .leftbar-column .nav-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 6px;
}

.products-main .leftbar .leftbar-column ul li.nav-item > a.nav-link > .nav-icon.nav-arrow {
        position: relative;
        transform: rotate3d(0, 0, 1, 0deg);
    }

.products-main .leftbar .leftbar-column .nav-sub {
    display: none;
    padding-left: 15px;
}

.products-main .leftbar .leftbar-column .nav-sub > li.nav-item {
    position: relative;
}

.products-main .leftbar .leftbar-column .nav-sub > li.nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #ccc;
}

.products-main .leftbar .leftbar-column ul li.nav-item.active > a.nav-link,
.products-main .leftbar .leftbar-column ul li.nav-item.active > a.nav-link > span {
    color: #5fbd74;
}

.products-main .leftbar .leftbar-column ul li.nav-item.active > ul.nav-sub {
    display: block;
}

.products-main .leftbar .leftbar-column ul li.nav-item.active > a.nav-link > .nav-icon.nav-arrow {
    transform: rotate3d(0, 0, 1, 180deg);
}

@media (max-width:992px) {

    .products-list ul > li.products-li {
        width: 50%;
    }
}

/* -------------------------------------------------- Product Detail -------------------------------------------------- */

.products-info {
    position: relative;
    width: 100%;
    padding-top: 60px;
    margin-bottom: 30px;
}

.products-info > .container {
    border-bottom: 1px solid #ccc;
}

.product-cover {
    position: relative;
    width: 100%;
}

.product-gallery-swiper {
    position: relative;
    width: 100%;
}

.product-gallery-swiper .swiper-slide {
    /* background-color: #ccc; */
}

.product-gallery-swiper .swiper-slide .gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: crosshair;
}

.product-gallery-swiper .swiper-slide .gallery-item .cover {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-gallery-swiper .swiper-slide .gallery-item .cover > img {
    width: 100%;
}

.product-gallery-swiper .swiper-slide .gallery-item .zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: none;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 3;
}

.product-gallery-swiper .swiper-slide .gallery-item .zoom-result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s;
}

.product-gallery-swiper .swiper-slide .gallery-item .zoomed-image {
    position: absolute;
    display: block;
    max-width: none;
    width: 200%;
    height: auto;
}

.product-thumb-swiper {
    position: relative;
    width: 100%;
}

.product-thumb-swiper .swiper-slide .thumb-item {
    position: relative;
    margin-top: 10px;
    background-color: #ccc;
    border: 2px solid #ccc;
    cursor: pointer;
}

.product-thumb-swiper .swiper-slide .thumb-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #ccc;
}

.product-thumb-swiper .swiper-slide .thumb-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-thumb-swiper .swiper-slide .thumb-item:hover {
    background-color: #5fbd74;
    border-color: #5fbd74;
}

.product-thumb-swiper .swiper-slide .thumb-item:hover::before {
    background-color: #5fbd74;
}

.prodlist-pro-shareit {
    margin: 10px 0;
}

.product-intro {
    margin-bottom: 20px;
}

.product-intro .title > h1 {
    font-family: Arial;
    font-size: 28px;
    font-weight: bold;
    line-height: 27px;
    text-align: left;
    text-transform: capitalize;
    color: #333;
}

.product-intro .title .qrcode-btn {
    position: relative;
}
.product-intro .title .qrcode-btn > i {
    font-size: 1em;
    color: #333;
}
.product-intro .title .qrcode-btn .large {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 50%;
    background: #FFF;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.10), 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    transform: translateX(0%);
    z-index: 2;
}

.product-intro .title .qrcode-btn:hover .large {
    display: block;
}

.product-intro .attrs {
    margin: 20px 0;
    border-top: 1px solid #d8d8d8;
}

.product-intro .attrs ul li {
    display: flex;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid #d8d8d8;
}

.product-intro .attrs ul li:last-child {
    margin-top: 20px;
    border-bottom: 0;
}

.product-intro .attrs ul li label,
.product-intro .attrs ul li span {
    font-family: Arial;
    font-size: 16px;
    line-height: 1.4em;
}

.product-intro .attrs ul li label {
    color: #333;
}

.product-intro .attrs ul li span {
    color: #666;
}

.product-intro .more {
    display: grid;
}

.product-intro .more > a {
    width: 282px;
    background-color: #FFF;
    border: 1px solid #5fbd74;
    border-radius: 40px;
}

.product-intro .more > a > span,
.product-intro .more > a > i {
    color: #5fbd74;
}

.product-intro .more > a:hover > span,
.product-intro .more > a:hover > i {
    color: #FFF
}

.product-intro .more > a::before, 
.product-intro .more > a::after {
    background-color: #5fbd74;
}

@media (max-width:992px) {

    .product-intro .more > a {
        width: 100%;
    }
}

.order-shop-container {
    display: flex;
    margin: 0 10px;
}

.order-quan-input {
    width: 40px;
    outline: 0;
    font-size: 14px;
    line-height: 1.8em;
    height: 1.8em;
    text-align: center;
    border: 1px solid #ccc;
}

.order-minus, .order-plus {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
}

.order-minus {
    margin-right: 5px;
}

.order-minus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 70%;
    height: 2px;
    background-color: #333;
    border-radius: 25%;
}

.order-plus {
    margin-left: 5px;
}

.order-plus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%) rotate(90deg);
    width: 70%;
    height: 2px;
    background-color: #333;
    border-radius: 25%;
}

.order-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 70%;
    height: 2px;
    background-color: #333;
    border-radius: 25%;
}

.description-section {
    margin-bottom: 50px;
}

.products-description {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
}

.products-description .title {
    position: relative;
    display: flex;
    height: 46px;
    background-color: #efefef;
    border-bottom: 1px solid #ccc;
}

.products-description .title > h2 {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 0 20px;
    font-family: Arial;
    font-size: 14px;
    line-height: 45px;
    text-align: center;
    color: #FFF;
    background-color: #5fbd74;
    border: 1px solid #5fbd74;
}

@media (max-width:992px) {
    .products-description .title > h2 {
        width: calc(100% + 2px);
    }
}

.products-description .content {
    padding: 10px;
}

.related-section .products-related-swiper {
    width: calc(100% - 90px);
    margin: 0 45px;
}

@media (max-width:992px) {

    .related-section .products-list .products-item {
        width: 100%;
    }
}

.related-section .swiper-button-prev, 
.related-section .swiper-container-rtl .swiper-button-next,
.related-section .swiper-button-next, 
.related-section .swiper-container-rtl .swiper-button-prev {
    width: 34px;
    height: 34px;
    text-align: center;
    border-radius: 50%;
    background: #869791;
}

.related-section .swiper-button-prev > i, 
.related-section .swiper-container-rtl .swiper-button-next > i,
.related-section .swiper-button-next > i, 
.related-section .swiper-container-rtl .swiper-button-prev > i {
    font-size: 16px;
    line-height: 34px;
    color: #FFF;
}

/* -------------------------------------------------- Basket -------------------------------------------------- */

.basket-btn {
    position: fixed;
    bottom: 120px;
    right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 9;
}

.basket-btn > i {
    font-size: 24px;
    line-height: 48px;
    color: #fff;
}

.basket-btn .mark {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2em;
    height: 1.2em;
    line-height: 1.2em;
    background-color: red;
    border-radius: 50%;
    color: #fff;
}

.inquiry-basket {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 230px;
    background-color: #fff;
    border: 1px solid #aaa;
    box-shadow: 0 0 8px #999;
}

.inquiry-basket .basket-head {
    width: 100%;
    background-color: #7a8599;
}

.inquiry-basket .basket-head .title {
    position: relative;
    width: 100%;
    text-align: center;
}

.inquiry-basket .basket-head .title span {
    font-size: 12px;
    font-weight: bold;
    line-height: 3em;
    text-align: center;
    color: #fff;
}

.inquiry-basket .basket-head .title span.num {
    color: #ffb629;
}

.inquiry-basket .basket-close {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}

.inquiry-basket .basket-close > i {
    font-size: 18px;
    color: #fff;
}

.inquiry-basket .basket-body {
    position: relative;
    overflow-y: auto;
    width: 100%;
    height: 190px;
}

.inquiry-basket .basket-body ul > li {
    position: relative;
    display: flex;
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #e8e8e8;
}

.inquiry-basket .basket-body ul > li .cover {
    position: relative;
    overflow: hidden;
    width: 40px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
}

.inquiry-basket .basket-body ul > li:hover {
    background-color: #fffeee;
}

.inquiry-basket .basket-body ul > li .cover > img {
    width: 100%;
    object-fit: cover;  /* 关键属性：撑满容器，超出部分裁剪 */
    object-position: center;
}

.inquiry-basket .basket-body ul > li .desc {
    display: grid;
    margin-left: 10px;
}

.inquiry-basket .basket-body ul > li .desc label {
    width: 140px;
    overflow: hidden;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #246bb3;
    cursor: pointer;
}

.inquiry-basket .basket-body ul > li .more {
    margin-top: 0;
}

.inquiry-basket .basket-body ul > li .more > a {
    padding: 0 0;
    font-size: 12px;
    line-height: 16px;
    background: none;
    color: #888;
}

.inquiry-basket .basket-body ul > li .more > a:hover {
    text-decoration: underline !important;
}

.inquiry-basket .basket-body ul > li .more > a:hover::before {
    width: 0;
}

.inquiry-basket .basket-foot {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.inquiry-basket .basket-foot a {
    padding: 4px 10px;
    font-size: 12px;
    line-height: 16px;
    border: 0;
    border-radius: 3px;
}

.inquiry-basket .basket-foot a.empty-btn {
    background-color: #f1f1f1;
    color: #e64545;
}

.inquiry-basket .basket-foot a.inquire-btn {
    background-color: #e64545;
    color: #fff;
}

/* -------------------------------------------------- Sitemap -------------------------------------------------- */

.page-sitemap .page-container .title {
    margin-bottom: 10px;
}

.page-sitemap .page-container .title > h2 {
    font-family: Times New Roman;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: left;
    text-transform: capitalize;
    color: #392a25;
}

.page-sitemap .page-container .content > label {
    font-family: Arial;
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
    color: #333;
}

.page-sitemap .page-container .content ul.sitemap-list {
    border: 1px solid #e9e9e9;
    padding: 10px;
    margin: 10px 0;
}

.page-sitemap .page-container .content ul.sitemap-list li {
    position: relative;
    text-indent: 12px;
}

.page-sitemap .page-container .content ul.sitemap-list li > a {
    font-family: Arial;
    font-size: 14px;
    line-height: 1.6em;
    text-align: left;
    color: #333;
}

.page-sitemap .page-container .content ul.sitemap-list li > a:hover {
    text-decoration: underline !important;
    color: #5fbd74;
}

.page-sitemap .page-container .content ul.sitemap-list li::before {
    content: '';
    position: absolute;
    top: calc(0.68em);
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    margin-right: 8px;
    border: 1px solid #333;
    border-radius: 50%;
    background: none;
}

.page-sitemap .page-container .content ul.sitemap-list > li {
    margin-left: 0.5em;
}

.page-sitemap .page-container .content ul.sitemap-list > li::before {
    background: #333;
}

.page-sitemap .page-container .content ul.sitemap-list li > ul {
    padding-left: 2em;
}