body {
    background-color: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Palan';
    src: url('/static/font/Palan.ttf') format('truetype');
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/static/font/Ubuntu.ttf') format('truetype');
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Palan", sans-serif;
}

a,
p {
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
}

.gold {
    color: #BF864F;
}












@media (min-width: 1921px) {


    .mt-80 {
        margin-top: 120px;
    }

    .mb-80 {
        margin-bottom: 120px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .mt-30 {
        margin-top: 30px;
    }

    .plr-300 {
        padding-left: 300px;
        padding-right: 300px;
    }

    .mlr-300 {
        margin-left: 300px;
        margin-right: 300px;
    }

    .mtb-20 {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .btn1 {
        padding: 15px 20px;
        border: none;
        background-color: #fff;
        color: #272727;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn1:hover {
        background-color: #272727;
        color: #fff;
        text-decoration: none;
    }

    .btn2 {
        padding: 15px 20px;
        border: none;
        background-color: #BF864F;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2:hover {
        background-color: #272727;
        color: #fff;
        text-decoration: none;
    }









    /* 网站顶部欢迎栏 */
    .header-welcome {
        padding: 10px;
        background-color: #EED186;
    }

    .header-welcome-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-welcome-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-welcome-item i {
        font-weight: 800;
    }

    .header-welcome-item-line {
        border-right: 2px solid #272727;
        height: 15px;
    }

    .header-box-logo a img {
        width: 200px;
    }

    /* Header Navigation Styles */
    .header-box-nav {
        position: relative;
        z-index: 1000;
        overflow: visible;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 74px;
    }

    .header-box-nav ul {
        margin-bottom: 0;
    }

    .header-box-nav-list {
        display: flex;
        justify-content: space-between;
        list-style: none;
        overflow: visible;
        position: relative;
        z-index: 1000;
        width: 100%;
    }

    .header-box-nav-list-item {
        position: relative;
        margin-right: 30px;
    }

    .header-box-nav-list-item>a,
    .header-box-nav-list-item>.header-box-nav-list-item-menu {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        font-weight: 600;
        transition: color 0.3s ease;
        text-decoration: none;
        padding: 10px 0;
    }

    /* 箭头旋转效果 */
    .header-box-nav-list-item>a .icon-xia,
    .header-box-nav-list-item>.header-box-nav-list-item-menu .icon-xia {
        transition: transform 0.3s ease;
    }

    .header-box-nav-list-item:hover>a .icon-xia,
    .header-box-nav-list-item:hover>.header-box-nav-list-item-menu .icon-xia {
        transform: rotate(180deg);
    }

    /* 一级菜单名称变色 */
    .header-box-nav-list-item:hover>a,
    .header-box-nav-list-item:hover>.header-box-nav-list-item-menu {
        color: #EED186;
    }

    /* 下横线 - 默认不显示，鼠标悬停从左往右出现 */
    .header-box-nav-list-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #EED186;
        transition: width 0.3s ease;
    }

    .header-box-nav-list-item:hover::after {
        width: 100%;
    }

    /* active状态保持下横线显示 */
    .header-box-nav-list-item.active::after {
        width: 100%;
    }

    .header-box-nav-list-item.active .header-box-nav-list-item-menu {
        color: #EED186;
    }

    /* 下拉菜单样式 */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        min-width: 200px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        list-style: none;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(5px);
        transition: all 0.3s ease;
        z-index: 9999;
        border-radius: 4px;
        margin-top: 0;
        display: block !important;
    }

    /* 二级菜单展开 */
    .header-box-nav-list-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* 确保下拉菜单位置正确 */
    .header-box-nav-list-item.dropdown {
        position: relative;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: #333;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .dropdown-menu li a:hover {
        background-color: #f5f5f5;
        color: #EED186;
        padding-left: 25px;
    }

    .header-box {
        padding-top: 20px;
    }

    .header-box-search {
        width: 100%;
        height: 74px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-box-search form {
        position: relative;
    }

    .header-box-search form input {
        padding: 5px 20px;
        border: none;
        background-color: #f5f5f5;
        width: 100%;
        border-radius: 25px;
        outline: none;
    }

    .header-box-search form button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
        border: none;
        background-color: transparent;
    }

    /* 网站顶部欢迎栏 */

















    /* 滚动大图轮播 */

    /* 图片轮播区域 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 700px;
        overflow: hidden;
    }

    /* 图片轮播样式 */
    .image-slider {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .image-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
    }

    .image-slider .slide.active {
        opacity: 1;
        z-index: 2;
    }

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

    .slider-area-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -3;
    }

    .slider-area-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
    }

    .slider-area-text h1 {
        font-size: 4rem;
        font-weight: 800;
    }

    .slider-area-text-content-btn {
        margin-top: 50px;
    }

    .slider-area-text-content-btn a {
        text-decoration: none;
    }

    /* 滚动大图轮播 */

    /* 横向循环滚动区域 */
    .switch-area {
        background-color: #272727;
        padding: 30px 0;
        overflow: hidden;
    }

    .switch-area-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .switch-area-track {
        display: flex;
        animation: scroll 60s linear infinite;
        width: fit-content;
    }

    .switch-area-track:hover {
        animation-play-state: paused;
    }

    .switch-area-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 0 40px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .switch-area-item i {
        font-size: 24px;
        color: #EED186;
    }

    .switch-area-item h6 {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin: 0;
    }

    /* 横向滚动动画 */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* 横向循环滚动区域 */














    /* 热卖产品区 */
    .popular-products {
        background-color: #FBF8F2;
    }

    .section-title {
        display: flex;
        justify-content: space-between;
    }

    .section-title-btn a {
        text-decoration: none;
        color: #272727;
        font-weight: 600;
        position: relative;
    }

    .section-title-btn a::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #272727;
        transition: width 0.3s ease;
    }

    .section-title-btn a:hover::after {
        background-color: #EED186;
        transition: all 0.3s ease;
    }

    .section-title-btn a:hover {
        color: #EED186;
        transition: color 0.3s ease;
    }

    .product-item {
        padding: 40px;
        background-color: #fff;
    }

    .product-item:hover {
        box-shadow: 0 30px 20px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
        border-bottom: 2px solid #EED186;
    }

    .product-item-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #d9d9d9;
        margin-bottom: 30px;
    }

    .product-item-head-title a {
        font-family: 'Ubuntu', sans-serif;
        color: #272727;
        font-weight: 900;
        font-size: 1.2rem;
        text-transform: uppercase;
        text-decoration: none;
    }

    .product-item-head-title a:hover {
        color: #EED186;
        transition: color 0.3s ease;
    }

    .product-item-body-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .product-item-body-list a {
        font-family: 'Ubuntu', sans-serif;
        color: #717171;
        text-decoration: none;
        width: 40%;
    }

    .product-item-body-list a:hover {
        color: #EED186;
        transition: color 0.3s ease;
    }

    .product-item-body-btn a {
        text-decoration: none;
        color: #EED186;
        font-weight: 600;
        font-size: 0.8rem;
        font-family: 'Ubantu', sans-serif;
    }

    /* 产品分类侧边栏样式 */
    .product-list-sidebar-item {
        margin-bottom: 30px;
    }

    .product-list-sidebar-item h6 {
        font-size: 18px;
        font-weight: 700;
        color: #272727;
    }

    .product-category-item {
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 4px;
        margin-bottom: 5px;
    }

    .product-category-item:hover {
        background-color: #f5f5f5;
    }

    .product-category-item input[type="radio"] {
        display: none;
    }

    .custom-radio {
        width: 18px;
        height: 18px;
        border: 2px solid #d9d9d9;
        border-radius: 3px;
        margin-right: 12px;
        position: relative;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .product-category-item input[type="radio"]:checked+.custom-radio {
        border-color: #EED186;
        background-color: #EED186;
    }

    .product-category-item input[type="radio"]:checked+.custom-radio::after {
        content: '';
        position: absolute;
        left: 5px;
        top: 2px;
        width: 4px;
        height: 8px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .category-name {
        flex: 1;
        font-family: 'Ubuntu', sans-serif;
        color: #333;
    }

    .category-count {
        font-size: 13px;
        color: #999;
    }

    .product-category-item input[type="radio"]:checked~.category-name {
        color: #EED186;
        font-weight: 600;
    }

    .product-category-item input[type="radio"]:checked~.category-count {
        color: #EED186;
    }

    .popular-partner {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .popular-partner img {
        width: 10%;
    }

    .popular-partner img:hover {
        opacity: 0.5;
        transition: transform 0.3s ease;
    }

    /* 产品详情图片切换效果 */
    .product-gallery {
        display: flex;
        gap: 20px;
    }

    .product-gallery-thumbs {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100px;
        flex-shrink: 0;
    }

    .thumb-item {
        width: 100%;
        height: 100px;
        border: 2px solid #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .thumb-item:hover {
        border-color: #EED186;
    }

    .thumb-item.active {
        border-color: #EED186;
        box-shadow: 0 0 0 2px rgba(238, 209, 134, 0.3);
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-gallery-main {
        flex: 1;
        position: relative;
    }

    .main-image-container {
        position: relative;
        width: 100%;
        height: 430px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
        cursor: crosshair;
    }

    .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.1s ease;
        transform-origin: center center;
    }

    .fullscreen-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .fullscreen-btn:hover {
        background-color: #EED186;
        border-color: #EED186;
    }

    .fullscreen-btn i {
        font-size: 18px;
        color: #333;
    }

    /* 全屏模态框 */
    .fullscreen-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .fullscreen-modal.active {
        display: flex;
    }

    .fullscreen-modal img {
        width: 30%;
    }

    .fullscreen-close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .fullscreen-close:hover {
        color: #EED186;
    }

    /* 热卖产品区 */














    /* 销量最高商品 */
    .best-seller-wall {
        position: relative;
        width: 100%;
        height: 540px;
        overflow: hidden;
    }

    .best-seller-wall-bg {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .best-seller-wall-bg img {
        width: 100%;
    }

    .best-seller-wall:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .best-seller-wall-text {
        padding: 40px;
    }

    .best-seller-wall-text span {
        padding: 5px 10px;
        background-color: #9A0002;
        color: #fff;
        font-weight: 600;
    }

    .best-seller-wall-text h1 {
        color: #fff;
        margin: 20px 0;
    }

    .best-seller-wall-text p {
        color: #fff;
    }

    .best-seller-wall-btn {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }

    .best-seller-product-box {
        margin-top: 30px;
    }

    .best-seller-product-item {
        border: 1px solid #d9d9d9;
    }

    .best-seller-product-item-body {
        padding: 30px;
        position: relative;
    }

    .best-seller-product-item-img {
        width: 100%;
        display: flex;
        overflow: hidden;
    }

    .best-seller-product-item-img img {
        width: 100%;
    }

    .best-seller-product-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .best-seller-product-item-tag {
        position: absolute;
        top: 230px;
        left: 30px;
        z-index: 2;
    }

    .best-seller-product-item-tag span {
        padding: 5px 10px;
        background-color: #37AE75;
        color: #fff;
        font-size: 0.8rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .best-seller-product-item-text {
        margin-top: 20px;
    }

    .best-seller-product-item-text p {
        color: #717171;
        font-size: 0.8rem;
    }

    .best-seller-product-item-title a {
        font-family: 'Ubuntu', sans-serif;
        color: #272727;
        text-decoration: none;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
        font-weight: 600;
    }

    .best-seller-product-item-feature {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .best-seller-product-item-feature span {
        border: 1px solid #717171;
        padding: 2px 10px;
        font-size: 0.8rem;
        color: #717171;
    }

    .best-seller-product-item-feature p {
        background-color: #AED37F;
        padding: 2px 10px;
        font-size: 0.8rem;
        color: #fff;
    }

    .best-seller-product-item-btn {
        padding: 10px;
        border: 1px solid #272727;
        width: 100%;
        text-align: center;
    }

    .best-seller-product-item-btn a {
        text-decoration: none;
        color: #272727;
        font-size: 0.8rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .best-seller-product-item:hover .best-seller-product-item-btn {
        background-color: #272727;
        transition: background-color 0.3s ease;
    }

    .best-seller-product-item:hover .best-seller-product-item-btn a {
        color: #fff;
        transition: color 0.3s ease;
    }

    /* 销量最高商品 */











    /* 月销最高产品 */
    .month-product-box-item {
        width: 100%;
        height: 600px;
        overflow: hidden;
        position: relative;
    }

    .month-product-box-item-img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        z-index: -2;
    }

    .month-product-box-item-img img {
        width: 100%;
    }

    .month-product-box-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .month-product-box-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #000000ce, #00000000);
        z-index: -1;
    }

    .month-product-box-item-text {
        position: absolute;
        left: 50%;
        bottom: 40px;
        transform: translateX(-50%);
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .month-product-box-item-text-title {
        margin-bottom: 50px;
    }

    .month-product-box-item-text-title a {
        color: #fff;
        font-size: 2.5rem;
        font-family: 'Palan', sans-serif;
        font-weight: 600;
        text-decoration: none;
        line-height: 2.5rem;
    }

    /* 月销最高产品 */









    /* 用酒瓶购物 */
    .spirits-bottle-item {
        padding: 40px;
    }

    .spirits-bottle-item-img {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .spirits-bottle-item-img a {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
    }

    .spirits-bottle-item-img a img {
        width: 100%;
    }

    .spirits-bottle-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .spirits-bottle-item-title {
        text-align: center;
    }

    .spirits-bottle-item-title a {
        font-family: 'Ubuntu', sans-serif;
        color: #272727;
        text-decoration: none;
        font-weight: 600;
    }

    .spirits-bottle-item:hover .spirits-bottle-item-title a {
        color: #EED186;
        transition: color 0.3s ease;
    }

    /* 用酒瓶购物 */














    /* 产品预定 */
    .order-area-img img {
        width: 100%;
    }

    .order-area-text {
        padding: 80px;
        border: 1px solid #d9d9d9;
        width: 100%;
        aspect-ratio: 1/1;
    }

    .order-area-text-title {
        margin-bottom: 40px;
    }

    .order-area-text-title span {
        font-family: 'Palan', sans-serif;
        color: #717171;
    }

    .order-area-text-feature-item {
        margin-bottom: 30px;
    }

    .order-area-text-feature-item-icon i {
        font-size: 3.5rem;
        color: #BF864F;
    }

    .order-area-text-feature-item-title {
        margin-bottom: 10px;
    }

    .order-area-text-feature-item-title a {
        text-decoration: none;
        color: #272727;
        font-size: 1.2rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .order-area-text-feature-item-title a:hover {
        color: #BF864F;
        transition: color 0.3s ease;
    }

    /* 产品预定 */










    /* 客户评价 */
    .testimonials {
        background-color: #8C450F;
    }

    .testimonials-title {
        text-align: center;
        margin-bottom: 50px;
        color: #fff;
    }

    .testimonials-title span {
        font-family: 'Ubuntu', sans-serif;
        font-size: 1.2rem;
        text-transform: uppercase;
        color: #EED186;
    }

    .testimonials-swiper-item {
        text-align: center;
        color: #fff;
    }

    .testimonials-swiper-item-text {
        margin-bottom: 50px;
    }

    .testimonials-swiper-item-text h2 {
        font-family: 'Ubuntu', sans-serif;
    }

    .customer-visit-item {
        display: flex;
    }

    .customer-visit-item-img {
        width: 50%;
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    .customer-visit-item-img a {
        width: 100%;
        display: flex;
    }

    .customer-visit-item-img a img {
        width: 100%;
    }

    .customer-visit-item:hover .customer-visit-item-img a img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-item-text {
        width: 50%;
        padding: 50px;
    }

    .customer-visit-item-text span {
        font-family: 'Ubuntu', sans-serif;
        padding: 3px 5px;
        background-color: #FBF8F2;
        font-size: 0.8rem;
    }

    .customer-visit-item-text-title {
        margin: 10px 0;
    }

    .customer-visit-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-size: 1.2rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .customer-visit-item-text-title a:hover {
        color: #8C450F;
        transition: color 0.3s ease;
    }

    .customer-visit-item-text-desc p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 客户评价 */









    /* 首页地图 */
    .map-area {
        position: relative;
    }

    .map-area-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .map-area-info {
        height: 550px;
        display: flex;
        align-items: center;
        padding: 40px 0;
    }

    .map-area-info-box {
        background-color: #fff;
        padding: 40px;
    }

    .map-area-info-add {
        margin-top: 30px;
    }

    .map-area-info-add span {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        color: #cacaca;
    }

    .map-area-info-add-line {
        border-bottom: 1px solid #cacaca;
        width: 100%;
        margin: 10px 0;
    }

    .map-area-info-add-hour ul {
        list-style: none;
    }

    .map-area-info-btn {
        width: 100%;
        margin-top: 40px;
    }

    .map-area-info-btn a {
        padding: 15px;
        width: 100%;
        background-color: #EED186;
        color: #272727;
        text-align: center;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        display: block;
        text-decoration: none;
    }

    .map-area-info-btn a:hover {
        background-color: #BF864F;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 首页地图 */










    /* 网站底部 */
    .footer-service-item {
        padding: 40px;
        display: flex;
        background-color: #FBF8F2;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .footer-service-item-icon {
        width: 20%;
    }

    .footer-service-item-icon i {
        font-size: 3.5rem;
    }

    .footer-service-item-text {
        width: 75%;
    }

    .footer-line {
        border-bottom: 1px solid #cacaca;
        width: 100%;
    }

    .footer-box {
        margin: 60px 0;
    }

    .footer-box-menu-item h6 {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        color: #717171;
    }

    .footer-box-menu-item-select {
        display: flex;
        flex-direction: column;
    }

    .footer-box-menu-item-select a {
        text-decoration: none;
        color: #000;
        font-family: 'Ubuntu', sans-serif;
    }

    .footer-box-menu-connect h3 {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .footer-box-menu-connect-info {
        margin-top: 20px;
        display: flex;
        align-items: center;
    }

    .footer-box-menu-connect-info-job {
        width: 50%;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .footer-box-menu-connect-info-job-img {
        width: 30%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
    }

    .footer-box-menu-connect-info-job-img img {
        width: 100%;
    }

    .footer-box-menu-connect-info-job-text p {
        font-size: 0.7rem;
    }

    .footer-box-menu-connect-info-job-text a {
        color: #BF864F;
        text-decoration: underline;
    }

    .footer-box-menu-connect-info-line {
        border-left: 1px solid #cacaca;
        height: 50px;
        width: 10%;
        display: flex;
        justify-content: center;
    }

    .footer-box-menu-connect-info-content {
        width: 40%;
    }

    .footer-box-menu-connect-info-content ul {
        list-style: none;
    }

    .footer-copyright {
        padding: 10px 0;
    }

    .footer-copyright-social {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-copyright-social a {
        text-decoration: none;
    }

    .footer-copyright-social i {
        font-size: 1.5rem;
        color: #BF864F;
    }

    .footer-copyright-social a:hover i {
        color: #8C450F;
        transition: color 0.3s ease;
    }

    .footer-copyright-support {
        width: 100%;
        text-align: right;
    }

    .footer-copyright-support a {
        color: #000;
        text-decoration: none;
    }

    .footer-copyright-support a:hover {
        color: #8C450F;
        transition: color 0.3s ease;
    }

    /* 网站底部 */









    /* 内页banner */
    .page-banner {
        width: 100%;
        height: 400px;
        overflow: hidden;
        position: relative;
    }

    .page-banner-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-banner-bg img {
        width: 100%;
    }

    .page-banner:hover .page-banner-bg img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .page-banner-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .page-banner-text-bread {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .page-banner-text-bread a {
        text-decoration: none;
        color: #cacaca;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .page-banner-text-bread i {
        color: #cacaca;
    }

    .page-banner-text-title {
        color: #fff;
    }

    /* 内页banner */














    /* 产品列表页 */
    .product-content-item {
        margin-bottom: 30px;
    }

    .pageinfo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pageinfo a {
        width: 40px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #cacaca;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        text-decoration: none;
    }

    .pageinfo a.active {
        background-color: #BF864F;
        color: #fff;
    }

    .product-content-title {
        margin-bottom: 10px;
    }

    .page-bread {
        margin: 30px 0;
    }

    .page-banner-box a {
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #717171;
        text-decoration: none;
        text-transform: uppercase;
    }

    .product-content-title span {
        padding: 3px 10px;
        background-color: #EED186;
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        border-radius: 3px;
    }

    .product-content-title h2 {
        margin: 10px 0;
    }

    .product-content-title-palameter {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .product-content-title-palameter span {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        color: #cacaca;
    }

    .product-details-more-line {
        position: relative;
        margin: 20px 0;
    }

    .product-details-more-line-short {
        border-bottom: 5px solid #8C450F;
        width: 100px;
    }

    .product-details-more-line-long {
        border-bottom: 1px solid #717171;
        position: absolute;
        left: 0;
        top: 50%;
        z-index: -1;
        width: 100%;
    }

    .product-details-more-text img {
        width: 100%;
    }

    .product-details-more-form {
        margin-top: 50px;
    }

    .product-details-more-form-box form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 20px;
    }

    .product-details-more-form-box form input {
        width: 49%;
        padding: 10px;
        margin-bottom: 20px;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #cacaca;
    }

    .product-details-more-form-box form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #cacaca;
    }

    .product-details-more-form-box form button {
        width: 200px;
    }

    .product-details-more-category {
        margin-top: 30px;
    }

    .product-details-adv {
        padding: 40px;
        border: 1px solid #e2e2e2;
        margin-bottom: 30px;
    }

    .product-details-adv ul {
        list-style: none;
    }

    .product-details-adv ul li {
        margin-bottom: 20px;
        border-bottom: 1px solid #e2e2e2;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .product-details-adv ul li i {
        font-size: 1.5rem;
        color: #8C450F;
    }

    .product-details-popular {
        padding: 40px;
        background-color: #FBF8F2;
    }

    .product-details-popular-line {
        border-bottom: 1px solid #e2e2e2;
        width: 100%;
        margin: 20px 0;
    }

    .product-details-popular-box-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .product-details-popular-box-item-img {
        width: 25%;
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    .product-details-popular-box-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .product-details-popular-box-item-img a img {
        width: 100%;
    }

    .product-details-popular-box-item-text {
        width: 70%;
    }

    .product-details-popular-box-item-text a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.9rem;
    }

    .product-details-popular-box-item-text a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .product-details-wall {
        margin-top: 30px;
        position: relative;
        width: 100%;
        height: 500px;
        padding: 40px;
    }

    .product-details-wall-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: -1;
        display: flex;
    }

    .product-details-wall-bg img {
        width: 100%;
    }

    .product-details-wall-text {
        width: 100%;
        height: 100%;
    }

    .product-details-wall-text-title {
        color: #fff;
        text-align: right;
    }

    .product-details-wall-text-title span {
        padding: 5px 10px;
        background-color: #8C450F;
        border-radius: 3px;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .product-details-wall-text-title h1 {
        margin-top: 20px;
    }

    .product-details-wall-btn {
        position: absolute;
        right: 40px;
        bottom: 40px;
    }

    /* 产品页面 */

















    /* 关于我们 */
    .about-area {
        display: flex;
        align-items: center;
        width: 100%;
        height: 1000px;
        overflow: hidden;
        background-color: #FBF8F2;
    }

    .about-area-img {
        width: 50%;
        height: 100%;
        display: flex;
    }

    .about-area-img img {
        width: 100%;
    }

    .about-area-text {
        width: 50%;
        height: 100%;
        padding: 100px 300px 100px 100px;
    }

    .about-area-text-btn {
        margin-top: 50px;
    }

    .about-area-text-btn a {
        width: 200px;
    }

    .about-area-text-adv {
        margin-top: 50px;
    }

    .about-area-text-adv ul {
        list-style: none;
    }

    .about-area-text-adv ul li {
        margin-bottom: 20px;
    }

    .about-area-counter-item {
        border-bottom: 1px solid #BF864F;
    }

    .about-area-counter-item-data {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .about-area-counter-item-data h1 {
        font-size: 4.5rem;
        font-weight: 600;
    }

    .about-area-counter-item-data small {
        font-size: 1.5rem;
        font-weight: 600;
        color: #8C450F;
        font-family: 'Palan', sans-serif;
        font-weight: 600;
    }

    .about-area-value-title {
        text-align: center;
    }

    .about-area-value-title span {
        color: #999;
        font-weight: 600;
    }

    .about-area-value-box {
        margin-top: 50px;
    }

    .about-area-value-box-item h4 {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .about-area-video {
        width: 100%;
        height: 600px;
        position: relative;
        overflow: hidden;
    }

    .about-area-video-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-video-bg img {
        width: 100%;
        background-attachment: fixed;
    }

    .about-area-video-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .about-area-video-btn {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-video-btn button {
        border: none;
        background: none;
    }

    .about-area-video-btn i {
        font-size: 5rem;
        color: #fff;
        cursor: pointer;
    }


    /* 视频全屏播放器模态框 */
    .video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .video-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .video-modal-content {
        position: relative;
        width: 90%;
        max-width: 1200px;
        background-color: #000;
        border-radius: 8px;
        overflow: hidden;
    }

    .video-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .video-modal-close:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .video-modal-close i {
        font-size: 1.5rem;
        color: #fff;
    }

    .video-modal-player {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .video-modal-player video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    @media (max-width: 768px) {
        .video-modal-content {
            width: 95%;
        }

        .video-modal-close {
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
        }

        .video-modal-close i {
            font-size: 1.2rem;
        }
    }

    .about-area-value-box-item {
        margin-bottom: 30px;
    }

    .about-area-value-box-item-img {
        width: 100%;
        display: flex;
    }

    .about-area-value-box-item-img img {
        width: 100%;
    }

    .about-area-value-box-item-text h4 {
        margin-bottom: 0;
        margin-top: 10px;
    }

    .about-area-value-box-item-text p {
        color: #8C450F;
        font-weight: 600;
    }

    .about-area-why-title {
        text-align: center;
    }

    .about-area-why-box {
        margin-top: 50px;
    }

    .about-area-why-box-item {
        padding: 40px;
        background-color: #fff;
        margin-bottom: 30px;
    }

    .about-area-why-box-item-title {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-area-why-box-item-title i {
        font-size: 2.5rem;
        color: #8C450F;
    }














    .about-careers-list-item-img {
        width: 100%;
    }

    .about-careers-list-item-img a {
        width: 100%;
        display: flex;
    }

    .about-careers-list-item-img img {
        width: 100%;
    }

    .about-careers-list-item-text {
        margin-top: 20px;
    }

    .about-careers-list-item-text span {
        color: #8C450F;
    }

    .about-careers-list-item-text-btn {
        margin-top: 20px;
    }

    .about-careers-list-item-text-btn a {
        text-decoration: none;
        color: #272727;
        font-weight: 600;
        font-family: 'Ubuntu', sans-serif;
    }

    .about-careers-list-item-text-btn a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }










    .customer-visit-sidebar-item {
        margin-bottom: 50px;
    }

    .customer-visit-sidebar-item-select {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .customer-visit-sidebar-item-select a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
    }

    .customer-visit-sidebar-item-img {
        margin: 20px 0;
    }

    .customer-visit-sidebar-item-img img {
        width: 100%;
    }

    .customer-visit-sidebar-item-recent-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .customer-visit-sidebar-item-recent-item-img {
        width: 25%;
    }

    .customer-visit-sidebar-item-recent-item-img a {
        width: 100%;
        display: flex;
    }

    .customer-visit-sidebar-item-recent-item-img a img {
        width: 100%;
    }

    .customer-visit-sidebar-item-recent-item-text {
        width: 70%;
    }

    .customer-visit-sidebar-item-recent-item-text span {
        color: #999;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .customer-visit-sidebar-item-recent-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .customer-visit-sidebar-item-recent-item-text-title a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-sidebar-item-tag {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .customer-visit-sidebar-item-tag span {
        padding: 5px 10px;
        border: 1px solid #999;
        font-size: 0.8rem;
    }








    .customer-visit-content-item {
        margin-bottom: 30px;
    }

    .customer-visit-content-item-img {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .customer-visit-content-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .customer-visit-content-item-img a img {
        width: 100%;
    }

    .customer-visit-content-item:hover .customer-visit-content-item-img a img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-content-item-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .customer-visit-content-item-text span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        width: 35%;
        text-align: center;
    }

    .customer-visit-content-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .customer-visit-content-item-text-title a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-content-item-text-title p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }









    .customer-visit-details-box-title {
        text-align: center;
    }

    .customer-visit-details-box-title span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        width: 35%;
        text-align: center;
    }

    .customer-visit-details-box-content {
        margin-top: 30px;
    }

    .customer-visit-details-box-content-img {
        width: 100%;
        height: 500px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer-visit-details-box-content-img img {
        width: 100%;
    }

    .customer-visit-details-box-content-img:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-details-box-content-text {
        margin-top: 30px;
    }

    .customer-visit-details-line {
        border-bottom: 1px solid #999;
        width: 100%;
        margin: 60px 0;
    }

    .customer-visit-details-switch {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .customer-visit-details-switch-left {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 45%;
    }

    .customer-visit-details-switch-left-img img {
        width: 100px;
    }

    .customer-visit-details-switch-left-text-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #717171;
    }

    .customer-visit-details-switch-left-text-content a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .customer-visit-details-switch-left-text-content a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-details-switch-right {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 45%;
        justify-content: flex-end;
    }

    .customer-visit-details-switch-right-img img {
        width: 100px;
    }

    .customer-visit-details-switch-right-text-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #717171;
        justify-content: flex-end;
    }

    .customer-visit-details-switch-right-text-content a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .customer-visit-details-switch-right-text-content a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }





    .customer-visit-details-related-title {
        text-align: center;
    }

    .customer-visit-details-related-item-img {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .customer-visit-details-related-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .customer-visit-details-related-item-img a img {
        width: 100%;
    }

    .customer-visit-details-related-item:hover .customer-visit-details-related-item-img a img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-details-related-item-text span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.6rem;
        width: 35%;
        text-align: center;
    }

    .customer-visit-details-related-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
        margin: 10px 0;
    }

    .customer-visit-details-related-item-text-title a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-details-related-item-text-content {
        margin-bottom: 20px;
    }

    .customer-visit-details-related-item-text-content p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }











    .certificates-area-title {
        text-align: center;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .certificates-area-title h1 {
        font-size: 3rem;
        font-weight: 600;
        color: #272727;
    }

    .certificates-area-box-item {
        margin-bottom: 30px;
    }

    .certificates-area-box-item img {
        width: 100%;
    }

    .certificates-area-title-line {
        border-bottom: 6px solid #BF864F;
        width: 100px;
        margin: 20px 0;
    }



















    /* 内页顶部大图 */
    .page-bg {
        width: 100%;
        height: 450px;
        overflow: hidden;
        position: relative;
    }

    .page-bg-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-bg-img img {
        width: 100%;
        background-attachment: fixed;
    }

    .page-bg-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-bg-text-box {
        padding: 40px;
        background-color: #fff;
    }

    .page-bg-text-box-btn {
        margin-top: 30px;
    }

    /* Tab选项卡 */
    .certificates-area {
        padding: 80px 0;
    }

    .tab-nav {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 10px;
    }

    .tab-btn {
        padding: 10px 30px;
        background: none;
        border: none;
        font-size: 1.5rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        position: relative;
        transition: color 0.3s ease;
    }

    .tab-btn:hover {
        color: #8C450F;
    }

    .tab-btn.active {
        color: #8C450F;
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -11px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #EED186;
        transition: all 0.3s ease;
    }

    .tab-content {
        width: 100%;
        overflow: hidden;
    }

    .tab-panel {
        display: none;
        width: 100%;
    }

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    .tab-panel img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .tab-nav {
            gap: 10px;
        }

        .tab-btn {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
    }

    /* 侧边Tab选项卡 */
    .side-tab-section {
        padding: 80px 0;
    }

    .side-tab-container {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .side-tab-nav {
        display: flex;
        flex-direction: column;
        min-width: 250px;
        border-right: 1px solid #e0e0e0;
        padding-right: 20px;
    }

    .side-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        text-align: left;
        font-size: 1rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    .side-tab-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #EED186;
        transition: width 0.3s ease;
    }

    .side-tab-btn:hover {
        color: #8C450F;
    }

    .side-tab-btn:hover::after {
        width: 100%;
    }

    .side-tab-btn.active {
        color: #8C450F;
    }

    .side-tab-btn.active::after {
        width: 100%;
    }

    .side-tab-content {
        flex: 1;
        min-height: 400px;
    }

    .side-tab-panel {
        display: none;
        animation: sideFadeIn 0.5s ease;
    }

    .side-tab-panel.active {
        display: block;
    }

    .side-tab-panel img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .side-tab-panel h3 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 15px;
    }

    .side-tab-panel p {
        color: #666;
        line-height: 1.8;
    }

    @keyframes sideFadeIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (max-width: 768px) {
        .side-tab-container {
            flex-direction: column;
        }

        .side-tab-nav {
            flex-direction: row;
            flex-wrap: wrap;
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            padding-right: 0;
            padding-bottom: 20px;
            min-width: 100%;
        }

        .side-tab-btn {
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .side-tab-btn:hover,
        .side-tab-btn.active {
            padding-left: 15px;
        }
    }











    .service-area-menu-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .service-area-menu-box a {
        width: 15.5%;
        padding: 12px 15px;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        color: #272727;
        cursor: pointer;
        background-color: #f3f3f3;
        text-align: center;
    }

    .service-area-menu-box a:hover {
        text-decoration: none;
    }

    .service-area-menu-box a.active {
        background-color: #8C450F;
        color: #fff;
    }

    .service-area-process-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .service-area-process-title-line {
        width: 100px;
        height: 5px;
        background-color: #BF864F;
    }

    .service-area-process-box {
        margin-top: 30px;
    }

    .service-area-process-box-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        background-color: #f3f3f3;
        padding: 50px 30px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .service-area-process-box-item-icon i {
        font-size: 3.5rem;
        color: #BF864F;
    }

    .service-area-process-box-item:hover {
        box-shadow: 0 30px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        transition: all 0.3s ease;
    }

    .side-tab-section-title {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .side-tab-section-title-left-line {
        width: 100px;
        height: 5px;
        background-color: #BF864F;
    }

    .side-tab-panel-img-box-img {
        margin-top: 20px;
        width: 100%;
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
    }



















    /* 质量控制 */
    .quality-area-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .quality-area-title-line {
        width: 100px;
        height: 5px;
        background-color: #BF864F;
    }

    .quality-area-content {
        margin-top: 50px;
    }

    .quality-area-content-item-img {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .quality-area-content-item-img img {
        width: 30%;
    }

    .quality-area-content-item-text {
        text-align: center;
    }

    .quality-area-content-item-text p {
        font-size: 1.2rem;
        color: #333;
        font-weight: 600;
    }



    .quality-area-list {
        margin-bottom: 50px;
    }

    .quality-area-list-item {
        width: 100%;
        height: 500px;
        overflow: hidden;
        margin-bottom: 50px;
    }

    .quality-area-list-item-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .quality-area-list-item-img img {
        width: 100%;
    }

    .quality-area-list-item-text {
        width: 100%;
        height: calc(100% - 150px);
        background-color: #fff;
        padding: 50px 0 0 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        text-align: center;
    }















    /* 新闻列表 */
    .blog-area-hot-item {
        display: flex;
        align-items: center;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .blog-area-hot-item-img {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .blog-area-hot-item-img img {
        width: 100%;
    }

    .blog-area-hot-item-text {
        width: 50%;
        height: 100%;
        padding: 50px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .blog-area-hot-item-text span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        width: 35%;
        text-align: center;
    }

    .blog-area-hot-item-text-title a {
        font-size: 2.5rem;
        color: #272727;
        text-decoration: none;
        font-family: 'Palan', sans-serif;
        line-height: 2.5rem;
    }

    .blog-area-hot-item-text-btn {
        margin-top: 20px;
    }

    /* FAQ常见问题 */
    .faq-area {
        padding: 80px 0;
    }

    .faq-area-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-area-title h1 {
        font-size: 2.5rem;
        color: #333;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .faq-area-box {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        overflow: hidden;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question span {
        font-size: 1.2rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 500;
        color: #333;
    }

    .faq-answer {
        display: none;
        padding: 0 20px 20px 20px;
    }

    /* 当父元素拥有 active 类时，显示答案 */
    .faq-item.active .faq-answer {
        display: block;
    }

    /* 优化按钮样式，确保鼠标指针显示为手型 */
    .faq-toggle {
        cursor: pointer;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: bold;
        outline: none;
        font-size: 2rem;
        color: #8C450F;
    }


    @media (max-width: 768px) {
        .faq-area-title h1 {
            font-size: 1.8rem;
        }

        .faq-question {
            padding: 15px;
        }

        .faq-question span {
            font-size: 0.9rem;
        }
    }

    .after-sale-support-box {
        text-align: center;
    }

    .contact-area-item {
        padding: 30px 50px;
        background-color: #f3f3f3;
        border-radius: 8px;
    }

    .contact-area-item ul {
        list-style: none;
    }

    .contact-area-item h4 {
        margin-bottom: 20px;
    }

    .contact-area-item ul li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-area-item ul li i {
        color: #8C450F;
        font-size: 1.2rem;
    }

    .contact-area-item p {
        font-size: 1.2rem;
    }

    /* 下拉菜单样式 */
    .dropdown-menu-box {
        position: absolute;
        top: 100%;
        left: -330px;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 30px;
        min-width: 1300px;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* 鼠标悬停时显示下拉菜单 */
    .header-box-nav-list-item:hover .dropdown-menu-box {
        opacity: 1;
        visibility: visible;
    }

    /* 调整导航菜单项的样式 */
    .header-box-nav-list-item-menu {
        display: block;
        padding: 15px 20px;
        position: relative;
        z-index: 1001;
    }

    /* 确保父元素有相对定位 */
    .header-box-nav-list-item {
        position: relative;
    }

    /* 优化下拉菜单项样式 */
    .dropdown-menu-box-item {
        margin-bottom: 20px;
    }

    .dropdown-menu-box-item-category a {
        font-weight: bold;
        color: #333;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
    }

    .dropdown-menu-box-item-img {
        margin: 20px 0;
        display: flex;
    }

    .dropdown-menu-box-item-img img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .dropdown-menu-box-item-list a {
        display: block;
        color: #666;
        text-decoration: none;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .dropdown-menu-box-item-list a:hover {
        color: #EED186;
    }

}













































@media (min-width: 1801px) and (max-width: 1920px) {
    .mt-80 {
        margin-top: 120px;
    }

    .mb-80 {
        margin-bottom: 120px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .mt-30 {
        margin-top: 30px;
    }

    .plr-300 {
        padding-left: 300px;
        padding-right: 300px;
    }

    .mlr-300 {
        margin-left: 300px;
        margin-right: 300px;
    }

    .mtb-20 {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .btn1 {
        padding: 15px 20px;
        border: none;
        background-color: #fff;
        color: #272727;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn1:hover {
        background-color: #272727;
        color: #fff;
        text-decoration: none;
    }

    .btn2 {
        padding: 15px 20px;
        border: none;
        background-color: #BF864F;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2:hover {
        background-color: #272727;
        color: #fff;
        text-decoration: none;
    }









    /* 网站顶部欢迎栏 */
    .header-welcome {
        padding: 10px;
        background-color: #EED186;
    }

    .header-welcome-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-welcome-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-welcome-item i {
        font-weight: 800;
    }

    .header-welcome-item-line {
        border-right: 2px solid #272727;
        height: 15px;
    }

    .header-box-logo a img {
        width: 200px;
    }

    /* Header Navigation Styles */
    .header-box-nav {
        position: relative;
        z-index: 1000;
        overflow: visible;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 74px;
    }

    .header-box-nav ul {
        margin-bottom: 0;
    }

    .header-box-nav-list {
        display: flex;
        justify-content: space-between;
        list-style: none;
        overflow: visible;
        position: relative;
        z-index: 1000;
        width: 100%;
    }

    .header-box-nav-list-item {
        position: relative;
        margin-right: 30px;
    }

    .header-box-nav-list-item>a,
    .header-box-nav-list-item>.header-box-nav-list-item-menu {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        font-weight: 600;
        transition: color 0.3s ease;
        text-decoration: none;
        padding: 10px 0;
    }

    /* 箭头旋转效果 */
    .header-box-nav-list-item>a .icon-xia,
    .header-box-nav-list-item>.header-box-nav-list-item-menu .icon-xia {
        transition: transform 0.3s ease;
    }

    .header-box-nav-list-item:hover>a .icon-xia,
    .header-box-nav-list-item:hover>.header-box-nav-list-item-menu .icon-xia {
        transform: rotate(180deg);
    }

    /* 一级菜单名称变色 */
    .header-box-nav-list-item:hover>a,
    .header-box-nav-list-item:hover>.header-box-nav-list-item-menu {
        color: #EED186;
    }

    /* 下横线 - 默认不显示，鼠标悬停从左往右出现 */
    .header-box-nav-list-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #EED186;
        transition: width 0.3s ease;
    }

    .header-box-nav-list-item:hover::after {
        width: 100%;
    }

    /* active状态保持下横线显示 */
    .header-box-nav-list-item.active::after {
        width: 100%;
    }

    .header-box-nav-list-item.active .header-box-nav-list-item-menu {
        color: #EED186;
    }

    /* 下拉菜单样式 */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        min-width: 200px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        list-style: none;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(5px);
        transition: all 0.3s ease;
        z-index: 9999;
        border-radius: 4px;
        margin-top: 0;
        display: block !important;
    }

    /* 二级菜单展开 */
    .header-box-nav-list-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* 确保下拉菜单位置正确 */
    .header-box-nav-list-item.dropdown {
        position: relative;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        color: #333;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .dropdown-menu li a:hover {
        background-color: #f5f5f5;
        color: #EED186;
        padding-left: 25px;
    }

    .header-box {
        padding-top: 20px;
    }

    .header-box-search {
        width: 100%;
        height: 74px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-box-search form {
        position: relative;
    }

    .header-box-search form input {
        padding: 5px 20px;
        border: none;
        background-color: #f5f5f5;
        width: 100%;
        border-radius: 25px;
        outline: none;
    }

    .header-box-search form button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
        border: none;
        background-color: transparent;
    }

    /* 网站顶部欢迎栏 */

















    /* 滚动大图轮播 */

    /* 图片轮播区域 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 700px;
        overflow: hidden;
    }

    /* 图片轮播样式 */
    .image-slider {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .image-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
    }

    .image-slider .slide.active {
        opacity: 1;
        z-index: 2;
    }

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

    .slider-area-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -3;
    }

    .slider-area-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
    }

    .slider-area-text h1 {
        font-size: 4rem;
        font-weight: 800;
    }

    .slider-area-text-content-btn {
        margin-top: 50px;
    }

    .slider-area-text-content-btn a {
        text-decoration: none;
    }

    /* 滚动大图轮播 */

    /* 横向循环滚动区域 */
    .switch-area {
        background-color: #272727;
        padding: 30px 0;
        overflow: hidden;
    }

    .switch-area-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .switch-area-track {
        display: flex;
        animation: scroll 60s linear infinite;
        width: fit-content;
    }

    .switch-area-track:hover {
        animation-play-state: paused;
    }

    .switch-area-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 0 40px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .switch-area-item i {
        font-size: 24px;
        color: #EED186;
    }

    .switch-area-item h6 {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin: 0;
    }

    /* 横向滚动动画 */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* 横向循环滚动区域 */














    /* 热卖产品区 */
    .popular-products {
        background-color: #FBF8F2;
    }

    .section-title {
        display: flex;
        justify-content: space-between;
    }

    .section-title-btn a {
        text-decoration: none;
        color: #272727;
        font-weight: 600;
        position: relative;
    }

    .section-title-btn a::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #272727;
        transition: width 0.3s ease;
    }

    .section-title-btn a:hover::after {
        background-color: #EED186;
        transition: all 0.3s ease;
    }

    .section-title-btn a:hover {
        color: #EED186;
        transition: color 0.3s ease;
    }

    .product-item {
        padding: 40px;
        background-color: #fff;
    }

    .product-item:hover {
        box-shadow: 0 30px 20px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
        border-bottom: 2px solid #EED186;
    }

    .product-item-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #d9d9d9;
        margin-bottom: 30px;
    }

    .product-item-head-title a {
        font-family: 'Ubuntu', sans-serif;
        color: #272727;
        font-weight: 900;
        font-size: 1.2rem;
        text-transform: uppercase;
        text-decoration: none;
    }

    .product-item-head-title a:hover {
        color: #EED186;
        transition: color 0.3s ease;
    }

    .product-item-body-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .product-item-body-list a {
        font-family: 'Ubuntu', sans-serif;
        color: #717171;
        text-decoration: none;
        width: 40%;
    }

    .product-item-body-list a:hover {
        color: #EED186;
        transition: color 0.3s ease;
    }

    .product-item-body-btn a {
        text-decoration: none;
        color: #EED186;
        font-weight: 600;
        font-size: 0.8rem;
        font-family: 'Ubantu', sans-serif;
    }

    /* 产品分类侧边栏样式 */
    .product-list-sidebar-item {
        margin-bottom: 30px;
    }

    .product-list-sidebar-item h6 {
        font-size: 18px;
        font-weight: 700;
        color: #272727;
    }

    .product-category-item {
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 4px;
        margin-bottom: 5px;
    }

    .product-category-item:hover {
        background-color: #f5f5f5;
    }

    .product-category-item input[type="radio"] {
        display: none;
    }

    .custom-radio {
        width: 18px;
        height: 18px;
        border: 2px solid #d9d9d9;
        border-radius: 3px;
        margin-right: 12px;
        position: relative;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .product-category-item input[type="radio"]:checked+.custom-radio {
        border-color: #EED186;
        background-color: #EED186;
    }

    .product-category-item input[type="radio"]:checked+.custom-radio::after {
        content: '';
        position: absolute;
        left: 5px;
        top: 2px;
        width: 4px;
        height: 8px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .category-name {
        flex: 1;
        font-family: 'Ubuntu', sans-serif;
        color: #333;
    }

    .category-count {
        font-size: 13px;
        color: #999;
    }

    .product-category-item input[type="radio"]:checked~.category-name {
        color: #EED186;
        font-weight: 600;
    }

    .product-category-item input[type="radio"]:checked~.category-count {
        color: #EED186;
    }

    .popular-partner {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .popular-partner img {
        width: 10%;
    }

    .popular-partner img:hover {
        opacity: 0.5;
        transition: transform 0.3s ease;
    }

    /* 产品详情图片切换效果 */
    .product-gallery {
        display: flex;
        gap: 20px;
    }

    .product-gallery-thumbs {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100px;
        flex-shrink: 0;
    }

    .thumb-item {
        width: 100%;
        height: 100px;
        border: 2px solid #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .thumb-item:hover {
        border-color: #EED186;
    }

    .thumb-item.active {
        border-color: #EED186;
        box-shadow: 0 0 0 2px rgba(238, 209, 134, 0.3);
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-gallery-main {
        flex: 1;
        position: relative;
    }

    .main-image-container {
        position: relative;
        width: 100%;
        height: 430px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        overflow: hidden;
        cursor: crosshair;
    }

    .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.1s ease;
        transform-origin: center center;
    }

    .fullscreen-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .fullscreen-btn:hover {
        background-color: #EED186;
        border-color: #EED186;
    }

    .fullscreen-btn i {
        font-size: 18px;
        color: #333;
    }

    /* 全屏模态框 */
    .fullscreen-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .fullscreen-modal.active {
        display: flex;
    }

    .fullscreen-modal img {
        width: 30%;
    }

    .fullscreen-close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .fullscreen-close:hover {
        color: #EED186;
    }

    /* 热卖产品区 */














    /* 销量最高商品 */
    .best-seller-wall {
        position: relative;
        width: 100%;
        height: 540px;
        overflow: hidden;
    }

    .best-seller-wall-bg {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        display: flex;
    }

    .best-seller-wall-bg img {
        width: 100%;
    }

    .best-seller-wall:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .best-seller-wall-text {
        padding: 40px;
    }

    .best-seller-wall-text span {
        padding: 5px 10px;
        background-color: #9A0002;
        color: #fff;
        font-weight: 600;
    }

    .best-seller-wall-text h1 {
        color: #fff;
        margin: 20px 0;
    }

    .best-seller-wall-text p {
        color: #fff;
    }

    .best-seller-wall-btn {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }

    .best-seller-product-box {
        margin-top: 30px;
    }

    .best-seller-product-item {
        border: 1px solid #d9d9d9;
    }

    .best-seller-product-item-body {
        padding: 30px;
        position: relative;
    }

    .best-seller-product-item-img {
        width: 100%;
        display: flex;
        overflow: hidden;
    }

    .best-seller-product-item-img img {
        width: 100%;
    }

    .best-seller-product-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .best-seller-product-item-tag {
        position: absolute;
        top: 230px;
        left: 30px;
        z-index: 2;
    }

    .best-seller-product-item-tag span {
        padding: 5px 10px;
        background-color: #37AE75;
        color: #fff;
        font-size: 0.8rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .best-seller-product-item-text {
        margin-top: 20px;
    }

    .best-seller-product-item-text p {
        color: #717171;
        font-size: 0.8rem;
    }
    
    .best-seller-product-item-title {
        margin-bottom:40px;
    }
    
    .best-seller-product-item-title a {
        font-family: 'Ubuntu', sans-serif;
        color: #272727;
        text-decoration: none;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
        font-weight: 600;
    }

    .best-seller-product-item-feature {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .best-seller-product-item-feature span {
        border: 1px solid #717171;
        padding: 2px 10px;
        font-size: 0.8rem;
        color: #717171;
    }

    .best-seller-product-item-feature p {
        background-color: #AED37F;
        padding: 2px 10px;
        font-size: 0.8rem;
        color: #fff;
    }

    .best-seller-product-item-btn {
        padding: 10px;
        border: 1px solid #272727;
        width: 100%;
        text-align: center;
    }

    .best-seller-product-item-btn a {
        text-decoration: none;
        color: #272727;
        font-size: 0.8rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .best-seller-product-item:hover .best-seller-product-item-btn {
        background-color: #272727;
        transition: background-color 0.3s ease;
    }

    .best-seller-product-item:hover .best-seller-product-item-btn a {
        color: #fff;
        transition: color 0.3s ease;
    }

    /* 销量最高商品 */











    /* 月销最高产品 */
    .month-product-box-item {
        width: 100%;
        height: 600px;
        overflow: hidden;
        position: relative;
    }

    .month-product-box-item-img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        z-index: -2;
    }

    .month-product-box-item-img img {
        width: 100%;
    }

    .month-product-box-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .month-product-box-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #000000ce, #00000000);
        z-index: -1;
    }

    .month-product-box-item-text {
        position: absolute;
        left: 50%;
        bottom: 40px;
        transform: translateX(-50%);
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .month-product-box-item-text-title {
        margin-bottom: 50px;
    }

    .month-product-box-item-text-title a {
        color: #fff;
        font-size: 2.5rem;
        font-family: 'Palan', sans-serif;
        font-weight: 600;
        text-decoration: none;
        line-height: 2.5rem;
    }

    /* 月销最高产品 */









    /* 用酒瓶购物 */
    .spirits-bottle-item {
        padding: 40px;
    }

    .spirits-bottle-item-img {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .spirits-bottle-item-img a {
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
    }

    .spirits-bottle-item-img a img {
        width: 100%;
    }

    .spirits-bottle-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .spirits-bottle-item-title {
        text-align: center;
    }

    .spirits-bottle-item-title a {
        font-family: 'Ubuntu', sans-serif;
        color: #272727;
        text-decoration: none;
        font-weight: 600;
    }

    .spirits-bottle-item:hover .spirits-bottle-item-title a {
        color: #EED186;
        transition: color 0.3s ease;
    }

    /* 用酒瓶购物 */














    /* 产品预定 */
    .order-area-img img {
        width: 100%;
    }

    .order-area-text {
        padding: 80px;
        border: 1px solid #d9d9d9;
        width: 100%;
        aspect-ratio: 1/1;
    }

    .order-area-text-title {
        margin-bottom: 40px;
    }

    .order-area-text-title span {
        font-family: 'Palan', sans-serif;
        color: #717171;
    }

    .order-area-text-feature-item {
        margin-bottom: 30px;
    }

    .order-area-text-feature-item-icon i {
        font-size: 3.5rem;
        color: #BF864F;
    }

    .order-area-text-feature-item-title {
        margin-bottom: 10px;
    }

    .order-area-text-feature-item-title a {
        text-decoration: none;
        color: #272727;
        font-size: 1.2rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .order-area-text-feature-item-title a:hover {
        color: #BF864F;
        transition: color 0.3s ease;
    }

    /* 产品预定 */










    /* 客户评价 */
    .testimonials {
        background-color: #8C450F;
    }

    .testimonials-title {
        text-align: center;
        margin-bottom: 50px;
        color: #fff;
    }

    .testimonials-title span {
        font-family: 'Ubuntu', sans-serif;
        font-size: 1.2rem;
        text-transform: uppercase;
        color: #EED186;
    }

    .testimonials-swiper-item {
        text-align: center;
        color: #fff;
    }

    .testimonials-swiper-item-text {
        margin-bottom: 50px;
    }

    .testimonials-swiper-item-text h2 {
        font-family: 'Ubuntu', sans-serif;
    }

    .customer-visit-item {
        display: flex;
    }

    .customer-visit-item-img {
        width: 50%;
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    .customer-visit-item-img a {
        width: 100%;
        display: flex;
    }

    .customer-visit-item-img a img {
        width: 100%;
    }

    .customer-visit-item:hover .customer-visit-item-img a img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-item-text {
        width: 50%;
        padding: 50px;
    }

    .customer-visit-item-text span {
        font-family: 'Ubuntu', sans-serif;
        padding: 3px 5px;
        background-color: #FBF8F2;
        font-size: 0.8rem;
    }

    .customer-visit-item-text-title {
        margin: 10px 0;
    }

    .customer-visit-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-size: 1.2rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .customer-visit-item-text-title a:hover {
        color: #8C450F;
        transition: color 0.3s ease;
    }

    .customer-visit-item-text-desc p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 客户评价 */









    /* 首页地图 */
    .map-area {
        position: relative;
    }

    .map-area-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .map-area-info {
        height: 550px;
        display: flex;
        align-items: center;
        padding: 40px 0;
    }

    .map-area-info-box {
        background-color: #fff;
        padding: 40px;
    }

    .map-area-info-add {
        margin-top: 30px;
    }

    .map-area-info-add span {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        color: #cacaca;
    }

    .map-area-info-add-line {
        border-bottom: 1px solid #cacaca;
        width: 100%;
        margin: 10px 0;
    }

    .map-area-info-add-hour ul {
        list-style: none;
    }

    .map-area-info-btn {
        width: 100%;
        margin-top: 40px;
    }

    .map-area-info-btn a {
        padding: 15px;
        width: 100%;
        background-color: #EED186;
        color: #272727;
        text-align: center;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        display: block;
        text-decoration: none;
    }

    .map-area-info-btn a:hover {
        background-color: #BF864F;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 首页地图 */










    /* 网站底部 */
    .footer-service-item {
        padding: 40px;
        display: flex;
        background-color: #FBF8F2;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .footer-service-item-icon {
        width: 20%;
    }

    .footer-service-item-icon i {
        font-size: 3.5rem;
    }

    .footer-service-item-text {
        width: 75%;
    }

    .footer-line {
        border-bottom: 1px solid #cacaca;
        width: 100%;
    }

    .footer-box {
        margin: 60px 0;
    }

    .footer-box-menu-item h6 {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        color: #717171;
    }

    .footer-box-menu-item-select {
        display: flex;
        flex-direction: column;
    }

    .footer-box-menu-item-select a {
        text-decoration: none;
        color: #000;
        font-family: 'Ubuntu', sans-serif;
    }

    .footer-box-menu-connect h3 {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .footer-box-menu-connect-info {
        margin-top: 20px;
        display: flex;
        align-items: center;
    }

    .footer-box-menu-connect-info-job {
        width: 50%;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .footer-box-menu-connect-info-job-img {
        width: 30%;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
    }

    .footer-box-menu-connect-info-job-img img {
        width: 100%;
    }

    .footer-box-menu-connect-info-job-text p {
        font-size: 0.7rem;
    }

    .footer-box-menu-connect-info-job-text a {
        color: #BF864F;
        text-decoration: underline;
    }

    .footer-box-menu-connect-info-line {
        border-left: 1px solid #cacaca;
        height: 50px;
        width: 10%;
        display: flex;
        justify-content: center;
    }

    .footer-box-menu-connect-info-content {
        width: 40%;
    }

    .footer-box-menu-connect-info-content ul {
        list-style: none;
    }

    .footer-copyright {
        padding: 10px 0;
    }

    .footer-copyright-social {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-copyright-social a {
        text-decoration: none;
    }

    .footer-copyright-social i {
        font-size: 1.5rem;
        color: #BF864F;
    }

    .footer-copyright-social a:hover i {
        color: #8C450F;
        transition: color 0.3s ease;
    }

    .footer-copyright-support {
        width: 100%;
        text-align: right;
    }

    .footer-copyright-support a {
        color: #000;
        text-decoration: none;
    }

    .footer-copyright-support a:hover {
        color: #8C450F;
        transition: color 0.3s ease;
    }

    /* 网站底部 */









    /* 内页banner */
    .page-banner {
        width: 100%;
        height: 400px;
        overflow: hidden;
        position: relative;
    }

    .page-banner-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-banner-bg img {
        width: 100%;
    }

    .page-banner:hover .page-banner-bg img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .page-banner-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .page-banner-text-bread {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .page-banner-text-bread a {
        text-decoration: none;
        color: #cacaca;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .page-banner-text-bread i {
        color: #cacaca;
    }

    .page-banner-text-title {
        color: #fff;
    }

    /* 内页banner */














    /* 产品列表页 */
    .product-content-item {
        margin-bottom: 30px;
    }

    .pageinfo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pageinfo a {
        width: 40px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #cacaca;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        text-decoration: none;
    }

    .pageinfo a.active {
        background-color: #BF864F;
        color: #fff;
    }

    .product-content-title {
        margin-bottom: 10px;
    }

    .page-bread {
        margin: 30px 0;
    }

    .page-banner-box a {
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #717171;
        text-decoration: none;
        text-transform: uppercase;
    }

    .product-content-title span {
        padding: 3px 10px;
        background-color: #EED186;
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        border-radius: 3px;
    }

    .product-content-title h2 {
        margin: 10px 0;
    }

    .product-content-title-palameter {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .product-content-title-palameter span {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        color: #cacaca;
    }

    .product-details-more-line {
        position: relative;
        margin: 20px 0;
    }

    .product-details-more-line-short {
        border-bottom: 5px solid #8C450F;
        width: 100px;
    }

    .product-details-more-line-long {
        border-bottom: 1px solid #717171;
        position: absolute;
        left: 0;
        top: 50%;
        z-index: -1;
        width: 100%;
    }

    .product-details-more-text img {
        width: 100%;
    }

    .product-details-more-form {
        margin-top: 50px;
    }

    .product-details-more-form-box form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 20px;
    }

    .product-details-more-form-box form input {
        width: 49%;
        padding: 10px;
        margin-bottom: 20px;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #cacaca;
    }

    .product-details-more-form-box form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #cacaca;
    }

    .product-details-more-form-box form button {
        width: 200px;
    }

    .product-details-more-category {
        margin-top: 30px;
    }

    .product-details-adv {
        padding: 40px;
        border: 1px solid #e2e2e2;
        margin-bottom: 30px;
    }

    .product-details-adv ul {
        list-style: none;
    }

    .product-details-adv ul li {
        margin-bottom: 20px;
        border-bottom: 1px solid #e2e2e2;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .product-details-adv ul li i {
        font-size: 1.5rem;
        color: #8C450F;
    }

    .product-details-popular {
        padding: 40px;
        background-color: #FBF8F2;
    }

    .product-details-popular-line {
        border-bottom: 1px solid #e2e2e2;
        width: 100%;
        margin: 20px 0;
    }

    .product-details-popular-box-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .product-details-popular-box-item-img {
        width: 25%;
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    .product-details-popular-box-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .product-details-popular-box-item-img a img {
        width: 100%;
    }

    .product-details-popular-box-item-text {
        width: 70%;
    }

    .product-details-popular-box-item-text a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.9rem;
    }

    .product-details-popular-box-item-text a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .product-details-wall {
        margin-top: 30px;
        position: relative;
        width: 100%;
        height: 500px;
        padding: 40px;
    }

    .product-details-wall-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: -1;
        display: flex;
    }

    .product-details-wall-bg img {
        width: 100%;
    }

    .product-details-wall-text {
        width: 100%;
        height: 100%;
    }

    .product-details-wall-text-title {
        color: #fff;
        text-align: right;
    }

    .product-details-wall-text-title span {
        padding: 5px 10px;
        background-color: #8C450F;
        border-radius: 3px;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .product-details-wall-text-title h1 {
        margin-top: 20px;
    }

    .product-details-wall-btn {
        position: absolute;
        right: 40px;
        bottom: 40px;
    }

    /* 产品页面 */

















    /* 关于我们 */
    .about-area {
        display: flex;
        align-items: center;
        width: 100%;
        height: 1000px;
        overflow: hidden;
        background-color: #FBF8F2;
    }

    .about-area-img {
        width: 50%;
        height: 100%;
        display: flex;
    }

    .about-area-img img {
        width: 100%;
    }

    .about-area-text {
        width: 50%;
        height: 100%;
        padding: 100px 300px 100px 100px;
    }

    .about-area-text-btn {
        margin-top: 50px;
    }

    .about-area-text-btn a {
        width: 200px;
    }

    .about-area-text-adv {
        margin-top: 50px;
    }

    .about-area-text-adv ul {
        list-style: none;
    }

    .about-area-text-adv ul li {
        margin-bottom: 20px;
    }

    .about-area-counter-item {
        border-bottom: 1px solid #BF864F;
    }

    .about-area-counter-item-data {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .about-area-counter-item-data h1 {
        font-size: 4.5rem;
        font-weight: 600;
    }

    .about-area-counter-item-data small {
        font-size: 1.5rem;
        font-weight: 600;
        color: #8C450F;
        font-family: 'Palan', sans-serif;
        font-weight: 600;
    }

    .about-area-value-title {
        text-align: center;
    }

    .about-area-value-title span {
        color: #999;
        font-weight: 600;
    }

    .about-area-value-box {
        margin-top: 50px;
    }

    .about-area-value-box-item h4 {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .about-area-video {
        width: 100%;
        height: 600px;
        position: relative;
        overflow: hidden;
    }

    .about-area-video-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-video-bg img {
        width: 100%;
        background-attachment: fixed;
    }

    .about-area-video-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .about-area-video-btn {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-video-btn button {
        border: none;
        background: none;
    }

    .about-area-video-btn i {
        font-size: 5rem;
        color: #fff;
        cursor: pointer;
    }


    /* 视频全屏播放器模态框 */
    .video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .video-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .video-modal-content {
        position: relative;
        width: 90%;
        max-width: 1200px;
        background-color: #000;
        border-radius: 8px;
        overflow: hidden;
    }

    .video-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .video-modal-close:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .video-modal-close i {
        font-size: 1.5rem;
        color: #fff;
    }

    .video-modal-player {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .video-modal-player video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    @media (max-width: 768px) {
        .video-modal-content {
            width: 95%;
        }

        .video-modal-close {
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
        }

        .video-modal-close i {
            font-size: 1.2rem;
        }
    }

    .about-area-value-box-item {
        margin-bottom: 30px;
    }

    .about-area-value-box-item-img {
        width: 100%;
        display: flex;
    }

    .about-area-value-box-item-img img {
        width: 100%;
    }

    .about-area-value-box-item-text h4 {
        margin-bottom: 0;
        margin-top: 10px;
    }

    .about-area-value-box-item-text p {
        color: #8C450F;
        font-weight: 600;
    }

    .about-area-why-title {
        text-align: center;
    }

    .about-area-why-box {
        margin-top: 50px;
    }

    .about-area-why-box-item {
        padding: 40px;
        background-color: #fff;
        margin-bottom: 30px;
    }

    .about-area-why-box-item-title {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-area-why-box-item-title i {
        font-size: 2.5rem;
        color: #8C450F;
    }














    .about-careers-list-item-img {
        width: 100%;
    }

    .about-careers-list-item-img a {
        width: 100%;
        display: flex;
    }

    .about-careers-list-item-img img {
        width: 100%;
    }

    .about-careers-list-item-text {
        margin-top: 20px;
    }

    .about-careers-list-item-text span {
        color: #8C450F;
    }

    .about-careers-list-item-text-btn {
        margin-top: 20px;
    }

    .about-careers-list-item-text-btn a {
        text-decoration: none;
        color: #272727;
        font-weight: 600;
        font-family: 'Ubuntu', sans-serif;
    }

    .about-careers-list-item-text-btn a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }










    .customer-visit-sidebar-item {
        margin-bottom: 50px;
    }

    .customer-visit-sidebar-item-select {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .customer-visit-sidebar-item-select a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
    }

    .customer-visit-sidebar-item-img {
        margin: 20px 0;
    }

    .customer-visit-sidebar-item-img img {
        width: 100%;
    }

    .customer-visit-sidebar-item-recent-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .customer-visit-sidebar-item-recent-item-img {
        width: 25%;
    }

    .customer-visit-sidebar-item-recent-item-img a {
        width: 100%;
        display: flex;
    }

    .customer-visit-sidebar-item-recent-item-img a img {
        width: 100%;
    }

    .customer-visit-sidebar-item-recent-item-text {
        width: 70%;
    }

    .customer-visit-sidebar-item-recent-item-text span {
        color: #999;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .customer-visit-sidebar-item-recent-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .customer-visit-sidebar-item-recent-item-text-title a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-sidebar-item-tag {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .customer-visit-sidebar-item-tag span {
        padding: 5px 10px;
        border: 1px solid #999;
        font-size: 0.8rem;
    }








    .customer-visit-content-item {
        margin-bottom: 30px;
    }

    .customer-visit-content-item-img {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .customer-visit-content-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .customer-visit-content-item-img a img {
        width: 100%;
    }

    .customer-visit-content-item:hover .customer-visit-content-item-img a img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-content-item-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .customer-visit-content-item-text span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        width: 35%;
        text-align: center;
    }

    .customer-visit-content-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .customer-visit-content-item-text-title a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-content-item-text-title p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }









    .customer-visit-details-box-title {
        text-align: center;
    }

    .customer-visit-details-box-title span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        width: 35%;
        text-align: center;
    }

    .customer-visit-details-box-content {
        margin-top: 30px;
    }

    .customer-visit-details-box-content-img {
        width: 100%;
        height: 500px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .customer-visit-details-box-content-img img {
        width: 100%;
    }

    .customer-visit-details-box-content-img:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-details-box-content-text {
        margin-top: 30px;
    }

    .customer-visit-details-line {
        border-bottom: 1px solid #999;
        width: 100%;
        margin: 60px 0;
    }

    .customer-visit-details-switch {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .customer-visit-details-switch-left {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 45%;
    }

    .customer-visit-details-switch-left-img img {
        width: 100px;
    }

    .customer-visit-details-switch-left-text-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #717171;
    }

    .customer-visit-details-switch-left-text-content a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .customer-visit-details-switch-left-text-content a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-details-switch-right {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 45%;
        justify-content: flex-end;
    }

    .customer-visit-details-switch-right-img img {
        width: 100px;
    }

    .customer-visit-details-switch-right-text-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #717171;
        justify-content: flex-end;
    }

    .customer-visit-details-switch-right-text-content a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .customer-visit-details-switch-right-text-content a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }





    .customer-visit-details-related-title {
        text-align: center;
    }

    .customer-visit-details-related-item-img {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .customer-visit-details-related-item-img a {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .customer-visit-details-related-item-img a img {
        width: 100%;
    }

    .customer-visit-details-related-item:hover .customer-visit-details-related-item-img a img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .customer-visit-details-related-item-text span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.6rem;
        width: 35%;
        text-align: center;
    }

    .customer-visit-details-related-item-text-title a {
        text-decoration: none;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
        margin: 10px 0;
    }

    .customer-visit-details-related-item-text-title a:hover {
        color: #8C450F;
        transition: all 0.3s ease;
    }

    .customer-visit-details-related-item-text-content {
        margin-bottom: 20px;
    }

    .customer-visit-details-related-item-text-content p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 3;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }











    .certificates-area-title {
        text-align: center;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .certificates-area-title h1 {
        font-size: 3rem;
        font-weight: 600;
        color: #272727;
    }

    .certificates-area-box-item {
        margin-bottom: 30px;
    }

    .certificates-area-box-item img {
        width: 100%;
    }

    .certificates-area-title-line {
        border-bottom: 6px solid #BF864F;
        width: 100px;
        margin: 20px 0;
    }



















    /* 内页顶部大图 */
    .page-bg {
        width: 100%;
        height: 450px;
        overflow: hidden;
        position: relative;
    }

    .page-bg-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-bg-img img {
        width: 100%;
        background-attachment: fixed;
    }

    .page-bg-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-bg-text-box {
        padding: 40px;
        background-color: #fff;
    }

    .page-bg-text-box-btn {
        margin-top: 30px;
    }

    /* Tab选项卡 */
    .certificates-area {
        padding: 80px 0;
    }

    .tab-nav {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 10px;
    }

    .tab-btn {
        padding: 10px 30px;
        background: none;
        border: none;
        font-size: 1.5rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        position: relative;
        transition: color 0.3s ease;
    }

    .tab-btn:hover {
        color: #8C450F;
    }

    .tab-btn.active {
        color: #8C450F;
    }

    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -11px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #EED186;
        transition: all 0.3s ease;
    }

    .tab-content {
        width: 100%;
        overflow: hidden;
    }

    .tab-panel {
        display: none;
        width: 100%;
    }

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    .tab-panel img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .tab-nav {
            gap: 10px;
        }

        .tab-btn {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
    }

    /* 侧边Tab选项卡 */
    .side-tab-section {
        padding: 80px 0;
    }

    .side-tab-container {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .side-tab-nav {
        display: flex;
        flex-direction: column;
        min-width: 250px;
        border-right: 1px solid #e0e0e0;
        padding-right: 20px;
    }

    .side-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        text-align: left;
        font-size: 1rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }

    .side-tab-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #EED186;
        transition: width 0.3s ease;
    }

    .side-tab-btn:hover {
        color: #8C450F;
    }

    .side-tab-btn:hover::after {
        width: 100%;
    }

    .side-tab-btn.active {
        color: #8C450F;
    }

    .side-tab-btn.active::after {
        width: 100%;
    }

    .side-tab-content {
        flex: 1;
        min-height: 400px;
    }

    .side-tab-panel {
        display: none;
        animation: sideFadeIn 0.5s ease;
    }

    .side-tab-panel.active {
        display: block;
    }

    .side-tab-panel img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .side-tab-panel h3 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 15px;
    }

    .side-tab-panel p {
        color: #666;
        line-height: 1.8;
    }

    @keyframes sideFadeIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (max-width: 768px) {
        .side-tab-container {
            flex-direction: column;
        }

        .side-tab-nav {
            flex-direction: row;
            flex-wrap: wrap;
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            padding-right: 0;
            padding-bottom: 20px;
            min-width: 100%;
        }

        .side-tab-btn {
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .side-tab-btn:hover,
        .side-tab-btn.active {
            padding-left: 15px;
        }
    }











    .service-area-menu-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .service-area-menu-box a {
        width: 15.5%;
        padding: 12px 15px;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        color: #272727;
        cursor: pointer;
        background-color: #f3f3f3;
        text-align: center;
    }

    .service-area-menu-box a:hover {
        text-decoration: none;
    }

    .service-area-menu-box a.active {
        background-color: #8C450F;
        color: #fff;
    }

    .service-area-process-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .service-area-process-title-line {
        width: 100px;
        height: 5px;
        background-color: #BF864F;
    }

    .service-area-process-box {
        margin-top: 30px;
    }

    .service-area-process-box-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        background-color: #f3f3f3;
        padding: 50px 30px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .service-area-process-box-item-icon i {
        font-size: 3.5rem;
        color: #BF864F;
    }

    .service-area-process-box-item:hover {
        box-shadow: 0 30px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        transition: all 0.3s ease;
    }

    .side-tab-section-title {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .side-tab-section-title-left-line {
        width: 100px;
        height: 5px;
        background-color: #BF864F;
    }

    .side-tab-panel-img-box-img {
        margin-top: 20px;
        width: 100%;
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
    }



















    /* 质量控制 */
    .quality-area-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .quality-area-title-line {
        width: 100px;
        height: 5px;
        background-color: #BF864F;
    }

    .quality-area-content {
        margin-top: 50px;
    }

    .quality-area-content-item-img {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .quality-area-content-item-img img {
        width: 30%;
    }

    .quality-area-content-item-text {
        text-align: center;
    }

    .quality-area-content-item-text p {
        font-size: 1.2rem;
        color: #333;
        font-weight: 600;
    }



    .quality-area-list {
        margin-bottom: 50px;
    }

    .quality-area-list-item {
        width: 100%;
        height: 500px;
        overflow: hidden;
        margin-bottom: 50px;
    }

    .quality-area-list-item-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .quality-area-list-item-img img {
        width: 100%;
    }

    .quality-area-list-item-text {
        width: 100%;
        height: calc(100% - 150px);
        background-color: #fff;
        padding: 50px 0 0 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        text-align: center;
    }















    /* 新闻列表 */
    .blog-area-hot-item {
        display: flex;
        align-items: center;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .blog-area-hot-item-img {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .blog-area-hot-item-img img {
        width: 100%;
    }

    .blog-area-hot-item-text {
        width: 50%;
        height: 100%;
        padding: 50px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .blog-area-hot-item-text span {
        padding: 5px 10px;
        background-color: #FBF8F2;
        color: #272727;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        width: 35%;
        text-align: center;
    }

    .blog-area-hot-item-text-title a {
        font-size: 2.5rem;
        color: #272727;
        text-decoration: none;
        font-family: 'Palan', sans-serif;
        line-height: 2.5rem;
    }

    .blog-area-hot-item-text-btn {
        margin-top: 20px;
    }

    /* FAQ常见问题 */
    .faq-area {
        padding: 80px 0;
    }

    .faq-area-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-area-title h1 {
        font-size: 2.5rem;
        color: #333;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 600;
    }

    .faq-area-box {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        overflow: hidden;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question span {
        font-size: 1.2rem;
        font-family: 'Ubuntu', sans-serif;
        font-weight: 500;
        color: #333;
    }

    .faq-answer {
        display: none;
        padding: 0 20px 20px 20px;
    }

    /* 当父元素拥有 active 类时，显示答案 */
    .faq-item.active .faq-answer {
        display: block;
    }

    /* 优化按钮样式，确保鼠标指针显示为手型 */
    .faq-toggle {
        cursor: pointer;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: bold;
        outline: none;
        font-size: 2rem;
        color: #8C450F;
    }


    @media (max-width: 768px) {
        .faq-area-title h1 {
            font-size: 1.8rem;
        }

        .faq-question {
            padding: 15px;
        }

        .faq-question span {
            font-size: 0.9rem;
        }
    }

    .after-sale-support-box {
        text-align: center;
    }

    .contact-area-item {
        padding: 30px 50px;
        background-color: #f3f3f3;
        border-radius: 8px;
    }

    .contact-area-item ul {
        list-style: none;
    }

    .contact-area-item h4 {
        margin-bottom: 20px;
    }

    .contact-area-item ul li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-area-item ul li i {
        color: #8C450F;
        font-size: 1.2rem;
    }

    .contact-area-item p {
        font-size: 1.2rem;
    }

    /* 下拉菜单样式 */
    .dropdown-menu-box {
        position: absolute;
        top: 100%;
        left: -330px;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 30px;
        min-width: 1300px;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* 鼠标悬停时显示下拉菜单 */
    .header-box-nav-list-item:hover .dropdown-menu-box {
        opacity: 1;
        visibility: visible;
    }

    /* 调整导航菜单项的样式 */
    .header-box-nav-list-item-menu {
        display: block;
        padding: 15px 20px;
        position: relative;
        z-index: 1001;
    }

    /* 确保父元素有相对定位 */
    .header-box-nav-list-item {
        position: relative;
    }

    /* 优化下拉菜单项样式 */
    .dropdown-menu-box-item {
        margin-bottom: 20px;
    }

    .dropdown-menu-box-item-category a {
        font-weight: bold;
        color: #333;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
    }

    .dropdown-menu-box-item-img {
        margin: 20px 0;
        display: flex;
    }

    .dropdown-menu-box-item-img img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .dropdown-menu-box-item-list a {
        display: block;
        color: #666;
        text-decoration: none;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .dropdown-menu-box-item-list a:hover {
        color: #EED186;
    }

}