2026-06-26 15:56:49 +08:00

730 lines
15 KiB
CSS

/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
\*****************************************************************************************************************************************************************************************************************************************************************/
/* ============================
合同流转审批系统 - 全局设计系统
============================ */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');
/* CSS 变量 - 设计 Token */
:root {
/* 主色调 */
--primary: #6366f1;
--primary-light: #818cf8;
--primary-dark: #4f46e5;
--primary-50: #eef2ff;
--primary-100: #e0e7ff;
--primary-200: #c7d2fe;
--primary-500: #6366f1;
--primary-600: #4f46e5;
--primary-700: #4338ca;
/* 辅助色 */
--accent: #06b6d4;
--accent-light: #22d3ee;
/* 语义色 */
--success: #10b981;
--success-light: #d1fae5;
--warning: #f59e0b;
--warning-light: #fef3c7;
--danger: #ef4444;
--danger-light: #fee2e2;
--info: #3b82f6;
--info-light: #dbeafe;
/* 中性色 */
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-200: #e5e7eb;
--gray-300: #d1d5db;
--gray-400: #9ca3af;
--gray-500: #6b7280;
--gray-600: #4b5563;
--gray-700: #374151;
--gray-800: #1f2937;
--gray-900: #111827;
/* 背景色 */
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--bg-tertiary: #334155;
--bg-card: rgba(30, 41, 59, 0.8);
--bg-glass: rgba(255, 255, 255, 0.05);
--bg-page: #f0f2f5;
/* 文字色 */
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--text-muted: #64748b;
--text-dark: #1e293b;
--text-dark-secondary: #475569;
/* 边框 */
--border-color: rgba(255, 255, 255, 0.1);
--border-light: #e2e8f0;
/* 阴影 */
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
--shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
/* 圆角 */
--radius-sm: 6px;
--radius-md: 10px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-full: 9999px;
/* 间距 */
--space-xs: 4px;
--space-sm: 8px;
--space-md: 16px;
--space-lg: 24px;
--space-xl: 32px;
--space-2xl: 48px;
/* 过渡 */
--transition-fast: 150ms ease;
--transition-base: 250ms ease;
--transition-slow: 350ms ease;
/* 侧边栏 */
--sidebar-width: 260px;
--sidebar-collapsed-width: 72px;
--header-height: 64px;
/* 字体 */
--font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* ============== 全局重置 ============== */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--font-sans);
line-height: 1.6;
color: var(--text-dark);
background: var(--bg-page);
min-height: 100vh;
}
a {
color: var(--primary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--primary-dark);
}
img {
max-width: 100%;
height: auto;
}
/* ============== 通用组件样式 ============== */
/* 按钮 */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 20px;
font-size: 14px;
font-weight: 500;
font-family: var(--font-sans);
border: none;
border-radius: var(--radius-md);
cursor: pointer;
transition: all var(--transition-base);
white-space: nowrap;
line-height: 1.5;
position: relative;
overflow: hidden;
}
.btn::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
opacity: 0;
transition: opacity var(--transition-fast);
}
.btn:hover::after {
opacity: 1;
}
.btn:active {
transform: scale(0.97);
}
.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
color: white;
box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover {
box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
transform: translateY(-1px);
}
.btn-success {
background: linear-gradient(135deg, var(--success), #059669);
color: white;
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.btn-success:hover {
box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
transform: translateY(-1px);
}
.btn-danger {
background: linear-gradient(135deg, var(--danger), #dc2626);
color: white;
box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}
.btn-danger:hover {
box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
transform: translateY(-1px);
}
.btn-outline {
background: transparent;
color: var(--primary);
border: 1.5px solid var(--primary-200);
}
.btn-outline:hover {
background: var(--primary-50);
border-color: var(--primary);
}
.btn-ghost {
background: transparent;
color: var(--text-dark-secondary);
}
.btn-ghost:hover {
background: var(--gray-100);
}
.btn-sm {
padding: 6px 14px;
font-size: 13px;
}
.btn-lg {
padding: 14px 28px;
font-size: 16px;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
transform: none !important;
}
/* 输入框 */
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
font-size: 14px;
font-weight: 500;
color: var(--text-dark);
margin-bottom: 6px;
}
.form-label .required {
color: var(--danger);
margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
width: 100%;
padding: 10px 14px;
font-size: 14px;
font-family: var(--font-sans);
color: var(--text-dark);
background: white;
border: 1.5px solid var(--gray-200);
border-radius: var(--radius-md);
transition: all var(--transition-fast);
outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
border-color: var(--primary);
box-shadow: 0 0 0 3px var(--primary-100);
}
.form-input::placeholder,
.form-textarea::placeholder {
color: var(--gray-400);
}
.form-textarea {
resize: vertical;
min-height: 100px;
}
.form-select {
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
padding-right: 36px;
}
.form-hint {
font-size: 12px;
color: var(--text-dark-secondary);
margin-top: 4px;
}
.form-error {
font-size: 12px;
color: var(--danger);
margin-top: 4px;
}
/* 卡片 */
.card {
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
border: 1px solid var(--gray-100);
transition: box-shadow var(--transition-base);
}
.card:hover {
box-shadow: var(--shadow-md);
}
.card-header {
padding: 20px 24px;
border-bottom: 1px solid var(--gray-100);
display: flex;
align-items: center;
justify-content: space-between;
}
.card-title {
font-size: 18px;
font-weight: 600;
color: var(--text-dark);
}
.card-body {
padding: 24px;
}
/* 表格 */
.table-container {
overflow-x: auto;
border-radius: var(--radius-lg);
}
.data-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
font-size: 14px;
}
.data-table thead {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
}
.data-table th {
padding: 14px 16px;
text-align: left;
font-weight: 600;
color: var(--text-dark-secondary);
background: var(--gray-50);
border-bottom: 2px solid var(--gray-200);
white-space: nowrap;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.data-table td {
padding: 14px 16px;
border-bottom: 1px solid var(--gray-100);
color: var(--text-dark);
vertical-align: middle;
}
.data-table tbody tr {
transition: background var(--transition-fast);
}
.data-table tbody tr:hover {
background: var(--primary-50);
}
.data-table tbody tr:last-child td {
border-bottom: none;
}
/* 状态标签 */
.status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 12px;
font-size: 12px;
font-weight: 600;
border-radius: var(--radius-full);
white-space: nowrap;
}
.status-badge::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: currentColor;
}
.status-draft { background: #f3f4f6; color: #6b7280; }
.status-pending_supervisor { background: #dbeafe; color: #2563eb; }
.status-pending_finance { background: #fef3c7; color: #d97706; }
.status-pending_secretary { background: #ede9fe; color: #7c3aed; }
.status-approved { background: #d1fae5; color: #059669; }
.status-rejected { background: #fee2e2; color: #dc2626; }
/* 分页 */
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
padding: 20px 0;
}
.pagination-btn {
display: flex;
align-items: center;
justify-content: center;
min-width: 36px;
height: 36px;
padding: 0 8px;
font-size: 14px;
color: var(--text-dark-secondary);
background: white;
border: 1px solid var(--gray-200);
border-radius: var(--radius-sm);
cursor: pointer;
transition: all var(--transition-fast);
}
.pagination-btn:hover {
border-color: var(--primary);
color: var(--primary);
}
.pagination-btn.active {
background: var(--primary);
border-color: var(--primary);
color: white;
}
.pagination-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
/* 模态框 */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(4px);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
opacity: 0;
animation: fadeIn 0.2s ease forwards;
}
.modal-content {
background: white;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-xl);
width: 90%;
max-width: 560px;
max-height: 85vh;
overflow-y: auto;
transform: scale(0.95) translateY(10px);
animation: modalIn 0.3s ease forwards;
}
.modal-header {
padding: 24px 24px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.modal-title {
font-size: 20px;
font-weight: 700;
color: var(--text-dark);
}
.modal-close {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border: none;
background: var(--gray-100);
border-radius: var(--radius-full);
cursor: pointer;
color: var(--gray-500);
font-size: 18px;
transition: all var(--transition-fast);
}
.modal-close:hover {
background: var(--gray-200);
color: var(--gray-700);
}
.modal-body {
padding: 24px;
}
.modal-footer {
padding: 0 24px 24px;
display: flex;
justify-content: flex-end;
gap: 12px;
}
/* Toast 通知 */
.toast-container {
position: fixed;
top: 20px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 8px;
}
.toast {
padding: 14px 20px;
border-radius: var(--radius-md);
color: white;
font-size: 14px;
font-weight: 500;
box-shadow: var(--shadow-lg);
animation: slideInRight 0.3s ease forwards;
min-width: 280px;
max-width: 420px;
display: flex;
align-items: center;
gap: 10px;
}
.toast-success { background: linear-gradient(135deg, #10b981, #059669); }
.toast-error { background: linear-gradient(135deg, #ef4444, #dc2626); }
.toast-warning { background: linear-gradient(135deg, #f59e0b, #d97706); }
.toast-info { background: linear-gradient(135deg, #3b82f6, #2563eb); }
/* 空状态 */
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px;
color: var(--gray-400);
}
.empty-state-icon {
font-size: 64px;
margin-bottom: 16px;
opacity: 0.5;
}
.empty-state-text {
font-size: 16px;
color: var(--gray-500);
}
/* 加载动画 */
.loading-spinner {
width: 40px;
height: 40px;
border: 3px solid var(--gray-200);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
.loading-overlay {
display: flex;
align-items: center;
justify-content: center;
padding: 60px;
}
/* ============== 关键帧动画 ============== */
@keyframes fadeIn {
to { opacity: 1; }
}
@keyframes modalIn {
to {
transform: scale(1) translateY(0);
opacity: 1;
}
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInLeft {
from {
transform: translateX(-100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideUp {
from {
transform: translateY(20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
/* 渐入动画工具类 */
.animate-fadeIn { animation: fadeIn 0.5s ease forwards; }
.animate-slideUp { animation: slideUp 0.5s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.3s ease forwards; }
/* ============== 滚动条美化 ============== */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--gray-300);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--gray-400);
}
/* ============== 工具类 ============== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
/* ============== 响应式 ============== */
@media (max-width: 768px) {
.hide-mobile { display: none !important; }
.modal-content {
width: 95%;
max-height: 90vh;
}
.data-table th,
.data-table td {
padding: 10px 12px;
font-size: 13px;
}
}