/* ========== Related Products 区域 ========== */
.inner-page.product-page {
    padding: 60px 0 80px;
    background: #f7f5f2;
}

/* 标题样式 */
.productList > h2.cdxvdss {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 1px;
}

.productList > h2.cdxvdss::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #c8956c;
    margin: 14px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.productList > h2.cdxvdss:hover::after {
    width: 80px;
}

/* 列表容器 - 每行4个，居中 */
.productList > ul.grid-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1630px;
    margin-left: auto;
    margin-right: auto;
}

/* 每个产品项 - 固定宽度确保一行4个 */
.productList > ul.grid-box > li.column {
    width: calc((100% - 72px) / 4);
    min-width: 240px;
    max-width: 280px;
    margin: 0;
    padding: 0;
}

/* 产品卡片 */
.productList .box2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.productList .box2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* 图片容器 */
.productList .box2 a.img {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 正方形 */
    overflow: hidden;
    background: #eee;
}

.productList .box2 a.img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.45s ease, transform 0.5s ease;
}

/* 默认显示第一张，隐藏第二张 */
.productList .box2 a.img img.acc1 {
    opacity: 1;
    transform: scale(1);
}

.productList .box2 a.img img.acc2 {
    opacity: 0;
    transform: scale(1.06);
}

/* 悬停切换：隐藏第一张，显示第二张 */
.productList .box2:hover a.img img.acc1 {
    opacity: 0;
    transform: scale(1.06);
}

.productList .box2:hover a.img img.acc2 {
    opacity: 1;
    transform: scale(1);
}

