cabinetList.css 908 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .cabinet-list-main{
  2. background: #FFFFFF;
  3. border-radius: 32rpx;
  4. padding: 32rpx;
  5. margin-bottom: 20rpx;
  6. }
  7. .cabinet-name{
  8. font-weight: 600;
  9. font-size: 36rpx;
  10. color: #060809;
  11. }
  12. .cabinet-distance{
  13. font-family: DIN, DIN;
  14. font-weight: 600;
  15. font-size: 26rpx;
  16. color: #0A59F7;
  17. padding: 6rpx 20rpx;
  18. background: #E6EEFE;
  19. border-radius: 20rpx;
  20. }
  21. .battery-list-view{
  22. margin: 20rpx 0 32rpx;
  23. }
  24. .battery-view{
  25. background: rgba(10,89,247,0.1);
  26. border-radius: 8rpx;
  27. width: 228rpx;
  28. display: flex;
  29. justify-content: space-between;
  30. height: 48rpx;
  31. line-height: 48rpx;
  32. }
  33. .battery-voltage{
  34. font-weight: 500;
  35. font-size: 30rpx;
  36. color: #060809;
  37. width: 100%;
  38. text-align: center;
  39. }
  40. .battery-num{
  41. background: #0A59F7;
  42. border-radius: 8rpx 8rpx 8rpx 0rpx;
  43. font-family: DIN, DIN;
  44. font-weight: bold;
  45. font-size: 30rpx;
  46. color: #FFFFFF;
  47. width: 66rpx;
  48. text-align: center;
  49. }
  50. .flex-end{
  51. justify-content: flex-end;
  52. }