农经大屏
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .colbox {
  2. display: flex;
  3. flex-direction: column;
  4. .top {
  5. display: flex;
  6. justify-content: space-between;
  7. width: 100%;
  8. flex: 1;
  9. .item {
  10. width: 150px;
  11. height: 100px;
  12. background: url('./bk.png');
  13. background-size: 100% 100%;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. .top_line {
  18. margin-top: 15px;
  19. .value {
  20. font-size: 20px;
  21. font-weight: 600;
  22. }
  23. .unit {
  24. font-size: 12px;
  25. }
  26. }
  27. .name {
  28. font-weight: 600;
  29. font-size: 12px;
  30. }
  31. }
  32. }
  33. .buttom {
  34. width: 100%;
  35. flex: 1;
  36. }
  37. }