
    /* 全局重置与基础样式 */
    .new-about-wrapper {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.8;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }
    
    .new-about-wrapper * {
        box-sizing: border-box;
    }

    .new-about-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
    }

    /* 通用标题样式 */
    .section-title {
        font-size: 28px;
        color: #0B8B56; /* 品牌绿 */
        margin-bottom: 20px;
        position: relative;
        font-weight: 700;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #FCCD00; /* 品牌黄 */
        margin-top: 10px;
    }

    /* Z型布局区域 (图文交替) */
    .zigzag-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 60px;
        gap: 40px;
    }
    
    .zigzag-section:nth-child(even) {
        flex-direction: row-reverse; /* 偶数行图片在右 */
    }

    .zigzag-text {
        flex: 1;
        min-width: 300px;
    }
    
    .zigzag-img {
        flex: 1;
        min-width: 300px;
        position: relative;
    }
    
    /* 图片装饰框 */
    .zigzag-img::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid #0B8B56;
        top: 15px;
        left: 15px;
        z-index: -1;
        opacity: 0.3;
        border-radius: 4px;
    }

    /* 数据统计区域 */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 60px;
        background: #f9f9f9;
        padding: 40px 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 32px;
        color: #0B8B56;
        margin: 0 0 5px 0;
        font-weight: 800;
    }
    
    .stat-item p {
        font-size: 14px;
        color: #666;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* 产品与理念部分 - 纯文本 */
    .philosophy-section {
        background-color: #fff;
        margin-bottom: 60px;
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 图片画廊 Grid */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .gallery-item {
        overflow: hidden;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
    }

    /* 联系方式卡片 */
    .contact-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 40px;
    }
    
    .contact-card {
        flex: 1;
        background: #fff;
        border: 1px solid #eee;
        padding: 30px 20px;
        text-align: center;
        border-radius: 8px;
        transition: 0.3s;
        border-top: 4px solid #0B8B56;
    }
    
    .contact-card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        background: #eaf7f1;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon img {
        width: 30px;
        height: auto;
    }
    
    .contact-label {
        font-weight: bold;
        color: #0B8B56;
        margin-bottom: 10px;
        display: block;
        font-size: 16px;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
        .zigzag-section {
            flex-direction: column !important; /* 强制手机端上下排列 */
            gap: 20px;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr); /* 手机端2列 */
        }
        
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .contact-wrapper {
            flex-direction: column;
        }
        
        .zigzag-img::before {
            display: none; /* 手机端去掉装饰框以防溢出 */
        }
    }
    
    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr; /* 极小屏幕1列 */
        }
    }
