/* 通知消息样式 */ .notification { position: fixed; top: 20px; right: 20px; padding: 15px 25px; background: white; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: flex; align-items: center; z-index: 1000; transform: translateX(120%); transition: transform 0.3s ease; border-left: 4px solid #4e73df; max-width: 350px; } .notification.show { transform: translateX(0); } .notification.success { border-left-color: #2ecc71; } .notification.error { border-left-color: #e74c3c; } .notification i { margin-right: 10px; font-size: 1.2em; } .notification.success i { color: #2ecc71; } .notification.error i { color: #e74c3c; } .notification-content { font-size: 14px; color: #333; }