291 lines
5.5 KiB
Plaintext
291 lines
5.5 KiB
Plaintext
.report-title-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 18rpx;
|
|
}
|
|
|
|
.report-title-main {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.countdown-pill {
|
|
flex: 0 0 auto;
|
|
min-width: 132rpx;
|
|
padding: 12rpx 16rpx;
|
|
border: 1rpx solid #ffd9a8;
|
|
border-radius: 16rpx;
|
|
background: #fff7e8;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
}
|
|
|
|
.countdown-label {
|
|
display: block;
|
|
color: #a95605;
|
|
font-size: 20rpx;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.countdown-value {
|
|
display: block;
|
|
margin-top: 6rpx;
|
|
color: #7a3d00;
|
|
font-size: 30rpx;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.device-card {
|
|
padding-bottom: 8rpx;
|
|
border-left: 6rpx solid #1463ff;
|
|
}
|
|
|
|
.device-head {
|
|
margin-bottom: 18rpx;
|
|
}
|
|
|
|
.btn.mini.add-product-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 78rpx;
|
|
min-width: 78rpx;
|
|
height: 78rpx;
|
|
line-height: 1;
|
|
padding: 0;
|
|
border-radius: 20rpx;
|
|
font-size: 68rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.item-box {
|
|
position: relative;
|
|
margin-top: 18rpx;
|
|
padding: 22rpx 18rpx 18rpx;
|
|
border: 1rpx solid #dce4ef;
|
|
border-radius: 16rpx;
|
|
background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
|
|
box-shadow:
|
|
0 10rpx 0 rgba(205, 216, 229, 0.5),
|
|
0 16rpx 24rpx rgba(22, 34, 50, 0.08),
|
|
inset 0 2rpx 0 rgba(255, 255, 255, 0.94);
|
|
}
|
|
|
|
.item-box.multi-item-box {
|
|
padding-top: 72rpx;
|
|
}
|
|
|
|
.item-box.stacked-item-box {
|
|
padding-top: 104rpx;
|
|
}
|
|
|
|
.multi-item-stamp {
|
|
position: absolute;
|
|
right: 18rpx;
|
|
top: 18rpx;
|
|
z-index: 2;
|
|
padding: 7rpx 14rpx;
|
|
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: 23rpx;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
}
|
|
|
|
.continuous-item-stamp {
|
|
position: absolute;
|
|
right: 18rpx;
|
|
top: 18rpx;
|
|
z-index: 2;
|
|
padding: 7rpx 14rpx;
|
|
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: 23rpx;
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
}
|
|
|
|
.lower-item-stamp {
|
|
top: 60rpx;
|
|
}
|
|
|
|
.readonly {
|
|
min-height: 78rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 20rpx;
|
|
border: 1rpx solid #ccd8e6;
|
|
border-radius: 14rpx;
|
|
background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
|
|
box-shadow:
|
|
inset 0 4rpx 8rpx rgba(22, 34, 50, 0.05),
|
|
0 6rpx 0 rgba(205, 216, 229, 0.45),
|
|
0 10rpx 18rpx rgba(22, 34, 50, 0.06);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.picker.field-error,
|
|
.readonly.field-error {
|
|
border-color: #e5484d;
|
|
background: linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
|
|
color: #b42318;
|
|
box-shadow:
|
|
inset 0 4rpx 8rpx rgba(180, 35, 24, 0.08),
|
|
0 0 0 4rpx rgba(229, 72, 77, 0.12),
|
|
0 6rpx 0 rgba(255, 197, 197, 0.65),
|
|
0 10rpx 18rpx rgba(180, 35, 24, 0.08);
|
|
}
|
|
|
|
.readonly-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 18rpx 20rpx;
|
|
margin: 20rpx 0;
|
|
}
|
|
|
|
.qty-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14rpx;
|
|
}
|
|
|
|
.misc-auto-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10rpx;
|
|
margin-top: 16rpx;
|
|
padding: 20rpx;
|
|
border: 2rpx solid #f3b35b;
|
|
border-radius: 16rpx;
|
|
background: linear-gradient(180deg, #fffaf1 0%, #fff3df 100%);
|
|
box-shadow:
|
|
0 8rpx 0 rgba(220, 139, 34, 0.32),
|
|
inset 0 2rpx 0 rgba(255, 255, 255, 0.86);
|
|
}
|
|
|
|
.submit-btn {
|
|
margin-top: 30rpx;
|
|
height: 92rpx;
|
|
line-height: 92rpx;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.continue-work-btn {
|
|
margin: 28rpx auto 16rpx;
|
|
width: 430rpx;
|
|
height: 78rpx;
|
|
line-height: 78rpx;
|
|
color: #1463ff;
|
|
font-size: 28rpx;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.add-start-panel .form-item {
|
|
margin-top: 18rpx;
|
|
}
|
|
|
|
.confirm-mask {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 80;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 44rpx;
|
|
background: rgba(15, 23, 42, 0.52);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.confirm-panel {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
padding: 44rpx 34rpx 40rpx;
|
|
border: 1rpx solid #e4e9f1;
|
|
border-radius: 28rpx;
|
|
background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
|
|
box-shadow:
|
|
0 16rpx 0 rgba(170, 184, 204, 0.64),
|
|
0 30rpx 64rpx rgba(15, 23, 42, 0.28),
|
|
inset 0 2rpx 0 rgba(255, 255, 255, 0.96);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.confirm-title {
|
|
display: block;
|
|
margin-bottom: 28rpx;
|
|
color: #162232;
|
|
font-size: 36rpx;
|
|
font-weight: 800;
|
|
line-height: 1.25;
|
|
text-align: center;
|
|
}
|
|
|
|
.confirm-lines {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16rpx;
|
|
padding: 22rpx;
|
|
border: 1rpx solid #dce4ef;
|
|
border-radius: 18rpx;
|
|
background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
|
|
box-shadow:
|
|
inset 0 4rpx 8rpx rgba(22, 34, 50, 0.05),
|
|
0 8rpx 0 rgba(205, 216, 229, 0.48),
|
|
0 12rpx 18rpx rgba(22, 34, 50, 0.06);
|
|
}
|
|
|
|
.confirm-line {
|
|
display: grid;
|
|
grid-template-columns: 150rpx minmax(0, 1fr);
|
|
gap: 18rpx;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.confirm-label {
|
|
color: #667085;
|
|
font-size: 26rpx;
|
|
font-weight: 700;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.confirm-value {
|
|
min-width: 0;
|
|
color: #162232;
|
|
font-size: 28rpx;
|
|
font-weight: 700;
|
|
line-height: 1.45;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.confirm-actions {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 18rpx;
|
|
margin-top: 30rpx;
|
|
padding: 0 2rpx 12rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.confirm-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 0;
|
|
width: 100%;
|
|
height: 80rpx;
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1.15;
|
|
box-sizing: border-box;
|
|
}
|