@charset "UTF-8";
        /* ===== About 页面独有样式 ===== */

        /* ---- 内页大图（1920x600） ---- */
        .about-banner-wrap {
            width: 100%;
            height: 30rem;
            max-height: 100vh;
            overflow: hidden;
            position: relative;
            background: #2a2a2a;
        }
        .about-banner-wrap .bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .about-banner-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ffffff !important;
            background: rgb(0 0 0 / 50%);
            padding: 0 5%;
        }
        .about-banner-content .sub-tag {
            font-size: 0.75rem;
            letter-spacing: 8px;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }
        .about-banner-content h1 {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 10px;
            font-family: Georgia, "Noto Serif SC", serif;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 12px rgba(0,0,0,0.2);
        }
        .about-banner-content .banner-en {
            font-size: 1rem;
            letter-spacing: 6px;
            color: rgba(255,255,255,0.5);
            font-weight: 300;
        }
        .about-banner-content .banner-line {
            width: 4rem;
            height: 2px;
            background: rgba(255,255,255,0.3);
            margin: 1rem auto 0;
        }

        /* ---- 面包屑 ---- */
        .breadcrumb {
            padding: 1.5rem 0 2rem;
            background: #f8f6f3;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb .wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .breadcrumb .crumbs {
            font-size: 0.875rem;
            color: #999;
        }
        .breadcrumb .crumbs a {
            color: #710213;
        }
        .breadcrumb .crumbs a:hover {
            text-decoration: underline;
        }
        .breadcrumb .crumbs span {
            margin: 0 0.5rem;
            color: #ccc;
        }
        .breadcrumb .page-title {
            font-size: 1.25rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
        }
        .breadcrumb .page-title small {
            font-size: 0.875rem;
            color: #999;
            letter-spacing: 2px;
            margin-left: 0.75rem;
            font-weight: 300;
        }

        /* ============================================================ */
        /* 1. 关于我们 ABOUT US — 三大品牌系列 + 公司介绍 */
        /* ============================================================ */
        .about-brand-series {
            padding: 5.625rem 0;
            background: #ffffff;
            text-align: center;
        }
        .about-brand-series .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.5rem;
        }
        .about-brand-series h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            margin-bottom: 2.5rem;
        }
        .about-brand-series .brand-series-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 80rem;
            margin: 0 auto 2.5rem;
        }
        .about-brand-series .brand-series-grid .item {
            background: #f8f6f3;
            border-radius: 12px;
            padding: 2.5rem 1.5rem;
            transition: 0.3s ease;
        }
        .about-brand-series .brand-series-grid .item:hover {
            background: #f0ece7;
            transform: translateY(-4px);
        }
        .about-brand-series .brand-series-grid .item .logo-text {
            font-size: 1.25rem;
            font-weight: 500;
            color: #222;
            letter-spacing: 2px;
            margin-bottom: 0.25rem;
        }
        .about-brand-series .brand-series-grid .item .logo-sub {
            font-size: 0.875rem;
            color: #710213;
            letter-spacing: 4px;
        }
        .about-brand-series .brand-series-grid .item .divider {
            width: 2rem;
            height: 2px;
            background: #710213;
            margin: 0.75rem auto;
        }
        .about-brand-series .brand-series-grid .item .desc {
            font-size: 0.9375rem;
            color: #777;
            line-height: 1.7;
            margin-top: 0.5rem;
        }
        .about-brand-series .company-intro {
            max-width: 80rem;
            margin: 0 auto;
            padding: 4rem 2.5rem;
            background: #f8f6f3;
            border-radius: 12px;
            text-align: left;
            line-height: 2.5;
            font-size: 1rem;
            color: #555;
            text-indent: 2em;
        }
        .about-brand-series .company-intro strong {
            color: #710213;
        }

       /* ============================================================ */
/* 2. 品牌理念 BRAND PHILOSOPHY（左图右文） */
/* ============================================================ */
.philosophy {
    padding: 4.5rem 0;
    background: #f8f6f3;
}
.philosophy-wrap {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.philosophy-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 12px;
}
.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.philosophy-image img:hover {
    transform: scale(1.02);
}
.philosophy-content {
    flex: 1;
}
.philosophy .section-label {
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: #710213;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}
.philosophy h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #222;
    margin-bottom: 1.5rem;
}
.philosophy .philosophy-text {
    font-size: 1.5rem;
    line-height: 2.2;
    font-weight: 300;
    color: #333;
    max-width: 48rem;
}
.philosophy .philosophy-text .highlight {
    color: #710213;
    font-weight: 400;
}
.philosophy .philosophy-line {
    width: 3rem;
    height: 2px;
    background: #710213;
    margin-top: 1.5rem;
    opacity: 0.3;
}

