
        /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* 流程区块 - 背景全屏适配 */
        .manufacturing-process {
            width: 100vw;
            padding: 60px 0;
            background-color: #ffffff;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 内容容器 - 适配ueeshop布局 */
        .process-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 标题区域 */
        .process-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .process-subtitle {
            color: #2dc071;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .process-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .process-desc {
            font-size: 16px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* 流程步骤容器 - 弹性布局适配多端 */
        .process-steps {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }

        /* 单个步骤样式 */
        .process-step {
            flex: 1;
            min-width: 140px;
            text-align: center;
            padding: 0 10px;
            position: relative;
            z-index: 2;
        }

        /* 圆形数字图标 */
        .step-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #2dc071;
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        /* 步骤标题 */
        .step-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* 步骤描述 */
        .step-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        /* 步骤间连线 */
        .step-connector {
            flex: 0 0 25px;
            height: 2px;
            background-color: #2dc071;
            align-self: center;
            margin: 0 5px;
        }

        /* 手机端适配 (≤768px) */
        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
            }
            .step-connector {
                width: 2px;
                height: 25px;
                margin: 10px 0;
            }
            .process-step {
                margin-bottom: 15px;
            }
            .process-title {
                font-size: 24px;
            }
            .process-desc {
                font-size: 14px;
            }
        }

        /* 平板端适配 (769px-992px) */
        @media (min-width: 769px) and (max-width: 992px) {
            .step-title {
                font-size: 16px;
            }
            .step-desc {
                font-size: 13px;
            }
            .step-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
    