@charset "utf-8";
/* ==========================================================================
   wire-stripping.com —— 主题层 "CONDUCT"
   --------------------------------------------------------------------------
   设计语言：导体/铜芯。墨黑底 + 铜强调 + 窄体工业大写标题 + 切角形状。
   本文件是**纯覆盖层**，在 style.css 之后加载；删掉引用即可完全回退。
   命名前缀 -- 均为设计 token，改配色只需改下面这一段。
   ========================================================================== */

:root {
    /* 品牌色 —— 墨黑 + 铜
       （刻意区别：fgfabric    = 深墨蓝 #0F2438 + 香槟金 #C4A052
                     wire-cutting = 石墨黑 #16181A + 电光蓝 #C1682F
                     tapewrapping = 深松绿 #0F3D3E + 香槟金 #D8BD7A
                     本站         = 墨黑   #16181A + 铜     #C1682F） */
    --ink: #16181A;
    /* 墨黑：深色区块主色 */
    --ink-2: #1E2124;
    --ink-3: #2A2E32;
    --steel: #6C7176;
    /* 正文灰（中性偏冷） */
    --steel-2: #979CA2;
    /* 次级灰 */
    --accent: #C1682F;
    /* 铜：唯一强调色（呼应"铜线芯"） */
    --accent-dark: #A4551F;
    --accent-soft: rgba(193, 104, 47, .10);
    /* 面 */
    --paper: #FFFFFF;
    --surface: #F5F6F7;
    --surface-2: #EDEFF1;
    --line: #E2E5E8;
    --line-strong: #C9CED3;

    /* 排版 —— 标题用**窄体工业无衬线**大写，正文用同族常规体，
       技术标注用 Space Mono（与前两站的 Archivo / Manrope / Fraunces 全不同） */
    --font-display: 'Barlow Condensed', 'Arial Narrow', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --font-sans: 'Barlow', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --font-mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    /* 形状 —— 直角 + 切角（与 ROLL 的大圆角、FORGE 的发丝直角都不同） */
    --r-sm: 0px;
    --r: 0px;
    --r-lg: 0px;
    --chamfer: 12px;
    /* 切角尺寸，见 §15.4 */

    --sh-1: 0 1px 2px rgba(22, 24, 26, .05);
    --sh-2: 0 8px 22px -10px rgba(22, 24, 26, .18);
    --sh-3: 0 22px 48px -22px rgba(22, 24, 26, .34);

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   1. 基础排版
   ========================================================================== */
body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--ink);
}

a:hover {
    color: var(--accent);
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-sans);
    letter-spacing: -.015em;
}

/* 通用容器微调（不改宽度，避免破坏原有浮动布局） */
.cb {
    clear: both;
}

/* 等宽小标签：本主题的签名元素 */
.wc-mono-label,
.sc_mid_left_bt,
.footer-col h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ==========================================================================
   2. 顶栏（语言切换条）
   --------------------------------------------------------------------------
   注意：内容容器是 1170px 居中，而页面是满宽。
   曾经尝试用「box-shadow 扩散 100vmax + clip-path」做满宽出血，
   在 Firefox/Chrome 下对这种 float 布局表现不稳定（只有容器外侧被染上色），
   所以改为**让横条收在容器内**——同样现代，且行为确定。
   ========================================================================== */
.sc_top {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.sc_top_conment_1 {
    background: transparent;
    border-bottom: none;
    padding: 9px 0;
    font-size: 12px;
    color: var(--steel);
}

.sc_top_conment_1 a {
    color: var(--steel);
}

.sc_top_conment_1 a:hover {
    color: var(--accent);
}

.sc_top_conment_1 a {
    color: rgba(255, 255, 255, .62);
}

.sc_top_conment_1 a:hover {
    color: #fff;
}

/* 语言下拉（原定义在 Top.php 的内联 <style> 里，本文件在其之后，仍需 !important） */
.language-dropdown {
    margin-right: 0 !important;
}

.language-dropdown-btn {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--r) !important;
    color: var(--ink) !important;
    font-family: var(--font-mono) !important;
    font-size: 11.5px !important;
    letter-spacing: .08em;
    padding: 7px 12px !important;
    min-height: 0 !important;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}

.language-dropdown-btn:hover {
    background: var(--paper) !important;
    border-color: var(--line-strong) !important;
}

.language-dropdown-btn:after {
    border-top-color: var(--steel) !important;
}

.language-dropdown-content {
    border: 1px solid var(--line) !important;
    border-radius: var(--r) !important;
    box-shadow: var(--sh-3) !important;
    padding: 6px !important;
    min-width: 210px !important;
}

.language-dropdown-content a {
    border-bottom: none !important;
    border-radius: var(--r-sm) !important;
    font-size: 13px !important;
    color: var(--ink) !important;
    padding: 9px 10px !important;
}

.language-dropdown-content a:hover {
    background: var(--accent-soft) !important;
    color: var(--accent) !important;
}

/* ==========================================================================
   3. 头部（Logo / 搜索 / 电话）
   ========================================================================== */
