        /* ========== 全局变量和基础样式 ========== */
        :root {
            --primary-color: #333;
            /* 主色调 */
            --secondary-color: #ddd;
            /* 次要背景色 */
            --accent-color: #000;
            /* 强调色 */
            --text-color: #333;
            /* 主要文字颜色 */
            --light-color: #fff;
            /* 浅色背景 */
            --spacing: 1rem;
            /* 基础间距单位 */
            --border-radius: 5px;
            /* 统一圆角大小 */
            --transition: all 0.3s ease;
            /* 标准过渡效果 */
        }

        /* 基础重置 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;

        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--secondary-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        /* 链接样式 */
        a {
            text-decoration: none;
            color: inherit;
        }

        /* 图片响应式处理 */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ========== 工具类 ========== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }

        /* 弹性布局工具 */
        .flex {
            display: flex;
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 网格布局工具 */
        .grid {
            display: grid;
        }

        /* ========== 主要内容区域 ========== */
        /* 英雄横幅区 */
        .hero {
            background-color: var(--accent-color);
            padding: 2rem 0;
        }

        .hero-image {
            max-width: 500px;
            margin: 0 auto;
            border-radius: var(--border-radius);
        }

        /* 关于我们区域 */
        .about {
            background-color: var(--light-color);
            padding: 3rem 0;
        }

        .about-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .about-content {
            padding: 1.5rem;
        }

        .about-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .about-text {
            margin-bottom: 1.5rem;
            max-width: 500px;
        }

        /* 按钮样式 */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--light-color);
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--accent-color);
            color: var(--light-color);
        }

        /* 圆形logo容器 */
        .about-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .logo-circle {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* 公告消息区域 */
        .about-message {
            margin-top: 2rem;
            font-size: 1rem;
            color: var(--text-color);
            border-top: 1px solid var(--accent-color);
            border-bottom: 1px solid var(--accent-color);
        }

        .about-message-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .about-message-header h3 {
            margin: 0;
        }

        .about-message-header .btn {
            height: 2.2em;
            padding: 0 1.5em;
            font-size: 1em;
            display: flex;
            align-items: center;
        }

        .about-btn {
            width: 20%;
            float: right;
            margin-right: 0px;
            opacity: 0.7;
        }

        .about-btn:hover {
            opacity: 1.0;
        }

        /* 文本溢出处理 */
        .text-truncate {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            max-width: 500px;
            opacity: 0.8;
        }

        @media (max-width: 480px) {
            .logo-circle {
                width: 200px;
                height: 200px;
            }
        }

        .join-in {}

        .join-list {}

        .join-in-hype {}

        .projects {}

        .projects-theLastEnd {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .projects-logo {
            width: 200px;
            height: 200px;
        }