// 门店登录页面 .page-store-login { min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; flex-direction: column; position: relative; overflow: hidden; opacity: 0; transition: opacity 0.6s ease-in-out; &--show { opacity: 1; } } .store-login-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; } .store-login-bg__gradient { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); } .store-login-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; padding: 120px 40px 60px; } .store-login-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 80px; } .store-login-logo { width: 120px; height: 120px; border-radius: 60px; background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 30px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); } .store-login-logo__image { width: 72px; height: 72px; } .store-login-title { font-size: 36px; font-weight: 700; color: #ffffff; margin-bottom: 12px; } .store-login-subtitle { font-size: 28px; color: rgba(255, 255, 255, 0.8); } .store-login-form { background: rgba(255, 255, 255, 0.95); border-radius: 24px; padding: 48px 36px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15); } .store-login-field { display: flex; align-items: center; border-bottom: 1px solid #eee; padding: 24px 0; margin-bottom: 8px; &__icon { font-size: 36px; margin-right: 16px; } &__input { flex: 1; font-size: 30px; color: #333; } } .store-login-btn { margin-top: 48px; height: 96px; border-radius: 48px; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4); transition: opacity 0.3s; &--loading { opacity: 0.6; } &__text { font-size: 32px; font-weight: 600; color: #ffffff; } } .store-login-footer { margin-top: 40px; display: flex; justify-content: center; &__text { font-size: 24px; color: rgba(255, 255, 255, 0.6); } }