/* 移补记录页面样式 */

/* 补货记录页面容器 */
.goods-records-page {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 24px;
}

/* 页面标题区域 */
.records-header {
    margin-bottom: 24px;
}

.records-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.records-title::before {
    content: "📋";
    font-size: 24px;
}

/* 主要内容区域 */
.records-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

/* 移补记录页面复用移位补货页面的样式 */
/* 通过添加records前缀来确保样式只应用于记录页面 */

/* 记录页面搜索区域 - 参考耗材档案页面样式 */
.records-search-area {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.records-search-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.records-search-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.records-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.records-search-label {
    font-size: 13px;
    font-weight: 500;
    color: #1d2129;
    white-space: nowrap;
    min-width: 80px;
}

.records-search-input {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    vertical-align: middle;
    box-sizing: border-box;
}

.records-search-select {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    vertical-align: middle;
    box-sizing: border-box;
}

.records-search-input:focus,
.records-search-select:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.records-search-input:hover,
.records-search-select:hover {
    border-color: #c9cdd4;
}

/* 时间范围选择器样式 */
.records-date-range {
    display: flex;
    gap: 12px;
    align-items: center;
}

.records-date-range input {
    min-width: 150px;
}

.records-date-separator {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* 组合搜索框样式 - 参考耗材档案页面 */
.records-combined-search {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 200px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e6eb;
}

.records-combined-search .records-search-type {
    width: 100px;
    height: 36px;
    border: none;
    border-right: 1px solid #e5e6eb;
    border-radius: 0;
    padding: 0 12px;
    cursor: pointer;
    margin: 0;
    background-color: #ffffff;
    font-size: 13px;
    outline: none;
}

.records-combined-search .records-combined-input {
    flex: 1;
    border: none;
    border-radius: 0;
    height: 36px;
    background: #ffffff;
    padding: 0 12px;
    margin: 0;
    font-size: 13px;
    outline: none;
}

.records-combined-search .records-combined-input:focus,
.records-combined-search .records-search-type:focus {
    outline: none;
}

/* 操作按钮区域样式 */
.records-actions-area {
    display: flex;
    gap: 16px;
    padding: 0 4px;
}

/* 列表区域样式 */
.records-list-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.records-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.records-list-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.records-list-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* 按钮样式 - 参考耗材档案页面 */
.records-btn {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f5f5f5;
    color: #4e5969;
    border: 1px solid #d9d9d9;
}

.records-btn:hover {
    background-color: #e6e6e6;
}

.records-btn-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.records-btn-primary {
    background-color: #0052d9;
    color: white;
    border-color: #0052d9;
}

.records-btn-primary:hover {
    background-color: #003bb3;
    border-color: #003bb3;
}

.records-btn-secondary {
    background-color: #f5f5f5;
    color: #4e5969;
    border-color: #d9d9d9;
}

.records-btn-secondary:hover {
    background-color: #e6e6e6;
}

.records-table-container {
    flex: 1;
    overflow-y: auto;
}

.records-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.records-data-table th {
    background: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

/* 操作列宽度控制 */
.records-data-table th:nth-child(8),
.records-data-table td:nth-child(8) {
    width: 160px;
    min-width: 160px;
    max-width: 200px;
    padding: 12px 8px;
    text-align: center;
}

/* 操作单元格居中对齐 */
.records-data-table td:nth-child(8) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.records-data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.records-data-table tr:hover {
    background-color: #f8fafc;
}

.records-data-table tr:last-child td {
    border-bottom: none;
}

/* 状态标签样式 */
.records-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
}

.records-status.completed {
    background-color: #e8f5e8;
    color: #52c41a;
}

.records-status.cancelled {
    background-color: #fff2f0;
    color: #ff4d4f;
}

/* 单据类型标签 */
.records-type {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.records-type.replenish {
    background-color: #e6f7ff;
    color: #1890ff;
}

.records-type.move {
    background-color: #f0f5ff;
    color: #0052d9;
}

/* 优先级标签 */
.records-priority {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.records-priority.high {
    background-color: #fff2f0;
    color: #ff4d4f;
}

.records-priority.normal {
    background-color: #e8f5e8;
    color: #52c41a;
}

/* 操作按钮 */
.records-action-btn {
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 26px;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.records-action-btn:last-child {
    margin-right: 0;
}

.records-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.records-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* 详情按钮 - 成功色系 */
.records-action-btn.detail {
    background: #e8f8f0;
    color: #389e0d;
    border-color: #95de64;
}

.records-action-btn.detail:hover {
    background: #95de64;
    border-color: #73d13d;
    color: #237804;
}

/* 日志按钮 - 中性色系 */
.records-action-btn.log {
    background: #f0f5ff;
    color: #0958d9;
    border-color: #91caff;
}

.records-action-btn.log:hover {
    background: #91caff;
    border-color: #69b1ff;
    color: #003a8c;
}

/* 刷新按钮样式 - 参考耗材档案页面 */
.records-refresh-btn {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #d9d9d9;
    background-color: #f5f5f5;
    color: #4e5969;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.records-refresh-btn:hover {
    background-color: #e6e6e6;
}

.records-refresh-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

/* 展开功能 */
.records-expandable {
    display: flex;
    align-items: center;
    gap: 8px;
}

.records-expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.records-expand-btn:hover:not(.disabled) {
    background-color: #f0f0f0;
}

.records-expand-btn.expanded {
    background-color: #e6f7ff;
}

.records-expand-btn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.records-expand-icon {
    width: 16px;
    height: 16px;
    fill: #666;
    transition: transform 0.3s ease;
}

.records-expand-btn:hover .records-expand-icon {
    fill: #1890ff;
}

.records-expand-btn.expanded .records-expand-icon {
    fill: #1890ff;
    transform: rotate(90deg);
}

/* 展开行样式 */
.records-expand-row {
    background-color: #fafafa;
    border-left: 3px solid #1890ff;
}

.records-expand-row.expanding {
    animation: expandAnimation 0.3s ease-out;
}

.records-expand-row.collapsing {
    animation: collapseAnimation 0.3s ease-out;
}

@keyframes expandAnimation {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes collapseAnimation {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

/* 展开详情内容 */
.records-detail-container {
    padding: 16px;
    background: white;
    margin: 8px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.records-detail-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.records-detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.records-detail-table th {
    background: #f8f9fa;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
}

.records-detail-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.records-detail-table tr:last-child td {
    border-bottom: none;
}

/* 分页样式 */
.records-pagination {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.records-pagination-info {
    font-size: 14px;
    color: #4b5563;
}

.records-pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.records-pagination-btn,
.records-btn-pagination {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.records-pagination-btn:hover:not(:disabled),
.records-btn-pagination:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.records-pagination-btn:disabled,
.records-btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.records-page-size {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #4b5563;
}

.records-page-size-select {
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    font-size: 13px;
    cursor: pointer;
}

/* 记录详情弹窗样式 - 重构版 */
.record-detail-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: blur(4px);
}

.record-detail-modal-overlay.active {
    opacity: 1;
}

.record-detail-modal-content {
    background: white;
    border-radius: 12px;
    width: 92%;
    max-width: 1100px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.record-detail-modal-overlay.active .record-detail-modal-content {
    transform: translateY(0) scale(1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.record-detail-header {
    padding: 24px 28px;
    border-bottom: 1px solid #f0f2f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.record-detail-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
}

.record-detail-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.record-detail-header h3::before {
    content: "📋";
    font-size: 24px;
}

.record-detail-close-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 22px;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.record-detail-close-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
    transform: rotate(90deg);
}

.record-detail-content {
    padding: 28px;
    overflow-y: auto;
    flex: 1;
    position: relative;
}

.record-detail-content::-webkit-scrollbar {
    width: 6px;
}

.record-detail-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.record-detail-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.record-detail-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.record-basic-info {
    margin-bottom: 32px;
}

.record-section-title {
    margin: 0 0 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.record-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0, transparent);
}

.record-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.record-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.record-info-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.record-info-value {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

.record-cancel-info {
    margin-bottom: 32px;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.record-cancel-info .record-section-title {
    color: #b91c1c;
}

.record-task-nodes {
    margin-bottom: 32px;
}

.record-task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.record-task-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.record-task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.record-task-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981, #059669);
}

.record-task-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.record-task-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.record-task-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
}

.record-task-detail {
    margin-bottom: 12px;
}

.record-task-detail-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.record-task-detail-value {
    font-size: 14px;
    color: #1e293b;
}

.record-product-details {
    margin-bottom: 24px;
}

.record-product-table-container {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.record-product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.record-product-table thead th {
    padding: 16px;
    text-align: left;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.record-product-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.record-product-table tbody tr:last-child td {
    border-bottom: none;
}

.record-product-table tbody tr:hover {
    background: #f8fafc;
}

.record-detail-footer {
    padding: 20px 28px;
    border-top: 1px solid #f0f2f5;
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    gap: 12px;
}

.record-detail-footer-close-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
}

.record-detail-footer-close-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* 所有标签样式保持原始样式 */

/* 响应式设计 */
@media (max-width: 768px) {
    .record-detail-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .record-detail-header {
        padding: 16px 20px;
    }
    
    .record-detail-header h3 {
        font-size: 18px;
    }
    
    .record-detail-content {
        padding: 20px;
    }
    
    .record-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .record-task-grid {
        grid-template-columns: 1fr;
    }
    
    .record-detail-footer {
        padding: 16px 20px;
        justify-content: center;
    }
    
    .record-product-table {
        font-size: 12px;
    }
    
    .record-product-table thead th,
    .record-product-table tbody td {
        padding: 10px 8px;
    }
}

.record-detail-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.record-detail-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.record-detail-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    background: #f8f9fa;
}

/* 记录日志弹窗样式 */
.record-log-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.record-log-modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.record-log-header-container {
    padding: 24px 24px 0 24px;
    background: white;
    border-bottom: 1px solid #e7e7e7;
    flex-shrink: 0;
    position: relative;
}

.record-log-timeline-container {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(80vh - 160px);
}

.record-log-modal-footer {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    display: flex;
    justify-content: flex-end;
}

/* 时间线样式 */
.record-log-timeline-item {
    display: flex;
    margin-bottom: 24px;
}

.record-log-timeline-item:last-child {
    margin-bottom: 0;
}

.record-log-timeline-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
}

.record-log-timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.record-log-timeline-line {
    width: 2px;
    flex: 1;
    background: #e7e7e7;
    margin-top: 8px;
}

.record-log-timeline-content {
    flex: 1;
    background: #fafbfc;
    border-radius: 8px;
    padding: 16px;
}

.record-log-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.record-log-timeline-type {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
}

.record-log-timeline-time {
    font-size: 14px;
    color: #86909c;
}

.record-log-detail {
    font-size: 14px;
    color: #4e5969;
}

/* 开发中提示卡片 */
.records-prototype-card {
    background: #f0f5ff;
    border: 1px dashed #0052d9;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 40px;
}

.records-prototype-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.records-prototype-title {
    font-size: 24px;
    font-weight: 600;
    color: #0052d9;
    margin-bottom: 12px;
}

.records-prototype-desc {
    font-size: 16px;
    color: #4e5969;
    margin-bottom: 24px;
    max-width: 600px;
    line-height: 1.6;
}

.records-prototype-features {
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 700px;
}

.records-prototype-features h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 12px;
    text-align: center;
}

.records-prototype-features ul {
    list-style-type: none;
    padding: 0;
}

.records-prototype-features li {
    padding: 6px 0;
    color: #4e5969;
    display: flex;
    align-items: center;
    gap: 8px;
}

.records-prototype-features li::before {
    content: "✓";
    color: #00a870;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .records-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .records-search-area {
        padding: 16px;
    }
    
    .records-search-form {
        gap: 16px;
    }
    
    .records-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .records-search-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .records-actions-area {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .records-date-range {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .records-date-range input {
        min-width: 100%;
    }
    
    .records-combined-search {
        flex-direction: row;
        align-items: center;
    }
    
    .records-combined-search .records-search-type {
        border-radius: 0;
        border-right: 1px solid #e5e6eb;
    }
    
    .records-combined-search .records-combined-input {
        border-radius: 0;
    }
    
    .records-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .records-pagination {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .records-data-table {
        font-size: 12px;
    }
    
    .records-data-table th,
    .records-data-table td {
        padding: 8px 12px;
    }
    
    .records-prototype-card {
        padding: 24px 16px;
        margin-top: 20px;
    }
    
    .records-prototype-icon {
        font-size: 48px;
    }
    
    .records-prototype-title {
        font-size: 20px;
    }
    
    .records-prototype-features {
        max-width: 100%;
    }
}