Files
zlqy/static/css/style.css

475 lines
11 KiB
CSS

/* 自定义样式 */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background-attachment: fixed;
}
/* 科幻背景动画 */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
@keyframes glow-pulse {
0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8); }
}
@keyframes shimmer {
0% { background-position: -1000px 0; }
100% { background-position: 1000px 0; }
}
/* 高级卡片样式 */
.futuristic-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.futuristic-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.futuristic-card-dark {
background: rgba(15, 23, 42, 0.85);
backdrop-filter: blur(20px);
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.futuristic-card-dark:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
border-color: rgba(59, 130, 246, 0.5);
}
/* 自定义滚动条 */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(148, 163, 184, 0.4);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(148, 163, 184, 0.7);
}
/* 高级玻璃拟态效果 */
.glass-panel {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.glass-panel-dark {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
/* 高级阴影与悬浮动效 */
.hover-card-up {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-card-up:hover {
transform: translateY(-4px) scale(1.01);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hover-glow {
transition: all 0.3s ease;
}
.hover-glow:hover {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
/* 文本渐变发光 */
.text-gradient-glow {
background-clip: text;
-webkit-background-clip: text;
color: transparent;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
/* 渐变动画边框 */
.animated-border {
position: relative;
border-radius: inherit;
}
.animated-border::before {
content: "";
position: absolute;
inset: -2px;
border-radius: inherit;
background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
background-size: 200% 200%;
animation: gradient-move 3s linear infinite;
z-index: -1;
opacity: 0;
transition: opacity 0.3s ease;
}
.animated-border:hover::before {
opacity: 1;
}
@keyframes gradient-move {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* 背景流动网格 */
.bg-grid-pattern {
background-size: 40px 40px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}
.bg-grid-pattern-dark {
background-size: 40px 40px;
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}
/* 通用过渡动画 */
.transition-all-200 {
transition: all 0.2s ease-in-out;
}
.transition-all-300 {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 拖拽排序 */
.question-item {
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.question-item[draggable="true"]:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.question-item.dragging {
opacity: 0.5;
}
.drag-handle {
font-size: 18px;
line-height: 1;
user-select: none;
}
.drag-handle:active {
cursor: grabbing;
}
/* 选项选中高亮 */
.option-label:has(input:checked) {
border-color: #3b82f6;
background-color: #eff6ff;
}
/* 计时器闪烁 */
@keyframes timer-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.animate-pulse {
animation: timer-pulse 1s ease-in-out infinite;
}
/* 题号导航按钮 */
#nav-panel button,
#nav-panel-mobile button {
transition: all 0.15s ease;
}
/* 进度条动画 */
#progress-bar {
transition: width 0.3s ease;
}
/* 批改页面底部栏 */
.sticky.bottom-4 {
backdrop-filter: blur(8px);
background-color: rgba(255,255,255,0.95);
}
/* 提交列表左侧颜色条 */
.border-l-4.border-l-green-400 {
border-left: 4px solid #4ade80;
}
.border-l-4.border-l-yellow-400 {
border-left: 4px solid #facc15;
}
/* 快速给分按钮 */
button[onclick^="quickScore"] {
transition: all 0.1s ease;
}
button[onclick^="quickScore"]:active {
transform: scale(0.95);
}
/* 响应式优化 */
@media (max-width: 640px) {
.sticky.top-0 {
position: sticky;
top: 0;
}
#nav-panel-mobile {
max-height: 120px;
overflow-y: auto;
}
}
/* 高级按钮样式 */
.btn-futuristic {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 16px;
padding: 14px 32px;
color: white;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.btn-futuristic:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
.btn-futuristic::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s;
}
.btn-futuristic:hover::before {
left: 100%;
}
.btn-outline-futuristic {
background: transparent;
border: 2px solid rgba(102, 126, 234, 0.5);
color: #667eea;
border-radius: 16px;
padding: 12px 30px;
font-weight: 600;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.btn-outline-futuristic:hover {
background: rgba(102, 126, 234, 0.1);
border-color: #667eea;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
/* 输入框样式 */
.input-futuristic {
background: rgba(255, 255, 255, 0.9);
border: 2px solid rgba(102, 126, 234, 0.2);
border-radius: 12px;
padding: 12px 16px;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.input-futuristic:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
background: rgba(255, 255, 255, 1);
}
/* 导航栏样式 */
.navbar-futuristic {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
/* 标签样式 */
.badge-futuristic {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 6px;
box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
.badge-outline-futuristic {
background: transparent;
border: 2px solid rgba(102, 126, 234, 0.5);
color: #667eea;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
}
/* 分隔线 */
.divider-futuristic {
height: 2px;
background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
margin: 2rem 0;
}
/* 加载动画 */
.loading-spinner {
width: 50px;
height: 50px;
border: 4px solid rgba(102, 126, 234, 0.2);
border-top-color: #667eea;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* 通知提示 */
.notification-futuristic {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-left: 4px solid #667eea;
border-radius: 12px;
padding: 16px 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
/* 表格样式 */
.table-futuristic {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.table-futuristic thead {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.table-futuristic tbody tr {
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
transition: all 0.2s ease;
}
.table-futuristic tbody tr:hover {
background: rgba(102, 126, 234, 0.05);
}
/* 模态框样式 */
.modal-futuristic {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(30px);
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
/* 进度条 */
.progress-futuristic {
height: 8px;
background: rgba(102, 126, 234, 0.2);
border-radius: 10px;
overflow: hidden;
}
.progress-bar-futuristic {
height: 100%;
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
transition: width 0.3s ease;
box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}
/* 工具提示 */
.tooltip-futuristic {
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(10px);
color: white;
padding: 8px 12px;
border-radius: 8px;
font-size: 0.875rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* 头像样式 */
.avatar-futuristic {
border: 3px solid rgba(102, 126, 234, 0.5);
border-radius: 50%;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
}
.avatar-futuristic:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}
/* 侧边栏 */
.sidebar-futuristic {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-right: 1px solid rgba(102, 126, 234, 0.1);
box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
}
/* 页脚 */
.footer-futuristic {
background: rgba(15, 23, 42, 0.95);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.8);
}
/* 粒子背景容器 */
.particles-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}