        :root {
            --primary-color: #ad765d;
            --background-color: #f5f5f5;
            --text-color: #333;
            --menu-background: white;
            --menu-text-color: #333;
            --menu-hover-background: #f0f0f0;
            --container-background: white;
            --container-border-color: #ddd;
            --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* 夜间模式变量 */
        body.dark-mode {
            --background-color: #333;
            --text-color: #f5f5f5;
            --menu-background: #444;
            --menu-text-color: #f5f5f5;
            --menu-hover-background: #555;
            --container-background: #444;
            --container-border-color: #555;
        }

        /* 全局样式 */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--background-color);
            color: var(--text-color);
            transition: background-color 0.3s, color 0.3s;
        }

        /* 头部样式 */
        header.header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        /* 按钮样式 */
        .menu-button {
            position: absolute;
            background-color: transparent;
            border: none;
            color: white;
            cursor: pointer;
        }

        .menu-button {
            left: 20px;
            top: 20px; /* 菜单按钮保持原位置 */
            font-size: 24px;
        }

        /* 菜单样式 */
        .menu {
            position: absolute;
            top: 60px;
            left: 0;
            width: 200px;
            background-color: var(--menu-background);
            border: 1px solid var(--container-border-color);
            border-radius: 8px;
            box-shadow: var(--shadow);
            display: none;
            z-index: 1000;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .menu a {
            display: block;
            padding: 10px;
            text-decoration: none;
            color: var(--menu-text-color);
            border-radius: 8px;
        }

        .menu a:hover {
            background-color: var(--menu-hover-background);
        }

        /* 主体内容样式 */
        main.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: var(--container-background);
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        /* 特征卡片样式 */
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 20px;
        }

        .feature {
            background-color: var(--container-background);
            border: 1px solid var(--container-border-color);
            border-radius: 8px;
            padding: 20px;
            margin: 10px;
            width: calc(33.333% - 20px);
            box-shadow: var(--shadow);
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        .feature h2 {
            margin-top: 0;
        }

        /* 页脚样式 */
        footer.footer {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        /* 响应式布局调整 */
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px; /* 特征卡片之间的间距 */
            justify-content: center;
        }
        
        /* 小屏幕：每行显示 1 个卡片 */
        @media (max-width: 600px) {
            .feature {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .menu {
                width: 100%; /* 菜单在小屏幕上占据整个宽度 */
                top: 70px; /* 调整菜单位置 */
            }

            .menu-button {
                top: 15px; /* 调整菜单按钮位置 */
            }
            
        }

        /* 确保图片和视频自适应 */
        img, video {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        main.container {
            flex: 1;
            min-height: calc(100vh - 200px); /* 调整这个值以适应你的布局 */
            padding-bottom: 20px; /* 确保内容不被页脚遮挡 */
        }
        /* 视频自适应比例 */
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
        }
          
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .developer-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%; /* 使图片显示为圆形 */
            margin-right: 20px; /* 与文本的间距 */
            vertical-align: middle; /* 垂直对齐 */
        }
        
        /* 截图控制 */
        .screenshot-section {
            margin-top: 40px;
            overflow-x: auto;
            white-space: nowrap;
        }
          
        .screenshot-list {
            display: flex;
            overflow-x: auto;
        }
          
        .screenshot-list img {
            border-radius: 5px;
            margin-right: 18px;
            width: 190px;
            height: 190px;
        }
          
        .jietu {
            border-radius: 45%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        /* 文本居中 */
        .center-text {
            text-align: center;
        }