@charset "utf-8";
/* CSS Document */

.jiaju-1{ color:#fff;}
.jiaju-1 strong{ color:#FFB137;}
.jiaju-2{ color:#BCB8B7;}
.jiaju-3{ color:#BCB8B7; font-style:italic;}
.jiaju-4{ color:#E5DBD4;}

        /* 外部大卡片容器 */
        .scent-flow-card {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        /* 整体卡片 Hover 效果：轻微浮起和阴影 */
        .scent-flow-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }

        /* 图片容器（用于限制放大范围） */
        .scent-img-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding-top: 100%; /* 1:1 正方形比例 */
        }

        /* 核心图片样式 */
        .scent-card-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* 图片 Hover 放大效果 */
        .scent-flow-card:hover .scent-card-img {
            transform: scale(1.08);
        }

        /* 内容文本区域 */
        .scent-content-box {
            padding: 24px 20px 0px;
        }

        /* 痛点区域 */
        .scent-pain-block {
            margin-bottom: 0px;
        }

        /* 痛点标题 */
        .scent-pain-title {
            font-size: 16px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 8px;
            display: flex;
            font-family: auto;
            align-items: center;
        }

        /* 痛点图标 (橙色叉) */
        .scent-pain-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid #f0a020;
            border-radius: 50%;
            position: relative;
            margin-right: 8px;
            flex-shrink: 0;
        }
        .scent-pain-icon::before,
        .scent-pain-icon::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 2px;
            background-color: #f0a020;
            top: 6px;
            left: 2px;
        }
        .scent-pain-icon::before { transform: rotate(45deg); }
        .scent-pain-icon::after { transform: rotate(-45deg); }

        /* 痛点描述 */
        .scent-pain-desc {
            font-size: 15px;
            color: #666666;
            line-height: 1.4;
            padding-left: 26px;
            min-height: 44px; /* 保持对齐高度 */
        }

        /* 箭头连接线 */
        .scent-arrow-divider {
            text-align: left;
            padding-left: 26px;
            margin-bottom: 10px;
            color: #EEEAE9;
            font-size: 40px;
            line-height: 1;
        }

        /* 解决方案区域 */
        .scent-solution-block {
            border-top: 1px dashed #ededed;
            padding-top: 20px;
        }

        /* 解决方案标题 */
        .scent-sol-title {
            font-size: 16px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            font-family: auto;
        }

        /* 解决方案图标 (绿色勾) */
        .scent-sol-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid #059669;
            border-radius: 50%;
            position: relative;
            margin-right: 8px;
            flex-shrink: 0;
        }
        .scent-sol-icon::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 9px;
            border: solid #108ee9;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            top: 1px;
            left: 5px;
        }

        /* 解决方案描述 */
        .scent-sol-desc {

            font-size: 14.5px;
            color: #333333;
            line-height: 1.4;
            padding-left: 26px;
            min-height: 66px; /* 保持对齐高度 */
        }

        /* ==========================================================================
           留空样式槽（响应您的需求：空的样式名也要写在style里）
           ========================================================================== */
        .scent-custom-placeholder-one {
            /* 预留槽1：可用于后期添加特殊动画或边框 */
        }

        .scent-custom-placeholder-two {
            /* 预留槽2：可用于后期调整特定屏幕下的间距 */
        }
		.scent-custom-placeholder-two .col{    padding-right: 5px;
    padding-left: 5px;
}


        .bundle-grid-container {
        }

        .bundle-card-item {
            background: #ffffff;
            border: 1px solid #eaeaea;
            border-radius: 0px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.3s ease;
        }

        .bundle-card-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }

        .bundle-image-box {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding-top: 100%; /* 1:1 Aspect Ratio like the original image layout */
        }

        .bundle-card-media {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Image hover zoom effect */
        .bundle-card-item:hover .bundle-card-media {
            transform: scale(1.06);
        }

        .bundle-details-box {
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .bundle-main-title {
            font-size: 20px;
            font-weight: 600;
            color: #222222;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .bundle-meta-group {
            margin-bottom: 18px;
        }

        .bundle-meta-label {
            font-size: 16px;
            /* text-transform: uppercase; */
            color: #707276;
            margin-bottom: 6px;
            font-weight: 500;
            /* letter-spacing: 0.5px; */
        }

        .bundle-meta-text {
            /* font-size: 13.5px; */
            color: #221F1E;
            line-height: 1.5;
            margin-bottom: 0;
        }

        .bundle-tag-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 4px;
        }

        .bundle-scent-tag {
            font-size: 15px;
            color: #221F1E;
            background-color: #EEEAE9;
            padding: 4px 12px;
            border-radius: 12px;
            display: inline-block;
        }

        .bundle-divider-line {
            border-top: 1px solid #eeeeee;
            margin-top: auto;
            margin-bottom: 15px;
        }

        .bundle-moq-info {
            /* font-size: 14px; */
            color: #707276;
            margin-bottom: 8px;
        }

        .bundle-moq-highlight {
            font-weight: 700;
            color: #222;
        }

        .bundle-price-text {
            /* font-size: 15px; */
            color: #D6A354;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .bundle-price-sub {
            /* font-size: 13px; */
            color: #D6A354;
            font-weight: normal;
        }

        /* Button default and hover actions */
        .bundle-action-btn {
            background-color: #ffb03a;
            /* color: #ffffff; */
            border: none;
            border-radius: 4px;
            padding: 12px 20px;
            font-size: 18px;
            /* font-weight: 500; */
            width: 100%;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .bundle-action-btn:hover {
            transform: translateY(-3px);
            background-color: #d9a95d;
            text-decoration: none;
        }

        .bundle-footer-banner {
            text-align: center;
            margin-top: 20px;
        }

        .bundle-footer-link {
            font-size: 15px;
            color: #c9933b;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid #c9933b;
            padding-bottom: 2px;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .bundle-footer-link:hover {
            color: #a37224;
            border-color: #a37224;
            text-decoration: none;
        }

        /* Required Placeholder Styles (Empty styles as requested) */
        .bundle-empty-placeholder-one {
            /* Reserved for future top layout adjustment */
        }
        
        .bundle-empty-placeholder-two {
            /* Reserved for custom column behavior */
        }
        
        .bundle-empty-placeholder-three {
            /* Reserved for image filters or overlays */
        }
		.jiajuxiangxun-5{border-left:5px solid #D5A354;background-color:#F9F5F2;padding: 25px 30px 25px 40px;}
		.jiajuxiangxun-6{ color:#221F1E; font-size:20px; font-weight:bold;}
		.jiajuxiangxun-5 p{ color:#707276; margin-bottom:0px;}
		.jiajuxiangxun-7{ padding:20px;}
		.jiajuxiangxun-8{}
		.jiajuxiangxun-8 li{
    list-style: disc;
    margin-bottom: 20px !important;
}
		        /* 外层容器控制宽度 */
        .custom-tbl-container {
            /* max-width: 1140px; */
            /* margin: 0 auto; */
        }

        /* 自定义表格核心样式 */
        .custom-tbl-main {
            background-color: #ffffff;
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 0;
        }

        /* 表头背景色与文字样式 */
        .custom-tbl-thead {
            background-color: #231f20; /* 贴合原图的深黑色调 */
        }

        /* 表头单元格 */
        .custom-tbl-th {
            font-size: 16px;
            font-weight: 400;
            padding: 22px 30px !important;
            border: none !important;
            letter-spacing: 0.3px;
            color: #E5DBD4 !important;
        }

        /* 表体行 */
        .custom-tbl-tr {
            transition: background-color 0.25s ease;
            border-bottom: 1px solid #ededed;
        }

        /* 表格行悬停高亮交互效果 */
        .custom-tbl-tr:hover {
          
        }

        /* 表格普通单元格 */
        .custom-tbl-td {
            padding: 24px 30px !important;
            vertical-align: middle !important;
            border: none !important;
            /* font-size: 14.5px; */
            color: #333333;
            line-height: 1.5;
        }

        /* 第一列加粗加黑 */
        .custom-tbl-td-type {
            font-weight: 700;
            color: #111111;
            width: 25%;
        }

        /* 第二列选项描述 */
        .custom-tbl-td-options {
            color: #555555;
            width: 50%;
        }

        /* 第三列起订量特别样式 */
        .custom-tbl-td-moq {
            color: #bfa16f; /* 原图的金色字体 */
            font-weight: 600;
            width: 25%;
        }

        /* 原图打勾符号微调 */
        .custom-tbl-check-symbol {
            font-weight: normal;
            margin-right: 4px;
            font-family: sans-serif;
        }

        /* 底部链接容器 */
        .custom-tbl-footer-box {
            text-align: center;
            margin-top: 45px;
        }

        /* 底部行动引导交互链接 */
        .custom-tbl-cta-link {
            font-size: 18px;
            color: #b58d4c;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid #b58d4c;
            padding-bottom: 4px;
            display: inline-block;
            transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        /* 链接悬停：实现轻微上移及颜色变成目标色 #d9a95d */
        .custom-tbl-cta-link:hover {
            transform: translateY(-3px);
            color: #d9a95d;
            border-color: #d9a95d;
            text-decoration: none;
        }


 /* 限制整体页面宽度 */
        .brand-case-flow-container {
       
        }

        /* 单个独立案例研究大外盒 */
        .brand-case-flow-card {
            background: #ffffff;
            border: 1px solid #eaeaea;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            margin-bottom: 50px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        /* 大外盒悬停时微弱阴影增强 */
        .brand-case-flow-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        /* 图片限定视口（防止放大时溢出） */
        .brand-case-flow-img-box {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
            min-height: 520px; /* 确保与右侧多文字内容对齐高度 */
        }

        /* 案例背景大图 */
        .brand-case-flow-media {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* 核心需求：图片悬停无损放大效果 */
        .brand-case-flow-card:hover .brand-case-flow-media {
            transform: scale(1.06);
        }

        /* 压在图片左下角的黄色 Case Study 艺术字 */
        .brand-case-flow-img-badge {
            position: absolute;
            bottom: 25px;
            left: 25px;
            font-size: 20px;
            color: #FFB137; /* 贴合原图的暗浅金黄色 */
            font-weight: 500;
            z-index: 5;
        }

        /* 右侧/左侧 整个大文字处理区域盒 */
        .brand-case-flow-text-side {
            padding: 40px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            height: 100%;
            flex-wrap: nowrap;
        }

        /* 页面主体大标题 */
        .brand-case-flow-main-title {
            font-size: 24px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 22px;
        }

        /* 每一个大类元数据块（如BACKGROUND等） */
        .brand-case-flow-meta-block {
            margin-bottom: 16px;
        }

        /* 小标题标签样式 */
        .brand-case-flow-label {
            /* font-size: 11px; */
            font-weight: 700;
            color: #707276;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 4px;
        }

        /* 正文段落描述 */
        .brand-case-flow-desc {
            font-size: 15px;
            color: #444444;
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* 解决方案无序列表 */
        .brand-case-flow-ul {
            padding-left: 15px;
            margin-bottom: 0;
        }

        /* 解决方案列表项 */
        .brand-case-flow-li {
            font-size: 15px;
            color: #222;
            line-height: 1.5;
            margin-bottom: 5px;
            list-style: disc;
        }

        /* 核心特色：严格按照原图内嵌于下方的独立浅色底 RESULT 面板 */
        .brand-case-flow-result-panel {
            background-color: #F9F5F2; /* 极淡的米灰色底包 */
            border-radius: 20px;
            padding: 24px;
            margin-top: 25px;
        }

        /* 结果小标签 */
        .brand-case-flow-result-label {
            /* font-size: 11px; */
            font-weight: 700;
            color: #707276;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 0.8px;
        }

        /* 结果列表容器（去除默认圆点，用对勾代替） */
        .brand-case-flow-result-ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        /* 带对勾的结果列 */
        .brand-case-flow-result-li {
            /* font-size: 13px; */
            color: #221F1E;
            line-height: 1.1;
            margin-bottom: 15px;
            position: relative;
            padding-left: 16px;
            font-weight: 500;
        }

        /* 使用纯文本勾复刻 */
        .brand-case-flow-result-li::before {
            content: "√";
            position: absolute;
            left: 0;
            top: 0;
            color: #333333;
            font-size: 12px;
            font-weight: bold;
        }

        /* 用户评价包裹盒 */
        .brand-case-flow-quote-box {
            border-top: 1px solid #e8e6e1;
            padding-top: 15px;
        }

        /* 气泡对话小图标 */
        .brand-case-flow-quote-icon {
            font-size: 16px;
            color: #999999;
            line-height: 1;
            margin-bottom: 4px;
            float: left;
            margin-right: 5px;
        }

        /* 评价正文 */
        .brand-case-flow-quote-text {
            /* font-size: 12px; */
            color: #707276;
            font-style: italic;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        /* 署名部分 */
        .brand-case-flow-quote-author {
            /* font-size: 12px; */
            color: #333333;
            font-weight: 600;
            margin-bottom: 0;
        }

        /* 底部橙黄色动作超链接线 */
        .brand-case-flow-cta-link {
            font-size: 13.5px;
            color: #d19f4d;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid #d19f4d;
            padding-bottom: 2px;
            display: inline-block;
            margin-top: 25px;
            transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        /* 悬停微移效果 */
        .brand-case-flow-cta-link:hover {
            transform: translateY(-2px);
            color: #b08137;
            border-color: #b08137;
            text-decoration: none;
        }

        /* ==========================================================================
           空样式名预留槽（完全符合要求：空的样式名写在 style 里）
           ========================================================================== */
     .brand-case-flow-top-info{ width:50%; display:inline-block;}
		.brand-case-flow-result-panel{width:46%;display:inline-block;/* border-radius: 20px; */}
		.brand-case-flow-bottom-link{ margin-top:60px;}
		.jiajuxiangxun9 .jiudian20 {
    margin-bottom: 60px;
    font-size: 50px;
}
		   /* 表格容器样式 */
        .supplier-table-container {
            /* background-color: #ffffff; */
            /* border-radius: 4px; */
            /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); */
            /* padding: 20px; */
            /* margin-bottom: 30px; */
        }

        /* 核心表格样式自适应与重置 */
        .supplier-custom-table {
            width: 100%;
            margin-bottom: 0;
            color: #212529;
            border-collapse: collapse;
        }

        /* 表头样式 - 深色现代感 */
        .supplier-custom-table thead.supplier-table-header th.supplier-header-cell {
            background-color: #2a2625;
            color: #E5DBD4;
            font-weight: 500;
            /* font-size: 15px; */
            padding: 18px 24px;
            border: none;
            vertical-align: middle;
        }

        /* 统一单元格内边距与边框 */
        .supplier-custom-table tbody.supplier-table-body td.supplier-body-cell {
            padding: 20px 24px;
            vertical-align: middle;
            border-top: 1px solid #f0eded;
            border-bottom: 1px solid #f0eded;
            /* font-size: 14px; */
            transition: background-color 0.2s ease;
        }

        /* 关键要素列（第一列）加粗文本 */
        .supplier-body-cell.supplier-factor-name {
            font-weight: 700;
            color: #212529;
            width: 25%;
        }

        /* MOQ优势列（第二列）金色/橙色文本 */
        .supplier-body-cell.supplier-moq-advantage {
            color: #D5A354;
            font-weight: 500;
            width: 45%;
        }

        /* 典型供应商列（第三列）普通灰色文本 */
        .supplier-body-cell.supplier-typical-info {
            color: #666666;
            width: 30%;
        }

        /* 悬停整行效果 - 触感敏锐的淡灰色底色切换 */
        .supplier-table-body tr.supplier-table-row:hover td.supplier-body-cell {
            background-color: #f9f8f6;
        }

        /* 针对对勾符号的前缀样式 */
        .supplier-check-icon {
            margin-right: 4px;
            font-weight: bold;
        }

        /* 预留空白样式类 - 供用户未来扩展或按需追加 */
        .supplier-extra-empty-style {
            /* 预留样式占位 */
        }
        
        .supplier-responsive-wrapper {
            /* 响应式外层预留样式 */
        }
		
        /* 卡片容器外层间距 */
        .service-grid-section {
            margin-bottom: 40px;
        }

        /* 单个卡片整体样式 */
        .service-feature-card {
            border: 2px solid #EBDFD7;
            /* border-radius: 12px; */
            overflow: hidden;
            background-color: #ffffff;
            height: 100%;
            display: block;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            /* margin-bottom: 30px; */
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* 鼠标悬停卡片整体微动与阴影增强 */
        .service-feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }

        /* 图片缩放容器 */
        .service-card-image-wrap {
            width: 100%;
            /* height: 280px; */
            overflow: hidden;
            position: relative;
            background-color: #f7f7f7;
        }

        /* 基础图片样式 */
        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* 核心要求：图片悬停放大效果 */
        .service-feature-card:hover .service-card-img {
            transform: scale(1.08);
        }

        /* 卡片文字内容区域 */
        .service-card-content {
            padding: 28px 24px;
        }

        /* 卡片主标题样式 */
        .service-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #221F1E;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        /* 卡片列表容器 */
        .service-card-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        /* 列表子项样式 */
        .service-card-list-item {
            /* font-size: 16px; */
            color: #707276;
            line-height: 1.6;
            margin-bottom: 12px;
            position: relative;
            padding-left: 18px;
        }

        /* 最后一项去掉下边距 */
        .service-card-list-item:last-child {
            margin-bottom: 0;
        }

        /* 列表金色/棕色小圆点前缀 */
        .service-card-list-item::before {
            content: "•";
            color: #d1a153;
            font-size: 28px;
            position: absolute;
            left: 0;
            top: -10px;
        }

        /* 底部链接容器 */
        .service-footer-action-wrap {
            text-align: center;
            margin-top: 30px;
            padding: 20px 0;
        }

        /* 底部行动召唤按钮/链接 */
        .service-footer-cta-link {
            color: #c98e3d;
            font-size: 16px;
            font-weight: 600;
            text-decoration: underline;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
        }

        /* 底部链接悬停变色 */
        .service-footer-cta-link:hover {
            color: #a8722a;
            text-decoration: underline;
        }
        
        /* 占位空样式名，防遗漏 */
        .service-empty-placeholder-style {
            /* 预留样式 */
        }
		.service-grid-col{ margin-bottom:30px;}
		  /* 顶部六个卡片的包装容器样式 */
        .cert-grid-section {
            padding-top: 20px;
            padding-bottom: 60px;
        }

        /* 白底卡片通用基础样式 */
        .cert-card-item {
            background-color: #ffffff;
            border: none;
            border-radius: 0px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease-in-out;
        }

        /* 卡片 Hover 互动效果：向上浮动并加深阴影 */
        .cert-card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        /* 模拟图标的外层样式占位 */
        .cert-icon-wrapper {
            margin-bottom: 25px;
            display: inline-block;
        }

        /* 模拟图片中的金色虚线/线条效果图标 */
        .cert-icon-placeholder {
            width: 42px;
            height: 42px;
            /* border: 1px dashed #d4af37; */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cert-icon-placeholder::before {
            content: "";
            /* width: 16px; */
            /* height: 16px; */
            /* border: 2px solid #d4af37; */
            /* border-radius: 3px; */
        }

        /* 卡片主标题 */
        .cert-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        /* 卡片描述文字容器 */
        .cert-card-desc-box {
            /* font-size: 0.9rem; */
            color: #666666;
            line-height: 1.5;
        }

        /* 卡片内单行文字段落 */
        .cert-card-text-line {
            margin-bottom: 4px;
        }
        .cert-card-text-line:last-child {
            margin-bottom: 0;
        }

        /* 底部两栏大区块容器 */
        .cert-bottom-section {
            padding-top: 20px;
            padding-bottom: 60px;
        }

        /* 左侧黑色 MSDS 区块 */
        .cert-dark-panel {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 45px 40px;
            height: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .cert-dark-panel:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* 左侧黑色区块主标题 */
        .cert-dark-panel-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            color: #fff;
        }

        /* 右侧白色质量保证区块 */
        .cert-light-panel {
            background-color: #ffffff;
            color: #333333;
            border: 1px solid #eeeeee;
            padding: 45px 40px;
            height: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }
        .cert-light-panel:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        /* 右侧白色区块主标题 */
        .cert-light-panel-title {
            font-size: 20px;
            font-weight: 700;
            color: #222;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        /* 底部列表公共容器 */
        .cert-panel-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        /* 底部列表单项样式 */
        .cert-panel-list-item {
            /* font-size: 0.92rem; */
            margin-bottom: 16px;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
        }
        .cert-panel-list-item:last-child {
            margin-bottom: 0;
        }

        /* 列表中的钩号(√)样式占位 */
        .cert-list-checkmark {
            margin-right: 8px;
            font-weight: bold;
        }
        .cert-dark-panel .cert-list-checkmark {
            color: #ffffff;
        }
        .cert-light-panel .cert-list-checkmark {
            color: #333333;
        }

        /* 列表文本内容容器 */

        .cert-list-text-content {
            flex: 1;
        }

        /* 底部下载链接区域 */
        .cert-download-wrapper {
            text-align: center;
            /* padding-bottom: 60px; */
        }

        /* 下载链接 A 标签样式与 Hover 动效 */
        .cert-download-link {
            color: #d4af37;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.2s ease-in-out;
        }
        .cert-download-link:hover {
            color: #b8952e;
            text-decoration: none;
            border-bottom: 1px solid #b8952e;
        }
		 /* 响应式表格外层包装容器 */
        .esg-table-responsive-container {
            border: none;
            margin-bottom: 20px;
        }

        /* 自定义表格主体样式 */
        .esg-table-main {
            width: 100%;
            margin-bottom: 0;
            border-collapse: collapse;
        }

        /* 表头深色背景区域 */
        .esg-table-header-row {
            background-color: #231f20;
        }

        /* 表头单元格样式 */
        .esg-table-header-cell {
            color: #E5DBD4 !important;!i;!;
            font-size: 1rem;
            font-weight: 400;
            padding: 22px 30px !important;!i;!;
            border: none !important;
            letter-spacing: 0.5px;
        }

        /* 表格数据行基础样式与过渡动效 */
        .esg-table-body-row {
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s ease-in-out;
        }

        /* 最后一行的底边框淡化或隐藏 */
        .esg-table-body-row:last-child {
            border-bottom: 1px solid #e0e0e0;
        }

        /* 鼠标悬停（Hover）整行高亮效果 */
        .esg-table-body-row:hover {
            background-color: #fcfbfa;
        }

        /* 数据行普通单元格通用样式 */
        .esg-table-body-cell {
            padding: 26px 30px;
            vertical-align: middle !important;
            border: none !important;
            /* font-size: 0.95rem; */
            color: #333333;
        }

        /* 第一列（Goal）加粗样式 */
        .esg-table-cell-goal {
            font-weight: 700;
            /* color: #111111; */
        }

        /* 第二列（Target）特定样式 */
        .esg-table-cell-target {
            font-weight: 400;
            color: #444444;
        }

        /* 第三列（MOQ / 当前状态）金色文字样式 */
        .esg-table-cell-moq {
            font-weight: 600;
            color: #D5A354;
        }

        /* 模拟图片中的对勾符号样式 */
        .esg-table-checkmark {
            margin-right: 4px;
            font-family: sans-serif;
            font-weight: bold;
        }
		        /* 核心包装容器样式 */
        .sus-opt-wrapper-section {
            padding-top: 30px;
            /* padding-bottom: 80px; */
            text-align: center;
        }

        /* 网页大标题样式 */
        .sus-opt-main-title {
            font-family: "Georgia", serif;
            font-size: 2.8rem;
            font-weight: 500;
            color: #231f20;
            margin-bottom: 50px;
        }

        /* 按钮/标签行的弹性流式容器 */
        .sus-opt-tags-row-first,
        .sus-opt-tags-row-second {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .sus-opt-tags-row-first {
            margin-bottom: 20px;
        }

        .sus-opt-tags-row-second {
            margin-bottom: 50px;
        }

        /* 胶囊椭圆形标签的基础样式 */
        .sus-opt-capsule-item {
            /* background-color: #fcfbfa; */
            border: 1px solid #d4af37;
            border-radius: 50px;
            padding: 14px 35px;
            color: #222222;
            font-size: 20px;
            font-weight: 500;
            display: inline-block;
            text-decoration: none !important;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            min-width: 200px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }

        /* 标签 Hover 交互效果：边框加深、背景微变、轻微放大 */
        .sus-opt-capsule-item:hover {
            background-color: #ffffff;
            border-color: #b8952e;
            color: #b8952e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
        }

        /* 中间提示注释小字样式 */
        .sus-opt-notice-text {
            /* font-size: 0.92rem; */
            color: #555555;
            margin-bottom: 50px;
            letter-spacing: 0.2px;
        }

        /* 底部链接整体组合容器 */
        .sus-opt-links-group {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* 底部双链接公共样式 */
        .sus-opt-action-link {
            color: #d4af37;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid #d4af37;
            transition: all 0.2s ease-in-out;
            padding-bottom: 2px;
        }

        /* 底部链接 Hover 效果 */
        .sus-opt-action-link:hover {
            color: #b8952e;
            text-decoration: none;
            border-bottom-color: #b8952e;
        }

        /* 链接中间的分隔竖线样式 */
        .sus-opt-link-divider {
            color: #d4af37;
            font-size: 1.1rem;
            font-weight: 400;
            user-select: none;
        }

        /* 移动端响应式屏幕微调 */
        @media (max-width: 768px) {
            .sus-opt-main-title {
                font-size: 2rem;
                margin-bottom: 35px;
            }
            .sus-opt-capsule-item {
                width: 100%;
                max-width: 320px;
                padding: 12px 25px;
            }
            .sus-opt-tags-row-first,
            .sus-opt-tags-row-second {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-bottom: 15px;
            }
            .sus-opt-tags-row-second {
                margin-bottom: 40px;
            }
            .sus-opt-link-divider {
                display: none; /* 移动端将竖线隐藏，让两个链接分行流式排列 */
            }
            .sus-opt-links-group {
                flex-direction: column;
                gap: 15px;
            }
        }
		 /* 留资核心区域外层包装容器 */
        .lead-form-outer-section {
           
        }

        /* 左侧表单区域容器 */
        .lead-form-left-block {
            padding-right: 15px;
        }

        /* 表单中的输入行包装类 */
        .lead-form-input-row {
            margin-bottom: 16px;
        }

        /* 输入框、下拉选择框的基础公用样式 */
        .lead-form-control-input,
        .lead-form-control-select {
            width: 100%;
            height: 54px;
            background-color: #ffffff;
            border: none;
            border-radius: 0px;
            padding: 10px 20px;
            font-size: 18px;
            color: #555;
            box-shadow: none;
            outline: none;
            transition: all 0.2s ease-in-out;
        }

        /* 输入框获得焦点（Focus）时的精细样式 */
        .lead-form-control-input:focus,
        .lead-form-control-select:focus {
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        /* 自定义下拉选择框的箭头样式与外观 */
        .lead-form-control-select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23d4af37'><path d='M7 10l5 5 5-5z'/></svg>");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 16px;
        }

        /* 星号标红的通用样式 */
        .lead-form-asterisk-mark {
            color: #ff6b6b;
            margin-left: 2px;
        }

        /* 留言大文本域包装器 */
        .lead-form-textarea-wrapper {
            background-color: #ffffff;
            padding: 18px 20px;
            margin-bottom: 24px;
            min-height: 120px;
        }

        /* 留言文本域的主标题提示语 */
        .lead-form-textarea-label {
            font-size: 18px;
            color: #777777;
            margin-bottom: 6px;
            display: block;
        }

        /* 留言文本域本身输入区域 */
        .lead-form-control-textarea {
            width: 100%;
            border: none;
            resize: none;
            outline: none;
            /* font-size: 0.95rem; */
            color: #333333;
            background-color: transparent;
            padding: 0;
        }

        /* 橙色提交按钮的基础样式 */
        .lead-form-submit-btn {
            width: 100%;
            height: 56px;
            background-color: #ffb33e;
            color: #231f20;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 0px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(255, 179, 62, 0.15);
        }

        /* 按钮悬停（Hover）效果：上移且背景色变为 #d9a95d，文字颜色保持不变 */
        .lead-form-submit-btn:hover {
            background-color: #d9a95d;
            color: #231f20;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(217, 169, 93, 0.3);
        }

        /* 表单最下方的安全承诺提示语声明 */
        .lead-form-secure-notice {
            /* font-size: 0.82rem; */
            color: #666666;
            margin-top: 14px;
            line-height: 1.4;
        }

        /* 声明文字中的钩号（√） */
        .lead-form-secure-icon {
            font-weight: bold;
            margin-right: 2px;
        }

        /* 右侧文案整体包装容器 */
        .lead-form-right-block {
            padding-left: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* 右侧主标题样式 */
        .lead-form-main-heading {
            /* font-family: "Georgia", serif; */
            font-size: 36px;
            font-weight: 600;
            color: #231f20;
            line-height: 1.25;
            margin-bottom: 20px;
        }

        /* 右侧副标题/描述文字 */
        .lead-form-sub-paragraph {
            /* font-size: 0.95rem; */
            color: #555555;
            line-height: 1.5;
            margin-bottom: 40px;
        }

        /* 右侧卡片单行辅助描述 */
        .lead-form-desc-line {
            margin-bottom: 4px;
        }
        .lead-form-desc-line:last-child {
            margin-bottom: 0;
        }

        /* 右侧限时特惠高亮卡片框 */
        .lead-form-promo-card {
            background-color: #F8F1EC;
            border: 1px solid #F4E6DC;
            border-radius: 16px;
            padding: 30px;
        }

        /* 卡片顶部的 Limited 小标签提示语 */
        .lead-form-promo-badge {
            /* font-size: 0.88rem; */
            color: #777777;
            margin-bottom: 12px;
            display: block;
        }

        /* 卡片正中限时金色加粗高亮促销文本 */
        .lead-form-promo-highlight-text {
            /* font-size: 0.95rem; */
            font-weight: 700;
            color: #D5A354;
            line-height: 1.5;
            margin-bottom: 16px;
            display: block;
        }

        /* 卡片底部的剩余库存限量提醒文字 */
        .lead-form-promo-stock-text {
            /* font-size: 0.9rem; */
            color: #222;
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* 移动端响应式屏幕自适应断点优化调整 */
        @media (max-width: 991px) {
            .lead-form-right-block {
                padding-left: 15px;
                margin-top: 50px;
            }
            .lead-form-main-heading {
                font-size: 1.9rem;
            }
        }
		 /* 整个组件区块的外层包装器 */
        .foot-action-outer-wrap {
            /* padding-top: 80px; */
            /* padding-bottom: 80px; */
        }

        /* 三个白色卡片的基础样式 */
        .foot-action-card-box {
            background-color: #ffffff;
            border: 2px solid #EBDFD7;
            border-radius: 0px;
            padding: 45px 35px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        /* 卡片整体的 Hover 微动效：轻微上移与阴影加深 */
        .foot-action-card-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(35, 31, 32, 0.08);
            border-color: #d4af37;
        }

        /* 图标区域的外包装层 */
        .foot-action-icon-container {
            margin-bottom: 25px;
            display: inline-block;
        }

        /* 模拟图片中的虚线金色框图标样式 */
        .foot-action-icon-mock {
            width: 36px;
            height: 36px;
            border: 1px dashed #d4af37;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        /* 用内部精细线条模拟抽象小图标 */
        .foot-action-icon-mock::after {
            content: "";
            width: 14px;
            height: 14px;
            border: 2px solid #d4af37;
            transform: rotate(45deg);
        }

        /* 卡片主标题样式 */
        .foot-action-main-title {
            /* font-family: "Georgia", serif; */
            font-size: 20px;
            font-weight: 600;
            color: #231f20;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        /* 卡片内部长白段落描述文案容器 */
        .foot-action-desc-paragraph {
            /* font-size: 0.92rem; */
            color: #666666;
            line-height: 1.55;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        /* 核心橙色交互按钮基础样式 */
        .foot-action-orange-btn {
            width: 100%;
            height: 48px;
            background-color: #ffb33e;
            color: #231f20 !important;
            /* font-size: 0.95rem; */
            font-weight: 500;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
        }

        /* 核心橙色按钮 Hover 动效：上移且背景色变为 #d9a95d，字体颜色保持不变 */
        .foot-action-orange-btn:hover {
            background-color: #d9a95d;
            color: #231f20;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(217, 169, 93, 0.3);
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		