| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* 全局文字提示 */
- .global-alert {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%) scale(0.8);
- z-index: 99999;
- opacity: 0;
- visibility: hidden;
- transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
- pointer-events: none;
- }
- .global-alert.show {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%) scale(1);
- }
- .alert-message {
- padding: 16px 32px;
- background: rgba(31, 41, 55, 0.95);
- color: white;
- border-radius: 12px;
- font-size: 15px;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
- backdrop-filter: blur(8px);
- }
- @keyframes alert-bounce-in {
- 0% {
- transform: translate(-50%, -50%) scale(0.8);
- opacity: 0;
- }
- 50% {
- transform: translate(-50%, -50%) scale(1.05);
- }
- 100% {
- transform: translate(-50%, -50%) scale(1);
- opacity: 1;
- }
- }
|