/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2a2a35;
    --secondary: #3a3a48;
    --accent: #8d6e63;
    --gold: #f4d58d;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, sans-serif;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: #fafafa; color: #222; line-height: 1.7; font-size: 16px; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 70px 0; }
.alt { background: #f5f7fa; }
.tc { text-align: center; }
.sec-title { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.sec-title span { color: var(--accent); }
.sec-sub { color: #666; max-width: 680px; margin-bottom: 40px; }
.tc .sec-sub { margin-left: auto; margin-right: auto; }

/* ===== breadcrumb ===== */
.bc { background: #f5f5f5; padding: 10px 0; font-size: 13px; color: #666; }
.bc a { color: #666; }
.bc a:hover { color: var(--accent); }
.bc .bc-sep { margin: 0 8px; color: #bbb; }

/* ===== friend links ===== */
.flinks { background: #f7f8fa; padding: 32px 0; border-top: 1px solid #e8ecf2; }
.flinks .fl-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.flinks ul { list-style: none; display: flex; flex-wrap: wrap; gap: 9px 24px; }
.flinks a { color: #666; font-size: 13px; }
.flinks a:hover { color: var(--accent); }
.flinks.g2 ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 26px; }
.flinks.g2 a { position: relative; padding-left: 13px; }
.flinks.g2 a::before { content: ''; position: absolute; left: 0; top: 50%; margin-top: -2px; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.flinks.col ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 11px 22px; }
.flinks.col a { display: block; padding: 7px 12px; background: #fff; border-radius: calc(var(--radius) - 4px); border: 1px solid #e8ecf2; }
.flinks.col a:hover { border-color: var(--accent); }
@media (max-width: 768px) {
    .flinks.g2 ul, .flinks.col ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===== modal ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition); padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 560px; width: 100%; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: #f0f0f0; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1; color: #444; }
.modal-box h2 { font-size: 24px; margin-bottom: 8px; color: var(--primary); }
.modal-box .m-year { color: #888; margin-bottom: 16px; }
.modal-box .m-desc { color: #555; line-height: 1.8; margin-bottom: 16px; }
.modal-box .m-meta { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ===== demo -> detail links (works cards / faq questions become real anchors) ===== */
a.wk1-btn { display: inline-block; text-align: center; }
.fq1-link { color: inherit; }
.fq1-link:hover { color: var(--accent); }

.nv3-bar { position: relative; z-index: 900; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); }
.nv3-topin { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; }
.nv3-logo { display: flex; align-items: center; gap: 10px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.nv3-ico { font-size: 26px; line-height: 1; }
.nv3-kw { font-size: 24px; font-weight: 800; letter-spacing: 1px; }
.nv3-kw em { font-style: normal; color: var(--accent); }
.nv3-brand { font-size: 12px; font-weight: 500; color: var(--gray); padding-left: 10px; border-left: 1px solid rgba(0,0,0,0.14); }
.nv3-note { font-size: 12px; color: var(--primary); border: 1px dashed rgba(0,0,0,0.22); border-radius: 999px; padding: 5px 13px; white-space: nowrap; }
.nv3-strip { background: var(--primary); }
.nv3-menu { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; list-style: none; }
.nv3-menu a { display: block; padding: 12px 22px; font-size: 14px; color: rgba(255,255,255,0.88); text-decoration: none; border-right: 1px solid rgba(255,255,255,0.14); }
.nv3-menu li:last-child a { border-right: none; }
.nv3-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
@media (max-width:768px) {
    .nv3-topin { padding: 10px 20px; gap: 10px; }
    .nv3-ico { font-size: 21px; }
    .nv3-kw { font-size: 19px; }
    .nv3-brand { font-size: 11px; padding-left: 8px; }
    .nv3-note { display: none; }
    .nv3-menu a { padding: 10px 12px; font-size: 13px; }
}
.hr6-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding-top: 96px;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}
.hr6-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    object-fit: cover;
    opacity: 0.24;
    -webkit-mask-image: linear-gradient(to left, #000 0%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0%, transparent 100%);
}
.hr6-glow {
    position: absolute;
    top: -130px;
    left: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
    opacity: 0.22;
}
.hr6-top {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}
.hr6-title {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: 62px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 2px;
}
.hr6-title em {
    color: var(--gold);
    font-style: normal;
}
.hr6-desc {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.85;
}
.hr6-btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: var(--radius);
    background: var(--gold);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr6-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}
.hr6-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.32);
}
.hr6-bar-in {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.hr6-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-left: 1px solid rgba(255,255,255,0.14);
}
.hr6-cell:first-child {
    border-left: none;
}
.hr6-ico {
    font-size: 22px;
    line-height: 1;
}
.hr6-cell strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.hr6-cell small {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
}
.hr6-cell a {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
}
.hr6-cell a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .hr6-hero {
        min-height: 480px;
        padding-top: 62px;
    }
    .hr6-bg {
        width: 70%;
        opacity: 0.18;
    }
    .hr6-top {
        padding-bottom: 40px;
    }
    .hr6-title {
        margin-bottom: 14px;
        font-size: 30px;
        letter-spacing: 1px;
    }
    .hr6-desc {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr6-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    .hr6-bar-in {
        grid-template-columns: 1fr;
    }
    .hr6-cell {
        padding: 14px 20px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hr6-cell:first-child {
        border-top: none;
    }
    .hr6-cell strong {
        font-size: 15px;
    }
}
.it9-head { margin-bottom: 30px; }
.it9-head .sec-sub { margin-bottom: 0; }
.it9-quote { max-width: 880px; margin: 0 auto 32px; text-align: center; }
.it9-mark { display: block; margin-bottom: 12px; font-size: 52px; line-height: .8; color: var(--accent); opacity: .32; }
.it9-quote p { margin: 0; font-family: var(--font); font-size: 24px; line-height: 1.7; font-weight: 700; color: var(--primary); }
.it9-quote p strong { color: var(--accent); }
.it9-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 880px; margin: 0 auto 40px; border-top: 1px solid rgba(0, 0, 0, .1); border-bottom: 1px solid rgba(0, 0, 0, .1); }
.it9-stats .it1-stat { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 22px 10px; text-align: center; background: none; border: 0; border-left: 0; border-radius: 0; border-right: 1px solid rgba(0, 0, 0, .1); }
.it9-stats .it1-stat:last-child { border-right: 0; }
.it9-stats .it1-num { font-size: 30px; line-height: 1.1; color: var(--accent); }
.it9-stats .it1-lbl { font-size: 13px; color: #666; }
.it9-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 880px; margin: 0 auto; }
.it9-notes p { margin: 0; padding-left: 20px; border-left: 3px solid rgba(0, 0, 0, .08); color: #555; line-height: 1.9; font-size: 15px; }
.it9-notes p strong { color: var(--primary); }
@media (max-width: 768px) {
    .it9-head { margin-bottom: 24px; }
    .it9-quote { margin-bottom: 24px; }
    .it9-mark { font-size: 40px; }
    .it9-quote p { font-size: 18px; }
    .it9-stats { grid-template-columns: 1fr; margin-bottom: 28px; }
    .it9-stats .it1-stat { padding: 16px 10px; border-right: 0; border-bottom: 1px solid rgba(0, 0, 0, .1); }
    .it9-stats .it1-stat:last-child { border-bottom: 0; }
    .it9-stats .it1-num { font-size: 24px; }
    .it9-notes { grid-template-columns: 1fr; gap: 18px; }
}
.wk7-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
.wk7-cards .wk1-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wk7-cards .wk1-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15,23,42,0.18);
}
.wk7-cards .wk1-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--light);
}
.wk7-cards .wk1-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15,23,42,0) 52%, rgba(15,23,42,0.55) 100%);
}
.wk7-cards .wk1-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wk7-cards .wk1-item:hover .wk1-thumb img {
    transform: scale(1.06);
}
.wk7-cards .wk1-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 15px;
    border-radius: 999px;
    background: var(--gold);
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.wk7-cards .wk1-idx {
    position: absolute;
    right: 18px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.85;
}
.wk7-cards .wk1-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 26px 26px;
}
.wk7-cards .wk1-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.wk7-cards .wk1-title {
    margin: 0;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.34;
}
.wk7-cards .wk1-tag {
    flex: none;
    padding: 4px 13px;
    border-radius: 999px;
    background: var(--light);
    color: var(--secondary);
    font-size: 12px;
}
.wk7-cards .wk1-meta {
    margin-top: 10px;
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 0.5px;
}
.wk7-cards .wk1-desc {
    margin: 14px 0 22px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.85;
}
.wk7-cards .wk1-btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 11px 30px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.wk7-cards .wk1-btn:hover {
    background: var(--primary);
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .wk7-cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .wk7-cards .wk1-badge {
        top: 10px;
        left: 10px;
        padding: 4px 11px;
    }
    .wk7-cards .wk1-idx {
        right: 12px;
        bottom: 8px;
        font-size: 24px;
    }
    .wk7-cards .wk1-info {
        padding: 16px;
    }
    .wk7-cards .wk1-title {
        font-size: 18px;
    }
    .wk7-cards .wk1-meta {
        margin-top: 6px;
        font-size: 12px;
    }
    .wk7-cards .wk1-desc {
        margin: 10px 0 14px;
        font-size: 13px;
        line-height: 1.75;
    }
    .wk7-cards .wk1-btn {
        padding: 9px 22px;
        font-size: 13px;
    }
}
.ad4-big{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 42px}
.ad4-big > .ad1-item{padding-left:24px;border-left:3px solid var(--accent);background:none;border-radius:0;box-shadow:none}
.ad4-big .ad1-toggle{display:none}
.ad4-big .ad1-num{display:none}
.ad4-big .ad1-label{display:inline}
.ad4-big .ad1-icon{font-size:28px;line-height:1;margin-bottom:16px}
.ad4-big .ad1-title{font-size:27px;font-weight:800;color:var(--primary);line-height:1.3;margin:0 0 12px;letter-spacing:-.5px}
.ad4-big .ad1-desc{font-size:14px;line-height:1.85;color:#666;margin:0}
@media (max-width:768px){
  .ad4-big{grid-template-columns:1fr;gap:26px}
  .ad4-big > .ad1-item{padding-left:16px}
  .ad4-big .ad1-icon{font-size:22px;margin-bottom:10px}
  .ad4-big .ad1-title{font-size:21px;margin-bottom:8px}
  .ad4-big .ad1-desc{font-size:13px;line-height:1.75}
}
.nw8-tags { border-top:1px solid #e8ecf2 }
.nw8-tags .nw1-item { display:flex; align-items:center; gap:16px; padding:16px 6px; border-bottom:1px solid #e8ecf2; text-decoration:none; transition:padding .25s ease, background .25s ease, border-color .25s ease }
.nw8-tags .nw1-item::before { content:"动态"; order:1; flex:none; width:58px; padding:3px 0; border:1px solid var(--accent); border-radius:6px; text-align:center; font-size:12px; line-height:1.6; font-weight:600; color:var(--accent); transition:background .25s ease, color .25s ease, border-color .25s ease }
.nw8-tags .nw1-item:nth-child(3n+2)::before { content:"榜单"; border-color:var(--primary); color:var(--primary) }
.nw8-tags .nw1-item:nth-child(3n)::before { content:"合作"; border-color:var(--gold); color:var(--gold) }
.nw8-tags .nw1-title { order:2; flex:1; min-width:0; font-size:16px; line-height:1.5; font-weight:600; color:var(--primary); transition:color .25s ease }
.nw8-tags .nw1-date { order:3; flex:none; font-size:12px; letter-spacing:.5px; color:var(--gray); transition:color .25s ease }
.nw8-tags .nw1-idx { order:4; flex:none; min-width:20px; text-align:right; font-size:12px; line-height:1.6; color:#c9d2dd; transition:color .25s ease }
.nw8-tags .nw1-item:hover { padding-left:14px; background:#f7f9fc; border-bottom-color:var(--accent) }
.nw8-tags .nw1-item:hover::before { background:var(--accent); border-color:var(--accent); color:#fff }
.nw8-tags .nw1-item:hover .nw1-title { color:var(--accent) }
.nw8-tags .nw1-item:hover .nw1-date { color:var(--primary) }
.nw8-tags .nw1-item:hover .nw1-idx { color:var(--accent) }
@media (max-width:768px) {
    .nw8-tags .nw1-item { flex-wrap:wrap; gap:6px 10px; padding:13px 4px }
    .nw8-tags .nw1-item::before { width:52px; padding:2px 0; font-size:11px }
    .nw8-tags .nw1-title { order:4; flex:1 1 100%; font-size:14px; line-height:1.55 }
    .nw8-tags .nw1-date { order:2; margin-left:auto; font-size:11px }
    .nw8-tags .nw1-idx { order:3; font-size:11px }
    .nw8-tags .nw1-item:hover { padding-left:8px }
}
.fq2-grid { position:relative; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); max-width:1080px; margin:0 auto; border-top:1px solid #e4eaf2 }
.fq2-grid::after { content:""; position:absolute; top:0; bottom:0; left:50%; width:1px; background:#e4eaf2 }
.fq2-grid .fq1-item { padding:24px 34px 26px; border-bottom:1px solid #e4eaf2; transition:background .3s ease }
.fq2-grid .fq1-item:hover { background:#fafbfe }
.fq2-grid .fq1-q { font-size:16px; line-height:1.55; font-weight:700; color:var(--primary) }
.fq2-grid .fq1-no { display:inline-block; min-width:26px; margin-right:6px; color:var(--gold); font-size:15px; font-weight:700; letter-spacing:1px }
.fq2-grid .fq1-a { max-height:none; overflow:visible; opacity:1 }
.fq2-grid .fq1-a-in { margin-top:10px; padding-left:34px; font-size:14px; line-height:1.85; color:var(--gray) }
@media (max-width:768px) {
    .fq2-grid { grid-template-columns:minmax(0,1fr) }
    .fq2-grid::after { display:none }
    .fq2-grid .fq1-item { padding:18px 16px; }
    .fq2-grid .fq1-q { font-size:15px }
    .fq2-grid .fq1-no { min-width:22px; margin-right:4px; font-size:14px }
    .fq2-grid .fq1-a-in { margin-top:8px; padding-left:26px; font-size:13px }
}
.cm6-quotes { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px }
.cm6-quotes .cm1-item { position:relative; overflow:hidden; padding:36px 26px 24px; background:#fff; border-radius:var(--radius); border-top:3px solid var(--accent); box-shadow:var(--shadow); transition:transform .3s ease }
.cm6-quotes .cm1-item:nth-child(even) { border-top-color:var(--secondary) }
.cm6-quotes .cm1-item:nth-child(3n) { border-top-color:var(--gold) }
.cm6-quotes .cm1-item:hover { transform:translateY(-4px) }
.cm6-quotes .cm1-item::before { content:"\201C"; position:absolute; top:-18px; left:12px; font-family:var(--font); font-size:132px; line-height:1; color:rgba(15,23,42,.06); pointer-events:none }
.cm6-quotes .cm1-head { position:relative; z-index:1; display:flex; align-items:center; gap:12px }
.cm6-quotes .cm1-av { flex:none; width:46px; height:46px; border-radius:14px; object-fit:cover; background:var(--light) }
.cm6-quotes .cm1-who { display:flex; flex-direction:column; gap:3px; min-width:0 }
.cm6-quotes .cm1-name { font-size:15px; font-weight:600; color:var(--primary) }
.cm6-quotes .cm1-date { font-size:12px; color:var(--gray) }
.cm6-quotes .cm1-text { position:relative; z-index:1; margin:16px 0 0; font-size:14px; line-height:1.85; color:#4b5563 }
.cm6-quotes .cm1-idx { position:absolute; top:14px; right:18px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm6-quotes .cm1-initial { position:absolute; right:16px; bottom:10px; font-size:54px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm6-quotes { grid-template-columns:minmax(0,1fr); gap:14px }
    .cm6-quotes .cm1-item { padding:28px 16px 18px }
    .cm6-quotes .cm1-item:hover { transform:none }
    .cm6-quotes .cm1-item::before { top:-14px; font-size:96px }
    .cm6-quotes .cm1-av { width:38px; height:38px; border-radius:12px }
    .cm6-quotes .cm1-name { font-size:14px }
    .cm6-quotes .cm1-text { margin-top:12px; font-size:13px; line-height:1.75 }
    .cm6-quotes .cm1-idx { top:12px; right:14px; font-size:11px }
    .cm6-quotes .cm1-initial { font-size:38px }
}
.ft2-foot { background: #101319; padding: 48px 0 42px; }
.ft2-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 34px; }
.ft2-logo { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; }
.ft2-ico { font-size: 20px; line-height: 1; }
.ft2-kw { font-size: 19px; font-weight: 800; letter-spacing: 1px; }
.ft2-kw em { font-style: normal; color: var(--gold); }
.ft2-brand { font-size: 11px; color: rgba(255,255,255,0.42); padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.18); white-space: nowrap; }
.ft2-line { margin-top: 15px; font-size: 13px; line-height: 1.95; color: rgba(255,255,255,0.6); }
.ft2-h { margin-bottom: 15px; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.ft2-h::after { content: ''; display: block; width: 26px; height: 2px; margin-top: 8px; background: var(--accent); }
.ft2-menu { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; list-style: none; }
.ft2-menu a { font-size: 13px; color: rgba(255,255,255,0.66); text-decoration: none; }
.ft2-menu a:hover { color: var(--gold); }
.ft2-info { list-style: none; font-size: 13px; }
.ft2-info li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; color: rgba(255,255,255,0.5); border-bottom: 1px dashed rgba(255,255,255,0.12); }
.ft2-info li:last-child { border-bottom: none; }
.ft2-info b { font-weight: 600; color: #fff; }
.ft2-dom { font-weight: 600; color: var(--gold); }
@media (max-width:768px) {
    .ft2-foot { padding: 30px 0 26px; }
    .ft2-grid { grid-template-columns: 1fr; gap: 26px; }
    .ft2-ico { font-size: 18px; }
    .ft2-kw { font-size: 17px; }
    .ft2-brand { font-size: 10px; }
    .ft2-line { margin-top: 11px; font-size: 12px; }
    .ft2-h { margin-bottom: 11px; font-size: 13px; }
    .ft2-menu { gap: 8px 12px; }
    .ft2-menu a { font-size: 12px; }
    .ft2-info { font-size: 12px; }
    .ft2-info li { padding: 7px 0; }
}


@media (max-width: 768px) {
    .sec { padding: 50px 0; }
    .sec-title { font-size: 26px; }
}
