        body {
            margin: 0;
            background-color: #f0f2f5;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* --- 登录页样式 --- */
        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: #2d3a4b;
        }

        .login-box {
            width: 350px;
            padding: 35px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .login-title {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }

        /* --- 布局样式 --- */
        .app-container {
            height: 100vh;
        }

        .el-header {
            background-color: #fff;
            border-bottom: 1px solid #dcdfe6;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .main-card {
            margin-bottom: 20px;
        }

        .el-main {
            padding: 20px;
            overflow-y: auto;
            height: calc(100vh - 60px);
        }

        /* --- 笔记列表相关 --- */
        .note-cover {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            border: 1px solid #eee;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f5f7fa;
        }

        .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 5px;
        }

        .status-dot.online {
            background-color: #67C23A;
        }

        .status-dot.offline {
            background-color: #909399;
        }

        /* --- 手机预览区 --- */
        .phone-preview {
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 15px;
            background: #fff;
            height: 500px;
            width: 300px;
            margin: 0 auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .preview-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .preview-title {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .preview-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        /* --- IM 方案 --- */
        .im-scheme-item {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .im-scheme-item:hover {
            background-color: #f5f7fa;
        }

        .im-scheme-item.active {
            background-color: #ecf5ff;
            border-left: 3px solid #409EFF;
        }

        /* --- 模板管理：框选区域样式 --- */
        .crop-container {
            position: relative;
            display: inline-block;
            user-select: none;
            border: 2px solid #ccc;
            background: #eee;
        }

        .crop-img {
            max-width: 600px;
            max-height: 400px;
            display: block;
            pointer-events: none;
        }

        .crop-mask {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            cursor: crosshair;
            z-index: 10;
        }

        .crop-box {
            position: absolute;
            border: 2px dashed #409EFF;
            background: rgba(64, 158, 255, 0.2);
            pointer-events: none;
            box-sizing: border-box;
        }

        /* ============================================================ */
        /* 🔥 Workbench V7.3: AI 工厂流水线样式 */
        /* ============================================================ */
        .workbench-wrapper {
            height: calc(100vh - 140px);
            background: #fff;
            border: 1px solid #dcdfe6;
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .wb-scroll-container {
            padding: 20px;
            overflow-y: auto;
            height: 100%;
            box-sizing: border-box;
            background: #fff;
        }

        .workbench-layout {
            display: flex;
            height: 100%;
        }

        .wb-sidebar {
            width: 320px;
            border-right: 1px solid #dcdfe6;
            display: flex;
            flex-direction: column;
            background: #f9fafc;
            z-index: 10;
        }

        .wb-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: #f0f2f5;
            overflow: hidden;
        }

        .wb-header {
            padding: 15px;
            border-bottom: 1px solid #eee;
            background: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .console-log {
            background: #1e1e1e;
            color: #67c23a;
            font-family: monospace;
            padding: 10px;
            border-radius: 4px;
            font-size: 12px;
            height: 120px;
            overflow-y: auto;
            margin-top: 10px;
        }

        .result-grid {
            padding: 20px;
            overflow-y: auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            flex: 1;
        }

        .result-card {
            background: #fff;
            border-radius: 6px;
            border: 1px solid #e4e7ed;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: all 0.2s;
            height: 200px;
        }

        .result-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .status-bar {
            height: 4px;
            width: 100%;
        }

        .status-bar.loading {
            background: linear-gradient(90deg, #409EFF, #a0cfff, #409EFF);
            background-size: 200% 100%;
            animation: loadingGradient 1.5s infinite;
        }

        .status-bar.success {
            background: #67C23A;
        }

        .status-bar.error {
            background: #F56C6C;
        }

        @keyframes loadingGradient {
            0% {
                background-position: 100% 0;
            }

            100% {
                background-position: -100% 0;
            }
        }

        .card-cover-preview {
            height: 140px;
            background: #f5f7fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #909399;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            width: 90px;
        }

        .card-cover-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            font-size: 10px;
            padding: 2px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .card-cover-preview:hover .card-cover-overlay {
            opacity: 1;
        }

        .card-cover-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .field-label {
            font-size: 12px;
            font-weight: bold;
            color: #606266;
            margin-bottom: 2px;
            display: flex;
            justify-content: space-between;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 4px;
        }

        .card-footer {
            padding: 8px 10px;
            border-top: 1px solid #f0f2f5;
            background: #fafafa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-thumb {
            background: #dcdfe6;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }