overview.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .overview {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. .overview_bg {
  9. width: 960px;
  10. height: 120px;
  11. }
  12. .overview_title {
  13. position: absolute;
  14. top: 0;
  15. left: 50%;
  16. transform: translateX(-50%);
  17. font-weight: bold;
  18. font-size: 64px;
  19. color: #fff;
  20. }
  21. .overview_content {
  22. flex: 1;
  23. height: 100%;
  24. width: 100%;
  25. display: flex;
  26. .overview_content_item {
  27. position: relative;
  28. flex: 1;
  29. height: 100%;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. justify-content: center;
  34. .item_img {
  35. width: 172px;
  36. height: 240px;
  37. }
  38. .item_value {
  39. position: absolute;
  40. top: 0;
  41. font-family: YouSheBiaoTiHei;
  42. font-weight: 400;
  43. font-size: 64px;
  44. color: #ffffff;
  45. }
  46. .item_label {
  47. position: absolute;
  48. top: 100px;
  49. font-family: Source Han Sans CN, Source Han Sans CN;
  50. font-weight: 400;
  51. font-size: 32px;
  52. color: #ffffff;
  53. }
  54. }
  55. }
  56. }