.sc_top_conment_2 {
    background: transparent;
    padding: 20px 0 18px;
    border-bottom: none;
}

.sc_top_conment_2_left {
    padding: 0 !important;
}

.sc_top_conment_2_left img {
    height: auto;
    max-height: 58px;
    width: auto;
}

.sc_top_conment_2_right {
    margin-top: 6px !important;
}

/* 搜索框 */
.sc_top_ser_1 {
    border: 1px solid var(--line-strong) !important;
    border-right: none !important;
    border-radius: var(--r) 0 0 var(--r) !important;
    min-height: 46px !important;
    height: 46px !important;
    line-height: 46px !important;
    font-size: 13.5px !important;
    color: var(--ink) !important;
    background: var(--surface) !important;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.sc_top_ser_1::placeholder {
    color: var(--steel-2);
}

.sc_top_ser_1:focus {
    outline: none;
    background: var(--paper) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.sc_top_ser_2 {
    background: var(--ink) !important;
    color: #fff !important;
    border: 1px solid var(--ink) !important;
    border-radius: 0 var(--r) var(--r) 0 !important;
    font-family: var(--font-mono) !important;
    font-size: 11.5px !important;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500 !important;
    padding: 0 20px !important;
    min-height: 46px !important;
    height: 46px !important;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}

.sc_top_ser_2:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

/* 电话：做得醒目一些 */
.sc_top_conment_2_right_right {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: .02em;
    padding-left: 20px;
    border-left: 1px solid var(--line);
    line-height: 1.2;
    margin-left: 16px;
}

.sc_top_conment_2_right_right a {
    color: var(--ink);
}

.sc_top_conment_2_right_right a:hover {
    color: var(--accent);
}

/* ==========================================================================
   4. 主导航条
   ========================================================================== */
/* 深色导航条：收在 1170 容器内（左右两块拼满整行） */
.sc_top_conment_3 {
    display: flow-root;
    /* 让浮动子元素撑起高度 */
}

.sc_top_conment_3_left,
.sc_top_conment_3_left.t_ss {
    background: var(--ink-2) !important;
    background-image: none !important;
    color: #fff !important;
    border-radius: var(--r) 0 0 0 !important;
    font-family: var(--font-mono) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-indent: 0 !important;
    padding: 16px 20px !important;
    min-height: 0 !important;
    border: none !important;
    box-shadow: inset 3px 0 0 var(--accent);
}

.sc_top_conment_3_right {
    background: var(--ink) !important;
    border-radius: 0 var(--r) 0 0 !important;
    justify-content: flex-start !important;
}

/* 桌面端让导航与左侧按钮拼满 1170（270 + 900） */
@media (min-width: 1172px) {
    .sc_top_conment_3_right {
        width: 900px !important;
        float: right !important;
    }
}

#navalink a {
    font-family: var(--font-mono) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .80) !important;
    text-shadow: none !important;
    padding: 16px 14px !important;
    min-height: 48px !important;
    line-height: 16px !important;
    position: relative;
    transition: color .2s var(--ease), background .2s var(--ease);
}

#navalink a:hover,
#navalink li:hover>a {
    color: #fff !important;
    background: rgba(255, 255, 255, .06) !important;
    text-decoration: none !important;
}

#navalink li.current-menu-item>a,
#navalink li.on>a,
#navalink a.active {
    color: #fff !important;
    box-shadow: inset 0 -2px 0 var(--accent);
}

/* ==========================================================================
   5. 分类浮层（左侧分类树）
   ========================================================================== */
#topfl {
    background: transparent;
}

.fl ul li {
    background: var(--paper) !important;
    background-image: none !important;
    border-bottom: 1px solid var(--line) !important;
    font-size: 13.5px !important;
    min-height: 42px !important;
    text-indent: 0 !important;
    padding: 0 !important;
    transition: background .18s var(--ease);
}

.fl ul li:last-child {
    border-bottom: none !important;
}

.fl ul li a,
.sc_mid_c_left_c ul li a {
    color: var(--ink) !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    padding: 10px 18px !important;
    min-height: 42px !important;
    text-indent: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative;
    transition: color .18s var(--ease), padding-left .18s var(--ease);
}

.fl ul li:hover,
.sc_mid_c_left_c ul li:hover {
    background: var(--surface) !important;
}

.fl ul li:hover>a,
.sc_mid_c_left_c ul li:hover>a {
    color: var(--accent) !important;
}

.fl ul li:hover>a::before,
.sc_mid_c_left_c ul li:hover>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--accent);
}

/* 二级浮层 */
.fl li ul {
    border: 1px solid var(--line) !important;
    box-shadow: var(--sh-3) !important;
    border-radius: var(--r);
    overflow: hidden;
}

.fl li ul li {
    border-bottom: 1px solid var(--line) !important;
    background: var(--paper) !important;
    background-image: none !important;
}

/* 侧边栏面板 */
.sc_mid_c_left_c {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--sh-1);
}

