2026-01-15 15:05:29 +08:00

129 lines
1.9 KiB
Plaintext

/* pages/edit-profile/index.wxss */
.edit-profile-container {
padding: 30rpx;
background-color: #f6f6f6;
min-height: 100vh;
box-sizing: border-box;
}
.form-section {
background-color: #fff;
border-radius: 16rpx;
padding: 30rpx;
margin-bottom: 30rpx;
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
}
.form-item {
margin-bottom: 40rpx;
}
.form-item:last-child {
margin-bottom: 0;
}
.form-label {
margin-bottom: 20rpx;
}
.label-text {
font-size: 30rpx;
color: #333;
font-weight: 500;
}
.form-input {
width: 100%;
height: 80rpx;
padding: 0 20rpx;
border: 2rpx solid #e0e0e0;
border-radius: 8rpx;
font-size: 32rpx;
color: #333;
background-color: #fff;
box-sizing: border-box;
}
.form-input:focus {
border-color: #0052d9;
}
.tips {
margin-top: 30rpx;
padding: 20rpx;
background-color: #f8f9fa;
border-radius: 8rpx;
border-left: 6rpx solid #0052d9;
}
.tips-text {
font-size: 24rpx;
color: #666;
line-height: 1.5;
}
.section-title {
margin-bottom: 30rpx;
padding-bottom: 20rpx;
border-bottom: 2rpx solid #f0f0f0;
}
.section-title text:first-child {
font-size: 32rpx;
color: #333;
font-weight: 500;
display: block;
margin-bottom: 8rpx;
}
.section-subtitle {
font-size: 24rpx;
color: #999;
}
.button-section {
display: flex;
flex-direction: column;
gap: 20rpx;
}
.save-btn {
width: 100%;
height: 88rpx;
background-color: #0052d9;
color: #fff;
border: none;
border-radius: 12rpx;
font-size: 32rpx;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
}
.save-btn.loading {
background-color: #ccc;
}
.save-btn:not(.loading):active {
background-color: #003ba3;
}
.cancel-btn {
width: 100%;
height: 88rpx;
background-color: #fff;
color: #666;
border: 2rpx solid #e0e0e0;
border-radius: 12rpx;
font-size: 32rpx;
display: flex;
align-items: center;
justify-content: center;
}
.cancel-btn:active {
background-color: #f5f5f5;
}