cabinetList.css 988 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. display: flex;
  24. align-items: center;
  25. flex-wrap: wrap;
  26. }
  27. .battery-view{
  28. background: rgba(10,89,247,0.1);
  29. border-radius: 8rpx;
  30. width: 228rpx;
  31. display: flex;
  32. justify-content: space-between;
  33. height: 48rpx;
  34. line-height: 48rpx;
  35. margin-right: 10rpx;
  36. }
  37. .battery-voltage{
  38. font-weight: 500;
  39. font-size: 30rpx;
  40. color: #060809;
  41. width: 100%;
  42. text-align: center;
  43. }
  44. .battery-num{
  45. background: #0A59F7;
  46. border-radius: 8rpx 8rpx 8rpx 0rpx;
  47. font-family: DIN, DIN;
  48. font-weight: bold;
  49. font-size: 30rpx;
  50. color: #FFFFFF;
  51. width: 66rpx;
  52. text-align: center;
  53. }
  54. .flex-end{
  55. justify-content: flex-end;
  56. }