完善文创展示控制与结果层基础

This commit is contained in:
2026-03-27 09:41:48 +08:00
parent 33edfba392
commit 0e025c3426
14 changed files with 1153 additions and 38 deletions

View File

@@ -1327,6 +1327,130 @@
box-sizing: border-box;
}
.result-scene-modal {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 0 28rpx;
box-sizing: border-box;
background: rgba(7, 18, 12, 0.38);
z-index: 32;
}
.result-scene-modal__dialog {
width: 100%;
max-width: 680rpx;
padding: 36rpx 32rpx 30rpx;
border-radius: 40rpx;
background: rgba(248, 251, 244, 0.98);
box-shadow: 0 22rpx 68rpx rgba(7, 18, 12, 0.24);
box-sizing: border-box;
}
.result-scene-modal__eyebrow {
font-size: 22rpx;
font-weight: 800;
letter-spacing: 4rpx;
color: #5f7a65;
line-height: 1;
}
.result-scene-modal__title {
margin-top: 14rpx;
font-size: 46rpx;
line-height: 1.08;
font-weight: 700;
color: #163020;
}
.result-scene-modal__subtitle {
margin-top: 12rpx;
font-size: 24rpx;
line-height: 1.35;
color: #5f7a65;
}
.result-scene-modal__hero {
margin-top: 28rpx;
padding: 26rpx 24rpx 22rpx;
border-radius: 28rpx;
background: linear-gradient(180deg, rgba(35, 135, 87, 0.12), rgba(35, 135, 87, 0.06));
}
.result-scene-modal__hero-label {
font-size: 22rpx;
font-weight: 700;
color: #4d6852;
}
.result-scene-modal__hero-value {
margin-top: 12rpx;
font-size: 68rpx;
line-height: 1;
font-weight: 800;
color: #163020;
}
.result-scene-modal__rows {
margin-top: 24rpx;
border-radius: 28rpx;
overflow: hidden;
background: rgba(22, 48, 32, 0.04);
}
.result-scene-modal__row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24rpx;
padding: 22rpx 24rpx;
border-bottom: 1rpx solid rgba(22, 48, 32, 0.08);
}
.result-scene-modal__row:last-child {
border-bottom: none;
}
.result-scene-modal__row-label {
font-size: 24rpx;
color: #5f7a65;
}
.result-scene-modal__row-value {
font-size: 26rpx;
font-weight: 700;
color: #163020;
text-align: right;
}
.result-scene-modal__actions {
margin-top: 28rpx;
display: flex;
align-items: center;
gap: 18rpx;
}
.result-scene-modal__action {
flex: 1;
padding: 24rpx 18rpx;
border-radius: 999rpx;
text-align: center;
font-size: 26rpx;
font-weight: 700;
}
.result-scene-modal__action--secondary {
background: rgba(22, 48, 32, 0.08);
color: #163020;
}
.result-scene-modal__action--primary {
background: #163020;
color: #f7fbf2;
}
.debug-section--info {
margin-top: 14rpx;
}