/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #3d1a2b;
    --secondary: #56243d;
    --accent: #ff4757;
    --gold: #ffd32a;
    --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); }

.nv1-bar { position: sticky; top: 0; z-index: 1000; background: var(--primary); border-bottom: 3px solid var(--accent); box-shadow: 0 2px 18px rgba(0,0,0,0.28); }
.nv1-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 64px; }
.nv1-logo { display: flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; flex-shrink: 0; }
.nv1-ico { font-size: 22px; line-height: 1; }
.nv1-kw { font-size: 21px; font-weight: 800; letter-spacing: 1px; white-space: nowrap; }
.nv1-kw em { font-style: normal; color: var(--gold); }
.nv1-brand { font-size: 12px; color: rgba(255,255,255,0.5); padding-left: 9px; border-left: 1px solid rgba(255,255,255,0.22); white-space: nowrap; }
.nv1-menu { display: flex; align-items: center; gap: 4px; list-style: none; flex-wrap: wrap; }
.nv1-menu a { display: block; padding: 8px 15px; font-size: 14px; color: rgba(255,255,255,0.86); border-radius: 999px; text-decoration: none; }
.nv1-menu a:hover { background: rgba(255,255,255,0.14); color: #fff; }
@media (max-width:768px) {
    .nv1-inner { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 10px 0; }
    .nv1-kw { font-size: 18px; }
    .nv1-ico { font-size: 19px; }
    .nv1-brand { font-size: 11px; }
    .nv1-menu { justify-content: center; gap: 2px; width: 100%; }
    .nv1-menu a { padding: 6px 10px; font-size: 13px; }
}
.hr7-hero {
    padding: 80px 0;
    background: #fff;
}
.hr7-stack {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
}
.hr7-media {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    padding-top: 30px;
}
.hr7-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hr7-badge {
    position: absolute;
    top: 8px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}
.hr7-card {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    margin-right: -80px;
    margin-bottom: 62px;
    padding: 42px 38px 38px;
    border-top: 5px solid var(--accent);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}
.hr7-title {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.28;
}
.hr7-title span {
    display: block;
    margin-top: 8px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
}
.hr7-desc {
    margin-bottom: 26px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}
.hr7-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr7-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .hr7-hero {
        padding: 46px 0;
    }
    .hr7-stack {
        grid-template-columns: 1fr;
    }
    .hr7-media {
        grid-column: 1;
        grid-row: 1;
        padding-top: 0;
    }
    .hr7-img {
        aspect-ratio: 16 / 11;
    }
    .hr7-badge {
        top: 12px;
        right: 12px;
        font-size: 12px;
        padding: 6px 12px;
    }
    .hr7-card {
        grid-column: 1;
        grid-row: 2;
        margin: -34px 14px 0;
        padding: 26px 20px 24px;
    }
    .hr7-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .hr7-title span {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .hr7-desc {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr7-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
}
.it6-head { margin-bottom: 34px; }
.it6-head .sec-sub { margin-bottom: 0; }
.it6-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.it6-card { display: flex; flex-direction: column; padding: 28px 26px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.it6-label { display: block; margin-bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--accent); }
.it6-card p { color: #555; line-height: 1.9; font-size: 15px; margin: 0 0 14px; }
.it6-card p:last-child { margin-bottom: 0; }
.it6-card p strong { color: var(--primary); }
.it6-card-data { background: var(--primary); }
.it6-card-data .it6-label { color: var(--gold); }
.it6-card-data p { color: rgba(255, 255, 255, .78); }
.it6-card-note { background: var(--light); box-shadow: none; border-top: 3px solid var(--accent); }
.it6-stats { display: flex; flex-direction: column; }
.it6-stats .it1-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 0; background: none; border: 0; border-left: 0; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.it6-stats .it1-stat:first-child { padding-top: 0; }
.it6-stats .it1-stat:last-child { padding-bottom: 0; border-bottom: 0; }
.it6-stats .it1-num { font-size: 30px; line-height: 1.1; color: #fff; }
.it6-stats .it1-lbl { font-size: 13px; color: rgba(255, 255, 255, .72); }
@media (max-width: 768px) {
    .it6-cards { grid-template-columns: 1fr; gap: 14px; }
    .it6-card { padding: 20px 18px; }
    .it6-label { margin-bottom: 10px; }
    .it6-stats .it1-num { font-size: 24px; }
}
.wk1-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px }
.wk1-grid .wk1-item { display:flex; flex-direction:column; background:#fff; border:1px solid #e8ecf2; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease }
.wk1-grid .wk1-item:hover { transform:translateY(-6px); box-shadow:0 18px 36px rgba(15,23,42,.16) }
.wk1-grid .wk1-thumb { position:relative; aspect-ratio:16/9; overflow:hidden; background:var(--light) }
.wk1-grid .wk1-thumb img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .5s ease }
.wk1-grid .wk1-item:hover .wk1-thumb img { transform:scale(1.07) }
.wk1-grid .wk1-badge { position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:999px; background:var(--accent); color:#fff; font-size:12px; line-height:1.5; letter-spacing:.5px }
.wk1-grid .wk1-idx { position:absolute; top:10px; right:10px; display:flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:rgba(15,23,42,.62); color:#fff; font-size:12px }
.wk1-grid .wk1-info { display:flex; flex-direction:column; flex:1; padding:16px 16px 18px }
.wk1-grid .wk1-head { display:flex; align-items:flex-start; justify-content:space-between; gap:10px }
.wk1-grid .wk1-title { margin:0; font-size:17px; line-height:1.42; font-weight:700; color:var(--primary) }
.wk1-grid .wk1-tag { flex:none; padding:2px 9px; border-radius:var(--radius); background:var(--light); color:var(--secondary); font-size:12px }
.wk1-grid .wk1-meta { margin-top:8px; font-size:13px; color:var(--gray) }
.wk1-grid .wk1-desc { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin:10px 0 14px; font-size:13px; line-height:1.7; color:var(--gray) }
.wk1-grid .wk1-btn { align-self:flex-start; margin-top:auto; padding:8px 18px; border:1px solid var(--accent); border-radius:999px; background:transparent; color:var(--accent); font-size:13px; cursor:pointer; transition:background .25s ease, color .25s ease }
.wk1-grid .wk1-btn:hover { background:var(--accent); color:#fff }
@media (max-width:768px) {
    .wk1-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px }
    .wk1-grid .wk1-info { padding:12px }
    .wk1-grid .wk1-title { font-size:15px }
    .wk1-grid .wk1-desc { margin:8px 0 10px }
    .wk1-grid .wk1-btn { padding:7px 14px; font-size:12px }
}
.ad7-row{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border:1px solid #e6eaf0;border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.ad7-row > .ad1-item{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;padding:34px 20px 30px;border-left:1px solid #e6eaf0;transition:background .3s ease}
.ad7-row > .ad1-item:first-child{border-left:0}
.ad7-row > .ad1-item:hover{background:#f7f9fc}
.ad7-row > .ad1-item::after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;background:var(--accent);transform:scaleX(0);transition:transform .3s ease}
.ad7-row > .ad1-item:hover::after{transform:scaleX(1)}
.ad7-row .ad1-toggle{display:none}
.ad7-row .ad1-num{position:absolute;top:14px;right:14px;padding:2px 8px;border:1px solid #e6eaf0;border-radius:20px;background:#fafbfd;font-size:11px;font-weight:700;line-height:1.4;color:#9aa7b8}
.ad7-row .ad1-icon{width:56px;height:56px;margin-bottom:16px;border:2px solid var(--accent);border-radius:50%;color:var(--accent);display:flex;align-items:center;justify-content:center;font-size:23px;line-height:1}
.ad7-row .ad1-label{display:inline}
.ad7-row .ad1-title{font-size:16px;font-weight:700;color:var(--primary);margin:0 0 8px;line-height:1.4}
.ad7-row .ad1-desc{font-size:13px;line-height:1.75;color:#666;margin:0}
@media (max-width:768px){
  .ad7-row{grid-template-columns:repeat(2,1fr)}
  .ad7-row > .ad1-item{padding:22px 12px}
  .ad7-row > .ad1-item:nth-child(odd){border-left:0}
  .ad7-row > .ad1-item:nth-child(n+3){border-top:1px solid #e6eaf0}
  .ad7-row .ad1-num{top:10px;right:10px;font-size:10px;padding:1px 7px}
  .ad7-row .ad1-icon{width:46px;height:46px;margin-bottom:12px;font-size:19px}
  .ad7-row .ad1-title{font-size:15px;margin-bottom:6px}
  .ad7-row .ad1-desc{font-size:12px;line-height:1.7}
}
.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 }
}
.faq6-deck { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq6-deck .fq1-item { position: relative; border-left: 4px solid transparent; border-radius: 20px; background: #fff; box-shadow: 0 4px 18px rgba(0, 0, 0, .06); transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.faq6-deck .fq1-item:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .1); }
.faq6-deck .fq1-item.open { border-left-color: var(--accent); box-shadow: 0 14px 32px rgba(0, 0, 0, .12); }
.faq6-deck .fq1-q { display: flex; align-items: center; gap: 14px; padding: 20px 22px; font-size: 16px; line-height: 1.6; font-weight: 700; color: var(--primary); cursor: pointer; transition: color .3s ease; }
.faq6-deck .fq1-item.open .fq1-q { color: var(--accent); }
.faq6-deck .fq1-no { flex: none; display: block; width: 34px; height: 34px; border-radius: 12px; background: var(--light); color: var(--gray); font-size: 13px; font-weight: 700; line-height: 34px; text-align: center; transition: background .3s ease, color .3s ease; }
.faq6-deck .fq1-item.open .fq1-no { background: var(--accent); color: #fff; }
.faq6-deck .fq1-q::after { content: "+"; flex: none; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; margin-left: auto; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; line-height: 1; transition: background .3s ease, transform .3s ease; }
.faq6-deck .fq1-item.open .fq1-q::after { background: var(--accent); transform: rotate(45deg); }
.faq6-deck .fq1-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq6-deck .fq1-item.open .fq1-a { max-height: 480px; }
.faq6-deck .fq1-a-in { margin: 0 22px; padding: 14px 0 20px 48px; border-top: 1px solid rgba(0, 0, 0, .07); font-size: 14px; line-height: 1.9; color: var(--gray); }
@media (max-width: 768px) {
    .faq6-deck { gap: 12px; }
    .faq6-deck .fq1-item { border-radius: 14px; }
    .faq6-deck .fq1-q { gap: 10px; padding: 15px 16px; font-size: 15px; }
    .faq6-deck .fq1-no { width: 28px; height: 28px; border-radius: 9px; font-size: 12px; line-height: 28px; }
    .faq6-deck .fq1-q::after { width: 24px; height: 24px; font-size: 16px; }
    .faq6-deck .fq1-item.open .fq1-a { max-height: 640px; }
    .faq6-deck .fq1-a-in { margin: 0 16px; padding: 12px 0 16px; font-size: 13px; }
}
.cm7-scroll { display:flex; align-items:stretch; gap:20px; overflow-x:auto; padding:6px 2px 18px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch }
.cm7-scroll .cm1-item { flex:0 0 282px; width:282px; scroll-snap-align:start; display:flex; flex-direction:column; min-height:248px; padding:22px 20px 20px; background:#fff; border:1px solid #e8ecf2; border-radius:var(--radius); box-shadow:var(--shadow) }
.cm7-scroll .cm1-head { display:flex; align-items:center; gap:12px; padding-bottom:14px; border-bottom:1px dashed #e3e9f1 }
.cm7-scroll .cm1-av { flex:none; width:42px; height:42px; border-radius:50%; object-fit:cover; background:var(--light); border:2px solid var(--light) }
.cm7-scroll .cm1-who { display:flex; flex-direction:column; gap:2px; min-width:0 }
.cm7-scroll .cm1-name { font-size:14px; font-weight:600; color:var(--primary); white-space:nowrap; overflow:hidden; text-overflow:ellipsis }
.cm7-scroll .cm1-date { font-size:12px; color:var(--gray) }
.cm7-scroll .cm1-text { flex:1 1 auto; margin:14px 0 0; font-size:13px; line-height:1.8; color:#4b5563; overflow:hidden }
.cm7-scroll .cm1-idx { margin-top:14px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm7-scroll .cm1-initial { display:none }
.cm7-scroll::-webkit-scrollbar { height:8px }
.cm7-scroll::-webkit-scrollbar-track { background:#eef1f6; border-radius:99px }
.cm7-scroll::-webkit-scrollbar-thumb { background:var(--accent); border-radius:99px }
.cm7-scroll::-webkit-scrollbar-thumb:hover { background:var(--primary) }
@media (max-width:768px) {
    .cm7-scroll { gap:12px; padding-bottom:14px }
    .cm7-scroll .cm1-item { flex:0 0 218px; width:218px; min-height:210px; padding:16px 14px 14px }
    .cm7-scroll .cm1-head { gap:9px; padding-bottom:10px }
    .cm7-scroll .cm1-av { width:34px; height:34px }
    .cm7-scroll .cm1-name { font-size:13px }
    .cm7-scroll .cm1-date { font-size:11px }
    .cm7-scroll .cm1-text { margin-top:10px; font-size:12px; line-height:1.7 }
    .cm7-scroll .cm1-idx { margin-top:10px; font-size:11px }
}
.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; }
}
