feat: 功能

This commit is contained in:
2025-12-28 13:49:45 +08:00
parent 36195ea55a
commit bbf8093ca3
25 changed files with 1046 additions and 1970 deletions

View File

@@ -93,29 +93,30 @@ const buttonClass = computed(() => {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 8px 16px;
border: 1px solid rgba(24, 144, 255, 0.3);
border-radius: 4px;
font-size: 14px;
gap: 8px;
padding: 8px 24px;
border: none;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
color: #ffffff;
cursor: pointer;
transition: all 0.15s ease;
background: linear-gradient(135deg, #1890FF 0%, #40A9FF 100%);
box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
transition: all 0.2s ease;
background: var(--color-slate-900);
box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2), 0 4px 6px -2px rgba(59, 130, 246, 0.1);
user-select: none;
}
.gradient-button:hover {
background: linear-gradient(135deg, #1890FF 0%, #40A9FF 100%);
border-color: rgba(24, 144, 255, 0.5);
box-shadow: 0 0 6px rgba(24, 144, 255, 0.25);
background: var(--color-slate-800);
transform: translateY(-1px);
box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3), 0 10px 10px -5px rgba(59, 130, 246, 0.15);
}
.gradient-button:active {
background: linear-gradient(135deg, #096DD9 0%, #1890FF 100%);
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
background: var(--color-slate-800);
transform: translateY(0);
box-shadow: 0 4px 6px -2px rgba(59, 130, 246, 0.15);
}
.gradient-button__content,
@@ -171,15 +172,14 @@ const buttonClass = computed(() => {
.gradient-button:disabled {
opacity: 0.4;
cursor: not-allowed;
background: linear-gradient(135deg, #096DD9 0%, #1890FF 100%);
border-color: rgba(24, 144, 255, 0.2);
background: var(--color-slate-700);
box-shadow: none;
}
.gradient-button--disabled:hover,
.gradient-button:disabled:hover {
background: linear-gradient(135deg, #096DD9 0%, #1890FF 100%);
border-color: rgba(24, 144, 255, 0.2);
background: var(--color-slate-700);
transform: none;
box-shadow: none;
}