Files
bodyWeight/miniprogram/components/equipmentDialog/equipmentDialog.less
T

43 lines
850 B
Plaintext

.equipment-mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(37, 37, 53, 0.6);
z-index: 100;
}
.equipment-panel {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 560rpx;
box-sizing: border-box;
background-color: #FFFFFF;
border-radius: 24rpx;
z-index: 101;
display: flex;
flex-direction: column;
align-items: center;
padding: 100rpx 40rpx;
.equipment-title {
color: #252535;
height: 32rpx;
font-size: 32rpx;
line-height: 32rpx;
text-align: center;
}
.equipment-content {
color: #808080;
font-size: 24rpx;
line-height: 34rpx;
text-align: center;
margin-top: 24rpx;
white-space: pre-line;
}
}