.sc_mid_c_left_c .fl ul li {
    border-bottom: 1px solid var(--line) !important;
}

/* 侧边栏小标题（原为 #F2F2F2 灰块） */
.sc_mid_left_bt {
    background: var(--ink) !important;
    color: rgba(255, 255, 255, .92) !important;
    text-indent: 0 !important;
    padding: 13px 18px !important;
    border: none !important;
    box-shadow: inset 3px 0 0 var(--accent);
}

/* ==========================================================================
   7. 区块标题
   ========================================================================== */
.sc_mid_c_right_title {
    background: none !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    line-height: 1.25 !important;
    padding: 26px 0 14px !important;
    margin: 0 !important;
    width: 100% !important;
    position: relative;
    border-bottom: 1px solid var(--line);
    /* style.css 后面又给区块标题加了 4px 的模板绿左边框，这里显式去掉 */
    border-left: none !important;
}

.sc_mid_c_right_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 46px;
    height: 2px;
    background: var(--accent);
}

/* ==========================================================================
   8. 产品卡片
   ========================================================================== */
.sc_mid_c_right_c {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* --- 主区大卡（Featured） --- */
.pic {
    background: var(--paper) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--r) !important;
    box-shadow: var(--sh-1);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.pic:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-3);
    border-color: var(--line-strong) !important;
}

.pic-dt {
    background: var(--surface-2) !important;
    position: relative;
    overflow: hidden;
    height: 250px !important;
}

.pic-dt img {
    max-height: 100% !important;
    width: auto !important;
    object-fit: contain;
    transition: transform .6s var(--ease);
}

.pic:hover .pic-dt img {
    transform: scale(1.05);
}

.pic-div dd {
    padding: 14px 16px 0 !important;
    margin-bottom: 0 !important;
    color: var(--ink) !important;
}

.pic-div dd:last-child {
    padding-bottom: 18px !important;
}

.pic-div dd h3 {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    min-height: 40px;
    margin: 0 0 12px !important;
}

.pic-div dd h3 a {
    color: var(--ink) !important;
    display: block;
}

.pic-div dd h3 a:hover {
    color: var(--accent) !important;
}

/* --- 侧栏小卡（New Products） --- */
.picl {
    background: var(--paper) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--r) !important;
    margin-bottom: 10px !important;
}

.picl-div dd {
    padding: 8px 12px 12px !important;
}

.picl-div dd h3 {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin: 6px 0 0 !important;
}

.picl-div dd h3 a {
    color: var(--ink) !important;
}

.picl-div dd h3 a:hover {
    color: var(--accent) !important;
}

.picl-dt {
    background: var(--surface-2) !important;
}

/* --- 询盘按钮（.inq 是包裹层，按钮本体是里面的 a） --- */
.inq {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    min-height: 0 !important;
    line-height: normal !important;
}

.inq a {
    display: inline-block !important;
    background: transparent !important;
    color: var(--ink) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--font-mono) !important;
    font-size: 10.5px !important;
    font-weight: 500 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 10px 22px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-decoration: none !important;
    transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.inq a:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

/* --- 日期角标（原为内联的 #0056b3 方块，模板里已换成 .pd-badge 类） --- */
.pd-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--ink);
    color: #fff;
    padding: 7px 10px;
    text-align: center;
    line-height: 1.15;
    font-family: var(--font-mono);
}

.pd-badge .pd-day {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
}

.pd-badge .pd-mon {
    display: block;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
}

/* 新闻列表用的加大版 */
.pd-badge-lg {
    padding: 10px 14px;
}

.pd-badge-lg .pd-day {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

.pd-badge-lg .pd-mon {
    font-size: 11px;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   产品详情页标签页（原来 Demo Video 被写死成红色、PDF 写成绿色，都改成品牌色）
   -------------------------------------------------------------------------- */
.product-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    margin: 32px 0 0;
    padding: 0;
}

.product-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--steel);
    padding: 13px 14px;
    cursor: pointer;
    transition: color .2s var(--ease), border-color .2s var(--ease);
}

.product-tab:hover {
    color: var(--ink);
}

.product-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.product-tab.tab-pdf {
    color: var(--steel);
}

.product-tab.tab-pdf:hover {
    color: var(--ink);
}

.product-tab.tab-pdf img {
    width: 18px !important;
    height: 18px !important;
    border-radius: var(--r-sm) !important;
    border: 1px solid var(--line) !important;
    margin-right: 8px !important;
    object-fit: cover;
}

/* ==========================================================================
   9. 首页简介 / 订阅
   ========================================================================== */
.home-about-snippet {
    max-width: 1170px !important;
    background: var(--paper);
    border: 1px solid var(--line) !important;
    border-top: 3px solid var(--accent) !important;
    border-radius: var(--r);
    margin: 26px auto !important;
    padding: 30px 34px !important;
    color: var(--steel) !important;
    font-size: 14.5px;
    line-height: 1.85 !important;
}

