/* ===== CSS Reset & Base Styles ===== */
:root {
    /* Color System */
    --primary-rgb: 232, 90, 69;
    --primary-dark-rgb: 190, 62, 42;
    --primary-light-rgb: 255, 107, 107;
    
    --primary-color: rgb(var(--primary-rgb));
    --primary-dark: rgb(var(--primary-dark-rgb));
    --primary-light: rgb(var(--primary-light-rgb));
    
    --secondary-color: #86868b;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --background-color: #f5f5f7;
    --border-color: rgba(0, 0, 0, 0.05);
    
    /* Theme Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Spacing System */
    --spacing-xs: 0.25rem;  /* 4px */
    --spacing-sm: 0.5rem;   /* 8px */
    --spacing-md: 1rem;     /* 16px */
    --spacing-lg: 1.5rem;   /* 24px */
    --spacing-xl: 2rem;     /* 32px */
    --spacing-2xl: 3rem;    /* 48px */
    --spacing-3xl: 4rem;    /* 64px */
    
    /* Layout */
    --nav-height: 32px;
    --container-max-width: 1800px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 150ms;
    --transition-normal: 300ms;
    --transition-slow: 500ms;
    
    /* Z-index */
    --z-negative: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== Layout & Container ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===== Navigation ===== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-lg);
}

.nav-left .logo {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    transition: color 0.3s ease;
}

.nav-left .logo:hover {
    color: #ffffff;
}

