    /* 图像处理页面样式 */
    .image-process-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title h1 {
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
    }

    /* 图片筛选识别结果框样式 */
    .image-overlay {
        position: relative;
        display: inline-block;
    }

    .recognition-result {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #0066ff;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
        min-width: 120px;
    }

    .result-title {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 8px;
        border-bottom: 1px solid #e8e8e8;
        padding-bottom: 5px;
    }

    .result-item {
        font-size: 13px;
        color: #333;
        margin: 5px 0;
        padding: 3px 0;
    }

    /* 功能模块样式 */
    .feature-modules {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-module {
        background: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .feature-module:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .module-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .module-icon i {
        font-size: 32px;
        color: white;
    }

    .module-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .module-desc {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .module-link {
        display: inline-block;
        padding: 10px 20px;
        background: #f8f9fa;
        color: #0066ff;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .module-link:hover {
        background: #0066ff;
        color: white;
    }

    /* 应用场景样式 */
    .scenario-tabs {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 50px;
    }

    .scenario-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .scenario-header h2 {
        font-size: 2rem;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .tab-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .tab-button {
        padding: 12px 24px;
        background: #ffffff;
        border: 2px solid #e8e8e8;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tab-button.active {
        background: #0066ff;
        border-color: #0066ff;
        color: white;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .scenario-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    .scenario-text h3 {
        font-size: 1.5rem;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .scenario-text p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .scenario-apps {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .app-tag {
        padding: 8px 16px;
        background: #e8f0ff;
        color: #0066ff;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .scenario-image {
        text-align: center;
    }

    .comparison-image {
        width: 100%;
        max-width: 400px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .image-caption {
        display: flex;
        justify-content: space-around;
        margin-top: 10px;
        color: #666;
        font-size: 0.9rem;
    }

    /* 产品特性样式 */
    .product-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-card .module-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-card .module-icon i {
        font-size: 24px;
    }

    .feature-card .module-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    /* 上传处理区域 */
    .upload-section {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 40px;
        margin: 50px 0;
        text-align: center;
    }

    .upload-area {
        border: 2px dashed #ccc;
        border-radius: 8px;
        padding: 40px;
        margin: 20px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .upload-area:hover {
        border-color: #0066ff;
        background: #f0f7ff;
    }

    .upload-area i {
        font-size: 48px;
        color: #ccc;
        margin-bottom: 15px;
    }

    .upload-text {
        color: #666;
        margin-bottom: 10px;
    }

    .upload-button {
        display: inline-block;
        padding: 12px 24px;
        background: #0066ff;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .upload-button:hover {
        background: #0052cc;
    }

    .preview-container {
        display: none;
        margin-top: 30px;
    }

    .preview-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .preview-image {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .container_head {
        width: 98%;
        margin: 0 auto;
        padding: 0 20px;
    }