        /* 批量查询界面特定样式 */
        .batch-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        .batch-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .batch-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .batch-header p {
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        body.dark-mode .batch-header p {
            color: #94a3b8;
        }
        
        /* 标题使用蓝色 */
        .section-title-blue {
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }
        
        /* 调整布局为单列 */
        .batch-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .input-section, .progress-section, .results-section {
            background-color: var(--light-card);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            width: 100%;
        }
        
        body.dark-mode .input-section,
        body.dark-mode .progress-section,
        body.dark-mode .results-section {
            background-color: var(--dark-card);
        }
        
        .domain-input {
            width: 100%;
            min-height: 250px;
            padding: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: monospace;
            font-size: 0.95rem;
            resize: vertical;
            background-color: var(--light-bg);
            color: var(--text-dark);
            transition: var(--transition);
        }
        
        body.dark-mode .domain-input {
            border-color: #334155;
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        
        .domain-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
        }
        
        .input-note {
            margin-top: 10px;
            font-size: 0.85rem;
            color: #64748b;
        }
        
        body.dark-mode .input-note {
            color: #94a3b8;
        }
        
        .button-group {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: #e2e8f0;
            color: var(--text-dark);
        }
        
        body.dark-mode .btn-secondary {
            background-color: #334155;
            color: var(--text-light);
        }
        
        .btn-secondary:hover {
            background-color: #cbd5e1;
        }
        
        body.dark-mode .btn-secondary:hover {
            background-color: #475569;
        }
        
        .progress-bar-container {
            height: 10px;
            background-color: #e2e8f0;
            border-radius: 5px;
            margin: 25px 0;
            overflow: hidden;
        }
        
        body.dark-mode .progress-bar-container {
            background-color: #334155;
        }
        
        .progress-bar {
            height: 100%;
            background-color: var(--primary-color);
            width: 0%;
            transition: width 0.4s ease;
        }
        
        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        
        .status-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            border-radius: 8px;
            background-color: #f1f5f9;
            margin-top: 20px;
        }
        
        body.dark-mode .status-indicator {
            background-color: #1e293b;
        }
        
        .status-indicator i {
            font-size: 1.2rem;
        }
        
        .status-processing {
            color: #f59e0b;
        }
        
        .status-completed {
            color: #10b981;
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .results-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem; /* 减小字体大小 */
            font-weight: 400;   /* 调细字体 */
            overflow-x: auto;
            display: block;
        }
        
        .results-table th {
            background-color: #f1f5f9;
            padding: 10px 12px; /* 调整内边距 */
            text-align: left;
            font-weight: 600;
            color: #334155;
            border-bottom: 2px solid #e2e8f0;
            font-size: 0.9rem; /* 标题栏字体大小 */
            white-space: nowrap; /* 防止标题换行 */
        }
        
        body.dark-mode .results-table th {
            background-color: #1e293b;
            color: #cbd5e1;
            border-bottom: 2px solid #334155;
        }
        
        .results-table td {
            padding: 10px 12px; /* 调整内边距 */
            border-bottom: 1px solid #e2e8f0;
            color: #334155;
            line-height: 1.4; /* 调整行高 */
        }
        
        body.dark-mode .results-table td {
            border-bottom: 1px solid #334155;
            color: #cbd5e1;
        }
        
        .results-table tr:hover td {
            background-color: #f8fafc;
        }
        
        body.dark-mode .results-table tr:hover td {
            background-color: #1e293b;
        }
        
        .status-badge {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap; /* 防止状态文字换行 */
        }
        
        .status-success {
            background-color: #dcfce7;
            color: #166534;
        }
        
        .status-error {
            background-color: #fee2e2;
            color: #b91c1c;
        }
        
        .domain-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }
        
        .domain-link:hover {
            text-decoration: underline;
        }
        
        .root-domain {
            font-size: 0.8rem; /* 减小根域名字体大小 */
            color: #64748b;
            margin-top: 3px;
        }
        
        body.dark-mode .root-domain {
            color: #94a3b8;
        }
        
        .empty-results {
            text-align: center;
            padding: 40px;
            color: #64748b;
        }
        
        body.dark-mode .empty-results {
            color: #94a3b8;
        }
        
        .empty-results i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #cbd5e1;
        }
        
        .spinner {
            animation: spin 1s linear infinite;
            display: inline-block;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 导出按钮组 */
        .export-group {
            display: flex;
            gap: 10px;
        }
        
        .export-btn {
            background-color: #e2e8f0;
            color: var(--text-dark);
            padding: 8px 15px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
        }
        
        body.dark-mode .export-btn {
            background-color: #334155;
            color: var(--text-light);
        }
        
        .export-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* 上传按钮样式 */
        .file-upload-container {
            margin-top: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .file-upload-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background-color: #e2e8f0;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        body.dark-mode .file-upload-label {
            background-color: #334155;
            color: var(--text-light);
        }
        
        .file-upload-label:hover {
            background-color: #cbd5e1;
        }
        
        body.dark-mode .file-upload-label:hover {
            background-color: #475569;
        }
        
        .file-info {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        body.dark-mode .file-info {
            color: #94a3b8;
        }
        
        /* 文件上传隐藏 */
        #file-upload {
            display: none;
        }
        
        /* 结果表格容器 */
        .table-container {
            width: 100%;
            overflow-x: auto;
            border-radius: 8px;
        }
        
        body.dark-mode .table-container {
            border-color: #334155;
        }
        
        .domain-row td:first-child {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        /* 表格占满整个板块 */
        .results-section {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .table-container {
            flex: 1;
            overflow: auto;
        }
        
        .results-table {
            min-width: 100%;
            table-layout: fixed;
        }
        
        /* 调整列宽 - 删除根域名列后 */
        .results-table th:nth-child(1) { width: 5%; }
        .results-table th:nth-child(2) { width: 20%; }
        .results-table th:nth-child(3) { width: 15%; }
        .results-table th:nth-child(4) { width: 15%; }
        .results-table th:nth-child(5) { width: 15%; }
        .results-table th:nth-child(6) { width: 15%; }
        .results-table th:nth-child(7) { width: 15%; }
        
        /* 未公开信息的样式 */
        .private-info {
            color: #64748b;
        }
        
        body.dark-mode .private-info {
            color: #94a3b8;
        }