.home-about-snippet h1,
.home-about-snippet h2,
.home-about-snippet h3 {
    color: var(--ink);
    font-size: 19px;
    margin-bottom: 10px;
}

.newsletter-subscribe {
    max-width: 1170px !important;
    background: var(--ink) !important;
    border: none !important;
    border-radius: var(--r) !important;
    padding: 34px 30px !important;
    margin: 26px auto !important;
    position: relative;
    overflow: hidden;
}

.newsletter-subscribe::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(193, 104, 47, 0));
}

.newsletter-subscribe h3 {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: -.02em;
}

.newsletter-subscribe p {
    color: rgba(255, 255, 255, .62) !important;
    font-weight: 400 !important;
    font-size: 13.5px;
    max-width: 640px;
    margin: 0 auto 20px !important;
}

.newsletter-form {
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: var(--r-sm) !important;
    color: #fff !important;
    font-size: 13.5px !important;
    padding: 12px 14px !important;
    min-height: 46px !important;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .40);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(193, 104, 47, .22);
}

.newsletter-form button {
    background: var(--accent) !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 12px 26px !important;
    min-height: 46px !important;
    transition: background .2s var(--ease);
}

.newsletter-form button:hover {
    background: var(--accent-dark) !important;
}

.newsletter-status {
    color: rgba(255, 255, 255, .62) !important;
}

/* ==========================================================================
   11. 页脚
   ========================================================================== */
.sc_bot_dark {
    background: var(--ink) !important;
    position: relative;
}

.sc_bot_dark::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(193, 104, 47, 0) 55%);
}

.sc_bot_dark_content {
    padding-top: 40px;
}

.footer-col h3 {
    color: rgba(255, 255, 255, .95) !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    position: relative;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 26px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .62) !important;
    font-size: 13px !important;
    line-height: 1.6;
    transition: color .18s var(--ease), padding-left .18s var(--ease);
}

.footer-col ul li a:hover {
    color: #fff !important;
    padding-left: 4px;
}

.sc_bot_3_dark {
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    color: rgba(255, 255, 255, .42) !important;
    font-size: 12px !important;
    padding: 18px 0 !important;
}

.sc_bot_3_dark a {
    color: rgba(255, 255, 255, .62) !important;
}

.sc_bot_3_dark a:hover {
    color: #fff !important;
}

/* --------------------------------------------------------------------------
   页脚「关注我们」：原样式把 <a> 当成 36px 圆形图标（配 border-radius:50%），
   但实际标记里 a 里面是**文字**（Facebook / Youtube / …），
   于是渲染成一个个难看的椭圆。这里改成正常的文字链接列表。
   -------------------------------------------------------------------------- */
.footer-social {
    display: block !important;
    margin-top: 14px !important;
}

.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social ul li {
    margin-bottom: 7px;
}

.footer-social a {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: rgba(255, 255, 255, .62) !important;
    font-size: 13px !important;
    padding: 0 !important;
    min-height: 0 !important;
    transform: none !important;
    transition: color .18s var(--ease), padding-left .18s var(--ease);
}

.footer-social a:hover {
    background: none !important;
    border-color: transparent !important;
    color: #fff !important;
    padding-left: 4px !important;
}

.footer-social img {
    display: none;
    /* 图标已在文字里表达，避免重复 */
}

/* --------------------------------------------------------------------------
   版权区里其实被塞进了**一整套页脚**（来自数据库的 web_copy 字段，自带内联样式），
   于是页面出现「两层页脚」。原样式把 .sc_bot_3_dark 限制成 1170px 宽，
   这里放它满宽，并把那一层页脚的颜色统一到品牌 graphite 上。
   -------------------------------------------------------------------------- */
.sc_bot_3_dark {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
}

.sc_bot_3_dark .site-footer {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, .10) !important;
    border-bottom: none !important;
    padding: 36px 0 20px !important;
    margin-top: 26px !important;
    color: rgba(255, 255, 255, .62) !important;
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
}

.sc_bot_3_dark .grid-container {
    max-width: 1170px !important;
    padding: 0 !important;
    gap: 24px !important;
}

.sc_bot_3_dark .footer-brand {
    color: #fff !important;
    font-family: var(--font-sans) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -.01em !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.sc_bot_3_dark .footer-desc {
    color: rgba(255, 255, 255, .55) !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.sc_bot_3_dark .footer-links a,
.sc_bot_3_dark .contact-info a {
    color: rgba(255, 255, 255, .62) !important;
    font-size: 13px !important;
}

.sc_bot_3_dark .footer-links a:hover,
.sc_bot_3_dark .contact-info a:hover {
    color: #fff !important;
}

.sc_bot_3_dark .contact-info i {
    color: var(--accent) !important;
}

.sc_bot_3_dark .social-icons a {
    background: rgba(255, 255, 255, .06) !important;
    color: rgba(255, 255, 255, .78) !important;
    border: 1px solid rgba(255, 255, 255, .12);
}

.sc_bot_3_dark .social-icons a:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

.sc_bot_3_dark .qr-box img {
    border-radius: var(--r-sm) !important;
}

.sc_bot_3_dark .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10) !important;
    color: rgba(255, 255, 255, .42) !important;
}

