@charset "utf-8";
/* ==========================================================================
   tapewrapping.com —— 主题层 "ROLL"
   --------------------------------------------------------------------------
   设计语言：精密数控裁切。石墨黑底 + 电光蓝强调 + 等宽体技术标注。
   本文件是**纯覆盖层**，在 style.css 之后加载；删掉引用即可完全回退。
   命名前缀 -- 均为设计 token，改配色只需改下面这一段。
   ========================================================================== */

:root {
    /* 品牌色 —— 深松绿 + 香槟金
       （刻意区别：wire-cutting = 石墨黑 #14171B + 电光蓝 #2F6BFF
                     fgfabric     = 深墨蓝 #0F2438 + 香槟金 #C4A052） */
    --ink: #0F3D3E;
    /* 深松绿：主色，用于深色区块 */
    --ink-2: #14504F;
    --ink-3: #1C6360;
    --steel: #5A6B69;
    /* 正文灰（带绿调） */
    --steel-2: #8B9997;
    /* 次级灰 */
    --accent: #D8BD7A;
    /* 香槟金：唯一强调色 */
    --accent-dark: #C0A25C;
    --accent-soft: rgba(216, 189, 122, .14);
    /* 面 */
    --paper: #FFFFFF;
    --surface: #F7F5F0;
    /* 暖米白 */
    --surface-2: #EFEBE1;
    --line: #E6E1D6;
    --line-strong: #D3CBB8;

    /* 排版 —— 标题用软衬线，正文用几何无衬线（不用等宽体，与 wire-cutting 区分） */
    --font-display: 'Fraunces', Georgia, 'Songti SC', 'Times New Roman', serif;
    --font-sans: 'Manrope', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --font-mono: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* 形状 —— 大圆角、软阴影（对应"流畅整洁"，与 wire-cutting 的锐利发丝描边相反） */
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 22px;

    --sh-1: 0 1px 2px rgba(15, 61, 62, .04);
    --sh-2: 0 10px 28px -12px rgba(15, 61, 62, .18);
    --sh-3: 0 26px 60px -26px rgba(15, 61, 62, .30);

    --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(216, 189, 122, 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(216, 189, 122, .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(216, 189, 122, 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;
}

/* --------------------------------------------------------------------------
   原「关注我们」文字链接样式 + 「把数据库 web_copy 里那套页脚硬掰成主题色」的
   一整套补丁（约 135 行）已于 2026-09-19 删除 —— 数据库不再塞页脚了，
   页脚结构统一在 Include/Bot.php + 本文件 §15.10。
   -------------------------------------------------------------------------- */
/* 友情链接条 */
#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. 滚动淡入（由 roll.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. 签名差异（本站专属：换掉骨架里的标题/卡片/Hero/工序链语言）
   --------------------------------------------------------------------------
   上面 1~14 节沿用 wire-cutting 的骨架（选择器通用），
   本节用后写的规则把这些"签名元素"改成本站的语言：
     · 标题 → 软衬线 Fraunces（骨架里是几何无衬线）
     · 形状 → 大圆角 + 软阴影（骨架里是锐利直角 + 发丝描边）
     · Hero → 居中文案（骨架里是左文案/右图片的分栏）
     · 工序链 → 胶囊轨道（骨架里是方角阶梯）
   ========================================================================== */

/* --- 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, .roll-hero-title {
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    letter-spacing: -.01em !important;
}

/* 衬线标题下不需要大字重堆积 —— 让它显"贵"而不是显"重" */
h1, .hero-title, .roll-hero-title { font-weight: 600 !important; }
h2, .section-title { font-weight: 600 !important; }

/* --- 15.2 区块标题：衬线 + 金色短线（与 wire-cutting 的等宽微标签完全不同） --- */
.sc_mid_c_right_title {
    background: none !important;
    color: var(--ink) !important;
    font-size: clamp(22px, 2.4vw, 30px) !important;
    line-height: 1.25 !important;
    padding: 30px 0 16px !important;
    margin: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 14px !important;
}

.sc_mid_c_right_title:before {
    content: "";
    flex: 0 0 auto;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
    transform: translateY(-6px);
}

/* --- 15.3 卡片：大圆角 + 软阴影 + 无描边（"流畅整洁"） --- */
.custom-product-inner,
.custom-category-inner {
    border: none !important;
    border-radius: var(--r-lg) !important;
    box-shadow: var(--sh-2) !important;
    overflow: hidden !important;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease) !important;
}

.custom-product-inner:hover,
.custom-category-inner:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--sh-3) !important;
}

