/* ============================================
   Yunland Wiki · 全局样式
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #F8FAFE;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: #1A2C3E;
    line-height: 1.5;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #EFF2F8;
}
::-webkit-scrollbar-thumb {
    background: #B9C2D4;
    border-radius: 12px;
}

.app {
    display: flex;
    min-height: 100vh;
}

/* ============================================
   侧边栏导航
   ============================================ */
.sidebar {
    width: 280px;
    background: #FFFFFF;
    border-right: 1px solid #EFF2F8;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1.2rem;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease-in-out, box-shadow 0.2s;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    border-bottom: 1px solid #EEF2F7;
    padding-bottom: 1rem;
    position: relative;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    background: #EFF6FF;
    padding: 4px;
    transition: all 0.2s;
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0F2B3D;
    letter-spacing: -0.3px;
}

.mobile-close-sidebar {
    margin-left: auto;
    background: #F0F4FA;
    border-radius: 30px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #3C506E;
    font-size: 1.1rem;
}
.mobile-close-sidebar:hover {
    background: #E2E8F2;
}

.nav-links {
    list-style: none;
    margin-top: 1rem;
}

.nav-links li {
    margin: 0.1rem 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    color: #3C506E;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.nav-links a i {
    width: 24px;
    font-size: 1.1rem;
    color: #7086A8;
}

.nav-links a:hover {
    background: #F1F5F9;
    color: #1E3A8A;
}

.nav-links a.active {
    background: #EFF6FF;
    color: #2563EB;
    font-weight: 600;
    border-right: 2px solid #3B82F6;
}
.nav-links a.active i {
    color: #3B82F6;
}

.nav-links .sub-menu {
    list-style: none;
    margin-left: 2rem;
    padding-left: 0.5rem;
    border-left: 1px dashed #E2E8F0;
    display: none;
}
.nav-links .sub-menu.open-sub {
    display: block;
}
.nav-links .sub-menu li {
    margin: 0.2rem 0;
}
.nav-links .sub-menu a {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    gap: 8px;
}
.nav-links .parent-item {
    cursor: pointer;
    justify-content: space-between;
}
.nav-links .parent-item .toggle-icon {
    margin-left: auto;
    transition: transform 0.2s;
}
.nav-links .parent-item .toggle-icon.rotated {
    transform: rotate(90deg);
}

.sidebar-footer {
    margin-top: 2.5rem;
    font-size: 0.7rem;
    color: #8AA0BC;
    text-align: center;
    border-top: 1px solid #EDF2F7;
    padding-top: 1.2rem;
}

/* ============================================
   主内容区域
   ============================================ */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2.5rem 3rem 4rem;
    max-width: calc(100% - 280px);
}

.hero-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0A2540;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

/* ============================================
   卡片样式
   ============================================ */
.doc-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E9EDF4;
    padding: 1.8rem 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.doc-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border-color: #DCE3EC;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid #3B82F6;
    padding-left: 1rem;
    color: #1F2A44;
}
.card-title i {
    color: #3B82F6;
    font-size: 1.4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.info-card {
    background: #FBFDFF;
    border-radius: 20px;
    padding: 1.3rem;
    border: 1px solid #EFF2F9;
}
.info-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #1E2A44;
}

/* ============================================
   表格（移动端滚动）
   ============================================ */
.recipe-table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
.recipe-table td,
.recipe-table th {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #ECF0F5;
    white-space: normal;
}
.recipe-table th {
    text-align: left;
    font-weight: 600;
    color: #2A4A6E;
}
@media (max-width: 640px) {
    .recipe-table {
        white-space: normal;
    }
    .recipe-table td,
    .recipe-table th {
        white-space: normal;
        word-break: break-word;
    }
}

code.inline {
    background: #F0F4FA;
    padding: 2px 8px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.85rem;
}

.info-tip {
    background: #F0F7FF;
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    border-left: 4px solid #3B82F6;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.doc-img {
    margin: 1.5rem 0 1.2rem 0;
    text-align: center;
}
.doc-img img {
    max-width: 100%;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    height: auto;
}

