重新修改后提交

This commit is contained in:
yy
2025-05-19 12:02:53 +08:00
parent 127a75c0a8
commit 98e6e06007
2 changed files with 23 additions and 11 deletions

View File

@@ -315,11 +315,12 @@ defineExpose({
background-color: #f6f6f6; background-color: #f6f6f6;
.content-item { .content-item {
margin-top: 40rpx; margin-top: 30rpx;
.item-title { .item-title {
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #333333; color: #333333;
margin-bottom: 15rpx;
} }
} }
.content-item:first-child { .content-item:first-child {
@@ -328,16 +329,18 @@ defineExpose({
.check-content { .check-content {
display: grid; display: grid;
grid-template-columns: 50% 50%; gap:16rpx;
place-items: center; grid-template-columns: repeat(auto-fill, minmax(180rpx, 1fr));
place-items: stretch;
.checkbox-item { .checkbox-item {
display: flex; display: flex;
align-items: center; align-items: center;
margin: 20rpx 20rpx 0 0;
text-align: center; text-align: center;
background-color: #d9d9d9; background-color: #d9d9d9;
width: 228rpx;
min-width: 0;
padding: 0 10rpx;
height: 80rpx; height: 80rpx;
background: #e8eaee; background: #e8eaee;
border-radius: 12rpx 12rpx 12rpx 12rpx; border-radius: 12rpx 12rpx 12rpx 12rpx;
@@ -345,10 +348,12 @@ defineExpose({
.option-label { .option-label {
font-size: 28rpx; font-size: 28rpx;
width: 100%; width: 100%;
white-space: nowrap;
overflow: hidden;
} }
} }
.checkedstyle { .checkedstyle {
width: 224rpx;
height: 76rpx; height: 76rpx;
background: rgba(37, 107, 250, 0.06); background: rgba(37, 107, 250, 0.06);
border-radius: 12rpx 12rpx 12rpx 12rpx; border-radius: 12rpx 12rpx 12rpx 12rpx;

View File

@@ -157,14 +157,21 @@ function getUserstatistics() {
font-weight: 500; font-weight: 500;
font-size: 32rpx; font-size: 32rpx;
color: #FFFFFF; color: #FFFFFF;
width: 452rpx; width: auto;
max-width: 60%;
white-space: nowrap
overflow:visible;
} }
.top-subTitle{ .top-subTitle{
margin-top: 8rpx; margin-top: 8rpx;
font-weight: 500; font-weight: 500;
font-size: 32rpx; font-size: 32rpx;
color: #FFFFFF; color: #FFFFFF;
width: 400rpx; width: auto;
max-width: 60%;
white-space: nowrap
overflow:hidden;
text-overflow: ellipsis;
} }
.top-btn{ .top-btn{
width: 164rpx; width: 164rpx;
@@ -179,7 +186,7 @@ function getUserstatistics() {
font-size: 28rpx; font-size: 28rpx;
color: #FFFFFF; color: #FFFFFF;
position: absolute position: absolute
right: 44rpx right: 36rpx
top: 50rpx top: 50rpx
} }
} }