.custom-product-img,
.custom-category-img {
    border-radius: 0 !important;
    background: var(--surface) !important;
}

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

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

.custom-product-info { padding: 22px 22px 24px !important; }

.custom-product-title {
    font-family: var(--font-sans) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    line-height: 1.65 !important;
    color: var(--ink) !important;
}

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

/* 卡片里的日期角标 → 半透明深绿玻璃 + 金边 */
.pd-badge {
    background: rgba(15, 61, 62, .82) !important;
    border: 1px solid rgba(216, 189, 122, .5) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* "MORE >>" 按钮 → 金色胶囊 */
.custom-more-btn,
a.custom-more-btn {
    background: transparent !important;
    color: var(--ink) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 100px !important;
    padding: 10px 24px !important;
    font-family: var(--font-sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: .06em !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(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--ink) !important;
}

/* --- 15.4 按钮：金色胶囊 --- */
.btn-primary,
.btn-outline,
input[type="submit"] {
    border-radius: 100px !important;
    font-family: var(--font-sans) !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
}

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

.btn-primary:hover {
    background: #E6CE95 !important;
    border-color: #E6CE95 !important;
}

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

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

/* --- 15.5 Hero：居中版式（骨架是左右分栏，这里是全宽居中的"卷轴"结构） --- */
.roll-hero {
    position: relative;
    margin-top: 20px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--sh-3);
    isolation: isolate;
}

/* 织物/胶带斜纹底纹 */
.roll-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        115deg,
        rgba(255, 255, 255, .05) 0px,
        rgba(255, 255, 255, .05) 1px,
        transparent 1px,
        transparent 9px
    );
    z-index: 1;
    pointer-events: none;
}

.roll-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% -10%, rgba(216, 189, 122, .22) 0%, transparent 62%),
        linear-gradient(180deg, rgba(15, 61, 62, .1) 0%, rgba(15, 61, 62, .9) 100%);
    z-index: 2;
    pointer-events: none;
}

.roll-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 84px 28px 78px;
    text-align: center;
}

.roll-kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 18px;
}

.roll-hero-title {
    font-family: var(--font-display) !important;
    font-size: clamp(30px, 4.4vw, 58px);
    line-height: 1.14;
    color: #fff;
    margin: 0 0 22px;
    font-weight: 600;
}

.roll-hero-title em {
    font-style: italic;
    color: var(--accent);
}

.roll-hero-sub {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
    max-width: 640px;
    margin: 0 auto 34px;
}

.roll-rule {
    width: 64px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.roll-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero 下方的产品图带（横向通栏，与骨架的"右侧竖图"不同） */
.roll-hero-band {
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, rgba(15, 61, 62, .9), var(--ink));
    padding: 0 28px 30px;
    text-align: center;
}

.roll-hero-band img {
    max-width: min(760px, 100%);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .45));
}

/* --- 15.6 工序链：胶囊轨道（骨架是方角阶梯） --- */
.wpc {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding: 30px 0 34px;
    margin-bottom: 36px;
}

.wpc-title {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2em;
    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, .66);
    transition: color .25s var(--ease);
}

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

.wpc-dot {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .20);
    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: var(--ink);
    box-shadow: 0 6px 20px -8px rgba(216, 189, 122, .8);
}

.wpc-sep {
    width: 26px;
    height: 1px;
    background: rgba(255, 255, 255, .22);
    margin: 0 16px;
    flex: 0 0 auto;
}

@media (max-width: 800px) {
    .roll-hero-inner { padding: 56px 22px 50px; }
    .roll-hero-cta { flex-direction: column; align-items: stretch; }
    .roll-hero-cta .btn-primary,
    .roll-hero-cta .btn-outline { width: 100%; }

    /* 工序链窄屏改竖排 */
    .wpc-track { flex-direction: column; align-items: stretch; gap: 10px; }
    .wpc-step { justify-content: flex-start; }
    .wpc-sep { display: none; }
}

