|
@@ -388,6 +388,219 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ // 确认方案按钮样式 - 优化版本
|
|
|
|
+ .proposal-confirm-actions {
|
|
|
|
+ margin-top: 40px;
|
|
|
|
+ padding-top: 32px;
|
|
|
|
+ border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ position: relative;
|
|
|
|
+
|
|
|
|
+ // 添加背景装饰
|
|
|
|
+ &::before {
|
|
|
|
+ content: '';
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 0;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translateX(-50%);
|
|
|
|
+ width: 60px;
|
|
|
|
+ height: 3px;
|
|
|
|
+ background: linear-gradient(90deg, transparent 0%, #007aff 50%, transparent 100%);
|
|
|
|
+ border-radius: 2px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 使用更高特异性的选择器确保样式生效
|
|
|
|
+ .proposal-confirm-actions .confirm-proposal-btn,
|
|
|
|
+ button.confirm-proposal-btn {
|
|
|
|
+ appearance: none !important;
|
|
|
|
+ border: none !important;
|
|
|
|
+ background: linear-gradient(135deg, #007aff 0%, #0066ff 50%, #0051d5 100%) !important;
|
|
|
|
+ color: white !important;
|
|
|
|
+ padding: 16px 40px !important;
|
|
|
|
+ border-radius: 16px !important;
|
|
|
|
+ font-size: 16px !important;
|
|
|
|
+ font-weight: 600 !important;
|
|
|
|
+ cursor: pointer !important;
|
|
|
|
+ transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
|
|
+ display: flex !important;
|
|
|
|
+ align-items: center !important;
|
|
|
|
+ gap: 10px !important;
|
|
|
|
+ box-shadow:
|
|
|
|
+ 0 8px 24px rgba(0, 122, 255, 0.25),
|
|
|
|
+ 0 4px 12px rgba(0, 122, 255, 0.15),
|
|
|
|
+ inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
|
|
|
|
+ min-width: 180px !important;
|
|
|
|
+ justify-content: center !important;
|
|
|
|
+ position: relative !important;
|
|
|
|
+ overflow: hidden !important;
|
|
|
|
+ backdrop-filter: blur(10px) !important;
|
|
|
|
+
|
|
|
|
+ // 重置可能的Material Design样式
|
|
|
|
+ text-transform: none !important;
|
|
|
|
+ letter-spacing: normal !important;
|
|
|
|
+ line-height: normal !important;
|
|
|
|
+
|
|
|
|
+ // 添加内部光泽效果
|
|
|
|
+ &::before {
|
|
|
|
+ content: '' !important;
|
|
|
|
+ position: absolute !important;
|
|
|
|
+ top: 0 !important;
|
|
|
|
+ left: -100% !important;
|
|
|
|
+ width: 100% !important;
|
|
|
|
+ height: 100% !important;
|
|
|
|
+ background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%) !important;
|
|
|
|
+ transition: left 0.6s ease !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ svg {
|
|
|
|
+ width: 20px !important;
|
|
|
|
+ height: 20px !important;
|
|
|
|
+ stroke-width: 2.5 !important;
|
|
|
|
+ filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) !important;
|
|
|
|
+ transition: transform 0.3s ease !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 悬停状态优化
|
|
|
|
+ &:hover {
|
|
|
|
+ transform: translateY(-3px) scale(1.02) !important;
|
|
|
|
+ box-shadow:
|
|
|
|
+ 0 12px 32px rgba(0, 122, 255, 0.35),
|
|
|
|
+ 0 6px 16px rgba(0, 122, 255, 0.25),
|
|
|
|
+ inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
|
|
|
|
+ background: linear-gradient(135deg, #0066ff 0%, #007aff 50%, #0051d5 100%) !important;
|
|
|
|
+
|
|
|
|
+ &::before {
|
|
|
|
+ left: 100% !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ svg {
|
|
|
|
+ transform: scale(1.1) rotate(5deg) !important;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 点击状态优化
|
|
|
|
+ &:active {
|
|
|
|
+ transform: translateY(-1px) scale(0.98) !important;
|
|
|
|
+ box-shadow:
|
|
|
|
+ 0 4px 16px rgba(0, 122, 255, 0.3),
|
|
|
|
+ 0 2px 8px rgba(0, 122, 255, 0.2),
|
|
|
|
+ inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
+ transition: all 0.15s ease !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 焦点状态
|
|
|
|
+ &:focus {
|
|
|
|
+ outline: none !important;
|
|
|
|
+ box-shadow:
|
|
|
|
+ 0 8px 24px rgba(0, 122, 255, 0.25),
|
|
|
|
+ 0 4px 12px rgba(0, 122, 255, 0.15),
|
|
|
|
+ 0 0 0 3px rgba(0, 122, 255, 0.3) !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 禁用状态
|
|
|
|
+ &:disabled {
|
|
|
|
+ opacity: 0.6 !important;
|
|
|
|
+ cursor: not-allowed !important;
|
|
|
|
+ transform: none !important;
|
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
|
|
|
|
+
|
|
|
|
+ &:hover {
|
|
|
|
+ transform: none;
|
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 响应式设计
|
|
|
|
+ @media (max-width: 768px) {
|
|
|
|
+ padding: 14px 32px;
|
|
|
|
+ font-size: 15px;
|
|
|
|
+ min-width: 160px;
|
|
|
|
+ border-radius: 14px;
|
|
|
|
+
|
|
|
|
+ svg {
|
|
|
|
+ width: 18px;
|
|
|
|
+ height: 18px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &:hover {
|
|
|
|
+ transform: translateY(-2px) scale(1.01);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @media (max-width: 480px) {
|
|
|
|
+ padding: 12px 24px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ min-width: 140px;
|
|
|
|
+ border-radius: 12px;
|
|
|
|
+ gap: 8px;
|
|
|
|
+
|
|
|
|
+ svg {
|
|
|
|
+ width: 16px;
|
|
|
|
+ height: 16px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &:hover {
|
|
|
|
+ transform: translateY(-1px);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 高对比度模式支持
|
|
|
|
+ @media (prefers-contrast: high) {
|
|
|
|
+ border: 2px solid #007aff;
|
|
|
|
+ box-shadow:
|
|
|
|
+ 0 4px 12px rgba(0, 0, 0, 0.3),
|
|
|
|
+ inset 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 减少动画模式支持
|
|
|
|
+ @media (prefers-reduced-motion: reduce) {
|
|
|
|
+ transition: none;
|
|
|
|
+
|
|
|
|
+ &::before {
|
|
|
|
+ transition: none;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ svg {
|
|
|
|
+ transition: none;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &:hover {
|
|
|
|
+ transform: none;
|
|
|
|
+
|
|
|
|
+ svg {
|
|
|
|
+ transform: none;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &:active {
|
|
|
|
+ transform: none;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 响应式容器调整
|
|
|
|
+ @media (max-width: 768px) {
|
|
|
|
+ margin-top: 32px;
|
|
|
|
+ padding-top: 24px;
|
|
|
|
+
|
|
|
|
+ &::before {
|
|
|
|
+ width: 50px;
|
|
|
|
+ height: 2px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @media (max-width: 480px) {
|
|
|
|
+ margin-top: 24px;
|
|
|
|
+ padding-top: 20px;
|
|
|
|
+
|
|
|
|
+ &::before {
|
|
|
|
+ width: 40px;
|
|
|
|
+ height: 2px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/* 方案确认阶段样式 */
|
|
/* 方案确认阶段样式 */
|