修改配色,修改功能
This commit is contained in:
@@ -3,7 +3,7 @@ page {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: #f6f7f9;
|
||||
background-color: #EBF4F8; /* Color 03 (Background) */
|
||||
}
|
||||
.scrollarea {
|
||||
flex: 1;
|
||||
@@ -26,7 +26,7 @@ page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.03);
|
||||
box-shadow: 0 8rpx 24rpx rgba(17, 97, 107, 0.08); /* Teal shadow */
|
||||
margin-bottom: 30rpx;
|
||||
position: relative;
|
||||
}
|
||||
@@ -41,7 +41,7 @@ page {
|
||||
|
||||
.settings-icon {
|
||||
font-size: 40rpx;
|
||||
color: #333;
|
||||
color: #11616B; /* Color 01 */
|
||||
}
|
||||
|
||||
/* Avatar */
|
||||
@@ -57,14 +57,14 @@ page {
|
||||
border-radius: 50%;
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: 0 6rpx 16rpx rgba(0,0,0,0.1);
|
||||
box-shadow: 0 6rpx 16rpx rgba(17, 97, 107, 0.15); /* Teal shadow */
|
||||
}
|
||||
|
||||
.avatar {
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
border-radius: 50%;
|
||||
border: 4rpx solid #fff;
|
||||
border: 4rpx solid #ffffff;
|
||||
}
|
||||
|
||||
/* Nickname */
|
||||
@@ -78,12 +78,12 @@ page {
|
||||
.nickname-input, .nickname-text {
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
color: #11616B; /* Color 01 */
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nickname-input {
|
||||
border-bottom: 2rpx solid #eee;
|
||||
border-bottom: 2rpx solid #7BBDB6; /* Color 02 */
|
||||
padding: 10rpx;
|
||||
width: 60%;
|
||||
}
|
||||
@@ -101,7 +101,7 @@ page {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 24rpx 0;
|
||||
border-bottom: 1rpx solid #f5f5f5;
|
||||
border-bottom: 1rpx solid #EBF4F8; /* Color 03 instead of gray */
|
||||
}
|
||||
|
||||
.info-item:last-child {
|
||||
@@ -109,14 +109,15 @@ page {
|
||||
}
|
||||
|
||||
.label {
|
||||
color: #666;
|
||||
color: #11616B; /* Color 01 - Darkened from #7BBDB6 */
|
||||
font-size: 28rpx;
|
||||
font-weight: 600; /* Added weight for better visibility */
|
||||
}
|
||||
|
||||
.value {
|
||||
color: #333;
|
||||
color: #11616B; /* Color 01 - Consistent dark teal */
|
||||
font-size: 28rpx;
|
||||
font-weight: 500;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* Gender Tags */
|
||||
@@ -127,8 +128,8 @@ page {
|
||||
border-radius: 8rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.gender-box.male { color: #1890ff; background: #e6f7ff; }
|
||||
.gender-box.female { color: #eb2f96; background: #fff0f6; }
|
||||
.gender-box.male { color: #11616B; background: #EBF4F8; } /* Color 01 on Color 03 */
|
||||
.gender-box.female { color: #DC8B70; background: #FED9CD; } /* Color 05 on Color 04 */
|
||||
|
||||
/* Action Buttons */
|
||||
.action-area {
|
||||
@@ -136,11 +137,11 @@ page {
|
||||
}
|
||||
|
||||
.login-hint {
|
||||
color: #999;
|
||||
font-size: 26rpx; /* 小一点 */
|
||||
color: #7BBDB6; /* Color 02 */
|
||||
font-size: 26rpx;
|
||||
text-align: center;
|
||||
margin-bottom: 30rpx;
|
||||
display: block; /* 确保占满一行 */
|
||||
display: block;
|
||||
}
|
||||
|
||||
.login-btn, .secondary-btn {
|
||||
@@ -153,21 +154,21 @@ page {
|
||||
}
|
||||
|
||||
.login-btn {
|
||||
background: linear-gradient(90deg, #07c160, #10ad63);
|
||||
background: #11616B; /* Color 01 */
|
||||
color: white;
|
||||
box-shadow: 0 6rpx 16rpx rgba(7, 193, 96, 0.3);
|
||||
box-shadow: 0 6rpx 16rpx rgba(17, 97, 107, 0.3);
|
||||
}
|
||||
|
||||
.login-btn[disabled] {
|
||||
background: #a0eac4 !important;
|
||||
background: #7BBDB6 !important; /* Color 02 */
|
||||
color: #fff !important;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.secondary-btn {
|
||||
background-color: #fff;
|
||||
color: #666;
|
||||
border: 1rpx solid #eee;
|
||||
background-color: #ffffff;
|
||||
color: #11616B; /* Color 01 text */
|
||||
border: 1rpx solid #7BBDB6; /* Color 02 border */
|
||||
}
|
||||
|
||||
/* Styles for verification area centered */
|
||||
@@ -176,28 +177,29 @@ page {
|
||||
}
|
||||
|
||||
.code-display {
|
||||
background: #eef2f5;
|
||||
background: #EBF4F8; /* Color 03 */
|
||||
padding: 20rpx;
|
||||
border-radius: 12rpx;
|
||||
margin-top: 20rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border: 1rpx solid #dbecef;
|
||||
}
|
||||
|
||||
.code-text {
|
||||
font-size: 40rpx;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
color: #11616B; /* Color 01 */
|
||||
margin-right: 20rpx;
|
||||
letter-spacing: 4rpx;
|
||||
}
|
||||
|
||||
.copy-btn {
|
||||
font-size: 24rpx;
|
||||
background: #fff;
|
||||
background: #ffffff;
|
||||
padding: 6rpx 16rpx;
|
||||
border-radius: 20rpx;
|
||||
color: #1890ff;
|
||||
border: 1rpx solid #1890ff;
|
||||
color: #11616B; /* Color 01 */
|
||||
border: 1rpx solid #11616B; /* Color 01 */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user