129 lines
2.4 KiB
Plaintext
129 lines
2.4 KiB
Plaintext
/* ── 登录页:品牌主场(Vital 风格) ──
|
|
整屏紫色渐变向下淡出,白卡特性列表 + 黑色 CTA */
|
|
.login-page {
|
|
min-height: 100vh;
|
|
background: linear-gradient(180deg, #9181f4 0%, #a99bf8 55%, #f1f2f6 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
/* 旧版彩色光晕已停用 */
|
|
.login-bg { position: absolute; inset: 0; pointer-events: none; }
|
|
|
|
.bg-blob {
|
|
display: none;
|
|
}
|
|
|
|
/* 内容 */
|
|
.login-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0 60rpx;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Logo:紫底白字 */
|
|
.app-logo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-bottom: 48rpx;
|
|
}
|
|
|
|
.logo-icon {
|
|
font-size: 120rpx;
|
|
line-height: 1;
|
|
margin-bottom: 20rpx;
|
|
filter: drop-shadow(0 20rpx 30rpx rgba(27, 27, 32, 0.18));
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 80rpx;
|
|
font-weight: 700;
|
|
letter-spacing: -2rpx;
|
|
color: #ffffff;
|
|
line-height: 1;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
.logo-accent { color: rgba(255, 255, 255, 0.72); }
|
|
|
|
.logo-tagline {
|
|
font-size: 28rpx;
|
|
color: rgba(255, 255, 255, 0.78);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 宠物 emoji 装饰 */
|
|
.pet-row {
|
|
font-size: 52rpx;
|
|
letter-spacing: 16rpx;
|
|
margin-bottom: 56rpx;
|
|
}
|
|
|
|
/* 特性列表:白卡叠压在渐变上 */
|
|
.feature-list {
|
|
width: 100%;
|
|
background: #ffffff;
|
|
border-radius: 40rpx;
|
|
padding: 32rpx 36rpx;
|
|
margin-bottom: 48rpx;
|
|
box-shadow: 0 20rpx 50rpx rgba(27, 27, 32, 0.12);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24rpx;
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.f-icon { font-size: 40rpx; line-height: 1; }
|
|
|
|
.f-text {
|
|
font-size: 28rpx;
|
|
font-weight: 600;
|
|
color: #1b1b20;
|
|
}
|
|
|
|
/* 登录按钮:强调黑胶囊 CTA */
|
|
.login-btn {
|
|
width: 100%;
|
|
height: 96rpx;
|
|
background: #2b2b30 !important;
|
|
border-radius: 999rpx !important;
|
|
font-size: 32rpx !important;
|
|
font-weight: 600 !important;
|
|
color: #fff !important;
|
|
box-shadow: 0 16rpx 36rpx rgba(43, 43, 48, 0.30) !important;
|
|
border: none !important;
|
|
margin-bottom: 28rpx !important;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12rpx;
|
|
}
|
|
|
|
.login-btn::after { border: none !important; }
|
|
|
|
/* 隐私 */
|
|
.privacy-tip {
|
|
font-size: 22rpx;
|
|
color: #6e7280;
|
|
text-align: center;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.link-text {
|
|
color: #7563e0;
|
|
font-weight: 600;
|
|
}
|