/* 产品标题 */
.productList .box2 h5 {
    margin: 16px 16px 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.productList .box2 h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.productList .box2 h5 a:hover {
    color: #c8956c;
}

/* 产品描述文字 */
.productList .box2 .text {
    margin: 0 16px 18px;
    font-size: 14px;
    line-height: 2;
    color: #888;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

/* ========== 响应式适配 ========== */

/* 平板：每行3个 */
@media (max-width: 1024px) {
    .productList > ul.grid-box > li.column {
        width: calc((100% - 48px) / 3);
        max-width: none;
    }
}

/* 小平板：每行2个 */
@media (max-width: 768px) {
    .inner-page.product-page {
        padding: 40px 0 60px;
    }

    .productList > h2.cdxvdss {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .productList > ul.grid-box {
        gap: 18px;
    }

    .productList > ul.grid-box > li.column {
        width: calc((100% - 18px) / 2);
    }
}

/* 手机：每行2个，间距更小 */
@media (max-width: 480px) {
    .productList > ul.grid-box {
        gap: 12px;
        padding: 0 12px;
    }

    .productList > ul.grid-box > li.column {
        width: calc((100% - 12px) / 2);
    }

    .productList .box2 h5 {
        font-size: 13px;
        margin: 12px 12px 6px;
    }

    .productList .box2 .text {
        margin: 0 12px 14px;
        font-size: 12px;
    }

    .productList .box2 {
        border-radius: 8px;
    }
}

.productList ul li .box2 a.img {
   margin: 0px 0 0 0!important;
  }


/* ========== 内容矩阵区域 ========== */
.content-matrix {
    padding: 60px 0;
    background: #f7f5f2;
}

.content-matrix .main-content-column {
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 内容主体 ========== */
.tag-hero-section {
    background: #fff;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

/* ========== h4 重点突出 ========== */
.tag-hero-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 36px 0 16px;
    padding-left: 16px;
    border-left: 4px solid #c8956c;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* 第一个 h4 顶部不留大间距 */
.tag-hero-section h4:first-child {
    margin-top: 0;
}

/* ========== p 段落 ========== */
.tag-hero-section p {
    margin: 0 0 18px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.tag-hero-section p:last-child {
    margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .content-matrix {
        padding: 36px 0;
    }

    .tag-hero-section {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .tag-hero-section h4 {
        font-size: 18px;
        margin: 28px 0 12px;
        padding-left: 14px;
        border-left-width: 3px;
    }

    .tag-hero-section p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .tag-hero-section {
        padding: 24px 18px;
    }

    .tag-hero-section h4 {
        font-size: 16px;
        margin: 24px 0 10px;
        padding-left: 12px;
    }
}



/* ========== 内容矩阵区域（差异化样式） ========== */
.content-matrix {
    padding: 0 0 60px;
    background: #f7f5f2;
    position: relative;
}

.content-matrix .main-content-column {
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 编辑器模块 ========== */
.editor-module1 {
    position: relative;
    padding: 44px 48px;
    background: linear-gradient(135deg, #faf8f5 0%, #f3efe9 100%);
    border-radius: 16px;
    border: 1px solid rgba(200, 149, 108, 0.15);
    line-height: 1.8;
    color: #444;
    font-size: 15px;
    margin-top: 40px;
}

/* 顶部装饰线 */
.editor-module1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 3px;
    background: linear-gradient(90deg, #c8956c, #e0c4a8, #c8956c);
    border-radius: 0 0 3px 3px;
}

/* ========== h4 — 底部线条 + 高亮底色 ========== */
.editor-module1 h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 34px 0 14px;
    padding: 6px 14px;
    background: linear-gradient(to top, rgba(200, 149, 108, 0.1) 45%, transparent 45%);
    border-bottom: 2px solid rgba(200, 149, 108, 0.25);
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.editor-module1 h4:first-child {
    margin-top: 0;
}

/* ========== p 段落 ========== */
.editor-module1 p {
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 2px solid rgba(200, 149, 108, 0.12);
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.editor-module1 p:last-child {
    margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .content-matrix {
        padding: 0 0 36px;
    }

    .editor-module1 {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .editor-module1::before {
        left: 24px;
        right: 24px;
    }

    .editor-module1 h4 {
        font-size: 17px;
        margin: 26px 0 12px;
        padding: 5px 12px;
    }

    .editor-module1 p {
        padding-left: 12px;
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .editor-module1 {
        padding: 24px 18px;
    }

    .editor-module1::before {
        left: 18px;
        right: 18px;
    }

    .editor-module1 h4 {
        font-size: 16px;
        padding: 4px 10px;
    }

    .editor-module1 p {
        padding-left: 10px;
        font-size: 13px;
    }
}


/* ========== 内容矩阵区域 ========== */
.content-matrix {
    padding: 0 0 60px;
    background: #f7f5f2;
}

.content-matrix .main-content-column {
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 编辑器模块 - 结构化引导风格 ========== */
.info-column1.editor-module {
    position: relative;
    padding: 44px 48px 44px 56px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    line-height: 1.8;
    color: #444;
    font-size: 15px;
    margin-top: 40px;
}

/* 左侧全高装饰条 */
.info-column1.editor-module::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #c8956c 0%, #a67650 60%, #c8956c 100%);
    border-radius: 16px 0 0 16px;
}

/* 右上角装饰光晕 */
.info-column1.editor-module::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ========== h4 — 胶囊标签样式 ========== */
.info-column1.editor-module h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 34px 0 14px;
    padding: 7px 16px;
    background: rgba(200, 149, 108, 0.08);
    border: 1px solid rgba(200, 149, 108, 0.13);
    border-radius: 8px;
    letter-spacing: 0.2px;
    line-height: 1.5;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.info-column1.editor-module h4:first-child {
    margin-top: 0;
}

.info-column1.editor-module h4:hover {
    background: rgba(200, 149, 108, 0.14);
    border-color: rgba(200, 149, 108, 0.25);
}

/* ========== p 段落 — 干净无装饰 ========== */
.info-column1.editor-module p {
    margin: 0 0 16px;
    padding: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.info-column1.editor-module p:last-child {
    margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .content-matrix {
        padding: 0 0 36px;
    }

    .info-column1.editor-module {
        padding: 32px 24px 32px 40px;
        border-radius: 12px;
    }

    .info-column1.editor-module h4 {
        font-size: 16px;
        margin: 26px 0 12px;
        padding: 6px 14px;
        border-radius: 6px;
    }

    .info-column1.editor-module p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .info-column1.editor-module {
        padding: 24px 18px 24px 32px;
    }

    .info-column1.editor-module::before {
        width: 4px;
    }

    .info-column1.editor-module h4 {
        font-size: 15px;
        margin: 22px 0 10px;
        padding: 5px 12px;
    }

    .info-column1.editor-module p {
        font-size: 13px;
    }
}



/* ========== 强制稳定外层容器 ========== */
.content-matrix {
    width: 100%;
    max-width: 100%;
    clear: both;
    float: none;
    padding: 0 0 60px;
    box-sizing: border-box;
}

.content-matrix .main-content-column {
    width: 100%;
    max-width: 1630px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* ========== 编辑器模块2 - 步骤引导卡片 ========== */
.editor-module2 {
    counter-reset: step-counter; /* 初始化序号计数器 */
    display: flex;
    gap: 0; /* 间距由卡片自身的padding控制 */
    padding: 50px 0 20px;
}

/* ========== P标签模块化 ========== */
.editor-module2 > p {
    counter-increment: step-counter; /* 序号递增 */
    flex: 1; /* 等分宽度 */
    margin: 0;
    padding: 60px 20px 28px; /* 顶部留空给圆点和线 */
    position: relative;
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 2;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* ========== 顶部横向连接线 ========== */
.editor-module2 > p::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e0d8; /* 柔和的连接线颜色 */
    z-index: 1;
}


/* ========== 序号圆点（纯CSS自动生成） ========== */
.editor-module2 > p::after {
    content: '0' counter(step-counter); /* 自动显示 01, 02, 03 */
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #c8956c;
    color: #c8956c;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    border-radius: 50%;
    z-index: 2; /* 压在连接线上方 */
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ========== 卡片悬浮效果 ========== */
.editor-module2 > p:hover {
    transform: translateY(-4px);
}

/* 悬浮时，圆点实心填充 */
.editor-module2 > p:hover::after {
    background: #c8956c;
    color: #fff;
}

/* ========== 兼容处理：万一里面有h4 ========== */
.editor-module2 > h4 {
    
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    
}

/* ========== 响应式：手机端改为竖向时间轴 ========== */
@media (max-width: 640px) {
    .editor-module2 {
        flex-direction: column; /* 改为竖向排列 */
        padding: 30px 10px 10px;
        gap: 20px;
    }

    .editor-module2 > p {
        text-align: left;
        padding: 10px 20px 10px 50px; /* 左侧留空给竖线 */
    }

    /* 把横向线改成左侧竖线 */
    .editor-module2 > p::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    /* 第1个P隐藏上线 */
    .editor-module2 > p:first-child::before {
        left: 24px;
        top: 50%;
    }

    /* 第3个P隐藏下线 */
    .editor-module2 > p:last-child::before {
        left: 24px;
        bottom: 50%;
    }

    /* 圆点移到左侧 */
    .editor-module2 > p::after {
        top: 50%;
        left: 11px;
        transform: translateY(-50%);
    }

    .editor-module2 > p:hover {
        transform: translateX(4px); /* 竖向时改为右移 */
    }
}



/* ========== 强制稳定外层容器 ========== */
.content-matrix {
    width: 100%;
    max-width: 100%;
    clear: both;
    float: none;
    padding: 0 0 40px;
    box-sizing: border-box;
}

.content-matrix .main-content-column {
    width: 100%;
    max-width: 1630px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* ========== 编辑器服务模块 - 极简杂志流 ========== */
.editor-module-service {
    padding: 70px 0;
}

/* ========== h4 - 超大标题 + 短横线前缀 ========== */
.editor-module-service > h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    line-height: 1.6;
    letter-spacing: -0.5px; /* 紧凑字距，更显现代 */
}

/* 短横线装饰 */
.editor-module-service > h4::before {
    content: '—';
    display: inline-block;
    margin-right: 14px;
    color: #c8956c;
    font-weight: 300;
}

/* 多组内容时：h4上方的渐隐分隔线 */
.editor-module-service > h4:not(:first-child) {
    margin-top: 56px;
    padding-top: 56px;
    position: relative;
}

.editor-module-service > h4:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}

/* ========== p - 轻盈正文 ========== */
.editor-module-service > p {
    margin: 0 0 0 32px; /* 缩进，与h4的文字主体对齐（跳过短横线宽度） */
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.editor-module-service > p:last-child {
    margin-bottom: 0;
}

/* ========== 附加美化：如果里面有 ul/li 列表 ========== */
.editor-module-service > ul {
    margin: 10px 0 0 32px;
    padding: 0;
    list-style: none;
}

.editor-module-service > ul > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.editor-module-service > ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #c8956c;
    border-radius: 50%;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .editor-module-service {
        padding: 50px 0;
    }

    .editor-module-service > h4 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .editor-module-service > h4:not(:first-child) {
        margin-top: 40px;
        padding-top: 40px;
    }

    .editor-module-service > p {
        margin-left: 26px;
        font-size: 14px;
    }

    .editor-module-service > ul {
        margin-left: 26px;
    }
}

@media (max-width: 520px) {
    .editor-module-service > h4 {
        font-size: 20px;
    }

    .editor-module-service > h4::before {
        margin-right: 10px;
    }

    .editor-module-service > p,
    .editor-module-service > ul {
        margin-left: 0; /* 手机端取消缩进，充分利用屏幕宽度 */
        font-size: 13px;
    }
}




/* ========== FAQ 问答模块 ========== */
.editor-module-faq {
    padding: 0;
}

/* 每个 ul 作为一个独立的问答卡片 */
.editor-module-faq .lyusen-ul {
    list-style: none;
    padding: 28px 28px 28px 32px;
    margin: 0 0 16px 0;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 5px solid #c8956c; /* 左侧铜棕色强调条 */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* 最后一个卡片去掉底部间距 */
.editor-module-faq .lyusen-ul:last-child {
    margin-bottom: 0;
}

/* 卡片悬浮微交互 */
.editor-module-faq .lyusen-ul:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

/* 重置 li 默认样式，优化英文长文本排版 */
.editor-module-faq .lyusen-li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    word-break: break-word; /* 防止长英文单词撑爆容器 */
}

/* ========== 问题（Q）样式 ========== */
.editor-module-faq .lyusen-li:first-child {
    margin-bottom: 16px;
}

.editor-module-faq .lyusen-li:first-child strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* ========== 答案（A）样式 ========== */
.editor-module-faq .lyusen-li:last-child {
    color: #666;
    font-size: 15px;
    padding-top: 16px;
    /* Q 和 A 之间用一条极淡的虚线分隔，增加结构感 */
    border-top: 1px dashed rgba(0, 0, 0, 0.06); 
}

/* ========== 响应式适配 ========== */
@media (max-width: 768px) {
    .editor-module-faq .lyusen-ul {
        padding: 22px 20px 22px 24px;
        border-left-width: 4px;
        border-radius: 10px;
    }

    .editor-module-faq .lyusen-li:first-child strong {
        font-size: 15px;
    }

    .editor-module-faq .lyusen-li:last-child {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .editor-module-faq .lyusen-ul {
        padding: 18px 16px 18px 20px;
        margin-bottom: 12px;
    }
}






.more-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px 0;
  margin: 0 auto;
  max-width: 1630px;
}

.more-info a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;

  border: 1px solid #e8e8ed;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  line-height: 2;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

/* 左侧小装饰条 */
.more-info a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: #A7D78E;
  border-radius: 0 2px 2px 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.more-info a:hover {
  background: #A7D78E;
  border-color: #A7D78E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(79, 110, 247, 0.4);
}

.more-info a:hover::before {
  transform: translateY(-50%) scaleY(0);
}

