24 lines
1.7 KiB
Plaintext
24 lines
1.7 KiB
Plaintext
/* 开发登录页 */
|
|
.page { min-height: 100vh; background: #000; padding-bottom: 64rpx; }
|
|
|
|
.nav-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(0,0,0,0.9); backdrop-filter: blur(40rpx); display: flex; align-items: center; justify-content: space-between; padding: 0 32rpx; height: 88rpx; }
|
|
.nav-back { width: 64rpx; height: 64rpx; background: #1c1c1e; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
|
|
.back-icon { font-size: 40rpx; color: rgba(255,255,255,0.6); font-weight: 300; }
|
|
.nav-title { font-size: 34rpx; font-weight: 600; color: #fff; }
|
|
.nav-placeholder { width: 64rpx; }
|
|
|
|
.content { padding: 24rpx 16rpx; }
|
|
|
|
.tip-banner { background: rgba(255,165,0,0.1); border: 2rpx solid rgba(255,165,0,0.3); border-radius: 20rpx; padding: 20rpx 24rpx; margin-bottom: 24rpx; }
|
|
.tip-text { font-size: 24rpx; color: #FFA500; line-height: 1.5; }
|
|
|
|
.form-card { background: #1c1c1e; border-radius: 32rpx; padding: 32rpx; border: 2rpx solid rgba(0,206,209,0.2); }
|
|
.form-item { margin-bottom: 32rpx; }
|
|
.form-item:last-of-type { margin-bottom: 48rpx; }
|
|
.form-label { font-size: 28rpx; color: rgba(255,255,255,0.8); display: block; margin-bottom: 16rpx; }
|
|
.form-input-wrap { padding: 16rpx 24rpx; background: #1F2937; border: 2rpx solid rgba(255,255,255,0.1); border-radius: 24rpx; }
|
|
.form-input-inner { width: 100%; font-size: 28rpx; background: transparent; color: #fff; }
|
|
.input-placeholder { color: rgba(255,255,255,0.25); }
|
|
.btn-primary { padding: 32rpx; background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%); color: #000; font-size: 32rpx; font-weight: 600; text-align: center; border-radius: 28rpx; }
|
|
.btn-disabled { opacity: 0.5; }
|