/** * @author 韩天尊 * @time 2024-01-15 * @version 1.0.0 * @description 登录页面样式 */ .login-page { min-height: 100vh; background: linear-gradient(135deg, #ff6b6b 0%, #ffb199 100%); padding-bottom: 80px; } .login-container { min-height: 100vh; background: linear-gradient(135deg, #ff6b6b 0%, #ffb199 100%); display: flex; flex-direction: column; justify-content: center; padding: 16px; } .login-header { text-align: center; margin-bottom: 24px; color: white; } .login-logo { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px auto; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); } .login-logo .icon-heart { font-size: 32px; color: white; } .login-title { font-size: 24px; font-weight: 600; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .login-subtitle { font-size: 14px; opacity: 0.9; line-height: 1.5; } .login-form { background: white; border-radius: 24px; padding: 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); backdrop-filter: blur(10px); } .login-form .form-group { margin-bottom: 16px; } .login-form .form-group label { display: block; font-size: 13px; color: #333333; margin-bottom: 8px; font-weight: 500; } .input-wrapper { position: relative; display: flex; align-items: center; background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 0 8px; transition: all 0.3s ease; } .input-wrapper:focus-within { border-color: #ff6b6b; box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1); } .input-wrapper i { color: #ff6b6b; font-size: 16px; margin-right: 8px; } .login-form .form-input { flex: 1; border: none; background: none; padding: 12px 8px; font-size: 14px; color: #333333; outline: none; } .login-form .form-input::placeholder { color: #666666; } .error-message { display: flex; align-items: center; padding: 12px 15px; background: #ffe6e6; border: 1px solid #ffb3b3; border-radius: 8px; color: #d63031; font-size: 14px; margin-bottom: 15px; } .error-message i { margin-right: 8px; font-size: 16px; } .success-message { display: flex; align-items: center; padding: 12px 15px; background: #e8f5e8; border: 1px solid #a8e6a8; border-radius: 8px; color: #00b894; font-size: 14px; margin-bottom: 15px; } .success-message i { margin-right: 8px; font-size: 16px; } .login-actions { margin-top: 24px; } .login-btn { width: 100%; background: linear-gradient(135deg, #ff6b6b 0%, #ff8a8a 100%); color: white; border: none; border-radius: 12px; padding: 14px 16px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3); } .login-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4); } .login-btn:active { transform: translateY(0); } .login-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; } .loading-spinner { width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, 0.3); border-top: 2px solid white; border-radius: 50%; animation: spin 1s linear infinite; margin-right: 8px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .login-notice { margin-top: 24px; padding-top: 16px; border-top: 1px solid #e9ecef; } .notice-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 12px; color: #666666; } .notice-item i { color: #ff6b6b; font-size: 14px; } .form-footer { text-align: center; margin-top: 16px; } .toggle-btn { background: none; border: none; color: #ff6b6b; font-size: 14px; cursor: pointer; padding: 8px 12px; border-radius: 6px; transition: all 0.3s ease; } .toggle-btn:hover { background: rgba(255, 107, 107, 0.1); } /* 移动端适配 */ @media (max-width: 480px) { .login-container { padding: 15px 10px; } .login-form { padding: 20px 15px; border-radius: 16px; } .login-title { font-size: 22px; } .login-logo { width: 70px; height: 70px; } .login-logo .icon-heart { font-size: 28px; } .login-form .form-input { font-size: 15px; } .login-btn { font-size: 15px; padding: 12px 16px; } } /* 超小屏幕适配 */ @media (max-width: 360px) { .login-form { padding: 18px 12px; } .login-title { font-size: 20px; } .login-logo { width: 60px; height: 60px; } .login-logo .icon-heart { font-size: 24px; } .login-form .form-input { font-size: 14px; } .login-btn { font-size: 14px; padding: 10px 16px; } }