.sc_bot_3_dark .footer-bottom-links a {
    color: rgba(255, 255, 255, .55) !important;
}

.sc_bot_3_dark .footer-bottom-links a:hover {
    color: #fff !important;
}

/* 友情链接条 */
#botalink {
    background: var(--ink-2);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

#botalink a {
    color: rgba(255, 255, 255, .55) !important;
    font-size: 12px;
}

#botalink a:hover {
    color: #fff !important;
}

/* ==========================================================================
   12. 移动端菜单按钮（原图标是绿色描边 SVG）
   ========================================================================== */
.sc_top_list {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCIgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIj48cGF0aCBzdHJva2U9IiMxNDE3MUIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBkPSJNNCA3aDIyTTQgMTVoMjJNNCAyM2gyMiIvPjwvc3ZnPg==") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 26px !important;
}

/* ==========================================================================
   13. 滚动淡入（由 forge.js 加 .fx-ready / .fx-in）
   ========================================================================== */
html.fx-ready .fx-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}

html.fx-ready .fx-up.fx-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html.fx-ready .fx-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pic:hover,
    .picl:hover {
        transform: none;
    }
}

/* ==========================================================================
   14. 响应式（沿用原断点：1171 / 800 / 640 / 480）
   ========================================================================== */
@media (max-width: 1171px) {

    .wpc-inner {
        width: 98%;
    }

    .sc_top_conment_2_right_right {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        font-size: 14px;
    }

    /* ≤1171px：导航变成抽屉，分类按钮独占一行，所以四角都要圆 */
    .sc_top_conment_3_left,
    .sc_top_conment_3_left.t_ss {
        border-radius: var(--r) !important;
        box-shadow: inset 3px 0 0 var(--accent);
    }

    .pic {
        box-shadow: none;
    }
}

@media (max-width: 800px) {

    body {
        font-size: 14.5px;
    }

    /* 移动端导航面板：原规则把它整体藏起来，这里改成抽屉式深色面板 */
    .sc_top_conment_3_right {
        background: var(--ink-2) !important;
        border-radius: var(--r) !important;
        border: 1px solid rgba(255, 255, 255, .10) !important;
    }

    .sc_top_conment_3_right li {
        border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    }

    #navalink a {
        font-size: 13px !important;
        letter-spacing: .08em;
        padding: 15px 18px !important;
        min-height: 48px !important;
        color: rgba(255, 255, 255, .86) !important;
        text-align: left;
    }

    .mBan2 {
        border-radius: var(--r);
    }

    /* 手机上工序标记缩小 */
    .mBan2::after {
        font-size: 9px;
        letter-spacing: .12em;
        padding: 5px 9px;
        left: 10px;
        bottom: 10px;
    }

    .mBan2 .slideBox .hd {
        right: 10px !important;
        bottom: 10px !important;
        padding: 4px 9px !important;
    }

    .sc_mid_c_right_title {
        font-size: 18px !important;
        padding: 20px 0 12px !important;
    }

    /* 卡片改为两列 */
    .pic {
        flex: 0 0 48% !important;
        margin-left: 1% !important;
        margin-right: 1% !important;
        min-height: 0 !important;
    }

    .pic-dt {
        height: 200px !important;
    }

    .newsletter-subscribe {
        padding: 26px 20px !important;
    }

    .home-about-snippet {
        padding: 20px 18px !important;
        font-size: 14px;
    }

    .wpc-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpc-step {
        padding: 15px 16px;
    }
}

@media (max-width: 480px) {

    /* 单列卡片 */
    .pic {
        flex: 0 0 98% !important;
    }

    .pic-dt {
        height: 220px !important;
    }

    .home-about-snippet,
    .newsletter-subscribe,
    .mBan2 {
        border-radius: var(--r-sm);
    }

    .wpc-track {
        grid-template-columns: 1fr;
    }

    .sc_top_conment_2_right_right {
        font-size: 13px;
    }
}

/* ==========================================================================
   15. 签名差异（本站专属 —— 主题 "CONDUCT"）
   --------------------------------------------------------------------------
   上面 1~14 节沿用 wire-cutting 的骨架（选择器通用，已通过上线验证）。
   本节把这些"签名元素"改成 wire-stripping 自己的语言：

     · 标题    → 窄体工业无衬线 Barlow Condensed，全大写（骨架是 Archivo 常规体）
     · 标注    → Space Mono 等宽（骨架是 IBM Plex Mono）
     · 形状    → 直角 + 切角 clip-path（骨架是 3px 小圆角；ROLL 是 22px 大圆角）
     · 强调色  → 铜 #C1682F（骨架是电光蓝）
     · 区块标题→ 墨黑粗底线 + 铜色"剥线口"记号
     · 卡片    → 1px 描边 + 顶部铜边（hover 生长）+ 图区斜纹底
     · Hero    → banner 轮播 + 深墨黑侧栏（文案取自数据库，26 语言自带）
     · 工序链  → 铁路式方节点轨道（骨架是方角阶梯，ROLL 是胶囊）
   ========================================================================== */