/* ===== 手机端适配 ===== */
@media (max-width: 768px) {
    
    .about-brand-series .brand-series-grid .item{
        padding: 1.5rem 1.5rem;
    }
    
    .contact-info{
    gap: 1rem !important;
}

.contact-info .info-item .info-text h4{}
.contact-info .info-item .info-text p{
    font-size: 0.875rem !important;
}
    
    .news-detail-section .article-header{}
    
    
    .brand-values .values-grid .item{
    padding: 1rem .4rem !important;
}

.brand-values .values-grid .item p{
    font-size: .8rem !important;
}
    .philosophy {
        padding: 3rem 0;
    }
    .philosophy-wrap {
        flex-direction: column;
        gap: 2rem;
        padding: 0 16px;
    }
    .philosophy-image {
        flex: 0 0 auto;
        width: 100%;
        max-height: 300px;
    }
    .philosophy-image img {
        height: 100%;
        max-height: 300px;
        object-fit: cover;
    }
    .philosophy-content {
        text-align: center;
        padding: 0 10px;
    }
    .philosophy h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .philosophy .philosophy-text {
        font-size: 1.1rem;
        line-height: 1.9;
    }
    .philosophy .philosophy-line {
        margin: 1.2rem auto 0;
    }
}

@media (max-width: 480px) {
    .philosophy {
        padding: 2rem 0;
    }
    .philosophy-wrap {
        gap: 1.5rem;
        padding: 0 12px;
    }
    .philosophy-image {
        max-height: 220px;
    }
    .philosophy-image img {
        max-height: 220px;
    }
    .philosophy h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    .philosophy .philosophy-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    .philosophy .section-label {
        font-size: 0.65rem;
        letter-spacing: 4px;
    }
}

        /* ============================================================ */
        /* 3. 品牌定位 BRAND POSITIONING */
        /* ============================================================ */
        .brand-position {
            padding: 5.625rem 0;
            background: #ffffff;
        }
        .brand-position .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .brand-position h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .brand-position .pos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            max-width: 80rem;
            margin: 0 auto;
        }
      .brand-position .pos-grid .pos-item {
    padding: 1.5rem 2rem;
    background: #faf8f6;
    border-radius: 12px;
    /* 移除原来的 border-top */
    transition: 0.3s ease;
}

/* 单数（奇数）：左边框 */
.brand-position .pos-grid .pos-item:nth-child(odd) {
    border-left: 4px solid #710213;
}