/* --- 15.7 顶栏/页脚金色细节 --- */
.top-bar, .sc_top_conment_1 {
    border-bottom: 1px solid rgba(216, 189, 122, .28) !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: 26px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* 页脚里的金色按钮 */
.sc_bot_dark input[type="submit"],
.sc_bot_dark .newsletter button {
    background: var(--accent) !important;
    color: var(--ink) !important;
    border-color: var(--accent) !important;
    border-radius: 100px !important;
}

/* --- 15.8 修订（截图后按实际渲染调） ----------------------------------------- */

/* Hero 产品图：原图是竖版（879x1080），直接放在绿色带里会拉得过高。
   限制高度 + object-fit，让它像"聚光灯下的产品"而不是一堵白墙。 */
.roll-hero-band img {
    max-height: 400px !important;
    width: auto !important;
    max-width: min(760px, 92%) !important;
    object-fit: contain;
    background: transparent !important;
    border-radius: 14px !important;
}

/* 列表里"INQUIRY NOW"按钮（.inq a）→ 胶囊描边按钮 */
.inq a,
.inq a:link,
.inq a:visited {
    display: inline-block !important;
    background: transparent !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 100px !important;
    color: var(--ink) !important;
    padding: 9px 20px !important;
    font-family: var(--font-sans) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease) !important;
}

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

/* 侧栏分类列表：金色小三角改成本站的金色圆点，行距放松 */
.sc_mid_c_left_c ul li a:hover,
.fl ul li a:hover {
    color: var(--accent-dark) !important;
}

/* 询盘框 / 订阅框统一到软圆角 + 暖底 */
.home-about-snippet {
    border: 0 !important;
    border-radius: var(--r-lg) !important;
    background: var(--surface) !important;
    color: var(--steel) !important;
    padding: 30px 34px !important;
    max-width: 1100px !important;
    margin: 30px auto !important;
    line-height: 1.85 !important;
}

.newsletter-subscribe {
    border: 0 !important;
    border-radius: var(--r-lg) !important;
    background: var(--surface) !important;
    padding: 28px 30px !important;
}

/* --- 15.9 修订二 -------------------------------------------------------------
   注意：页面 body 里还有两段内联 <style>（来自数据库内容），它们加载在本文件
   **之后**，所以凡是我要改的、它也用 !important 声明过的属性，必须用
   更高优先级的选择器 + !important 才能赢。
   另外：.inq 的边框画在 <span class="inq"> 上（不是里面的 <a>），
   所以胶囊化必须同时处理 span 和 a。 ----------------------------------------- */

/* 询盘按钮 → 胶囊（覆盖 style.css 里 .pic-div dd .inq 的直角描边） */
.pic-div dd .inq,
.pic-div dd .inqs,
.picl-div dd .inq {
    border-radius: 100px !important;
    border: 1px solid var(--line-strong) !important;
    background: transparent !important;
    padding: 0 !important;
    min-height: 0 !important;
    overflow: hidden;
    transition: background .25s var(--ease), border-color .25s var(--ease) !important;
}

.pic-div dd .inq a,
.picl-div dd .inq a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 22px !important;
    min-height: 0 !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-decoration: none !important;
}

.pic-div dd .inq:hover,
.picl-div dd .inq:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.pic-div dd .inq:hover a,
.picl-div dd .inq:hover a { color: var(--ink) !important; }

/* 订阅框标题：原来几乎看不见（浅色压浅底）—— 强制深色 + 衬线 */
.newsletter-subscribe h3,
.newsletter-subscribe h4,
.newsletter-subscribe .nlt,
.home-about-snippet h2,
.home-about-snippet h3 {
    color: var(--ink) !important;
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

.newsletter-subscribe { color: var(--steel) !important; }
.newsletter-subscribe p,
.newsletter-subscribe div { color: var(--steel) !important; }

/* 订阅按钮（页面里那个金色 SUBSCRIBE）统一成金胶囊 */
.newsletter-subscribe input[type="submit"],
.newsletter-subscribe button {
    background: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    color: var(--ink) !important;
    border-radius: 100px !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    padding: 12px 26px !important;
}

/* 正文里的蓝色链接（来自数据库内容）统一成品牌深绿 */
.home-about-snippet a,
.newsletter-subscribe a,
.qa-answer a,
.faq-content a {
    color: var(--accent-dark) !important;
}

/* ==========================================================================
   15.10 统一页脚（2026-09-19 重写）
   --------------------------------------------------------------------------
   背景：原来页面是「两层页脚」——模板 Bot.php 这一层，加上被塞进数据库
   sc_config.web_copy（本该是"版权文字"）的一整套页脚 HTML；而且 10 个语言
   库里那第二层各不相同（在线时钟 / 英阿语切换按钮 / 泄漏的 PHP 源码 /
   空壳社交链接）。现在数据库只留一行版权，模板是唯一页脚。

   结构：工序链 → 五栏（品牌 / 产品分类 / 快捷链接 / 新闻 / 联系我们）
        → 二维码条 → 版权条。
   语言：10 语言结构完全一致，文案由 Include/footer-i18n.php 本地化；
        阿语整块 dir="rtl"。
   回退：删掉本段即可（页脚会退回没有主题样式的朴素状态）。
   ========================================================================== */

/* --- 五栏主体 --- */
.sc_bot_dark_content.fp-cols {
    align-items: flex-start;
    gap: 28px !important;
}

.fp-footer .fp-brand { flex: 1.35 !important; }

.fp-footer .fp-wordmark {
    display: inline-block;
    color: #fff !important;
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.4;
    text-decoration: none;
    padding-bottom: 12px;
    margin-bottom: 14px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

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

.fp-footer .fp-desc {
    color: rgba(255, 255, 255, .58);
    font-size: 12.5px;
    line-height: 1.75;
    margin: 0 0 16px;
}

/* --- 社交图标 --- */
.fp-footer .fp-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-footer .fp-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: 50% !important;
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: rgba(255, 255, 255, .80) !important;
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.fp-footer .fp-social a:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--ink) !important;
    transform: translateY(-2px);
}

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

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