/* --- 15.1 标题：窄体大写 --- */
.section-title,
.sc_mid_c_right_title,
h1, h2, h3,
.product-title-large,
.custom-product-title,
footer h3, .sc_bot_dark h3,
.hero-title, .cd-hero-h {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    letter-spacing: .012em !important;
    text-transform: uppercase;
}

/* 窄体字要大一些才够份量 */
h1, .hero-title { font-size: clamp(30px, 4vw, 50px) !important; line-height: 1.06 !important; }
h2, .section-title { font-size: clamp(22px, 2.6vw, 34px) !important; line-height: 1.12 !important; }

/* 正文里的产品标题不要全大写（中英混排会难看） */
.custom-product-title,
.product-title-large,
.faq-section-title,
.news-title,
h3 { text-transform: none !important; letter-spacing: 0 !important; }

/* --- 15.2 区块标题：墨黑粗底线 + 铜色"剥线口"记号 --- */
.sc_mid_c_right_title {
    background: none !important;
    color: var(--ink) !important;
    padding: 30px 0 14px !important;
    margin: 0 !important;
    border-bottom: 2px solid var(--ink) !important;
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    font-size: clamp(21px, 2.5vw, 31px) !important;
}

/* 用两个伪元素画「一段铜线 + 露出的线芯」：铜条 + 铜点 */
.sc_mid_c_right_title:before {
    content: "";
    flex: 0 0 auto;
    width: 30px;
    height: 4px;
    background: var(--accent);
    box-shadow: none;
    transform: none;
}

.sc_mid_c_right_title:after {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 0;
    background: var(--ink);
}

/* --- 15.3 卡片：直角 + 1px 描边 + 顶部铜边 --- */
.custom-product-inner,
.custom-category-inner {
    position: relative;
    border: 1px solid var(--line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--paper) !important;
    overflow: hidden !important;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease) !important;
}

.custom-product-inner:before,
.custom-category-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    z-index: 4;
    transition: width .45s var(--ease);
}

.custom-product-inner:hover:before,
.custom-category-inner:hover:before { width: 100%; }

.custom-product-inner:hover,
.custom-category-inner:hover {
    transform: translateY(-4px) !important;
    border-color: var(--line-strong) !important;
    box-shadow: var(--sh-2) !important;
}

/* 图区：浅斜纹底，像工程图纸 */
.custom-product-img,
.custom-category-img {
    border-radius: 0 !important;
    background-color: var(--surface) !important;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(22, 24, 26, .022) 0px,
        rgba(22, 24, 26, .022) 1px,
        transparent 1px,
        transparent 8px
    ) !important;
}

.custom-product-img img,
.custom-category-img img {
    transition: transform .8s var(--ease) !important;
}

.custom-product-inner:hover .custom-product-img img,
.custom-category-inner:hover .custom-category-img img { transform: scale(1.045) !important; }

.custom-product-info { padding: 18px 18px 20px !important; }

.custom-product-title a:hover { color: var(--accent-dark) !important; }

/* 日期角标 → 墨黑实底 + 铜色描边 */
.pd-badge {
    background: var(--ink) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* "READ MORE" → 直角描边，hover 变墨黑 */
.custom-more-btn,
a.custom-more-btn {
    background: transparent !important;
    color: var(--ink) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 0 !important;
    padding: 10px 22px !important;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease) !important;
}

.custom-more-btn:hover,
a.custom-more-btn:hover {
    background: var(--ink) !important;
    border-color: var(--ink) !important;
    color: #fff !important;
}

/* --- 15.4 按钮：切右上角的矩形（clip-path） --- */
.btn-primary,
.btn-outline,
input[type="submit"],
button[type="submit"] {
    border-radius: 0 !important;
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
    clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, 0 100%);
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease) !important;
}

.btn-primary {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
}

.btn-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .5) !important;
    color: #fff !important;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12) !important;
    border-color: #fff !important;
}

/* 内容区里的描边按钮走墨黑 */
.cd-hero .btn-outline {
    border-color: rgba(255, 255, 255, .45) !important;
}

/* --- 15.5 Hero：banner 轮播 + 深墨黑侧栏（文案全部来自数据库，26 语言自带） --- */
.cd-hero {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    margin-bottom: 8px;
}

.cd-hero .mBan2 {                      /* 轮播本体：去掉圆角、限高 */
    border-radius: 0 !important;
    max-height: 430px;
}

.cd-hero-frame {
    flex: 1 1 62%;
    min-width: 0;
    position: relative;
}

.cd-hero-frame:after {                 /* 铜色分隔线 */
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    z-index: 5;
}

