/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2d1a4a;
    --secondary: #45276b;
    --accent: #b14aff;
    --gold: #ffd93d;
    --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); }

.nv8-bar { position: relative; z-index: 900; background: transparent; border-bottom: 1px solid rgba(0,0,0,0.15); }
.nv8-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; padding: 20px 0; }
.nv8-logo { display: inline-flex; align-items: baseline; gap: 6px; color: var(--primary); text-decoration: none; flex-shrink: 0; }
.nv8-ico { font-size: 15px; line-height: 1; }
.nv8-kw { font-size: 17px; font-weight: 600; letter-spacing: 3px; white-space: nowrap; }
.nv8-kw em { font-style: normal; color: var(--gray); }
.nv8-brand { font-size: 10px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; white-space: nowrap; }
.nv8-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 24px; list-style: none; }
.nv8-menu a { display: block; padding-bottom: 3px; font-size: 13px; letter-spacing: 1px; color: #5a5a5a; text-decoration: none; border-bottom: 1px solid transparent; }
.nv8-menu a:hover { color: var(--primary); border-bottom-color: var(--primary); }
@media (max-width:768px) {
    .nv8-inner { flex-direction: column; align-items: center; gap: 10px; padding: 14px 0; }
    .nv8-kw { font-size: 16px; letter-spacing: 2px; }
    .nv8-ico { font-size: 14px; }
    .nv8-brand { font-size: 9px; }
    .nv8-menu { justify-content: center; gap: 14px; }
    .nv8-menu a { font-size: 12px; }
}
.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;
    }
}
.it4-head { margin-bottom: 34px; }
.it4-head .sec-sub { margin-bottom: 0; }
.it4-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.it4-card { padding: 30px 32px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.it4-card p { color: #555; line-height: 1.9; font-size: 15px; margin-bottom: 14px; }
.it4-card p:last-child { margin-bottom: 0; }
.it4-card p strong { color: var(--primary); }
.it4-card-wide { grid-column: span 2; }
.it4-card-data { display: flex; flex-direction: column; justify-content: center; gap: 18px; background: var(--primary); }
.it4-metric { display: flex; align-items: baseline; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.it4-metric:last-child { padding-bottom: 0; border-bottom: 0; }
.it4-mnum { font-size: 30px; line-height: 1; font-weight: 800; color: #fff; }
.it4-mlbl { font-size: 13px; color: rgba(255, 255, 255, .72); }
@media (max-width: 768px) {
    .it4-grid { grid-template-columns: 1fr; gap: 16px; }
    .it4-card { padding: 22px 20px; }
    .it4-card-wide { grid-column: span 1; }
    .it4-card-data { gap: 14px; }
    .it4-mnum { font-size: 24px; }
}
.wk9-stack {
    position: relative;
    padding-bottom: 34px;
}
.wk9-stack .wk1-item {
    position: relative;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: -28px;
    padding: 16px 16px 42px;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(15,23,42,0.13);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.wk9-stack .wk1-item:first-child {
    margin-top: 0;
}
.wk9-stack .wk1-item:nth-child(2n) {
    margin-left: 70px;
}
.wk9-stack .wk1-item:nth-child(2n+1) {
    margin-right: 70px;
}
.wk9-stack .wk1-item:hover {
    z-index: 6;
    transform: translate(16px, -10px);
    border-color: var(--accent);
    box-shadow: 0 26px 48px rgba(15,23,42,0.2);
}
.wk9-stack .wk1-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--light);
}
.wk9-stack .wk1-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wk9-stack .wk1-item:hover .wk1-thumb img {
    transform: scale(1.05);
}
.wk9-stack .wk1-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
}
.wk9-stack .wk1-idx {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
}
.wk9-stack .wk1-info {
    min-width: 0;
}
.wk9-stack .wk1-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.wk9-stack .wk1-title {
    margin: 0;
    color: var(--primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}
.wk9-stack .wk1-tag {
    flex: none;
    padding: 3px 13px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
}
.wk9-stack .wk1-meta {
    margin-top: 8px;
    color: var(--gray);
    font-size: 13px;
}
.wk9-stack .wk1-desc {
    display: -webkit-box;
    margin: 10px 0 14px;
    overflow: hidden;
    color: var(--gray);
    font-size: 13px;
    line-height: 1.78;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wk9-stack .wk1-btn {
    padding: 8px 24px;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.25s ease;
}
.wk9-stack .wk1-btn:hover {
    background: var(--accent);
}
@media (max-width: 768px) {
    .wk9-stack {
        padding-bottom: 0;
    }
    .wk9-stack .wk1-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        margin-top: 0;
        padding: 12px;
    }
    .wk9-stack .wk1-item:nth-child(2n),
    .wk9-stack .wk1-item:nth-child(2n+1) {
        margin-left: 0;
        margin-right: 0;
    }
    .wk9-stack .wk1-item:hover {
        transform: none;
    }
    .wk9-stack .wk1-idx {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .wk9-stack .wk1-title {
        font-size: 17px;
    }
    .wk9-stack .wk1-desc {
        margin: 8px 0 12px;
        -webkit-line-clamp: 2;
    }
    .wk9-stack .wk1-btn {
        padding: 7px 18px;
        font-size: 12px;
    }
}
.ad9-head{padding-bottom:18px;border-bottom:2px solid var(--primary)}
.ad9-table > .ad1-item{position:relative;display:grid;grid-template-columns:38px 46px minmax(170px,240px) 1fr;column-gap:18px;align-items:center;padding:22px 6px;border-bottom:1px solid #e6eaf0;transition:background .25s ease}
.ad9-table > .ad1-item:last-child{border-bottom:0}
.ad9-table > .ad1-item:hover{background:#f7f9fc}
.ad9-table .ad1-toggle{display:none}
.ad9-table .ad1-num{grid-column:1;grid-row:1;font-size:13px;font-weight:800;letter-spacing:1px;color:#b6c1d0;line-height:1;text-align:center}
.ad9-table .ad1-icon{grid-column:2;grid-row:1;width:40px;height:40px;margin:0;border-radius:10px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;line-height:1}
.ad9-table .ad1-label{display:inline}
.ad9-table .ad1-title{grid-column:3;grid-row:1;font-size:17px;font-weight:700;color:var(--primary);margin:0;line-height:1.45}
.ad9-table .ad1-desc{grid-column:4;grid-row:1;font-size:14px;line-height:1.8;color:#666;margin:0}
@media (max-width:768px){
  .ad9-head{padding-bottom:14px}
  .ad9-table > .ad1-item{grid-template-columns:32px 40px 1fr;column-gap:12px;row-gap:6px;padding:16px 2px}
  .ad9-table .ad1-num{grid-column:1;grid-row:1;font-size:11px}
  .ad9-table .ad1-icon{grid-column:2;grid-row:1;width:34px;height:34px;border-radius:9px;font-size:15px}
  .ad9-table .ad1-title{grid-column:3;grid-row:1;font-size:15px}
  .ad9-table .ad1-desc{grid-column:2 / span 2;grid-row:2;font-size:13px;line-height:1.75}
}
.nw3-cards { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px }
.nw3-cards .nw1-item { position:relative; display:flex; flex-direction:column; min-height:190px; overflow:hidden; padding:46px 24px 24px; border:1px solid #e8ecf2; border-top:3px solid var(--primary); border-radius:var(--radius); background:#fff; box-shadow:var(--shadow); text-decoration:none; transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease }
.nw3-cards .nw1-item:hover { transform:translateY(-6px); border-top-color:var(--accent); box-shadow:0 18px 36px rgba(15,23,42,.16) }
.nw3-cards .nw1-date { position:absolute; top:0; right:0; padding:6px 14px; border-bottom-left-radius:var(--radius); background:var(--primary); color:#fff; font-size:12px; letter-spacing:.5px; transition:background .3s ease }
.nw3-cards .nw1-item:hover .nw1-date { background:var(--accent) }
.nw3-cards .nw1-title { font-size:21px; line-height:1.45; font-weight:700; color:var(--primary); transition:color .3s ease }
.nw3-cards .nw1-item:hover .nw1-title { color:var(--accent) }
.nw3-cards .nw1-idx { margin-top:auto; padding-top:20px; font-size:46px; font-weight:800; line-height:1; color:#eef1f6; letter-spacing:-1px }
@media (max-width:768px) {
    .nw3-cards { grid-template-columns:minmax(0,1fr); gap:14px }
    .nw3-cards .nw1-item { min-height:0; padding:38px 18px 18px }
    .nw3-cards .nw1-date { padding:5px 11px; font-size:11px }
    .nw3-cards .nw1-title { font-size:17px }
    .nw3-cards .nw1-idx { padding-top:14px; font-size:34px }
}
.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; }
}
.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 }
}
.ft7-foot { background: var(--primary); padding: 54px 0; }
.ft7-card { display: grid; grid-template-columns: 1.25fr 1fr; align-items: center; gap: 30px; padding: 32px 36px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.ft7-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); text-decoration: none; }
.ft7-ico { font-size: 22px; line-height: 1; }
.ft7-kw { font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.ft7-kw em { font-style: normal; color: var(--accent); }
.ft7-brand { font-size: 11px; font-weight: 500; color: var(--gray); padding-left: 8px; border-left: 1px solid rgba(0,0,0,0.14); white-space: nowrap; }
.ft7-line { margin-top: 12px; font-size: 13px; line-height: 1.9; color: #667085; }
.ft7-menu { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 14px; list-style: none; }
.ft7-menu a { font-size: 12px; color: var(--primary); text-decoration: none; }
.ft7-menu a:hover { color: var(--accent); }
.ft7-info { list-style: none; padding-left: 30px; border-left: 1px dashed rgba(0,0,0,0.12); }
.ft7-info li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 12px; color: #8892a0; }
.ft7-info b { font-weight: 700; color: var(--primary); }
.ft7-dom { font-weight: 700; letter-spacing: 1px; color: var(--accent); }
@media (max-width:768px) {
    .ft7-foot { padding: 34px 0; }
    .ft7-card { grid-template-columns: 1fr; gap: 20px; padding: 24px 22px; }
    .ft7-ico { font-size: 19px; }
    .ft7-kw { font-size: 17px; }
    .ft7-brand { font-size: 10px; }
    .ft7-line { margin-top: 9px; font-size: 12px; }
    .ft7-menu { margin-top: 11px; gap: 6px 13px; }
    .ft7-menu a { font-size: 11px; }
    .ft7-info { padding-left: 0; padding-top: 14px; border-left: none; border-top: 1px dashed rgba(0,0,0,0.12); }
    .ft7-info li { padding: 6px 0; font-size: 11px; }
}


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