fix: 暖色调修改。

This commit is contained in:
tianyongbao
2026-03-04 00:23:01 +08:00
parent d924185c8e
commit f5b0338072
10 changed files with 68 additions and 68 deletions

View File

@@ -23,7 +23,7 @@
<view class="tips-card">
<view class="tips-header">
<uni-icons type="info" size="16" color="#667eea"></uni-icons>
<uni-icons type="info" size="16" color="#E8841A"></uni-icons>
<text class="tips-title">密码要求</text>
</view>
<view class="tips-list">
@@ -133,14 +133,14 @@ uni.navigateTo({ url: `/pages/login` })
<style lang="scss" scoped>
page {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: linear-gradient(160deg, #FFF3D6 0%, #FFE0A0 60%, #FFCC6E 100%);
min-height: 100%;
height: 100%;
}
.register-container {
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: linear-gradient(160deg, #FFF3D6 0%, #FFE0A0 60%, #FFCC6E 100%);
display: flex;
flex-direction: column;
position: relative;
@@ -151,7 +151,7 @@ page {
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
pointer-events: none;
}
@@ -164,14 +164,14 @@ page {
display: block;
font-size: 48rpx;
font-weight: 700;
color: #ffffff;
color: #8B4500;
margin-bottom: 12rpx;
}
.page-subtitle {
display: block;
font-size: 26rpx;
color: rgba(255, 255, 255, 0.8);
color: rgba(139, 69, 0, 0.65);
}
}
@@ -202,11 +202,11 @@ page {
}
.tips-card {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
background: linear-gradient(135deg, rgba(232, 132, 26, 0.06) 0%, rgba(245, 166, 35, 0.06) 100%);
border-radius: 20rpx;
padding: 24rpx;
margin-top: 32rpx;
border: 2rpx solid rgba(102, 126, 234, 0.2);
border: 2rpx solid rgba(232, 132, 26, 0.2);
}
.tips-header {
@@ -215,7 +215,7 @@ page {
margin-bottom: 16rpx;
.tips-title {
color: #667eea;
color: #E8841A;
font-size: 26rpx;
font-weight: 600;
margin-left: 8rpx;
@@ -233,7 +233,7 @@ page {
}
.tip-dot {
color: #667eea;
color: #E8841A;
font-size: 24rpx;
margin-right: 8rpx;
line-height: 36rpx;
@@ -254,10 +254,10 @@ page {
.register-btn {
width: 100%;
height: 96rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: linear-gradient(135deg, #E8841A 0%, #F5A623 100%);
border-radius: 48rpx;
border: none;
box-shadow: 0 12rpx 32rpx rgba(102, 126, 234, 0.4);
box-shadow: 0 12rpx 32rpx rgba(232, 132, 26, 0.4);
display: flex;
align-items: center;
justify-content: center;
@@ -269,7 +269,7 @@ page {
&:active {
transform: scale(0.98);
box-shadow: 0 8rpx 24rpx rgba(102, 126, 234, 0.3);
box-shadow: 0 8rpx 24rpx rgba(232, 132, 26, 0.3);
}
.btn-text {
@@ -287,7 +287,7 @@ page {
z-index: 1;
.copyright-text {
color: rgba(255, 255, 255, 0.7);
color: #8B4500;
font-size: 24rpx;
}
}