.cd-hero-panel {
    flex: 1 1 38%;
    min-width: 0;
    background: var(--ink);
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* 墨黑面板上的斜纹，呼应"工程图纸" */
.cd-hero-panel:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, .028) 0px,
        rgba(255, 255, 255, .028) 1px,
        transparent 1px,
        transparent 9px
    );
    pointer-events: none;
}

.cd-hero-step {
    position: relative;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px;
    padding-left: 40px;
    line-height: 1;
}

.cd-hero-step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 3px;
    background: var(--accent);
    transform: translateY(-50%);
}

.cd-hero-h {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(26px, 3.1vw, 42px) !important;
    line-height: 1.08 !important;
    margin: 0 0 26px;
}

.cd-hero-cta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cd-hero-cta .btn-primary,
.cd-hero-cta .btn-outline {
    padding: 13px 24px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* --- 15.6 工序链：铁路式方节点轨道 --- */
.wpc {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding: 30px 0 34px;
    margin-bottom: 34px;
}

.wpc-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: 24px;
}

.wpc-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.wpc-step {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .62);
    transition: color .25s var(--ease);
}

.wpc-step:hover { color: #fff; }

.wpc-dot {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 8px 12px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    white-space: nowrap;
}

.wpc-label {
    font-size: 12.5px;
    font-weight: 500;
    margin-left: 10px;
    white-space: nowrap;
}

.wpc-step.is-current { color: #fff; }

.wpc-step.is-current .wpc-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: none;
}

.wpc-sep {
    width: 30px;
    height: 1px;
    background: rgba(193, 104, 47, .55);
    margin: 0 14px;
    flex: 0 0 auto;
}

/* --- 15.7 顶栏 / 头条细节 --- */
.top-bar, .sc_top_conment_1 {
    border-bottom: 1px solid rgba(193, 104, 47, .30) !important;
}

.sc_top_conment_3 {                       /* 主导航条：墨黑，与铜色细线 */
    border-bottom: 2px solid var(--accent) !important;
}

footer h3, .sc_bot_dark h3 {
    position: relative;
    padding-bottom: 12px;
}

footer h3:after, .sc_bot_dark h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: 0;
}

.sc_bot_dark input[type="submit"],
.sc_bot_dark .newsletter button {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

/* ==========================================================================
   15.8 统一页脚（cd-*）——2026-09-19 重写
   数据库 web_copy 里原本塞了整套页脚（26 语言各不相同），现已收成一行版权；
   页脚结构统一在 Include/Bot.php。
   ========================================================================== */
.sc_bot_dark_content.cd-cols {
    align-items: flex-start;
    gap: 28px !important;
}

.cd-footer .cd-brand { flex: 1.5 !important; }

.cd-footer .cd-wordmark {
    display: inline-block;
    color: #fff !important;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.3;
    text-decoration: none;
    padding-bottom: 12px;
    margin-bottom: 14px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.cd-footer .cd-wordmark:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 24px;
    height: 3px;
    background: var(--accent);
}

.cd-footer .cd-desc {
    color: rgba(255, 255, 255, .55);
    font-size: 12.5px;
    line-height: 1.75;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 社交图标 */
.cd-footer .cd-social { display: flex; gap: 10px; }

.cd-footer .cd-social a {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    color: rgba(255, 255, 255, .8) !important;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}

.cd-footer .cd-social a:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    transform: none;
}

.cd-footer .cd-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
}

.cd-footer .cd-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* 联系方式 */
.cd-footer .cd-contact li {
    display: block !important;
    position: relative;
    padding-left: 21px;
    margin-bottom: 10px !important;
    color: rgba(255, 255, 255, .70);
    font-size: 12.5px;
    line-height: 1.65;
    word-break: break-word;
}

.cd-footer .cd-contact svg {
    position: absolute;
    left: 0;
    top: 3px;
    width: 13px;
    height: 13px;
    fill: var(--accent);
}

.cd-footer .cd-contact span {
    color: rgba(255, 255, 255, .42);
    display: inline !important;
}

.cd-footer .cd-contact a {
    display: inline !important;
    min-height: 0 !important;
    padding: 0 !important;
    align-items: baseline !important;
    color: rgba(255, 255, 255, .72) !important;
    font-size: 12.5px !important;
    text-decoration: none;
}

.cd-footer .cd-contact a:hover { color: #fff !important; }

/* 二维码条 */
.cd-footer .cd-qr {
    max-width: 1170px;
    margin: 44px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    text-align: center;
}

.cd-footer .cd-qr-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .95);
    margin: 0 0 20px;
}

.cd-footer .cd-qr-box {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cd-footer .cd-qr-box figure { margin: 0; }

.cd-footer .cd-qr-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 0;
    display: block;
    box-sizing: content-box;
}

.cd-footer .cd-qr-box figcaption {
    margin-top: 9px;
    font-size: 12px;
    color: rgba(255, 255, 255, .58);
}

/* 版权条 */
.cd-footer .sc_bot_3_dark {
    width: 100% !important;
    max-width: 1170px;
    margin: 32px auto 0 !important;
    padding: 18px 0 24px !important;
    border-top: 1px solid rgba(255, 255, 255, .09) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: left !important;
    color: rgba(255, 255, 255, .42) !important;
    font-size: 12px !important;
}