.footer-docs {
    margin-top: 3rem;
    padding-top: 1.8rem;
    text-align: center;
    border-top: 1px solid #E9EEF5;
    font-size: 0.8rem;
    color: #7A8FAA;
}

/* ============================================
   分页核心样式
   ============================================ */
.wiki-page {
    display: none;
    animation: fadePage 0.2s ease-out;
}
.wiki-page.active-page {
    display: block;
}
@keyframes fadePage {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sub-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #E9EDF4;
    padding-bottom: 0.5rem;
}
.tab-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    color: #4A5A78;
    transition: all 0.2s;
}
.tab-btn.active-tab {
    background: #EFF6FF;
    color: #2563EB;
}
.tab-pane {
    display: none;
}
.tab-pane.active-pane {
    display: block;
}

/* ============================================
   配方搜索栏
   ============================================ */
.recipe-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFE;
    border-radius: 60px;
    padding: 0.3rem 0.3rem 0.3rem 1.2rem;
    border: 1px solid #E2E8F0;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-wrap: wrap;
}
.recipe-search-bar:focus-within {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.recipe-search-bar .search-icon {
    color: #8AA0BC;
    font-size: 1rem;
}
.recipe-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: #1A2C3E;
    outline: none;
    min-width: 120px;
}
.recipe-search-bar input::placeholder {
    color: #B0C4D8;
}
.recipe-search-bar .search-clear-btn {
    background: transparent;
    border: none;
    color: #8AA0BC;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    transition: all 0.2s;
    display: none;
}
.recipe-search-bar .search-clear-btn:hover {
    color: #E53E3E;
    background: #FFF5F5;
}
.recipe-search-bar .search-clear-btn.visible {
    display: block;
}
.recipe-search-bar .search-result-count {
    font-size: 0.8rem;
    color: #5A7A9A;
    background: #EFF2F8;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    white-space: nowrap;
    min-width: 40px;
    text-align: center;
    font-weight: 500;
}

/* ============================================
   搜索高亮 & 隐藏
   ============================================ */