/* 双数（偶数）：右边框 */
.brand-position .pos-grid .pos-item:nth-child(even) {
    border-right: 4px solid #710213;
    text-align: right;
}

        .brand-position .pos-grid .pos-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        }
        .brand-position .pos-grid .pos-item .label {
            font-size: 1.125rem;
            letter-spacing: 4px;
            color: #710213;
            text-transform: uppercase;
            font-weight: 500;
            display: block;
            margin-bottom: 0.25rem;
        }
        .brand-position .pos-grid .pos-item .label-en {
            font-size: 0.625rem;
            color: #bbb;
            letter-spacing: 2px;
            margin-left: 0.5rem;
            font-weight: 300;
        }
        .brand-position .pos-grid .pos-item .value {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
        }

        /* ============================================================ */
        /* 4. 品牌设计 BRAND DESIGN */
        /* ============================================================ */
        .brand-design {
            padding: 4.5rem 0;
            background: #f8f6f3;
        }
        .brand-design .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .brand-design h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .brand-design .design-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 80rem;
            margin: 0 auto;
        }
        .brand-design .design-grid .left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .brand-design .design-grid .left .text-block {
            font-size: 1rem;
            line-height: 2;
            color: #555;
        }
        .brand-design .design-grid .left .text-block p {
            margin-bottom: 0.75rem;
        }
        .brand-design .design-grid .left .text-block .highlight {
            color: #710213;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .brand-design .design-grid .left .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .brand-design .design-grid .left .tags .tag-item {
            padding: 0.6rem 1.8rem;
            background: #ffffff;
            border-radius: 50px;
            font-size: 0.875rem;
            color: #333;
            letter-spacing: 2px;
            transition: 0.3s ease;
            border: 1px solid #e8e4df;
        }
        .brand-design .design-grid .left .tags .tag-item:hover {
            background: #710213;
            color: #fff;
            border-color: #710213;
            transform: translateY(-2px);
        }
        .brand-design .design-grid .right {
            border-radius: 12px;
            overflow: hidden;
            height: 47rem;
        }
        .brand-design .design-grid .right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ============================================================ */
        /* 5. 品牌价值观 BRAND VALUES */
        /* ============================================================ */
        .brand-values {
            padding: 5.625rem 0 3rem;
            background: #ffffff;
        }
        .brand-values .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .brand-values h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .brand-values .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 80rem;
            margin: 0 auto;
        }
        .brand-values .values-grid .item {
            padding: 2rem 1.5rem;
            background: #faf8f6;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s ease;
            border: 1px solid transparent;
        }
        .brand-values .values-grid .item:hover {
            border-color: #710213;
            background: #f8f6f3;
            transform: translateY(-4px);
        }
        .brand-values .values-grid .item .num {
            font-size: 2.5rem;
            font-weight: 200;
            color: #710213;
            opacity: 0.25;
            display: block;
            margin-bottom: 0.5rem;
            font-family: Georgia, serif;
        }
        .brand-values .values-grid .item h4 {
            font-size: 1.125rem;
            font-weight: 500;
            color: #222;
            margin-bottom: 0.25rem;
        }
        .brand-values .values-grid .item .en {
            font-size: 0.75rem;
            color: #bbb;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.75rem;
        }
        .brand-values .values-grid .item p {
            font-size: 0.9375rem;
            color: #777;
            line-height: 1.7;
        }

        /* ============================================================ */
        /* 6. 品牌使命 BRAND MISSION */
        /* ============================================================ */
        .mission {
            padding: 0 0 4.5rem 0;
            background: #ffffff;
            text-align: center;
        }
        .mission .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.5rem;
        }
        .mission h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            margin-bottom: 2rem;
        }
        .mission .mission-text {
            font-size: 1.5rem;
            line-height: 2.2;
            font-weight: 300;
            color: #333;
            max-width: 80rem;
            margin: 0 auto 1rem;
            text-indent: -1em;
        }
        .mission .mission-text .highlight {
            color: #710213;
            font-weight: 400;
        }
        .mission .mission-en {
            font-size: 1rem;
            color: #bbb;
            letter-spacing: 3px;
            font-weight: 300;
            font-style: italic;
        }
        .mission .mission-line {
            width: 3rem;
            height: 2px;
            background: #710213;
            margin: 1.5rem auto 0;
            opacity: 0.3;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .about-brand-series .brand-series-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .brand-values .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .brand-design .design-grid {
                gap: 2rem;
            }
            .brand-design .design-grid .right {
                height: 26rem;
            }
            .brand-position .pos-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .about-banner-wrap {
                height: 20rem;
            }
            .about-banner-content h1 {
                font-size: 2.25rem;
                letter-spacing: 6px;
            }
            .about-banner-content .banner-en {
                font-size: 0.875rem;
                letter-spacing: 4px;
            }
            .about-banner-content .sub-tag {
                font-size: 0.625rem;
                letter-spacing: 5px;
            }

            .breadcrumb {
                padding: 1rem 0;
            }
            .breadcrumb .wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            .breadcrumb .page-title {
                font-size: 1.125rem;
                display: none;
            }

            .about-brand-series {
                padding: 2.5rem 0;
            }
            .about-brand-series .brand-series-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .about-brand-series .company-intro {
                padding: 1.5rem;
                font-size: 0.9375rem;
            }

            .philosophy {
                padding: 2.5rem 0;
            }
            .philosophy .philosophy-text {
                font-size: 1rem;
                padding: 0rem;
            }

            .brand-position {
                padding: 2.5rem 0;
            }
            .brand-position .pos-grid {
                grid-template-columns: 1fr;
            }

            .brand-design {
                padding: 2.5rem 0;
            }
            .brand-design .design-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .brand-design .design-grid .right {
                height: 31rem;
                order: -1;
            }
            .brand-design .design-grid .left .tags {
                justify-content: center;
                gap: .5rem;
            }

            .brand-values {
                padding: 2.5rem 0;
            }
            .brand-values .values-grid {
                grid-template-columns: 1fr 1fr;
                gap: .5rem;
            }

            .mission {
                padding: 0 0 2.5rem 0;
            }
            .mission .mission-text {
                font-size: 1.25rem;
                padding: 0 .5rem;
            }
        }
        @media (max-width: 480px) {
            .about-banner-wrap {
                height: 16rem;
            }
            .about-banner-content h1 {
                font-size: 1.75rem;
                letter-spacing: 4px;
            }
            .about-banner-content .banner-en {
                font-size: 0.75rem;
                letter-spacing: 3px;
            }

            .about-brand-series h2,
            .philosophy h2,
            .brand-position h2,
            .brand-design h2,
            .brand-values h2,
            .mission h2 {
                font-size: 1.5rem;
            }
            .brand-design .design-grid .left .tags .tag-item {
                padding: 0.5rem 1rem;
                font-size: 0.8125rem;
            }
        }