.cd-footer .cd-copy { color: rgba(255, 255, 255, .42); font-size: 12px; line-height: 1.6; }

.cd-footer .cd-feeds { display: flex; gap: 16px; }

.cd-footer .cd-feeds a {
    color: rgba(255, 255, 255, .42) !important;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-decoration: none;
}

.cd-footer .cd-feeds a:hover { color: var(--accent) !important; }

/* 阿语：整块右对齐，铜色记号移到右侧 */
.cd-footer[dir="rtl"] .footer-col h3,
.cd-footer[dir="rtl"] .cd-wordmark { text-align: right; }

.cd-footer[dir="rtl"] .footer-col h3::after,
.cd-footer[dir="rtl"] .cd-wordmark::after { left: auto; right: 0; }

.cd-footer[dir="rtl"] .cd-contact li { padding-left: 0; padding-right: 21px; }
.cd-footer[dir="rtl"] .cd-contact svg { left: auto; right: 0; }
.cd-footer[dir="rtl"] .cd-copy { text-align: right; }

/* --- 15.9 响应式 --- */
@media (max-width: 1000px) {
    .cd-hero { flex-direction: column; }
    .cd-hero-frame,
    .cd-hero-panel { flex: 1 1 auto; }
    .cd-hero-frame:after { top: auto; left: 0; right: 0; bottom: 0; width: auto; height: 3px; }
    .cd-hero-panel { padding: 32px 24px; }
    .cd-hero .mBan2 { max-height: 340px; }
    .cd-footer .cd-brand { flex: 1 1 100% !important; }
    .sc_bot_dark_content.cd-cols { gap: 26px !important; }
}

@media (max-width: 768px) {
    .sc_bot_dark_content.cd-cols { flex-direction: column; }
    .cd-footer .sc_bot_dark_content.cd-cols { width: 88% !important; }
    .cd-footer .sc_bot_3_dark { width: 88% !important; }
    .cd-footer .cd-qr { padding-left: 6%; padding-right: 6%; }
    .cd-footer .cd-wordmark { border-bottom: none; padding-bottom: 0; }
    .cd-footer .cd-wordmark::after { display: none; }
    .cd-footer .sc_bot_3_dark { justify-content: center; text-align: center !important; }

    .wpc-track { flex-direction: column; align-items: stretch; gap: 10px; }
    .wpc-step { justify-content: flex-start; }
    .wpc-sep { display: none; }
}

/* ==========================================================================
   15.10 修订一（截图后按实际渲染调）
   ========================================================================== */

/* Hero：轮播是固定 1920/600 比例，撑不满墨黑侧栏 → 底部露黑块。
   让轮播填满整栏高度，图片 cover 裁切。 */
.cd-hero-frame {
    display: flex;
}

.cd-hero-frame .mBan2 {
    flex: 1 1 auto;
    aspect-ratio: auto !important;
    height: auto;
    min-height: 400px;
    max-height: none;
}

.cd-hero-frame .mBan2 img,
.cd-hero .slideBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 卡片边框改用中性细线（字面量替换把 #086601 换成了铜，但卡片外框不该是铜色） */
.pics, .pics2,
.pic-div, .picl-div {
    border-color: var(--line) !important;
}

.pics:hover, .pics2:hover {
    border-color: var(--line-strong) !important;
}

/* 侧栏小卡里的询盘 chip：浅底改成中性 */
.picl-div dd .inq a {
    background: var(--surface) !important;
    border-color: var(--line-strong) !important;
    color: var(--ink) !important;
    border-radius: 0 !important;
}

/* 友情链接条（页脚上方那条）跟着墨黑走 */
#botalink {
    background: var(--ink) !important;
    border-top: none !important;
}

#botalink a {
    color: rgba(255, 255, 255, .5) !important;
    font-size: 12px;
}

#botalink a:hover {
    color: var(--accent) !important;
}

/* ==========================================================================
   15.11 修订二 —— Hero 轮播填满 + 隐藏图上旧横幅文案
   --------------------------------------------------------------------------
   轮播是 SuperSlide 结构，图片带内联 max-width/height:auto（内联样式优先级最高，
   必须 !important）；另外 `sc_banner` 里那 6 条横幅的文案/链接目前指向的是
   别站的产品线（绕线扎线机 / 缠胶带机 / 扭线机），本站是剥线机站 ——
   在内容定稿前先把图上那层文案隐掉，避免首页挂着错的产品名。
   ========================================================================== */
.cd-hero .mBan2,
.cd-hero .slideBox,
.cd-hero .mBan2 .bd,
.cd-hero .mBan2 .bd ul,
.cd-hero .mBan2 .bd ul li {
    height: 100% !important;
}

.cd-hero .mBan2 .bd ul li img,
.cd-hero .mBan2 .bd ul li picture,
.cd-hero .slideBox img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.cd-hero .banner_text { display: none !important; }
