   /* 碳纤维优势模块容器 */
    .GGW-plist-advantage {

    }

    .GGW-plist-advantage-container {
        max-width: 1310px;
        margin: 0 auto;
        padding: 80px 0px 0px 0px;
    }

    /* 标题样式 */
    .GGW-plist-advantage-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #fff;
        position: relative;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .GGW-plist-advantage-title:after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #f0c14b 0%, #f8d878 100%);
        margin: 20px auto 0;
        box-shadow: 0 0 15px rgba(240, 193, 75, 0.5);
        border-radius: 2px;
    }

    /* 3×3网格布局 */
    .GGW-plist-advantage-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* 单个优势项样式 */
    .GGW-plist-advantage-item {
        padding: 40px 30px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .GGW-plist-advantage-item:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #f0c14b 0%, #f8d878 100%);
    }

    /* 悬停效果 */
    .GGW-plist-advantage-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        background-color: white;
    }

    /* 图标样式 */
    .GGW-plist-advantage-icon {
        font-size: 2.5rem;
        color: #f0c14b;
        margin-bottom: 25px;
        transition: transform 0.3s ease;
    }
    
    .GGW-plist-advantage-item:hover .GGW-plist-advantage-icon {
        transform: scale(1.1);
    }

    /* 文字样式 */
    .GGW-plist-advantage-item-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #222;
        font-weight: 600;
        line-height: 1.3;
    }

    .GGW-plist-advantage-item-desc {
        font-size: 1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 0;
    }

    /* 响应式设计 */
    @media (max-width: 1200px) {
        .GGW-plist-advantage-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .GGW-plist-advantage {
            padding: 60px 0;
        }
        
        .GGW-plist-advantage-container {
            padding: 0 20px;
        }
        
        .GGW-plist-advantage-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }
        
        .GGW-plist-advantage-list {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
            gap: 20px;
        }
        
        .GGW-plist-advantage-item {
            padding: 30px 25px;
        }

        .GGW-plist-advantage-item-title {
            font-size: 1.4rem;
        }

        .GGW-plist-advantage-item-desc {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .GGW-plist-advantage-title {
            font-size: 1.8rem;
        }
        
        .GGW-plist-advantage-item {
            padding: 25px 20px;
        }
    }