- miniprogram: reading-records、imageUrl/mpNavigate、多页资料与 VIP 展示调整 - soul-admin: Users/Settings/UserDetailModal、dist 构建产物更新 - soul-api: user/vip/referral/ckb/db、MBTI 头像管理、user_rule_completion、迁移 SQL - .cursor: karuo-party 与飞书文档;.gitignore 忽略 .tmp_skill_bundle Made-with: Cursor
141 lines
2.7 KiB
Plaintext
141 lines
2.7 KiB
Plaintext
/* Soul 创业派对 - 公用登录弹窗 */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
z-index: 1000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 48rpx;
|
|
}
|
|
.modal-content {
|
|
width: 100%;
|
|
max-width: 600rpx;
|
|
background: #1c1c1e;
|
|
border-radius: 32rpx;
|
|
overflow: hidden;
|
|
}
|
|
.modal-close {
|
|
position: absolute;
|
|
top: 24rpx;
|
|
right: 24rpx;
|
|
z-index: 1;
|
|
padding: 16rpx;
|
|
}
|
|
.login-modal {
|
|
padding: 48rpx 32rpx;
|
|
text-align: center;
|
|
}
|
|
.login-icon {
|
|
font-size: 80rpx;
|
|
display: block;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
.login-title {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
display: block;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
.login-desc {
|
|
font-size: 26rpx;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
display: block;
|
|
margin-bottom: 48rpx;
|
|
}
|
|
.btn-wechat {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 16rpx;
|
|
padding: 28rpx;
|
|
background: #07C160;
|
|
color: #ffffff;
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
border-radius: 24rpx;
|
|
margin-bottom: 20rpx;
|
|
border: none;
|
|
}
|
|
.btn-wechat::after { border: none; }
|
|
.btn-wechat-icon {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 8rpx;
|
|
font-size: 24rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.btn-wechat-disabled { opacity: 0.6; }
|
|
.login-modal-cancel {
|
|
margin-top: 24rpx;
|
|
padding: 24rpx;
|
|
font-size: 28rpx;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
text-align: center;
|
|
}
|
|
.privacy-wechat-row {
|
|
margin: 24rpx 0;
|
|
padding: 24rpx;
|
|
background: rgba(0, 206, 209, 0.1);
|
|
border-radius: 16rpx;
|
|
}
|
|
.privacy-wechat-desc {
|
|
display: block;
|
|
font-size: 26rpx;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
margin-bottom: 16rpx;
|
|
}
|
|
.privacy-agree-btn {
|
|
width: 100%;
|
|
padding: 20rpx;
|
|
background: #07C160;
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
border-radius: 16rpx;
|
|
border: none;
|
|
}
|
|
.privacy-agree-btn::after { border: none; }
|
|
.login-agree-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 32rpx;
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
.agree-checkbox {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
border: 2rpx solid rgba(255, 255, 255, 0.5);
|
|
border-radius: 6rpx;
|
|
margin-right: 12rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 22rpx;
|
|
flex-shrink: 0;
|
|
}
|
|
.agree-checked {
|
|
background: #00CED1;
|
|
border-color: #00CED1;
|
|
}
|
|
.agree-text { color: rgba(255, 255, 255, 0.6); }
|
|
.agree-link {
|
|
color: #00CED1;
|
|
text-decoration: underline;
|
|
padding: 0 4rpx;
|
|
}
|
|
|
|
/* 显式 hover 类名,避免基础库 3.x 报 hoverClass / hoverClassDisable 类型非法 */
|
|
.btn-wechat-hover { opacity: 0.92; }
|
|
.privacy-agree-btn-hover { opacity: 0.88; }
|