.nav-right {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    padding: 0 var(--spacing-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* ===== Common Utilities ===== */
.text-gradient {
    background: linear-gradient(135deg,
        var(--primary-light) 0%,
        var(--primary-color) 50%,
        var(--primary-dark) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.rounded-sm {
    border-radius: var(--border-radius-sm);
}

.rounded-md {
    border-radius: var(--border-radius-md);
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

/* ===== Layout Utilities ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 45vh;
    padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-2xl);
    display: flex;
    align-items: flex-start;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: none;
}

/* 移除英雄区域的背景动画效果 */
.hero-section::before {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
}

.hero-content {
    width: 100%;
    max-width: var(--container-max-width);
    text-align: left;
    padding: 0;
    margin-bottom: 0;
}

/* 主标题文字样式 */
.hero-content > h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-xs);
    text-align: center;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

/* 特殊介绍文本样式 */
h1.special-intro {
    font-size: 2.8rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    text-align: center;
}

/* 特殊文本样式 */
.special-intro {
    font-size: 2rem;
    color: var(--primary-color); /* 改为主题色 */
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

/* 介绍文本样式 */
.intro-text {
    text-align: center;
    margin-bottom: 1.5rem;  /* 从3rem减小到1.5rem */
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;  /* 添加margin-top: 0 确保上方没有多余空间 */
}

.intro-text p {
    font-size: 2.2rem;  /* 从2.8rem减小到2.2rem */
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== 功能描述区域 ===== */
.platform-description {
    margin-top: 2rem; /* 减小上边距 */
    margin-bottom: 0.5rem; /* 下边距 */
    max-width: 1600px; /* 调整为1600px */
    margin-left: auto; /* 左边距 */
    margin-right: auto; /* 右边距 */
    text-align: center; /* 居中对齐 */
}

/* 功能描述文字样式 */
.platform-description p {
    font-size: 1.4rem;
    color: var(--secondary-color); /* 文字颜色 */
    line-height: 1.8; /* 行高 */
    max-width: 95%;       /* 稍微收窄一点，让文字更集中 */
    margin: 0 auto; /* 居中 */
    text-align: justify; /* 两端对齐 */
    text-justify: inter-character; /* 字符间的对齐 */
    padding: 0 2rem; /* 内边距 */
}

.platform-description h2 {
    font-size: 1.8rem; /* 字体大小 */
    margin-bottom: 0.75rem; /* 下边距 */
    background: var(--primary-gradient); /* 渐变背景 */
    -webkit-background-clip: text; /* 背景裁剪 */
    -webkit-text-fill-color: transparent; /* 文字填充透明 */
    text-align: center; /* 居中对齐 */
}

.feature-description {
    margin-top: 1rem;
}

.feature-description .feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem !important;  /* 强制应用更小的间距 */
    margin-top: 0.5rem;
}

.feature-description .feature-item-large {
    padding-left: 1.5rem;
    position: relative;
    border-left: 2px solid rgba(74, 144, 226, 0.5);
    margin: 0;  /* 移除所有外边距 */
    padding-top: 0.2rem;    /* 减少上内边距 */
    padding-bottom: 0.2rem; /* 减少下内边距 */
}

.feature-description .feature-item-large h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.2rem;  /* 保持标题和描述之间的小间距 */
    color: var(--primary-color);
}

.feature-description .feature-item-large p {
    font-size: 1.2rem;
    line-height: 1.4;  /* 减小行高使文字更紧凑 */
    color: #666666;
    margin: 0;
}

/* 右侧设备展示样式 */
.hero-devices {
    width: 100%; /* 从100%减小到80% */
    max-width: 1200px; /* 从1600px减小到1200px */
    position: relative;
    margin-top: 1rem;
}

.device-wrapper {
    position: relative;
    width: 100%; /* 从120%减小到100% */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-left: 0; /* 从-10%改为0 */
}

/* Mac设备样式 */
.mac-device {
    width: 150%; /* 从200%减小到150% */
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
}

.mac-device .device-frame {
    position: relative; /* 相对定位 */
    width: 100%; /* 宽度 */
    aspect-ratio: 16/10;  /* 添加长宽比 */
}

.mac-device .device-frame::before {
    content: ''; /* 伪元素内容 */
    position: absolute; /* 绝对定位 */
    top: -12px; /* 顶部位置 */
    left: 50%; /* 左侧位置 */
    transform: translateX(-50%); /* 水平居中 */
    width: 4px; /* 宽度 */
    height: 4px; /* 高度 */
    background: var(--secondary-color); /* 背景颜色 */
    border-radius: 50%; /* 圆形 */
    opacity: 0.3; /* 透明度 */
}

.mac-device .device-screen {
    overflow: hidden; /* 隐藏溢出内容 */
    position: relative; /* 相对定位 */
}

.mac-device .device-screen img {
    width: 100%; /* 宽度 */
    height: auto; /* 高度自适应 */
    display: block; /* 块级元素 */
}

.mac-device .device-screen svg,
.mobile-device .device-screen svg {
    width: 100%; /* 宽度 */
    height: 100%; /* 高度 */
    display: block; /* 块级元素 */
}

/* SVG 特定样式 */
.device-screen svg path,
.device-screen svg rect,
.device-screen svg circle,
.device-screen svg line {
    transition: all 0.3s ease; /* 过渡效果 */
}

/* 可以通过 CSS 类控制 SVG 颜色 */
.device-screen svg.theme-dark path {
    fill: var(--primary-color); /* 深色主题下的填充颜色 */
}

.device-screen svg.theme-light path {
    fill: var(--secondary-color); /* 浅色主题下的填充颜色 */
}

/* 手机设备样式 */
.mobile-device {
    width: 70%; /* 从90%减小到70% */
    padding: 4px;
}

.mobile-device .device-frame {
    position: relative; /* 相对定位 */
    aspect-ratio: 9/16;  /* 设置长方形比例 */
}

.mobile-device .device-screen {
    overflow: hidden; /* 隐藏溢出内容 */
    position: relative; /* 相对定位 */
    height: 100%; /* 高度 */
}

.mobile-device .device-screen img {
    width: 100%; /* 宽度 */
    height: 100%; /* 高度 */
    object-fit: cover; /* 保持比例填充 */
    display: block; /* 块级元素 */
}

/* 使用说明区域 */
.usage-guide {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--background-color) 15%); /* 更新背景渐变 */
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.guide-container {
    max-width: 1000px; /* 最大宽度 */
    margin: 0 auto; /* 居中 */
}

.guide-section {
    margin-bottom: 6rem; /* 下边距 */
}

.guide-section h3 {
    font-size: 2.5rem; /* 字体大小 */
    margin-bottom: 3rem; /* 下边距 */
    text-align: center; /* 居中对齐 */
    color: var(--primary-color); /* 文字颜色 */
}

.guide-content {
    display: flex; /* 使用弹性布局 */
    gap: 4rem; /* 间距 */
    align-items: center; /* 垂直居中 */
}

.guide-text {
    flex: 1; /* 弹性布局 */
}

.guide-text p {
    font-size: 1.2rem; /* 字体大小 */
    color: var(--secondary-color); /* 文字颜色 */
    line-height: 1.8; /* 行高 */
}

.guide-demo {
    flex: 1; /* 弹性布局 */
    border-radius: 16px; /* 圆角 */
    overflow: hidden; /* 隐藏溢出内容 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* 阴影效果 */
}

.guide-demo img {
    width: 100%; /* 宽度 */
    height: auto; /* 高度自适应 */
    display: block; /* 块级元素 */
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .hero-container {
        gap: 1.5rem; /* 间距 */
        padding: 0 1.5rem; /* 内边距 */
    }
    
    .hero-content {
        padding: 0; /* 内边距 */
    }
    
    .device-wrapper {
        width: 100%; /* 在小屏幕上重置宽度 */
        margin-left: 0; /* 重置偏移 */
    }
    
    .mac-device {
        width: 120%; /* 从140%减小到120% */
    }
    
    .mobile-device {
        width: 60%; /* 从70%减小到60% */
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 1rem 2rem;  /* 移动端适配 */
    }

    .hero-container {
        padding: 3.5rem 1rem 1.5rem;  /* 移动端适配 */
    }

    .hero-content {
        padding: 0; /* 内边距 */
    }

    .hero-content h1 {
        /* font-size rule removed to inherit from .special-intro */
        margin-bottom: 1rem;
    }

    .intro-text {
        margin-bottom: 1.5rem; /* 减小间距 */
    }

    .intro-text p,
    .special-intro {
        font-size: 1.6rem;  /* 减小副标题 */
        line-height: 1.4;  /* 减小行高 */
    }

    .platform-description {
        margin-top: 1rem; /* 减小上边距 */
    }

    .feature-item {
        font-size: 1.4rem;  /* 减小功能描述文字 */
        margin: 0.4rem 0;
        line-height: 1.3;
    }

    .highlight-text {
        font-weight: 600;
    }

    .platform-description.mobile-description {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-section {
        padding: 1rem;
        min-height: auto;
    }

    .hero-container {
        padding: 1rem;
    }

    .platform-description h2 {
        font-size: 1.4rem;
    }

    .platform-description p {
        font-size: 1.4rem;
    }

    .mac-device {
        width: 100%; /* 宽度 */
    }
    
    .mobile-device {
        width: 45%; /* 宽度 */
    }

    .guide-content {
        flex-direction: column; /* 垂直排列 */
        gap: 2rem; /* 间距 */
    }

    .nav-right {
        gap: 12px;  /* 调整间距 */
        height: 100%;
    }

    .nav-item {
        font-size: 1.1rem !important;  /* Slightly reduced nav item font size */
        padding: 0 8px;
        line-height: normal; /* Let flexbox handle vertical alignment */
        height: 100%;
        display: flex;
        align-items: center;
    }

    .feature-description .feature-list {
        gap: 0.3rem !important;  /* 在小屏幕上进一步减少间距 */
    }

    .feature-item-large h4 {
        font-size: 1.4rem;  /* 减小大功能项标题 */
    }

    .feature-item-large p {
        font-size: 1.1rem;  /* 减小大功能项描述 */
    }

    .feature-item {
        font-size: 1.8rem; /* 相应调整移动端字体大小，从1.6rem增大到1.8rem */
    }

    .announcement-bar {
        height: 32px;
        padding: 0 10px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        line-height: 1.2;
    }

    .announcement-bar span {
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
    }

    .top-nav {
        top: 0;
        height: 44px; /* Increased height for mobile */
    }

    main {
        margin-top: 44px; /* Adjusted margin for increased nav height */
    }

    .nav-container {
        padding: 0 12px;  /* 与通知栏保持一致的内边距 */
        height: 100%;
    }

    .nav-left .logo {
        font-size: 1.1rem !important;  /* Slightly reduced logo font size */
        line-height: normal; /* Let flexbox handle vertical alignment */
        height: 100%;
        display: flex;
        align-items: center;
    }

    .hero-section {
        padding-top: 1rem; /* 调整顶部内边距 */
    }

    .hero-container {
        padding-top: 1rem; /* 调整顶部内边距 */
    }

    .card-subtitle {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        height: 32px;
        padding: 0 8px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        line-height: 1.2;
    }

    .announcement-bar span {
        font-size: 0.85rem;
    }

    .top-nav {
        top: 0;
        height: 44px; /* Increased height for mobile */
    }

    .nav-left .logo {
        font-size: 1.0rem !important; /* Slightly reduced logo font size for smaller mobile */
        line-height: normal; /* Let flexbox handle vertical alignment */
    }

    .nav-right {
        gap: 8px;  /* 更小屏幕下减小间距 */
    }

    .nav-item {
        font-size: 1.0rem !important; /* Slightly reduced nav item font size for smaller mobile */
        padding: 0 6px;
        line-height: normal; /* Let flexbox handle vertical alignment */
    }

    .hero-content h1 {
        /* font-size rule removed to inherit from .special-intro */
    }

    .intro-text p,
    .special-intro {
        font-size: 1.4rem;
    }

    .feature-item {
        font-size: 1.2rem;
    }

    main {
        margin-top: 44px; /* Adjusted margin for increased nav height */
    }
}

/* 添加平滑滚动 */
html {
    scroll-behavior: smooth; /* 平滑滚动 */
}

/* 选择文本样式 */
/* 移除自定义选择样式，使用浏览器默认样式
::selection {
    background: var(--accent-color);
    color: white;
}
*/

.highlight-text {
    color: var(--primary-color); /* 使用主题色变量替代固定的颜色值 */
    font-weight: 600; /* 字体粗细 */
}

.feature-item {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0.8rem 0;
    text-align: center;
}

/* ===== 快捷指令展示区域样式 ===== */
.shortcuts-showcase {
    padding: 0 var(--spacing-xl);  /* 移除上内边距，只保留左右内边距 */
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.features-showcase {
    padding: 0 var(--spacing-xl);  /* 移除上内边距 */
    background: #ffffff;
}

.features-container,
.shortcuts-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.features-header,
.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);  /* 从 xl 减小到 lg */
}

.features-title {
    font-size: var(--text-4xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-bold);
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .shortcuts-showcase {
        padding: var(--spacing-lg) var(--spacing-lg);  /* 从 2xl 减小到 lg */
    }
    
    .reviews-header {
        margin-bottom: var(--spacing-md);  /* 从 lg 减小到 md */
    }
}

@media (max-width: 480px) {
    .shortcuts-showcase {
        padding: var(--spacing-md) var(--spacing-md);  /* 从 xl 减小到 md */
    }
    
    .reviews-header {
        margin-bottom: var(--spacing-sm);  /* 从 md 减小到 sm */
    }
}

/* ===== 功能展示区域样式 ===== */
.feature-showcase {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    color: #333333;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    min-height: 400px;
}

/* 移除功能展示区域的渐变效果 */
.feature-showcase::before,
.feature-showcase::after {
    display: none;
}

.feature-demo {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-content {
    flex: 1;
    max-width: 500px;
    padding: 0.8rem;
}

.feature-content .feature-list {
    gap: 0.8rem;
    margin-top: 1rem;
}

.feature-content .feature-item-large {
    margin-bottom: 0.3rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.feature-subtitle {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.feature-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666666;
}

.feature-showcase .demo-wrapper {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 10/7;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.feature-showcase .demo-wrapper img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: -15px -10px;
    display: block;
    margin: 0;
    transform: none;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .feature-showcase {
        flex-direction: column;
        padding: 3rem;
        gap: 2rem;
    }

    .feature-demo {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .feature-showcase {
        padding: var(--spacing-xl) var(--spacing-lg);  /* 保持一致的移动端内边距 */
    }

    .feature-title {
        font-size: 2.2rem;
    }

    .feature-description p {
        font-size: 1.2rem;
    }

    .feature-item-large h4 {
        font-size: 1.6rem;
    }

    .feature-item-large p {
        font-size: 1.2rem;
    }

    .feature-item {
        font-size: 1.8rem;
    }
}

/* ===== 好评展示模块样式 ===== */
.reviews-section {
    margin-bottom: var(--spacing-xl);  /* 从 2xl 减小到 xl */
    padding: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.review-card {
    background: rgb(248, 249, 250);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
}

.review-stars {
    color: #FFC107; /* Changed to a brighter yellow */
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-xs);
}

.review-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color); /* 改为主题色 */
}

.review-content {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

/* Feature Showcase */
.feature-showcase {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    color: #333333;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    min-height: 400px;
}

.feature-content {
    flex: 1;
    max-width: 500px;
}

.feature-subtitle {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--spacing-sm);
}

.feature-item-large {
    padding-left: var(--spacing-lg);
    border-left: 2px solid var(--primary-color);
    margin: 0;
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
}

.feature-item-large h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.feature-item-large p {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

/* Shortcuts Grid */
.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: 0 auto;
    margin-bottom: var(--spacing-2xl);
}

.shortcut-card {
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Themes */
.purple-theme,
.blue-gradient-theme,
.green-gradient-theme,
.orange-gradient-theme,
.red-gradient-theme {
    background: linear-gradient(135deg,
        rgba(var(--theme-color), 0.08) 0%,
        rgba(var(--theme-color), 0.15) 50%,
        rgba(var(--theme-color), 0.08) 100%
    );
    border: 1px solid rgba(var(--theme-color), 0.15);
    box-shadow:
        0 8px 12px -2px rgba(var(--theme-color), 0.12),
        0 4px 8px -2px rgba(var(--theme-color), 0.08);
}

.purple-theme { --theme-color: 124, 58, 237; }
.blue-gradient-theme { --theme-color: 74, 144, 226; }
.green-gradient-theme { --theme-color: 72, 187, 120; }
.orange-gradient-theme { --theme-color: 237, 137, 54; }
.red-gradient-theme { --theme-color: 229, 62, 62; }

/* Question Section */
.question-section {
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
}

.question-title {
    margin-bottom: var(--spacing-sm); /* 减小标题下边距 */
}

.question-description {
    margin-bottom: var(--spacing-md); /* 减小描述下边距 */
    color: var(--text-secondary);
    font-size: var(--text-lg);
}

.join-group {
    margin-top: var(--spacing-lg); /* 调整按钮组上边距 */
}

.join-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--primary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 30px;
    color: #fff;
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.join-button:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-showcase {
        flex-direction: column;
        padding: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .shortcuts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-subtitle {
        font-size: var(--text-2xl);
    }
    
    .feature-item-large h4 {
        font-size: var(--text-base);
    }
}

@media (max-width: 576px) {
    .reviews-grid,
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: var(--spacing-lg);
    }
    
    .feature-showcase {
        padding: var(--spacing-lg);
    }
}

/* ===== 页脚样式 ===== */
footer {
    padding: 3rem 2rem;  /* 减小上下内边距为1.2rem */
    margin-top: 1.5rem;
    background: var(--background-color);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;  /* 进一步减小两行文字之间的间距 */
}

.copyright {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0;
}

.footer-description {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    footer {
        padding: 1rem 1.5rem;  /* 减小平板端的内边距 */
        margin-top: 6rem;
    }

    .copyright {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 0.8rem 1rem;  /* 减小手机端的内边距 */
        margin-top: 4rem;
    }

    .footer-content {
        padding: 0;
    }
}

/* ===== 微信群按钮和弹出层样式 ===== */
.wechat-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wechat-btn:hover {
    transform: scale(1.1);
}

.wechat-icon {
    width: 36px;
    height: 36px;
}

.wechat-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.wechat-popup.active {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.popup-text {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .wechat-btn {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .wechat-icon {
        width: 30px;
        height: 30px;
    }

    .popup-content {
        padding: 20px;
    }

    .qr-code {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .wechat-btn {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }

    .wechat-icon {
        width: 28px;
        height: 28px;
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }
}

/* ===== 使用文档页面样式 ===== */
.usage-guide-section {
    padding: 2rem;
    margin-top: 2rem;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.guide-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);  /* 使用主题色 */
    margin-bottom: 0;  /* 移除底部边距 */
}

/* 移除原有的guide-subtitle样式，改为新的样式 */
.guide-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);  /* 使用主题色 */
    margin: 0;
    padding: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .guide-header h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .guide-header h1 {
        font-size: 1.5rem;
    }
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .docs-layout {
        padding: 0 1.5rem;
    }

    .docs-sidebar {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .docs-layout {
        flex-direction: column;
        padding: 0 1rem;
    }

    .docs-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .docs-content {
        padding: 0;
    }

    .guide-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .docs-layout {
        padding: 0 0.8rem;
        margin: 1rem auto;
    }

    .guide-header h1 {
        font-size: 2.4rem;
    }

    .docs-nav-section a {
        font-size: 1.1rem;
    }
}

/* ===== 文档页面布局样式 ===== */
.docs-layout {
    display: flex;
    gap: var(--spacing-2xl);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-xl);
    min-height: calc(100vh - var(--nav-height) - var(--spacing-2xl));
}

.docs-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--nav-height) + var(--spacing-xl));
    height: calc(100vh - var(--nav-height) - var(--spacing-xl));
    overflow-y: auto;
    padding: var(--spacing-lg);
    border-right: 1px solid var(--border-color);
}

.docs-title {
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.docs-title h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.docs-nav-section {
    margin-bottom: var(--spacing-xl);
}

.docs-nav-section h3 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    padding: 0 var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.docs-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav-section li {
    margin-bottom: var(--spacing-xs);
}

.docs-nav-section a {
    display: block;
    padding: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-base);
    transition: color 0.3s ease;
}

.docs-nav-section a:hover {
    color: var(--primary-color);
}

.docs-nav-section a.active {
    color: var(--primary-color);
    font-weight: 500;
}

.docs-content {
    flex: 1;
    min-width: 0;
    padding: var(--spacing-xl);
    color: var(--text-primary);
}

.docs-content h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--spacing-xl);
}

