
    .odm-process-container {
        font-family: Arial, sans-serif;
        max-width: 1000px;
        margin: 40px auto;
        color: #333;
        line-height: 1.6;
    }
    .odm-intro {
        text-align: center;
        margin-bottom: 30px;
    }
    .odm-intro h2 {
        color: #B75190;
        font-size: 28px;
        margin-bottom: 15px;
    }
    .odm-intro p {
        font-size: 16px;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* 图片容器的专属样式：带微阴影和圆角，显得更高级 */
    .odm-image-wrapper {
        text-align: center;
        margin-bottom: 40px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    /* 确保图片自适应手机和电脑屏幕 */
    .odm-image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        display: block;
        margin: 0 auto;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    .process-card {
        background: #fdfdfd;
        border: 1px solid #eee;
        border-top: 4px solid #B75190;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        transition: transform 0.3s ease;
    }
    .process-card:hover {
        transform: translateY(-5px);
    }
    .process-card h3 {
        color: #B75190;
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    .process-card ul {
        list-style-type: none;
        padding-left: 0;
        margin: 0;
    }
    .process-card li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #444;
    }
    .process-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #B75190;
        font-weight: bold;
    }
