overview.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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-weight: 400;
  42. font-size: 64px;
  43. font-family: "Rajdhani", "Orbitron", "DIN Condensed", sans-serif;
  44. color: #ffffff;
  45. }
  46. .item_label {
  47. position: absolute;
  48. top: 80px;
  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. .overview_member {
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. width: 100%;
  61. height: 120px;
  62. margin-top: 20px;
  63. z-index: 2000;
  64. }
  65. .overview_member_img {
  66. width: 960px;
  67. height: 120px;
  68. }
  69. .overview_member_title {
  70. display: inline-flex;
  71. justify-content: center;
  72. align-items: center;
  73. position: absolute;
  74. width: 100%;
  75. height: 120px;
  76. font-weight: bold;
  77. font-size: 64px;
  78. color: #ffffff;
  79. }
  80. }