cabinetList.css 885 B

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