/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #0a0a0f;
    --secondary: #15151f;
    --accent: #ff2d55;
    --gold: #00e5ff;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 8px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: Georgia, "Songti SC", "SimSun", "Times New Roman", 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); }

.nv4-bar { position: sticky; top: 0; z-index: 950; background: #fff; box-shadow: 0 3px 18px rgba(0,0,0,0.09); }
.nv4-bar::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.nv4-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; }
.nv4-menu { display: flex; align-items: center; flex-wrap: wrap; list-style: none; }
.nv4-menu a { display: block; position: relative; padding: 12px 14px; font-size: 13px; letter-spacing: 1px; color: #4a4a4a; text-decoration: none; }
.nv4-menu a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left center; transition: transform 0.25s ease; }
.nv4-menu a:hover { color: var(--primary); }
.nv4-menu a:hover::after { transform: scaleX(1); }
.nv4-logo { display: flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.nv4-ico { font-size: 24px; line-height: 1; }
.nv4-kw { font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.nv4-kw em { font-style: normal; color: var(--accent); }
.nv4-brand { font-size: 12px; font-weight: 500; color: var(--gray); padding-left: 9px; border-left: 1px solid rgba(0,0,0,0.14); }
@media (max-width:768px) {
    .nv4-inner { flex-direction: column; gap: 6px; padding: 10px 0; }
    .nv4-logo { order: -1; }
    .nv4-ico { font-size: 21px; }
    .nv4-kw { font-size: 19px; letter-spacing: 1px; }
    .nv4-brand { font-size: 11px; }
    .nv4-menu { justify-content: center; }
    .nv4-menu a { padding: 7px 9px; font-size: 12px; }
    .nv4-menu a::after { left: 9px; right: 9px; bottom: 2px; }
}
.hr10-hero {
    padding: 84px 0;
    background: #fff;
}
.hr10-grid {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 46px;
    align-items: center;
}
.hr10-left {
    text-align: right;
}
.hr10-kicker {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 5px;
}
.hr10-title {
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.26;
}
.hr10-title span {
    display: block;
    margin-top: 12px;
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}
.hr10-media {
    position: relative;
}
.hr10-img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hr10-note {
    position: absolute;
    left: 50%;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}
.hr10-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-left: 22px;
    border-left: 3px solid var(--gold);
}
.hr10-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
}
.hr10-btn {
    padding: 13px 34px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr10-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .hr10-hero {
        padding: 44px 0;
    }
    .hr10-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hr10-left {
        text-align: left;
    }
    .hr10-kicker {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 3px;
    }
    .hr10-title {
        font-size: 26px;
    }
    .hr10-title span {
        margin-top: 6px;
        font-size: 15px;
        letter-spacing: 1px;
    }
    .hr10-img {
        aspect-ratio: 16 / 10;
    }
    .hr10-note {
        bottom: 12px;
        padding: 5px 12px;
    }
    .hr10-right {
        gap: 16px;
        padding-left: 14px;
    }
    .hr10-desc {
        font-size: 14px;
        line-height: 1.75;
    }
    .hr10-btn {
        padding: 11px 26px;
        font-size: 14px;
    }
}
.it5-flow { margin-top: 6px; }
.it5-row { display: grid; grid-template-columns: 1.5fr .5fr; gap: 38px; align-items: center; padding: 28px 0; border-bottom: 1px dashed rgba(0, 0, 0, .14); }
.it5-flow .it5-row:first-child { padding-top: 0; }
.it5-row:last-child { padding-bottom: 0; border-bottom: 0; }
.it5-rev { grid-template-columns: .5fr 1.5fr; }
.it5-rev .it5-text { order: 2; }
.it5-rev .it5-data { order: 1; }
.it5-idx { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; letter-spacing: .22em; color: var(--accent); }
.it5-text p { color: #555; line-height: 1.9; font-size: 15px; margin: 0; }
.it5-text p strong { color: var(--primary); }
.it5-data { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 26px 16px; text-align: center; background: var(--light); border-top: 3px solid var(--accent); border-radius: var(--radius); }
.it5-num { font-size: 32px; line-height: 1; font-weight: 800; color: var(--primary); }
.it5-lbl { font-size: 13px; color: #666; }
@media (max-width: 768px) {
    .it5-row, .it5-rev { grid-template-columns: 1fr; gap: 14px; padding: 20px 0; }
    .it5-rev .it5-text, .it5-rev .it5-data { order: 0; }
    .it5-data { padding: 18px 14px; }
    .it5-num { font-size: 26px; }
}
.wk8-table {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.wk8-head {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 168px 128px 132px;
    align-items: center;
    gap: 16px;
    height: 48px;
    padding: 0 20px;
    background: var(--primary);
}
.wk8-th {
    color: rgba(255,255,255,0.86);
    font-size: 13px;
    letter-spacing: 2px;
}
.wk8-table .wk1-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 168px 128px 132px;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 0 20px;
    border-bottom: 1px solid #eef1f6;
    transition: background 0.25s ease;
}
.wk8-table .wk1-item:nth-child(even) {
    background: #fafbfd;
}
.wk8-table .wk1-item:last-child {
    border-bottom: none;
}
.wk8-table .wk1-item:hover {
    background: var(--light);
}
.wk8-table .wk1-thumb {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
}
.wk8-table .wk1-thumb img {
    display: none;
}
.wk8-table .wk1-idx {
    color: var(--accent);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}
.wk8-table .wk1-badge {
    padding: 1px 9px;
    border-radius: 999px;
    background: var(--light);
    color: var(--secondary);
    font-size: 11px;
    line-height: 1.7;
    white-space: nowrap;
}
.wk8-table .wk1-item:hover .wk1-badge {
    background: #fff;
}
.wk8-table .wk1-info {
    display: contents;
}
.wk8-table .wk1-head {
    display: contents;
}
.wk8-table .wk1-title {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}
.wk8-table .wk1-item:hover .wk1-title {
    color: var(--accent);
}
.wk8-table .wk1-meta {
    grid-column: 3;
    grid-row: 1;
    color: var(--gray);
    font-size: 13px;
}
.wk8-table .wk1-tag {
    grid-column: 4;
    grid-row: 1;
    justify-self: start;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 12px;
    white-space: nowrap;
}
.wk8-table .wk1-btn {
    grid-column: 5;
    grid-row: 1;
    justify-self: start;
    padding: 7px 20px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: transparent;
    color: var(--accent);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.wk8-table .wk1-btn:hover {
    background: var(--accent);
    color: #fff;
}
.wk8-table .wk1-desc {
    display: none;
}
@media (max-width: 768px) {
    .wk8-head {
        display: none;
    }
    .wk8-table .wk1-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 6px 14px;
        min-height: 0;
        padding: 14px 16px;
    }
    .wk8-table .wk1-thumb {
        grid-column: 1;
        grid-row: 1 / span 5;
        justify-content: flex-start;
    }
    .wk8-table .wk1-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 15px;
    }
    .wk8-table .wk1-meta {
        grid-column: 2;
        grid-row: 2;
        font-size: 12px;
    }
    .wk8-table .wk1-tag {
        grid-column: 2;
        grid-row: 3;
        justify-self: start;
        padding: 2px 10px;
        font-size: 11px;
    }
    .wk8-table .wk1-desc {
        display: -webkit-box;
        grid-column: 2;
        grid-row: 4;
        margin: 0;
        overflow: hidden;
        color: var(--gray);
        font-size: 12px;
        line-height: 1.65;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .wk8-table .wk1-btn {
        grid-column: 2;
        grid-row: 5;
        justify-self: start;
        padding: 6px 15px;
        font-size: 12px;
    }
}
.ad3-timeline{position:relative;padding-left:52px;max-width:900px}
.ad3-timeline::before{content:"";position:absolute;left:15px;top:12px;bottom:12px;width:2px;background:linear-gradient(180deg,var(--primary),var(--accent))}
.ad3-timeline > .ad1-item{position:relative;display:grid;grid-template-columns:34px 1fr;column-gap:14px;row-gap:6px;padding-bottom:32px;background:none;border:0;box-shadow:none}
.ad3-timeline > .ad1-item:last-child{padding-bottom:0}
.ad3-timeline .ad1-toggle{display:none}
.ad3-timeline .ad1-num{position:absolute;left:-51px;top:2px;width:30px;height:30px;border-radius:50%;background:var(--primary);color:#fff;font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;line-height:1}
.ad3-timeline .ad1-icon{grid-column:1;grid-row:1;align-self:center;text-align:center;font-size:24px;line-height:1;color:var(--accent)}
.ad3-timeline .ad1-label{display:inline}
.ad3-timeline .ad1-title{grid-column:2;grid-row:1;font-size:18px;font-weight:700;color:var(--primary);margin:0;line-height:1.4}
.ad3-timeline .ad1-desc{grid-column:2;grid-row:2;font-size:14px;line-height:1.8;color:#666;margin:0}
@media (max-width:768px){
  .ad3-timeline{padding-left:40px}
  .ad3-timeline::before{left:11px;top:6px;bottom:6px}
  .ad3-timeline > .ad1-item{grid-template-columns:1fr;row-gap:4px;padding-bottom:26px}
  .ad3-timeline .ad1-num{left:-40px;top:0;width:24px;height:24px;font-size:11px}
  .ad3-timeline .ad1-icon{display:none}
  .ad3-timeline .ad1-title{grid-column:1;font-size:16px}
  .ad3-timeline .ad1-desc{grid-column:1;font-size:13px}
}
.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 }
}
.faq5-split { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 46px; align-items: start; }
.faq5-side { position: sticky; top: 96px; }
.faq5-side .sec-title { font-size: 30px; }
.faq5-side .sec-sub { max-width: none; margin-bottom: 22px; font-size: 15px; line-height: 1.9; }
.faq5-note { display: block; padding-top: 18px; border-top: 2px solid var(--accent); font-size: 13px; letter-spacing: .12em; color: var(--gray); }
.faq5-list { border-top: 1px solid rgba(0, 0, 0, .1); }
.faq5-list .fq1-item { border-bottom: 1px solid rgba(0, 0, 0, .1); }
.faq5-list .fq1-q { position: relative; padding: 20px 48px 20px 0; font-size: 16px; line-height: 1.6; font-weight: 700; color: var(--primary); cursor: pointer; transition: color .3s ease; }
.faq5-list .fq1-no { display: none; }
.faq5-list .fq1-q::after { content: ""; position: absolute; top: 50%; right: 6px; width: 9px; height: 9px; border-right: 2px solid var(--gray); border-bottom: 2px solid var(--gray); transform: translateY(-70%) rotate(45deg); transition: transform .3s ease, border-color .3s ease; }
.faq5-list .fq1-item.open .fq1-q { color: var(--accent); }
.faq5-list .fq1-item.open .fq1-q::after { border-color: var(--accent); transform: translateY(-30%) rotate(-135deg); }
.faq5-list .fq1-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq5-list .fq1-item.open .fq1-a { max-height: 460px; }
.faq5-list .fq1-a-in { padding: 0 48px 22px 0; font-size: 14px; line-height: 1.9; color: var(--gray); }
@media (max-width: 768px) {
    .faq5-split { grid-template-columns: minmax(0, 1fr); gap: 24px; }
    .faq5-side { position: static; top: auto; }
    .faq5-side .sec-title { font-size: 24px; }
    .faq5-side .sec-sub { margin-bottom: 14px; font-size: 14px; }
    .faq5-note { padding-top: 12px; font-size: 12px; }
    .faq5-list .fq1-q { padding: 16px 40px 16px 0; font-size: 15px; }
    .faq5-list .fq1-q::after { right: 4px; width: 8px; height: 8px; }
    .faq5-list .fq1-item.open .fq1-a { max-height: 620px; }
    .faq5-list .fq1-a-in { padding: 0 20px 18px 0; font-size: 13px; }
}
.cm1-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px }
.cm1-grid .cm1-item { position:relative; overflow:hidden; padding:22px 22px 20px; background:#fff; border:1px solid #e8ecf2; border-radius:var(--radius); box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease }
.cm1-grid .cm1-item:hover { transform:translateY(-5px); box-shadow:0 18px 36px rgba(15,23,42,.14) }
.cm1-grid .cm1-head { display:flex; align-items:center; gap:12px }
.cm1-grid .cm1-av { flex:none; width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid var(--light); background:var(--light) }
.cm1-grid .cm1-who { display:flex; flex-direction:column; gap:3px; min-width:0 }
.cm1-grid .cm1-name { font-size:15px; font-weight:600; color:var(--primary) }
.cm1-grid .cm1-date { font-size:12px; color:var(--gray) }
.cm1-grid .cm1-text { margin:14px 0 0; font-size:14px; line-height:1.8; color:#4b5563 }
.cm1-grid .cm1-idx { position:absolute; top:18px; right:20px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm1-grid .cm1-initial { position:absolute; right:14px; bottom:-16px; font-size:66px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm1-grid { grid-template-columns:minmax(0,1fr); gap:14px }
    .cm1-grid .cm1-item { padding:16px 16px 15px }
    .cm1-grid .cm1-item:hover { transform:none }
    .cm1-grid .cm1-av { width:38px; height:38px }
    .cm1-grid .cm1-name { font-size:14px }
    .cm1-grid .cm1-text { margin-top:10px; font-size:13px; line-height:1.75 }
    .cm1-grid .cm1-idx { top:14px; right:16px }
    .cm1-grid .cm1-initial { font-size:48px; bottom:-12px }
}
.ft4-foot { background: var(--primary); color: rgba(255,255,255,0.68); }
.ft4-top { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: 34px; padding: 46px 20px 34px; }
.ft4-logo { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; }
.ft4-ico { font-size: 20px; line-height: 1; }
.ft4-kw { font-size: 19px; font-weight: 800; letter-spacing: 1px; }
.ft4-kw em { font-style: normal; color: var(--gold); }
.ft4-brand { font-size: 11px; color: rgba(255,255,255,0.44); padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.2); white-space: nowrap; }
.ft4-line { margin-top: 15px; font-size: 13px; line-height: 1.95; color: rgba(255,255,255,0.6); }
.ft4-h { margin-bottom: 15px; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.ft4-menu { list-style: none; }
.ft4-menu li { margin-bottom: 9px; }
.ft4-menu a { font-size: 13px; color: rgba(255,255,255,0.66); text-decoration: none; }
.ft4-menu a:hover { color: var(--gold); }
.ft4-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.ft4-tags li { padding: 4px 12px; font-size: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.26); border-radius: 999px; }
.ft4-bar { background: rgba(0,0,0,0.26); }
.ft4-barin { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; font-size: 12px; color: rgba(255,255,255,0.56); }
.ft4-copy b { font-weight: 600; color: var(--gold); letter-spacing: 1px; }
@media (max-width:768px) {
    .ft4-top { grid-template-columns: 1fr; gap: 26px; padding: 30px 20px 24px; }
    .ft4-ico { font-size: 18px; }
    .ft4-kw { font-size: 17px; }
    .ft4-brand { font-size: 10px; }
    .ft4-line { margin-top: 11px; font-size: 12px; }
    .ft4-h { margin-bottom: 11px; font-size: 13px; }
    .ft4-menu li { margin-bottom: 8px; }
    .ft4-menu a { font-size: 12px; }
    .ft4-tags li { padding: 3px 10px; font-size: 11px; }
    .ft4-barin { flex-direction: column; gap: 6px; text-align: center; padding: 12px 20px; }
    .ft4-copy { font-size: 11px; }
}


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