.docs-content h2 {
    font-size: var(--text-2xl);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.docs-content h3 {
    font-size: var(--text-xl);
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.docs-content p {
    margin: var(--spacing-md) 0;
    line-height: 1.6;
}

.docs-content ul,
.docs-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.docs-content li {
    margin: var(--spacing-xs) 0;
}

.docs-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    background-color: var(--background-color);
    padding: 0.2em 0.4em;
    border-radius: var(--border-radius-sm);
    font-size: 0.9em;
}

.docs-content pre {
    background-color: var(--background-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

/* Best Practices Section */
.best-practice {
    border: 2px dashed var(--primary-color);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    background-color: rgba(232, 90, 69, 0.03);
}

.best-practice h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    font-size: var(--text-xl);
}

.best-practice-content {
    margin-top: var(--spacing-md);
}

.best-practice-content p {
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.best-practice-content ul {
    margin-bottom: var(--spacing-lg);
}

.best-practice-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

/* QR Code Popup */
.qr-popup {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-popup.active {
    display: flex;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-sm);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .docs-layout {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .docs-sidebar {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .docs-layout {
        flex-direction: column;
        padding: var(--spacing-md);
    }

    .docs-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .docs-content {
        padding: var(--spacing-md);
    }

    .qr-code {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .docs-layout {
        padding: var(--spacing-sm);
    }

    .docs-content {
        padding: var(--spacing-sm);
    }

    .docs-content h1 {
        font-size: var(--text-3xl);
    }

    .docs-content h2 {
        font-size: var(--text-xl);
    }

    .docs-content h3 {
        font-size: var(--text-lg);
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }

.hidden { display: none; }
.visible { display: block; }

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===== Media Queries ===== */
@media (max-width: 1200px) {
    :root {
        --container-max-width: 1140px;
        --text-4xl: 2.5rem;
        --text-3xl: 2rem;
        --text-2xl: 1.75rem;
        --spacing-2xl: 2.5rem;
    }

    .hero-section {
        min-height: 40vh;
    }
}

@media (max-width: 992px) {
    :root {
        --container-max-width: 960px;
        --text-4xl: 2.25rem;
        --text-3xl: 1.875rem;
        --text-2xl: 1.5rem;
        --spacing-2xl: 2rem;
        --spacing-xl: 1.75rem;
    }

    .hero-section {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .hero-container {
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    :root {
        --container-max-width: 720px;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --spacing-2xl: 1.75rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1.25rem;
    }

    .hero-section {
        min-height: 35vh;
        padding: var(--spacing-lg);
    }

    .hero-container {
        padding: var(--spacing-lg);
    }

    .nav-container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 576px) {
    :root {
        --container-max-width: 540px;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
        --spacing-2xl: 1.5rem;
        --spacing-xl: 1.25rem;
        --spacing-lg: 1rem;
    }

    .hero-section {
        min-height: 30vh;
        padding: var(--spacing-md);
    }

    .hero-container {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .nav-right {
        gap: var(--spacing-sm);
    }

    .nav-item {
        font-size: var(--text-xs);
        padding: 0 var(--spacing-xs);
    }
}

/* ===== Animations ===== */
@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-2%, -2%);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* ===== Features Section ===== */
.features-showcase {
    padding: calc(var(--spacing-3xl) * 1.5) var(--spacing-xl);  /* 增加上内边距为 96px */
    background: #ffffff;
}

.features-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.features-title {
    font-size: var(--text-4xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-bold);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* 添加宽卡片样式 */
.feature-card-wide {
    grid-column: 1 / -1;  /* 跨越所有列 */
    background: rgb(248, 249, 250);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
}

.feature-card-wide h3 {
    font-size: var(--text-2xl);  /* 与feature-card h3相同的字体大小 */
    color: var(--primary-color); /* 改为主题色 */
    margin: 0;
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-lg);
    text-align: left;
    line-height: 1.5;  /* 添加行高 */
}

.feature-card-wide .feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-card-wide .feature-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: left;
}

.feature-card-wide .feature-item h4 {
    font-size: var(--text-xl);
    color: var(--primary-color); /* Changed to primary theme color */
    margin: 0;
    font-weight: var(--font-semibold);
    text-align: left;
}

.feature-card-wide .feature-item p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .feature-card-wide {
        padding: var(--spacing-lg);
    }
    
    .feature-card-wide h3 {
        font-size: var(--text-xl);
        margin-bottom: var(--spacing-md);
    }
    
    .feature-card-wide .feature-list {
        gap: var(--spacing-md);
    }
    
    .feature-card-wide .feature-item h4 {
        font-size: var(--text-lg);
        color: var(--primary-color); /* Changed to primary theme color for mobile */
    }
    
    .feature-card-wide .feature-item p {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .feature-card-wide {
        padding: var(--spacing-md);
    }
    
    .feature-card-wide .feature-list {
        gap: var(--spacing-sm);
    }
}

.feature-card {
    background: rgb(248, 249, 250);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-card h3 {
    font-size: var(--text-2xl);
    color: var(--primary-color); /* 改为主题色 */
    margin: 0;
    font-weight: var(--font-bold);
}

.feature-card p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .features-showcase {
        padding: var(--spacing-xl) var(--spacing-lg);  /* 保持一致的移动端内边距 */
    }
    
    .features-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .feature-card h3 {
        font-size: var(--text-xl);
    }

    .feature-card p {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .features-showcase {
        padding: var(--spacing-lg) var(--spacing-md);  /* 保持一致的小屏幕内边距 */
    }
    
    .features-grid {
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
}
/* ===== Reviews Section Stats ===== */
.reviews-stats {
    margin-top: var(--spacing-md);
    text-align: center;
}

.stat-text {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    font-weight: var(--font-medium);
}

@media (max-width: 768px) {
    .stat-text {
        font-size: var(--text-xl);
    }
}

@media (max-width: 480px) {
    .stat-text {
        font-size: var(--text-lg);
    }
}

/* ===== 文档布局调整 ===== */
/* 中等屏幕尺寸调整 (768px-1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .docs-layout {
        width: 100%;
        padding: 0 15px;
        gap: 0;
    }

    .docs-sidebar {
        width: 240px; /* 稍微减小导航栏宽度 */
        min-width: 240px;
    }

    .docs-content {
        max-width: calc(100% - 240px);
        padding: 30px 20px;
    }

    /* 确保标题对齐 */
    .guide-header,
    .docs-title h2 {
        padding-left: 20px;
    }
}
/* 小屏幕尺寸微调 (小于768px) */
@media (max-width: 767px) {
    .docs-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .docs-sidebar {
        padding-top: 20px;
    }
}

/* 精确顶部对齐控制 */
@media (min-width: 768px) {
    .docs-layout {
        align-items: flex-start;
    }
    
    .docs-sidebar,
    .docs-content {
        padding-top: 30px;
    }
    
    .docs-title h2 {
        margin-top: 0;
        padding-top: 0;
    }
}




