
        :root {
            --primary-color: #00B95E; /* 核心蓝绿色 */
            --primary-light: rgba(0, 185, 94, 0.03); /* 浅背景色 */
            --primary-hover: rgba(0, 185, 94, 0.08); /* 悬浮背景色 */
            --secondary-color: #0F172A; /* 深灰蓝（科技感） */
            --text-primary: #334155; /* 正文色 */
            --text-secondary: #64748B; /* 辅助文字色 */
            --bg-light: #F8FAFC; /* 页面背景 */
            --bg-white: #FFFFFF; /* 卡片背景 */
            --border-radius: 12px;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft Yahei", Arial, sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-primary);
            line-height: 1.8;
            padding: 40px 0;
        }

        /* 核心容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 通用卡片样式 */
        .card {
            background-color: var(--bg-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            padding: 50px;
            transition: var(--transition);
            border-top: 4px solid transparent;
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-top-color: var(--primary-color);
        }

        /* 标题样式 */
        .section-title {
            font-size: 32px;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 36px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .section-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 28px;
            background-color: var(--primary-color);
            border-radius: 2px;
            margin-right: 16px;
        }

        /* 联系我们模块 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 16px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            padding: 24px;
            border-radius: 8px;
            background-color: var(--primary-light);
            transition: var(--transition);
        }

        .contact-item:hover {
            background-color: var(--primary-hover);
            transform: translateY(-4px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 185, 94, 0.2);
        }

        .contact-icon i {
            font-size: 24px;
            color: white;
        }

        .contact-text h4 {
            font-size: 18px;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-text p {
            font-size: 16px;
            color: var(--text-primary);
            line-height: 1.6;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .section-title {
                font-size: 28px;
            }
            .card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 20px 0;
            }
            .card {
                padding: 30px 20px;
            }
            .section-title {
                font-size: 24px;
                margin-bottom: 24px;
            }
            .contact-grid {
                gap: 20px;
            }
            .contact-item {
                padding: 20px;
            }
        }
    