        /* 简洁三色系设计 - 主色:深蓝灰, 辅色:浅灰, 强调色:橙色 */
        :root {
            --primary-color: #2c3e50;    /* 深蓝灰 - 主色 */
            --secondary-color: #f8f9fa;   /* 浅灰 - 背景色 */
            --accent-color: #e67e22;      /* 橙色 - 强调色 */
            --text-color: #333333;        /* 深灰 - 文字色 */
            --light-text: #666666;        /* 中灰 - 次要文字 */
            --border-color: #e0e0e0;      /* 边框色 */
            --card-bg: #ffffff;           /* 卡片背景 */
        }
        
        /* 按钮样式 - 简洁大气 */
        .btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #d35400; /* 深一点的橙色 */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
            text-decoration: none;
            color: white;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
        }
        
        .btn-outline:hover {
            background-color: var(--accent-color);
            color: white;
        }
        
        /* 标题样式 */
        .section-title-he {
            color: var(--primary-color);
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title-he::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .section-title p {
            color: var(--light-text);
            font-size: 16px;
            line-height: 1.6;
            max-width: 700px;
			margin-top: 15px;
        }
        
        /* 导航栏调整 */
        .nav-link {
            color: var(--primary-color);
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        /* 卡片样式 */
        .product-card, .advantage-card, .challenge-card, .story-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .product-card:hover, .advantage-card:hover, .challenge-card:hover, .story-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }
        
        /* 试用区域 - 简洁设计 */
        .trial {
            background-color: var(--secondary-color);
            padding: 80px 0;
            text-align: center;
        }
        
        .trial h2 {
            color: var(--primary-color);
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .trial p {
            color: var(--light-text);
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        /* 简化解决方案与试用合并区域 */
        .simplified-solutions {
            background-color: var(--secondary-color);
            padding: 60px 0;
        }
        
        .simplified-solutions .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .solutions-content {
            width: 100%;
        }
        
        .solutions-content h3 {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .solution-item {
            background: white;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid var(--accent-color);
            text-align: left;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .solution-item i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 18px;
        }
        
        .solution-item span {
            color: var(--text-color);
            line-height: 1.5;
        }
        
        /* 资讯区域 - 简洁设计 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        
        .news-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.3s ease;
            padding: 24px;
        }
        
        .news-card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        
        .news-title {
            font-size: 17px;
            color: var(--primary-color);
            line-height: 1.5;
            margin-bottom: 12px;
            font-weight: 500;
        }
        
        .news-time {
            font-size: 14px;
            color: var(--light-text);
            display: flex;
            align-items: center;
        }
        
        .news-time i {
            color: var(--accent-color);
            margin-right: 8px;
            font-size: 14px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .trial h2 {
                font-size: 28px;
            }
            
            .trial p {
                font-size: 16px;
            }
        }