.search-highlight {
    background: #FEF3C7 !important;
    border-left-color: #F59E0B !important;
    box-shadow: 0 0 0 1px #FCD34D inset;
}
.search-hidden {
    display: none !important;
}
.recipe-module.search-module-hidden {
    display: none !important;
}
.trim-table tbody tr.search-highlight,
.recipe-table tbody tr.search-highlight {
    background: #FEF3C7 !important;
}
.trim-table tbody tr.search-hidden,
.recipe-table tbody tr.search-hidden {
    display: none !important;
}
.recipe-card.search-highlight {
    border-color: #F59E0B !important;
    background: #FFFBEB !important;
}
.list-row.search-highlight mark {
    background: #FDE68A;
    padding: 0 2px;
    border-radius: 4px;
    font-weight: 600;
}
.list-row.search-highlight {
    border-left-color: #F59E0B !important;
    background: #FFFBEB !important;
}
.recipe-module.search-module-hidden .module-title {
    opacity: 0.4;
}
@media (max-width: 640px) {
    .recipe-search-bar {
        padding: 0.2rem 0.2rem 0.2rem 0.8rem;
        border-radius: 40px;
    }
    .recipe-search-bar input {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    .recipe-search-bar .search-result-count {
        font-size: 0.7rem;
        padding: 0.1rem 0.6rem;
    }
}

/* ============================================
   配方列表专用样式
   ============================================ */
#recipe-basic {
    padding: 0.5rem 0;
}
.recipe-module {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 2rem;
    padding: 0 0 0.5rem 0;
}
.module-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    border-left: 4px solid #f39c12;
    padding-left: 1rem;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
}
.vertical-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.list-row {
    background: #f8fafc;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    border-left: 4px solid #f39c12;
    font-size: 1rem;
    color: #1e293b;
    transition: background 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.list-row:nth-child(even) {
    background: #fef9e6;
}
.list-row:hover {
    background: #fff3cf;
}
.ordered-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.recipe-card {
    background: #fefcf5;
    border: 1px solid #e9e0cf;
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.1s ease;
}
.crafting-grid {
    background: #e9e2d4;
    padding: 6px;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px #d4c9b6;
}
.grid-row {
    display: flex;
}
.grid-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #fffaf0;
    border: 1px solid #cfb991;
    margin: 2px;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    color: #4a3b22;
    word-break: break-word;
    padding: 0 2px;
}
.grid-row .empty {
    background: #e2d5bd;
    border-color: #bbaa82;
}
.recipe-arrow {
    font-size: 2rem;
    color: #e67e22;
    font-weight: bold;
}
.recipe-result {
    background: #2c3e50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    font-size: 0.9rem;
}
.trim-template {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 0.5rem;
}
.template-grid.enlarged {
    text-align: center;
}
.mini-grid.enlarged-grid {
    background: #e9e2d4;
    padding: 8px;
    border-radius: 16px;
    display: inline-block;
}
.enlarged-grid .grid-row span {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
    border-width: 2px;
}
.enlarged-grid .highlight {
    background: #ffe0b5;
    font-weight: bold;
}
.template-note {
    font-size: 0.85rem;
    color: #555;
    margin-top: 8px;
}
.trim-table {
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
}
.trim-table th,
.trim-table td {
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    text-align: left;
}
.trim-table th {
    background: #f8fafc;
    font-weight: 600;
}
.info-tip {
    background: #fef9e3;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    font-size: 0.85rem;
    color: #7d6b42;
    margin-top: 1rem;
}
@media (max-width: 700px) {
    .grid-row span {
        width: 48px;
        height: 48px;
        font-size: 0.6rem;
    }
    .recipe-card {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .recipe-arrow {
        transform: rotate(90deg);
    }
    .enlarged-grid .grid-row span {
        width: 55px;
        height: 55px;
        font-size: 0.65rem;
    }
    .list-row {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   社区守则专用样式
   ============================================ */
.wiki-page {
    font-size: 16px;
    line-height: 1.5;
}
.doc-card {
    font-size: 1rem;
}
.rule-section {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}
.rule-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rule-content {
    padding-left: 1.5rem;
}
.sub-list {
    margin: 0.5rem 0 0 1.2rem;
    list-style-type: decimal;
}
.sub-list li {
    margin-bottom: 0.4rem;
}
.warning-note {
    background: #fff3e0;
    border-left: 4px solid #e67e22;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.penalty-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
    font-size: 0.95rem;
}
.penalty-table th,
.penalty-table td {
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    text-align: left;
}
.penalty-table th {
    background-color: #f1f5f9;
    font-weight: 600;
}
.info-tip {
    margin-top: 1rem;
}

/* ============================================
   移动端适配
   ============================================ */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    background: white;
    border-radius: 40px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #1F2A44;
    font-size: 1.6rem;
    border: 1px solid #E9EDF4;
    transition: 0.2s;
}
.mobile-menu-btn:hover {
    background: #F8FAFE;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 990;
    display: none;
    transition: opacity 0.2s;
}

@media (max-width: 780px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        z-index: 1000;
        transition: transform 0.25s ease;
    }
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 8px 0 24px rgba(0, 0, 0, 0.1);
    }
    .main-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1.2rem 1.2rem 2rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        max-width: 100%;
    }
    .doc-card {
        padding: 1.2rem 1.2rem;
        border-radius: 20px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
    #feature-world ul,
    #feature-world div,
    #feature-world p {
        font-size: 1rem;
    }
    #feature-world ul li,
    #feature-world .feature-base li {
        font-size: 0.95rem;
    }
    #feature-world h3 {
        font-size: 1.4rem;
    }
    #feature-world strong {
        font-size: 1rem;
    }
    .tab-pane ul {
        margin-left: 1.2rem;
    }
    .sidebar-footer {
        font-size: 0.65rem;
    }
    .mobile-close-sidebar {
        display: flex;
    }
}

