﻿﻿﻿﻿﻿﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "SimSun", "PingFang SC", sans-serif;
        }

        body {
            background-color: #f9f2e8;
            color: #333;
            line-height: 1.6;
        }

        /* 椤堕儴瀵艰埅鏍?*/
        .top-nav {
            background-color: #b73422;
            padding: 8px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            font-size: 14px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .top-nav .logo {
            font-size: 16px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-nav .logo-icon {
            width: 28px;
            height: 28px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b73422;
            font-size: 14px;
        }

        .top-nav .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .top-nav .logo-text .main {
            font-size: 16px;
            font-weight: bold;
        }

        .top-nav .logo-text .sub {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
        }

        .top-nav .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-nav .stat-badge {
            background: rgba(255,255,255,0.15);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
        }

        .top-nav .points-link {
            color: #ffd700;
            text-decoration: none;
            cursor: pointer;
        }

        .top-nav .points-link:hover {
            text-decoration: underline;
        }

        /* 椤堕儴骞垮憡妯箙 */
        .top-banner {
            width: 100%;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
            margin-top: 44px;
        }

        .top-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 瀹瑰櫒 */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* 涓绘爣棰樺尯鍩?*/
        .main-title {
            text-align: center;
            margin-bottom: 30px;
            padding-top: 10px;
        }

        .main-title h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .main-title p {
            color: #888;
            font-size: 14px;
        }

        /* 琛ㄥ崟鍗＄墖 */
        .form-card {
            background-color: #f8f1ea;
            border: 1px solid #e8d5c0;
            padding: 25px;
            border-radius: 4px;
            margin-bottom: 25px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        /* 鍥剧墖涓婁紶鍖哄煙 */
        .upload-section {
            margin-bottom: 20px;
            padding: 20px;
            border: 1px dashed #d4a76a;
            border-radius: 5px;
            background-color: #fef9f2;
        }

        .upload-title {
            text-align: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: #b73422;
            font-weight: bold;
        }

        .upload-title .required {
            color: #e74c3c;
            font-size: 14px;
            font-weight: normal;
        }

        .upload-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
        }

        .upload-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .upload-square {
            width: 100px;
            height: 100px;
            border: 1px dashed #d4a76a;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background-color: #fff;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            touch-action: manipulation;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }

        .upload-square:hover {
            background-color: #f8e8d5;
            border-color: #b73422;
        }

        .upload-square input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .upload-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .upload-icon {
            font-size: 28px;
            color: #d4a76a;
            margin-bottom: 5px;
        }

        .upload-text {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-top: 8px;
        }

        .upload-text .required-tag {
            color: #e74c3c;
            font-size: 11px;
        }

        .preview-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .upload-count {
            text-align: center;
            margin-top: 10px;
            font-size: 12px;
            color: #999;
        }

        /* 琛ㄥ崟甯冨眬 */
        .form-table {
            width: 100%;
            border-collapse: collapse;
        }

        .form-table td {
            padding: 12px 8px;
            vertical-align: middle;
        }

        .form-table td:first-child {
            width: 120px;
            text-align: right;
            color: #666;
            font-weight: 500;
            font-size: 14px;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
            font-size: 14px;
            background: #fff;
        }

        .form-input:focus, .form-select:focus {
            border-color: #b73422;
            outline: none;
            box-shadow: 0 0 0 2px rgba(183,52,34,0.1);
        }

        .form-textarea {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
            min-height: 80px;
            resize: vertical;
            font-size: 14px;
            background: #fff;
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            color: #555;
        }

        .radio-item input {
            margin-right: 5px;
            accent-color: #b73422;
        }

        .btn-group {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .submit-btn {
            flex: 1;
            padding: 12px;
            background-color: #2c52b5;
            color: #fff;
            border: none;
            border-radius: 3px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background-color: #1e3f99;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(44,82,181,0.3);
        }

        .submit-btn:disabled {
            background-color: #999;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn.ai-btn {
            background: linear-gradient(135deg, #1a472a, #2d5a3d);
        }

        .submit-btn.ai-btn:hover {
            background: linear-gradient(135deg, #2d5a3d, #3d7a52);
            box-shadow: 0 4px 8px rgba(26,71,42,0.3);
        }

        .submit-btn.ai-btn:disabled {
            background: #999;
        }

        .submit-note {
            text-align: center;
            font-size: 12px;
            color: #999;
            margin-top: 8px;
        }

        .submit-note a {
            color: #2c52b5;
            text-decoration: none;
        }

        .submit-note a:hover {
            text-decoration: underline;
        }

        .service-note {
            background-color: #fff9e0;
            border: 1px solid #e8d5c0;
            padding: 20px;
            margin-bottom: 25px;
            border-radius: 4px;
        }

        .service-note h3 {
            color: #b73422;
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: bold;
        }

        .service-note ul {
            padding-left: 20px;
            font-size: 14px;
            color: #666;
        }

        .service-note ul li {
            margin-bottom: 6px;
            line-height: 1.6;
        }

        .service-note a {
            color: #2c52b5;
            text-decoration: none;
        }

        .service-note a:hover {
            text-decoration: underline;
        }

        .features {
                        display: flex;
                        justify-content: center;
                        gap: 20px;
                        margin-bottom: 30px;
                        text-align: center;
                }

                .feature-item {
                        width: 140px;
                        padding: 15px;
                }

                .feature-icon {
                        width: 60px;
                        height: 60px;
                        border: 2px solid #b73422;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin: 0 auto 10px;
                        font-size: 24px;
                        color: #b73422;
                        transition: all 0.3s;
                }

                .feature-item:hover .feature-icon {
                        background-color: #b73422;
                        color: #fff;
                }

                .feature-name {
                        font-size: 14px;
                        color: #555;
                        font-weight: 500;
                }

                .feature-img {
                        text-align: center;
                        margin-bottom: 30px;
                }

                .feature-img img {
                        max-width: 100%;
                        height: auto;
                        border: 1px solid #e8d5c0;
                        padding: 5px;
            background: #fff;
        }

        .result-card {
            background-color: #f8f1ea;
            border: 1px solid #e8d5c0;
            padding: 25px;
            border-radius: 4px;
            margin-bottom: 25px;
            display: none;
        }

        .result-card.show {
            display: block;
        }

        .result-card h3 {
            color: #b73422;
            margin-bottom: 15px;
            font-size: 20px;
            text-align: center;
        }

        .result-content {
            line-height: 1.8;
            font-size: 14px;
            padding: 15px;
            background-color: #fef9f2;
            border-radius: 5px;
        }

        .footer {
            text-align: center;
            padding: 20px 0;
            font-size: 12px;
            color: #999;
            border-top: 1px solid #e8d5c0;
            margin-top: 30px;
        }

        /* Toast 鎻愮ず */
        .toast {
            display: none;
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .toast.error { background: #fee; color: #c00; border: 1px solid #fcc; }
        .toast.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
        .toast.info { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
        .toast.active { display: block; }

        /* Loading */
        .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 1001;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 20px;
        }

        .loading-overlay.active {
            display: flex;
        }

        .loading-spinner {
            width: 48px;
            height: 48px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            color: white;
            font-size: 16px;
        }

        /* ===== 绉诲姩绔搷搴斿紡 ===== */
        @media (max-width: 768px) {
            body { background-color: #f5f0eb; }

            /* 椤堕儴瀵艰埅 - 鏇寸揣鍑?*/
            .top-nav {
                padding: 6px 12px;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 4px;
            }
            .top-nav .logo-text .sub { display: none; }
            .top-nav .logo { gap: 6px; }
            .top-nav .logo .main { font-size: 14px; }
            .top-nav .logo-icon { width: 24px; height: 24px; font-size: 12px; }
            .top-nav .user-info { gap: 6px; flex-wrap: wrap; }
            .top-nav .stat-badge {
                padding: 3px 8px;
                font-size: 11px;
                white-space: nowrap;
            }

            /* 骞垮憡妯箙 - 楂樺害缂╁皬 */
            .top-banner {
                height: 120px;
                margin-top: 42px;
            }

            /* 瀹瑰櫒 */
            .container {
                padding: 12px 10px;
            }

            /* 涓绘爣棰?*/
            .main-title { margin-bottom: 16px; padding-top: 0; }
            .main-title h2 { font-size: 20px; }
            .main-title p { font-size: 12px; }

            /* 琛ㄥ崟鍗＄墖 - 鏇寸揣鍑?*/
            .form-card {
                padding: 12px;
                border-radius: 8px;
                margin-bottom: 12px;
            }

            /* 涓婁紶鍖哄煙 - 2鍒?+ 鏇村ぇ鏂瑰潡 */
            .upload-section { padding: 12px; }
            .upload-title { font-size: 14px; }
            .upload-title .required { font-size: 11px; display: block; }
            .upload-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .upload-square {
                width: 100%;
                height: 110px;
                aspect-ratio: 1/1;
                touch-action: manipulation;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                user-select: none;
            }
            .upload-icon { font-size: 24px; }
            .upload-text { font-size: 11px; margin-top: 4px; }

            /* 琛ㄥ崟 - 杞潡绾у竷灞€ */
            .form-table, .form-table tbody, .form-table tr, .form-table td {
                display: block;
                width: 100%;
            }
            .form-table td {
                padding: 6px 0;
                text-align: left;
            }
            .form-table td:first-child {
                width: 100%;
                text-align: left;
                font-size: 13px;
                padding-bottom: 2px;
                color: #888;
            }
            .form-input, .form-select, .form-textarea {
                font-size: 15px;
                padding: 10px 12px;
                border-radius: 6px;
            }

            /* 鍗曢€夌粍 - 妯悜婊氬姩 */
            .radio-group {
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 8px;
                padding-bottom: 4px;
                -webkit-overflow-scrolling: touch;
            }
            .radio-item {
                flex-shrink: 0;
                padding: 8px 14px;
                border: 1px solid #ddd;
                border-radius: 20px;
                font-size: 13px;
                background: #fff;
                white-space: nowrap;
            }
            .radio-item input { margin-right: 4px; accent-color: #b73422; }

            /* 鎸夐挳缁?- 鍏ㄥ鎸夐挳 */
            .btn-group { flex-direction: column; gap: 8px; }
            .submit-btn {
                padding: 14px;
                font-size: 16px;
                border-radius: 8px;
            }
            .submit-note { font-size: 11px; }

            /* 鎵嬫満绔姤鍛婂垪琛?- 鍐呰仈鏄剧ず */
            .mobile-reports {
                display: block;
                background: white;
                border-radius: 8px;
                padding: 12px;
                margin-bottom: 12px;
            }
            .mobile-reports-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 10px;
            }
            .mobile-reports-header h3 { font-size: 14px; color: #333; margin: 0; }
            .mobile-reports-count { font-size: 12px; color: #999; }
            .mobile-reports-loading { text-align: center; padding: 20px; color: #999; font-size: 13px; }
            .mobile-reports-empty { text-align: center; padding: 20px; color: #999; font-size: 13px; }
            .mobile-report-item {
                padding: 10px 0;
                border-bottom: 1px solid #f0f0f0;
                cursor: pointer;
                font-size: 13px;
            }
            .mobile-report-item:last-child { border-bottom: none; }
            .mobile-report-item .report-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 4px;
            }
            .mobile-report-item .report-no { font-weight: 600; color: #b73422; font-size: 12px; }
            .mobile-report-item .report-status { font-size: 11px; }
            .mobile-report-item .report-info-text { color: #666; font-size: 12px; }
            .mobile-report-item .report-time { color: #999; font-size: 11px; }

            /* 鏈嶅姟璇存槑 */
            .service-note { padding: 12px; }
            .service-note h3 { font-size: 14px; }
            .service-note ul { font-size: 12px; padding-left: 16px; }

            /* 鐗硅壊鍥炬爣 - 涓€鎺?*/
            .features { gap: 8px; }
            .feature-item {
                width: auto;
                flex: 1;
                padding: 10px 4px;
                min-width: 0;
            }
            .feature-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }
            .feature-name { font-size: 11px; }

            /* 缁撴灉鍗＄墖 */
            .result-card { padding: 15px; }
            .result-card h3 { font-size: 16px; }
            .result-content { font-size: 13px; padding: 10px; }

            /* Toast - 鏇村 */
            .toast {
                top: 60px;
                width: 90%;
                font-size: 13px;
                padding: 10px 16px;
            }

            /* 鎶ュ憡寮圭獥 */
            .reports-modal-content { width: 95%; }
            .reports-modal-header { padding: 12px 16px; }
            .reports-modal-header h3 { font-size: 14px; }
            .report-item { padding: 10px; font-size: 13px; }

            /* 搴曢儴 */
            .footer { font-size: 11px; padding: 15px 0; margin-top: 15px; }

            /* 楠岃瘉寮圭獥 */
            .verify-modal { width: 95%; padding: 20px 16px; }
        }

        /* 鎵嬫満绔姤鍛婂垪琛?- 妗岄潰闅愯棌 */
        .mobile-reports { display: none; }

        /* 鎶ュ憡寮圭獥鏍峰紡 */
        .reports-modal {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reports-modal-content {
            background: #fff;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .reports-detail-modal {
            max-width: 650px;
        }

        .reports-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #b73422;
            color: #fff;
        }

        .reports-modal-header h3 {
            margin: 0;
            font-size: 16px;
        }

        .reports-modal-header button {
            background: none;
            border: none;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
        }

        .reports-list {
            padding: 15px;
            overflow-y: auto;
            max-height: 60vh;
        }

        .report-item {
            border: 1px solid #e8d5c0;
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .report-item:hover {
            background: #fff9f0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .report-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .report-no {
            font-weight: bold;
            color: #b73422;
        }

        .report-date {
            color: #999;
            font-size: 12px;
        }

        .report-tag {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-bottom: 5px;
        }

        .tag-success { background: #e8f5e9; color: #2e7d32; }
        .tag-danger { background: #ffebee; color: #c62828; }
        .tag-warning { background: #fff8e1; color: #f57c00; }

        .report-info {
            font-size: 13px;
            color: #666;
        }

        .report-actions {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .report-actions button {
            padding: 4px 12px;
            border-radius: 4px;
            border: none;
            font-size: 12px;
            cursor: pointer;
            font-weight: 500;
        }

        .btn-detail {
            background: #e3f2fd;
            color: #1565c0;
        }

        .btn-detail:hover {
            background: #bbdefb;
        }

        .btn-delete {
            background: #ffebee;
            color: #c62828;
        }

        .btn-delete:hover {
            background: #ffcdd2;
        }

        .report-group-title {
            padding: 8px 15px;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            background: #f8f9fa;
            border-top: 1px solid #eee;
        }

        .report-group-title:first-child {
            border-top: none;
        }

        .report-detail {
            padding: 20px;
            overflow-y: auto;
            max-height: 60vh;
        }

        .report-status-bar {
            padding: 12px 15px;
            border-radius: 6px;
            text-align: center;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .status-success { background: #e8f5e9; color: #2e7d32; }
        .status-danger { background: #ffebee; color: #c62828; }
        .status-pending { background: #fff8e1; color: #f57c00; }

        .report-meta {
            background: #f8f8f8;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 15px;
        }

        .meta-item {
            margin-bottom: 5px;
            font-size: 14px;
        }

        .meta-item span { color: #999; }
        .meta-item strong { color: #b73422; }

        .report-section {
            margin-bottom: 15px;
        }

        .report-section h4 {
            color: #b73422;
            margin: 0 0 8px;
            font-size: 14px;
        }

        .report-section p {
            margin: 0;
            line-height: 1.6;
            color: #333;
        }

        /* 涓撲笟鎶ュ憡鏍峰紡 */
        .score-hero {
            text-align: center;
            padding: 16px;
            background: linear-gradient(135deg, #1a472a, #2d5a3d);
            border-radius: 10px;
            margin-bottom: 16px;
        }

        .score-number {
            font-size: 42px;
            font-weight: 800;
            color: #ffd700;
            line-height: 1;
        }

        .score-label {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
        }

        .radar-container {
            text-align: center;
            margin: 16px 0;
        }

        .radar-title {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }

        #radarChart {
            display: block;
            margin: 0 auto;
        }

        .report-attrs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 16px;
        }

        .attr-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 10px 8px;
            text-align: center;
        }

        .attr-label {
            font-size: 11px;
            color: #999;
            margin-bottom: 4px;
        }

        .attr-value {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .report-text-box {
            background: #f8f9f8;
            border-left: 3px solid #2d5a3d;
            border-radius: 0 6px 6px 0;
            padding: 12px 14px;
        }

        .report-line {
            display: flex;
            margin-bottom: 6px;
            font-size: 13px;
            line-height: 1.5;
        }

        .report-line:last-child { margin-bottom: 0; }

        .report-label {
            font-weight: 600;
            color: #1a472a;
            min-width: 70px;
            flex-shrink: 0;
        }

        .report-content {
            color: #444;
        }

        /* User drawer */
        .user-drawer-overlay {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; transition: opacity 0.3s;
        }
        .user-drawer-overlay.open { display: block; opacity: 1; }
        .user-drawer {
            position: fixed; top: 0; right: 0; width: 520px; max-width: 95vw;
            height: 100vh; background: white; z-index: 2001;
            transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
            overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,0.15);
            display: flex; flex-direction: column;
        }
        .user-drawer.open { transform: translateX(0); }
        .user-drawer-header {
            padding: 16px 20px; border-bottom: 1px solid #f0f0f0;
            display: flex; justify-content: space-between; align-items: center;
            background: linear-gradient(135deg, #1a472a, #2d5a3d); color: white;
            position: sticky; top: 0; z-index: 2;
        }
        .user-drawer-header h2 { margin: 0; font-size: 16px; flex: 1; text-align: center; }
        .user-drawer-body { flex: 1; overflow-y: auto; }
        .drawer-back-btn {
            background: rgba(255,255,255,0.2); border: none; color: white;
            font-size: 14px; cursor: pointer; padding: 4px 12px; border-radius: 6px;
        }
        .drawer-close-btn {
            background: rgba(255,255,255,0.2); border: none; color: white;
            font-size: 20px; width: 32px; height: 32px; border-radius: 50%;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
        }

        .report-list-item {
            padding: 12px 16px; border-bottom: 1px solid #f0f0f0; cursor: pointer;
            transition: background 0.15s;
        }
        .report-list-item:hover { background: #f8f9fa; }
        .report-list-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
        .report-list-no { font-weight: 700; color: #1a472a; font-size: 13px; font-family: monospace; }
        .report-list-status { font-size: 12px; padding: 2px 8px; border-radius: 10px; }
        .status-green { background: #e8f5e9; color: #2e7d32; }
        .status-red { background: #ffebee; color: #c62828; }
        .status-yellow { background: #fff8e1; color: #f57c00; }
        .report-list-meta { font-size: 13px; color: #666; margin-bottom: 2px; }
        .report-list-date { font-size: 12px; color: #999; }
        .report-list-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
        .ident-tag { display: inline-block; background: #e8f5e9; color: #2e7d32; font-size: 11px; padding: 2px 6px; border-radius: 4px; margin-right: 4px; }
        .score-tag { display: inline-block; background: #fff3e0; color: #f57c00; font-size: 11px; padding: 2px 6px; border-radius: 4px; }
        .report-delete-btn { background: none; border: 1px solid #ffcdd2; color: #e53935; font-size: 11px; padding: 3px 8px; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
        .report-delete-btn:hover { background: #ffebee; }
        .report-group-label { padding: 8px 16px; background: #f8f9fa; font-size: 13px; font-weight: 600; color: #666; }

        /* Edit form in drawer */
        .edit-field { margin-bottom: 14px; }
        .edit-field > label { display: block; font-size: 13px; color: #666; margin-bottom: 6px; font-weight: 500; }
        .edit-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 4px; }
        .edit-chip-radio { display: none; }
        .edit-chip-label {
            display: inline-block; padding: 4px 12px; border-radius: 14px; font-size: 12px;
            cursor: pointer; border: 1.5px solid #ddd; background: white; color: #666;
            transition: all 0.2s;
        }
        .edit-chip-label:hover { border-color: #1a472a; color: #1a472a; }
        .edit-chip-radio:checked + .edit-chip-label { background: #e8f5e9; border-color: #4caf50; color: #2e7d32; font-weight: 600; }
        .edit-manual { width: 100%; padding: 6px 12px; border: 1px dashed #ccc; border-radius: 8px; font-size: 13px; background: #fafafa; box-sizing: border-box; }
        .edit-manual:focus { outline: none; border-color: #1a472a; background: white; }
        .edit-textarea { width: 100%; padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 13px; resize: vertical; min-height: 80px; box-sizing: border-box; }
        .edit-textarea:focus { outline: none; border-color: #1a472a; }
        .btn-save-report {
            width: 100%; padding: 12px; background: #1a472a; color: white; border: none;
            border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
            transition: all 0.2s; margin-top: 8px;
        }
        .btn-save-report:hover { background: #2d5a3d; box-shadow: 0 4px 12px rgba(26,71,42,0.3); }

        /* ===== 浜烘満楠岃瘉寮圭獥 ===== */
        .verify-overlay {
            display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.55); z-index: 9999;
            align-items: center; justify-content: center;
            backdrop-filter: blur(4px);
        }
        .verify-overlay.active { display: flex; }
        .verify-modal {
            background: #fff; border-radius: 16px; padding: 32px; max-width: 400px; width: 92%;
            text-align: center; box-shadow: 0 12px 48px rgba(0,0,0,0.25);
            animation: verifyIn 0.35s ease;
        }
        @keyframes verifyIn {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .verify-icon { font-size: 48px; margin-bottom: 12px; }
        .verify-title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 8px; }
        .verify-desc { font-size: 13px; color: #888; margin-bottom: 24px; line-height: 1.5; }

        .verify-slider-box {
            width: 100%; height: 44px; background: #f0f0f0; border-radius: 22px;
            position: relative; overflow: hidden; user-select: none;
            border: 1px solid #ddd; margin-bottom: 16px; touch-action: none;
        }
        .verify-slider-bg {
            position: absolute; left: 0; top: 0; bottom: 0;
            background: linear-gradient(90deg, #4caf50, #66bb6a); border-radius: 22px;
            width: 0; transition: width 0.05s;
        }
        .verify-slider-text {
            position: absolute; left: 0; right: 0; top: 0; bottom: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; color: #999; z-index: 1; pointer-events: none;
        }
        .verify-slider-btn {
            position: absolute; left: 0; top: -1px; bottom: -1px;
            width: 50px; border-radius: 50%; background: #fff;
            border: 1px solid #ccc; cursor: grab; z-index: 2;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; color: #999; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            transition: box-shadow 0.2s; touch-action: none;
        }
        .verify-slider-btn:active { cursor: grabbing; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
        .verify-slider-btn.done {
            background: #4caf50; border-color: #4caf50; color: #fff; cursor: default;
        }
        .verify-slider-btn.fail {
            background: #f44336; border-color: #f44336; color: #fff; cursor: default;
            animation: shake 0.4s ease;
        }
        @keyframes shake {
            0%,100%{transform:translateX(0)}20%{transform:translateX(-8px)}40%{transform:translateX(8px)}60%{transform:translateX(-4px)}80%{transform:translateX(4px)}
        }
        .verify-loading {
            display: none; align-items: center; justify-content: center; gap: 8px;
            font-size: 13px; color: #666; margin-top: 8px;
        }
        .verify-loading.active { display: flex; }
        .verify-spinner {
            width: 16px; height: 16px; border: 2px solid #ddd; border-top-color: #1677ff;
            border-radius: 50%; animation: spin 0.8s linear infinite;
        }
        .verify-error {
            font-size: 12px; color: #f44336; display: none; margin-top: 8px;
        }
        .verify-error.active { display: block; }
        .verify-success {
            display: none; font-size: 14px; color: #4caf50; font-weight: 600; margin-top: 8px;
        }
        .verify-success.active { display: block; }

        /* 右侧浮动设计完成通知 */
        .design-notify-container {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
            max-width: 360px;
            width: 360px;
        }
        .design-notify-item {
            pointer-events: auto;
            background: #fff;
            border-radius: 12px;
            padding: 14px 18px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.15);
            border-left: 4px solid #1a472a;
            cursor: pointer;
            animation: notifySlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }
        .design-notify-item:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            transform: translateX(-4px);
        }
        .design-notify-item .notify-icon {
            width: 40px;
            height: 40px;
            background: #e8f5e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .design-notify-item .notify-body {
            flex: 1;
            min-width: 0;
        }
        .design-notify-item .notify-title {
            font-size: 14px;
            font-weight: 700;
            color: #1a472a;
            line-height: 1.3;
        }
        .design-notify-item .notify-desc {
            font-size: 12px;
            color: #888;
            margin-top: 2px;
            line-height: 1.4;
        }
        .design-notify-item .notify-close {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #999;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .design-notify-item .notify-close:hover {
            background: #e0e0e0;
            color: #666;
        }

        @keyframes notifySlideIn {
            from {
                opacity: 0;
                transform: translateX(100px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .design-notify-item.notify-leaving {
            animation: notifySlideOut 0.3s ease forwards;
        }
        @keyframes notifySlideOut {
            to {
                opacity: 0;
                transform: translateX(100px) scale(0.9);
            }
        }

        @media (max-width: 768px) {
            .design-notify-container {
                right: 10px;
                left: 10px;
                max-width: none;
                width: auto;
                bottom: 20px;
            }
            .design-notify-item {
                padding: 12px 14px;
            }
            .design-notify-item .notify-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            .design-notify-item .notify-title {
                font-size: 13px;
            }
        }
    </style>