/* --- 联系方式 ---------------------------------------------------------------
   注意：style.css 里 .footer-col ul li a 是 display:flex + min-height:32px，
   直接放在 flex 行里会把「标签 / 值」挤成错位换行并溢出栏宽。
   这里改成普通文本流：图标绝对定位在行首，标签与值 inline 连排。 */
.fp-footer .fp-contact li {
    display: block !important;
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px !important;
    color: rgba(255, 255, 255, .70);
    font-size: 12.5px;
    line-height: 1.65;
    word-break: break-word;
}

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

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

.fp-footer .fp-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;
}

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

.fp-footer .fp-contact em {
    font-style: normal;
    color: rgba(255, 255, 255, .58);
}

/* --- 二维码条（Mobile Access） --- */
.fp-footer .fp-qr {
    max-width: 1170px;
    margin: 46px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

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

.fp-footer .fp-qr-hint {
    color: rgba(255, 255, 255, .50);
    font-size: 12.5px;
    margin: 0 0 22px;
}

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

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

.fp-footer .fp-qr-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: var(--r-sm);
    display: block;
    box-sizing: content-box;
}

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

/* --- 版权条：左版权 / 右订阅源 --- */
.fp-footer .sc_bot_3_dark {
    width: 100% !important;
    max-width: 1170px;
    margin: 34px auto 0 !important;
    padding: 20px 0 26px !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !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;
}

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

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

.fp-footer .fp-feeds a {
    color: rgba(255, 255, 255, .42) !important;
    font-size: 12px;
    letter-spacing: .06em;
    text-decoration: none;
}

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

/* --- 阿语：整块右对齐，金色下划线移到右侧 --- */
.fp-footer[dir="rtl"] .footer-col h3,
.fp-footer[dir="rtl"] .fp-wordmark { text-align: right; }

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

.fp-footer[dir="rtl"] .fp-qr-hint,
.fp-footer[dir="rtl"] .fp-copy { text-align: right; }

.fp-footer[dir="rtl"] .fp-contact li { padding-left: 0; padding-right: 22px; }
.fp-footer[dir="rtl"] .fp-contact svg { left: auto; right: 0; }

/* --- 响应式 --- */
@media (max-width: 1000px) {
    .fp-footer .fp-brand { flex: 1 1 100% !important; }
    .sc_bot_dark_content.fp-cols { gap: 26px !important; }
}

@media (max-width: 768px) {
    .sc_bot_dark_content.fp-cols { flex-direction: column; }
    /* style.css 在 ≤1200px 只给到 96% 宽，手机上左右只剩几像素，收紧到 88% */
    .fp-footer .sc_bot_dark_content.fp-cols { width: 88% !important; }
    .fp-footer .sc_bot_3_dark { width: 88% !important; }
    .fp-footer .fp-qr { padding-left: 6%; padding-right: 6%; }
    .fp-footer .fp-wordmark { border-bottom: none; padding-bottom: 0; }
    .fp-footer .fp-wordmark::after { display: none; }
    .fp-footer .fp-qr { margin-top: 34px; }
    .fp-footer .sc_bot_3_dark {
        justify-content: center;
        text-align: center !important;
    }
}
