126 lines
2.2 KiB
Plaintext
126 lines
2.2 KiB
Plaintext
.result-page {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.result-nav {
|
|
position: relative;
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 176rpx;
|
|
margin: 0 -24rpx 22rpx;
|
|
padding-top: 88rpx;
|
|
border-bottom: 1rpx solid rgba(213, 222, 235, 0.9);
|
|
background: rgba(247, 248, 250, 0.96);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.result-nav-title {
|
|
color: #111827;
|
|
font-size: 34rpx;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
.result-item {
|
|
position: relative;
|
|
display: block;
|
|
margin-top: 18rpx;
|
|
padding: 20rpx;
|
|
border-radius: 16rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.result-item.marked-result {
|
|
padding-top: 62rpx;
|
|
}
|
|
|
|
.result-item.stacked-result {
|
|
padding-top: 104rpx;
|
|
}
|
|
|
|
.result-item .result-multi-stamp {
|
|
position: absolute;
|
|
right: 16rpx;
|
|
top: 14rpx;
|
|
padding: 6rpx 12rpx;
|
|
border: 2rpx solid rgba(217, 119, 6, 0.62);
|
|
border-radius: 10rpx;
|
|
color: rgba(154, 74, 5, 0.88);
|
|
background: rgba(255, 247, 232, 0.92);
|
|
font-size: 22rpx;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
}
|
|
|
|
.result-continuous-stamp {
|
|
position: absolute;
|
|
right: 16rpx;
|
|
top: 14rpx;
|
|
padding: 6rpx 12rpx;
|
|
border: 2rpx solid rgba(217, 119, 6, 0.62);
|
|
border-radius: 10rpx;
|
|
color: rgba(154, 74, 5, 0.88);
|
|
background: rgba(255, 247, 232, 0.92);
|
|
font-size: 22rpx;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
}
|
|
|
|
.result-continuous-stamp.lower-result-stamp {
|
|
top: 56rpx;
|
|
}
|
|
|
|
.result-item.good {
|
|
border: 1rpx solid #bfe8d4;
|
|
background: #eefaf4;
|
|
color: #087443;
|
|
}
|
|
|
|
.result-item.warn {
|
|
border: 1rpx solid #f7d7a8;
|
|
background: #fff7e8;
|
|
color: #9a4a05;
|
|
}
|
|
|
|
.result-item.danger {
|
|
border: 1rpx solid #f1b4b2;
|
|
background: #fff1f0;
|
|
color: #b42318;
|
|
}
|
|
|
|
.result-title {
|
|
display: block;
|
|
color: #162232;
|
|
font-size: 28rpx;
|
|
font-weight: 800;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.result-subtitle {
|
|
display: block;
|
|
margin-top: 8rpx;
|
|
color: #667085;
|
|
font-size: 24rpx;
|
|
font-weight: 600;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.result-text {
|
|
display: block;
|
|
margin-top: 16rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 700;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.result-metrics {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14rpx 18rpx;
|
|
margin-top: 18rpx;
|
|
padding-top: 18rpx;
|
|
border-top: 1rpx solid rgba(102, 112, 133, 0.16);
|
|
}
|