/* ============================================================ */
/* 公共分类筛选组件 — 全站复用 */
/* ============================================================ */

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}
.category-tabs .tab-btn {
    padding: 0.5rem 1.8rem;
    border: 1px solid #e8e4df;
    border-radius: 50px;
    background: transparent;
    font-size: 0.875rem;
    color: #888;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1px;
    font-family: inherit;
}
.category-tabs .tab-btn:hover {
    border-color: #710213;
    color: #710213;
}
.category-tabs .tab-btn.active {
    background: #710213;
    color: #fff;
    border-color: #710213;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .category-tabs .tab-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.8125rem;
    }
}
@media (max-width: 480px) {
    .category-tabs {
        gap: 0.5rem;
    }
    .category-tabs .tab-btn {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }
}

 /* ============================================================ */
        /* 联系页面独有样式（导航、内页大图、页脚沿用公共样式） */
        /* ============================================================ */

        /* ---- 内页大图（1920x600）沿用 about 样式，此处仅作占位说明 ---- */
        /* 实际使用 about-banner-wrap 类，与关于我们一致 */

        /* ============================================================ */
        /* 联系我们模块 — 左右布局：左边表单，右边联系方式 */
        /* ============================================================ */
        .contact-section {
            padding: 5rem 0;
            background: #ffffff;
        }
        .contact-section .wrap {
            max-width: 80rem;
        }
        .contact-section .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .contact-section h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* ---- 左侧：表单 ---- */
        .contact-form .form-group {
            margin-bottom: 1.2rem;
        }
        .contact-form .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 0.4rem;
            letter-spacing: 1px;
        }
        .contact-form .form-group label .required {
            color: #710213;
            margin-left: 0.2rem;
        }
        .contact-form .form-group input,
        .contact-form .form-group textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 1px solid #e8e4df;
            border-radius: 8px;
            font-size: 0.875rem;
            color: #333;
            background: #faf8f6;
            transition: 0.3s ease;
            outline: none;
            font-family: inherit;
        }
        .contact-form .form-group input:focus,
        .contact-form .form-group textarea:focus {
            border-color: #710213;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(113, 2, 19, 0.08);
        }
        .contact-form .form-group input::placeholder,
        .contact-form .form-group textarea::placeholder {
            color: #bbb;
            font-weight: 300;
        }
        .contact-form .form-group textarea {
            resize: vertical;
            min-height: 15rem;
        }
        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .contact-form .submit-btn {
            padding: 0.9rem 3rem;
            background: #710213;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 3px;
            cursor: pointer;
            transition: 0.3s ease;
            text-transform: uppercase;
            margin-top: 0.5rem;
        }
        .contact-form .submit-btn:hover {
            background: #5a0110;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(113, 2, 19, 0.25);
        }

        /* ---- 右侧：联系方式信息 ---- */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            padding-top: 0.3rem;
        }
        .contact-info .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.2rem 1.5rem;
            background: #faf8f6;
            border-radius: 12px;
            transition: 0.3s ease;
        }
        .contact-info .info-item:hover {
            background: #f8f6f3;
            transform: translateX(4px);
        }
        .contact-info .info-item .icon-box {
            width: 3rem;
            height: 3rem;
            flex-shrink: 0;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #710213;
            border: 1px solid #e8e4df;
            transition: 0.3s ease;
        }
        .contact-info .info-item:hover .icon-box {
            background: #710213;
            color: #fff;
            border-color: #710213;
        }
        .contact-info .info-item .info-text h4 {
            font-size: 0.875rem !important;
            font-weight: 500;
            color: #222;
            margin-bottom: 0.2rem;
            letter-spacing: 1px;
        }
        .contact-info .info-item .info-text p {
            font-size: 0.875rem !important;
            color: #555;
            line-height: 1.6;
        }
        .contact-info .info-item .info-text p a {
            color: #555;
            text-decoration: none;
            transition: 0.3s ease;
        }
        .contact-info .info-item .info-text p a:hover {
            color: #710213;
        }

        /* ---- 响应式 ---- */
        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 0;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .contact-form .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .contact-info .info-item {
                padding: 1rem 1.2rem;
            }
            .contact-info .info-item .icon-box {
                width: 2.6rem;
                height: 2.6rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .contact-section h2 {
                font-size: 1.5rem;
            }
            .contact-form .submit-btn {
                width: 100%;
                text-align: center;
            }
        }
        
          /* ============================================================ */
        /* 新闻中心独有样式（导航、内页大图、页脚沿用公共样式） */
        /* ============================================================ */

        /* ---- 新闻列表模块 ---- */
        .news-section {
            padding: 5rem 0;
            background: #ffffff;
        }
        .news-section .wrap {
            max-width: 80rem;
        }
        .news-section .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .news-section h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        /* ---- 分类筛选标签 ---- */
        .news-tabs {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }
        .news-tabs .tab-btn {
            padding: 0.5rem 1.8rem;
            border: 1px solid #e8e4df;
            border-radius: 50px;
            background: transparent;
            font-size: 0.875rem;
            color: #888;
            cursor: pointer;
            transition: 0.3s ease;
            letter-spacing: 1px;
            font-family: inherit;
        }
        .news-tabs .tab-btn:hover {
            border-color: #710213;
            color: #710213;
        }
        .news-tabs .tab-btn.active {
            background: #710213;
            color: #fff;
            border-color: #710213;
        }

        /* ---- 新闻列表 ---- */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .news-list .news-item {
            display: grid;
            grid-template-columns: 9rem 1fr auto;
            gap: 2rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid #f0ece7;
            transition: 0.3s ease;
            align-items: center;
        }
        .news-list .news-item:last-child {
            border-bottom: none;
        }
        .news-list .news-item:hover {
            padding-left: 1rem;
        }

        /* 日期 */
        .news-list .news-item .date {
            text-align: center;
            flex-shrink: 0;
        }
        .news-list .news-item .date .day {
            font-size: 2rem;
            font-weight: 300;
            color: #222;
            font-family: Georgia, serif;
            line-height: 1;
            display: block;
        }
        .news-list .news-item .date .month-year {
            font-size: 0.75rem;
            color: #bbb;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-top: 0.2rem;
        }

        /* 内容 */
        .news-list .news-item .info {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }
        .news-list .news-item .info .tag {
            font-size: 0.625rem;
            color: #710213;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: inline-block;
            background: #f8f6f3;
            padding: 0.15rem 0.8rem;
            border-radius: 50px;
            width: fit-content;
        }
        .news-list .news-item .info h3 {
            font-size: 1.125rem;
            font-weight: 400;
            color: #222;
            transition: 0.3s ease;
            line-height: 1.4;
        }
        .news-list .news-item .info h3 a {
            text-decoration: none;
            color: inherit;
        }
        .news-list .news-item .info h3 a:hover {
            color: #710213;
        }
        .news-list .news-item .info p {
            font-size: 0.9375rem;
            color: #999;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 箭头 */
        .news-list .news-item .arrow {
            font-size: 1.2rem;
            color: #ccc;
            transition: 0.3s ease;
            flex-shrink: 0;
        }
        .news-list .news-item:hover .arrow {
            color: #710213;
            transform: translateX(4px);
        }

        /* ---- 分页 ---- */
        .news-pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .news-pagination .page-btn {
            width: 2.6rem;
            height: 2.6rem;
            border: 1px solid #e8e4df;
            border-radius: 50%;
            background: transparent;
            font-size: 0.9375rem;
            color: #888;
            cursor: pointer;
            transition: 0.3s ease;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .news-pagination .page-btn:hover {
            border-color: #710213;
            color: #710213;
        }
        .news-pagination .page-btn.active {
            background: #710213;
            color: #fff;
            border-color: #710213;
        }
        .news-pagination .page-btn.arrow-btn {
            font-size: 0.8rem;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .news-section {
                padding: 3rem 0;
            }
            .news-list .news-item {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                padding: 1.25rem 0;
            }
            .news-list .news-item:hover {
                padding-left: 0;
            }
            .news-list .news-item .date {
                display: flex;
                align-items: center;
                gap: 0.6rem;
                text-align: left;
            }
            .news-list .news-item .date .day {
                font-size: 1.4rem;
            }
            .news-list .news-item .date .month-year {
                font-size: 0.7rem;
            }
            .news-list .news-item .info h3 {
                font-size: 1rem;
            }
            .news-list .news-item .arrow {
                display: none;
            }
            .news-tabs .tab-btn {
                padding: 0.4rem 1.2rem;
                font-size: 0.8125rem;
            }
        }
        @media (max-width: 480px) {
            .news-section h2 {
                font-size: 1.5rem;
                margin-bottom: 0px;
            }
            .news-tabs {
                gap: 0.5rem;
            }
            .news-tabs .tab-btn {
                padding: 0.3rem 1rem;
                font-size: 0.75rem;
            }
            .news-pagination .page-btn {
                width: 2.2rem;
                height: 2.2rem;
                font-size: 0.8125rem;
            }
        }
        
          /* ============================================================ */
        /* 新闻详情独有样式 */
        /* ============================================================ */
        .news-detail-section {
            padding: 0 0 5rem;
            background: #ffffff;
        }
        .news-detail-section .wrap {
            max-width: 80rem;
        }

        .news-detail-section .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #999;
            text-decoration: none;
            transition: 0.3s ease;
            margin-bottom: 2rem;
        }
        .news-detail-section .back-link:hover {
            color: #710213;
        }
        .news-detail-section .back-link i {
            font-size: 0.75rem;
        }

        .news-detail-section .article-header {
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .news-detail-section .article-header .tag {
            font-size: 1rem;
            color: #710213;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: inline-block;
            background: #f8f6f3;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }
        .news-detail-section .article-header h1 {
            font-size: 1.6rem;
            font-weight: 400;
            color: #222;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }
        .news-detail-section .article-header .meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.875rem;
            color: #bbb;
            flex-wrap: wrap;
            justify-content: center;
            align-content: center;
        }
        .news-detail-section .article-header .meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .news-detail-section .article-header .meta i {
            font-size: 0.8rem;
        }
        .news-detail-section .article-header .divider-line {
            width: 3rem;
            height: 2px;
            background: #710213;
            opacity: 0.3;
            margin: 1.25rem auto 0 auto;
        }

        .news-detail-section .article-cover {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2.5rem;
            height: 22rem;
        }
        .news-detail-section .article-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-detail-section .article-body {
            font-size: 1.0625rem;
            line-height: 2;
            color: #444;
        }
        .news-detail-section .article-body p {
            /* margin-bottom: 1.5rem; */
        }
        .news-detail-section .article-body h2 {
            font-size: 1.375rem;
            font-weight: 500;
            color: #222;
            margin: 2rem 0 1rem;
            letter-spacing: 1px;
        }
        .news-detail-section .article-body h3 {
            font-size: 1.125rem;
            font-weight: 500;
            color: #222;
            margin: 1.5rem 0 0.75rem;
        }
        .news-detail-section .article-body blockquote {
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            background: #f8f6f3;
            border-left: 4px solid #710213;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #555;
        }
        .news-detail-section .article-body blockquote p {
            margin-bottom: 0;
        }
        .news-detail-section .article-body ul,
        .news-detail-section .article-body ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .news-detail-section .article-body ul li,
        .news-detail-section .article-body ol li {
            margin-bottom: 0.5rem;
        }
        .news-detail-section .article-body img {
            border-radius: 8px;
            margin: 0 auto;
            width: auto;
            max-width: 100%;
        }

        .news-detail-section .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #f0ece7;
        }
        .news-detail-section .article-footer .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .news-detail-section .article-footer .tags span {
            font-size: 0.75rem;
            color: #999;
            background: #f8f6f3;
            padding: 0.2rem 1rem;
            border-radius: 50px;
        }
        .news-detail-section .article-footer .share {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.875rem;
            color: #999;
        }
        .news-detail-section .article-footer .share a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 50%;
            border: 1px solid #e8e4df;
            color: #999;
            transition: 0.3s ease;
            font-size: 0.875rem;
            text-decoration: none;
        }
        .news-detail-section .article-footer .share a:hover {
            background: #710213;
            color: #fff;
            border-color: #710213;
        }

        /* ---- 相关新闻 ---- */
        .related-news {
            padding: 4rem 0 0;
            border-top: 1px solid #f0ece7;
            margin-top: 3rem;
        }
        .related-news h3 {
            font-size: 1.25rem;
            font-weight: 400;
            color: #222;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }
        .related-news .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .related-news .related-grid .item {
            padding: 1.5rem;
            background: #faf8f6;
            border-radius: 12px;
            transition: 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        .related-news .related-grid .item:hover {
            background: #f8f6f3;
            transform: translateY(-4px);
        }
        .related-news .related-grid .item .date {
            font-size: 0.75rem;
            color: #bbb;
            display: block;
            margin-bottom: 0.4rem;
        }
        .related-news .related-grid .item h4 {
            font-size: 1rem;
            font-weight: 400;
            color: #222;
            line-height: 1.5;
            transition: 0.3s ease;
        }
        .related-news .related-grid .item h4:hover {
            color: #710213;
        }
        .related-news .related-grid .item .tag-sm {
            font-size: .9rem;
            color: #710213;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            background: #ffffff;
            padding: 0.1rem 0.8rem;
            border-radius: 50px;
            margin-top: 0.6rem;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .category-tabs .tab-btn {
                padding: 0.4rem 1.2rem;
                font-size: 0.8125rem;
            }

            .news-detail-section {
                padding: 0 0 3rem;
            }
            .news-detail-section .wrap {
                padding: 0rem;
            }
            .news-detail-section .article-header h1 {
                font-size: 1.5rem;
            }
            .news-detail-section .article-cover {
                height: 14rem;
            }
            .news-detail-section .article-body {
                font-size: 1rem;
            }
            .news-detail-section .article-body h2 {
                font-size: 1.2rem;
            }
            .news-detail-section .article-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .related-news .related-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .related-news .related-grid .item {
                padding: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .category-tabs {
                gap: 0.5rem;
            }
            .category-tabs .tab-btn {
                padding: 0.3rem 1rem;
                font-size: 0.75rem;
            }

            .news-detail-section .article-header h1 {
                font-size: 1.25rem;
            }
            .news-detail-section .article-cover {
                height: 11rem;
            }
            .news-detail-section .article-body {
                font-size: 0.9375rem;
            }
            .news-detail-section .article-body blockquote {
                padding: 1rem 1.2rem;
            }
        }
        
        
            /* ============================================================ */
        /* 产品列表独有样式 */
        /* ============================================================ */
        .products-section {
            padding: 0 0 5rem;
            background: #ffffff;
        }
        .products-section .section-label {
            font-size: 0.75rem;
            letter-spacing: 6px;
            color: #710213;
            text-transform: uppercase;
            display: block;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .products-section h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 4px;
            color: #222;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        /* ---- 产品网格 ---- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .products-grid .product-item {
            cursor: pointer;
            transition: 0.3s ease;
        }
        .products-grid .product-item:hover {
            transform: translateY(-6px);
        }
        .products-grid .product-item .product-img {
            width: 100%;
            aspect-ratio: 1 / 1.4;
            border-radius: 12px;
            overflow: hidden;
            background: #f8f6f3;
        }
        .products-grid .product-item .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s ease;
        }
        .products-grid .product-item:hover .product-img img {
            transform: scale(1.04);
        }
        .products-grid .product-item .product-info {
            padding: 1rem 0.2rem;
        }
        .products-grid .product-item .product-info h4 {
            font-size: 1rem;
            font-weight: 400;
            color: #222;
            margin-bottom: 0.2rem;
        }
        .products-grid .product-item .product-info .brand-tag {
            font-size: .9rem;
            color: #710213;
            letter-spacing: 2px;
        }
        .products-grid .product-item .product-info .price {
            font-size: 0.9375rem;
            color: #999;
            margin-top: 0.3rem;
        }

        /* ---- 分页 ---- */
        .products-pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        .products-pagination .page-btn {
            width: 2.6rem;
            height: 2.6rem;
            border: 1px solid #e8e4df;
            border-radius: 50%;
            background: transparent;
            font-size: 0.9375rem;
            color: #888;
            cursor: pointer;
            transition: 0.3s ease;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .products-pagination .page-btn:hover {
            border-color: #710213;
            color: #710213;
        }
        .products-pagination .page-btn.active {
            background: #710213;
            color: #fff;
            border-color: #710213;
        }
        .products-pagination .page-btn.arrow-btn {
            font-size: 0.8rem;
        }

        /* ============================================================ */
        /* 图片放大预览（相册弹窗） */
        /* ============================================================ */
        .gallery-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.92);
            z-index: 999999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        .gallery-overlay.active {
            display: flex;
            opacity: 1;
            pointer-events: auto !important;
        }
        .gallery-overlay .close-gallery {
            position: absolute;
            top: 2rem;
            right: 3rem;
            font-size: 2.2rem;
            color: #fff;
            cursor: pointer;
            transition: 0.3s ease;
            z-index: 10;
            opacity: 0.6;
        }
        .gallery-overlay .close-gallery:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        .gallery-overlay .gallery-container {
            position: relative;
            width: 90%;
            max-width: 70rem;
            height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .gallery-overlay .gallery-container .gallery-main {
            flex: 1;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .gallery-overlay .gallery-container .gallery-main img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            opacity: 0;
            transform: scale(0.92);
            transition: all 0.35s ease;
        }
        .gallery-overlay .gallery-container .gallery-main img.show {
            opacity: 1;
            transform: scale(1);
        }

        /* 左右箭头 */
        .gallery-overlay .gallery-container .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3.2rem;
            height: 3.2rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }
        .gallery-overlay .gallery-container .nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }
        .gallery-overlay .gallery-container .nav-btn.prev {
            left: -4rem;
        }
        .gallery-overlay .gallery-container .nav-btn.next {
            right: -4rem;
        }

        /* 底部缩略图 */
        .gallery-overlay .thumbnails {
            position: absolute;
            bottom: -5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.6rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            backdrop-filter: blur(8px);
        }
        .gallery-overlay .thumbnails .thumb {
            width: 4rem;
            height: 4rem;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.3s ease;
            opacity: 0.5;
        }
        .gallery-overlay .thumbnails .thumb:hover {
            opacity: 0.8;
        }
        .gallery-overlay .thumbnails .thumb.active {
            border-color: #fff;
            opacity: 1;
        }
        .gallery-overlay .thumbnails .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 底部计数 */
        .gallery-overlay .counter {
            position: absolute;
            bottom: -8.5rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 2px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .category-tabs .tab-btn {
                padding: 0.4rem 1.2rem;
                font-size: 0.8125rem;
            }
            .contact-form .form-group{
    margin-bottom: 1rem;
}
            .contact-form .form-group label{
    display: none;
}
            
            .products-section {
                padding: 0 0 3rem;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            .products-grid .product-item .product-info h4 {
                font-size: 0.875rem;
            }

            .gallery-overlay .gallery-container {
                height: 70vh;
                width: 95%;
            }
            .gallery-overlay .gallery-container .nav-btn.prev {
                left: -2rem;
            }
            .gallery-overlay .gallery-container .nav-btn.next {
                right: -2rem;
            }
            .gallery-overlay .gallery-container .nav-btn {
                width: 2.4rem;
                height: 2.4rem;
                font-size: 0.9rem;
            }
            .gallery-overlay .thumbnails .thumb {
                width: 3rem;
                height: 3rem;
            }
            .gallery-overlay .thumbnails {
                bottom: -4.5rem;
                padding: 0.3rem 0.8rem;
            }
            .gallery-overlay .counter {
                bottom: -7.5rem;
            }
            .gallery-overlay .close-gallery {
                top: 1.2rem;
                right: 1.5rem;
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .category-tabs {
                gap: 0.5rem;
            }
            .category-tabs .tab-btn {
                padding: 0.5rem .3rem;
                font-size: 0.75rem;
            }
            .products-section h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            .products-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .gallery-overlay .gallery-container {
                height: 60vh;
            }
            .gallery-overlay .gallery-container .nav-btn.prev {
                left: -1.2rem;
            }
            .gallery-overlay .gallery-container .nav-btn.next {
                right: -1.2rem;
            }
            .gallery-overlay .gallery-container .nav-btn {
                width: 2rem;
                height: 2rem;
                font-size: 0.7rem;
            }
            .gallery-overlay .thumbnails .thumb {
                width: 2.4rem;
                height: 2.4rem;
            }
            .gallery-overlay .thumbnails {
                bottom: -4rem;
                padding: 0.2rem 0.6rem;
                gap: 0.4rem;
            }
            .gallery-overlay .counter {
                bottom: -6.5rem;
                font-size: 0.75rem;
            }
            .gallery-overlay .close-gallery {
                top: 1rem;
                right: 1.2rem;
                font-size: 1.5rem;
            }
        }
        
        
        
          .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #fff;
            z-index: 2;
            letter-spacing: 1px;
        }
        .product-badge-product {
            background: linear-gradient(135deg, #992036, #710213);
        }
        .product-badge-news {
            background: linear-gradient(135deg, #c49a6c, #a87b52);
        }

        .product-type .product-img {
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }
        .product-type .product-img::after {
            content: '🔍 点击查看相册';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            text-align: center;
            font-size: 13px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            letter-spacing: 2px;
        }
        .product-type .product-img:hover::after {
            transform: translateY(0);
        }

        .news-type {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .news-type:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .news-type .product-img {
            position: relative;
            overflow: hidden;
        }
        .news-type .product-img img {
            transition: transform 0.5s ease;
        }
        .news-type:hover .product-img img {
            transform: scale(1.05);
        }
        
        
         ul.pagination {
                        display: inline-block;
                        padding: 0;
                        margin: 0;
                    }
                    ul.pagination li {display: inline;float:left;}
                    ul.pagination li a {
                        color: black;
                        float: left;
                        padding: 8px 16px;
                        text-decoration: none;
                        transition: background-color .3s;
                        border: 1px solid #ddd;
                        margin: 0 4px;
                    }
                    ul.pagination li span {
                        color: #fff;
                        float: left;
                        padding: 8px 16px;
                        text-decoration: none;
                        transition: background-color .3s;
                        border: 1px solid #ddd;
                        margin: 0 4px;
                        background-color: #710213;
                    }
                    ul.pagination li a.active {
                        background-color: #710213;
                        color: white;
                        border: 1px solid #4CAF50;
                    }
                    ul.pagination li a:hover:not(.active) {background-color: #710213;color:#fff}