@media (min-width: 781px) {
    .mobile-close-sidebar {
        display: none;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   快速开始 · 专属样式（新增）
   ============================================ */
.quickstart-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.qs-section {
    background: #fafcff;
    border-radius: 24px;
    padding: 1.5rem 1.8rem;
    border: 1px solid #e9edf4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.qs-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #eef2f7;
}
.qs-section-title .badge {
    font-size: 0.75rem;
    font-weight: 600;
    background: #eef2f7;
    color: #4a5a78;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-left: 0.4rem;
}
.qs-step {
    display: flex;
    gap: 1rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.6rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #f0f3f8;
    transition: background 0.15s;
    align-items: flex-start;
}
.qs-step:hover {
    background: #f8faff;
    border-color: #dce3ec;
}
.qs-step-num {
    flex: 0 0 36px;
    height: 36px;
    border-radius: 40px;
    background: #eef2f7;
    color: #2c3e50;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border: 1px solid #e2e8f0;
}
.qs-step-content {
    flex: 1;
    min-width: 0;
}
.qs-step-content .step-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a2c3e;
    margin-bottom: 0.15rem;
}
.qs-step-content .step-desc {
    color: #3c506e;
    font-size: 0.95rem;
    line-height: 1.6;
}
.qs-step-content .step-desc code {
    background: #f0f4fa;
    padding: 1px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: 'Inter', monospace;
}
.qs-step-content .step-desc .highlight-box {
    background: #fef9e6;
    border-left: 3px solid #f59e0b;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    margin: 0.3rem 0 0.2rem 0;
    font-size: 0.9rem;
    color: #7d6b42;
}
.qs-step-content .step-desc .highlight-box.info {
    background: #eef6ff;
    border-left-color: #3b82f6;
    color: #1e4a7a;
}
.qs-step-content .step-desc .highlight-box.warn {
    background: #fff0ee;
    border-left-color: #e53e3e;
    color: #7a2e2e;
}
.qs-step-content .step-desc .inline-icon {
    margin-right: 4px;
}
.qs-step-content .step-desc ul {
    margin: 0.4rem 0 0.2rem 1.2rem;
    padding: 0;
    list-style-type: disc;
}
.qs-step-content .step-desc ul li {
    margin-bottom: 0.2rem;
    font-size: 0.92rem;
}
.qs-step-content .step-desc .recipe-ref {
    display: inline-block;
    background: #eef2f7;
    padding: 0.1rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    margin: 0.2rem 0.2rem 0 0;
    transition: background 0.15s;
}
.qs-step-content .step-desc .recipe-ref:hover {
    background: #dce3ec;
    color: #1d4ed8;
}
.qs-step-content .step-desc .recipe-ref i {
    margin-right: 4px;
    font-size: 0.7rem;
}
.qs-step.accent-warm .qs-step-num {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #92400e;
}
.qs-step.accent-cool .qs-step-num {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e3a8a;
}
.qs-step.accent-purple .qs-step-num {
    background: #ede9fe;
    border-color: #c4b5fd;
    color: #5b21b6;
}
.qs-step.accent-green .qs-step-num {
    background: #d1fae5;
    border-color: #6ee7b7;
    color: #065f46;
}
.qs-step.accent-rose .qs-step-num {
    background: #fce4ec;
    border-color: #f9a8b4;
    color: #9b1c2c;
}
.qs-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 0.2rem 0 1.2rem 0;
}
.qs-intro {
    background: #f0f7ff;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
    font-size: 1rem;
    color: #1e3a5f;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.qs-intro i {
    font-size: 1.4rem;
    color: #3b82f6;
    margin-top: 2px;
}
.qs-intro a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.qs-intro a:hover {
    text-decoration: underline;
}
@media (max-width: 640px) {
    .qs-section {
        padding: 1rem 1rem;
    }
    .qs-step {
        padding: 0.6rem 0.8rem;
        flex-wrap: wrap;
    }
    .qs-step-num {
        flex: 0 0 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .qs-step-content .step-title {
        font-size: 0.95rem;
    }
    .qs-step-content .step-desc {
        font-size: 0.88rem;
    }
    .qs-section-title {
        font-size: 1.3rem;
    }
    .qs-intro {
        font-size: 0.92rem;
        padding: 0.8rem 1rem;
    }
}