123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .cabinet-list-main{
- background: #FFFFFF;
- border-radius: 32rpx;
- padding: 32rpx;
- }
- .cabinet-name{
- font-weight: 600;
- font-size: 36rpx;
- color: #060809;
- }
- .cabinet-distance{
- font-family: DIN, DIN;
- font-weight: 600;
- font-size: 26rpx;
- color: #0A59F7;
- padding: 6rpx 20rpx;
- background: #E6EEFE;
- border-radius: 20rpx;
- }
- .battery-list-view{
- margin: 20rpx 0 32rpx;
- }
- .battery-view{
- background: rgba(10,89,247,0.1);
- border-radius: 8rpx;
- width: 228rpx;
- display: flex;
- justify-content: space-between;
- height: 48rpx;
- line-height: 48rpx;
- }
- .battery-voltage{
- font-weight: 500;
- font-size: 30rpx;
- color: #060809;
- width: 100%;
- text-align: center;
- }
- .battery-num{
- background: #0A59F7;
- border-radius: 8rpx 8rpx 8rpx 0rpx;
- font-family: DIN, DIN;
- font-weight: bold;
- font-size: 30rpx;
- color: #FFFFFF;
- width: 66rpx;
- text-align: center;
- }
- .flex-end{
- justify-content: flex-end;
- }
|