73 lines
1.1 KiB
Plaintext
73 lines
1.1 KiB
Plaintext
.search {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.equipment-filter-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.filter-picker {
|
|
min-height: 82rpx;
|
|
line-height: 82rpx;
|
|
}
|
|
|
|
.add-btn {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.equipment-card {
|
|
border-left: 6rpx solid #1463ff;
|
|
}
|
|
|
|
.modal-mask {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 50;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 32rpx;
|
|
background: rgba(15, 23, 42, 0.48);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.modal-panel {
|
|
width: 100%;
|
|
max-height: 82vh;
|
|
overflow-y: auto;
|
|
padding: 30rpx;
|
|
border: 1rpx solid #e4e9f1;
|
|
border-radius: 18rpx;
|
|
background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
|
|
box-shadow:
|
|
0 16rpx 0 rgba(170, 184, 204, 0.62),
|
|
0 30rpx 64rpx rgba(15, 23, 42, 0.24),
|
|
inset 0 2rpx 0 rgba(255, 255, 255, 0.96);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.modal-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 18rpx;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.modal-title {
|
|
color: #162232;
|
|
font-size: 34rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.modal-close {
|
|
flex: 0 0 auto;
|
|
margin: 0;
|
|
}
|