Welcome.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @import (reference) '~antd/es/style/themes/index';
  2. .container {
  3. .itemLeft {
  4. box-sizing: border-box;
  5. height: 100%;
  6. padding: 40px 0 30px 30px;
  7. overflow: hidden;
  8. color: #fff;
  9. background: url('../../public/assets/book-bg.jpg');
  10. background-size: cover;
  11. border-radius: 20px;
  12. .leftTitle {
  13. font-size: 20px;
  14. }
  15. .imgBox {
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. width: 90px;
  20. height: 90px;
  21. margin: 40px 0 20px;
  22. background-color: #fff;
  23. border-radius: 20px;
  24. box-shadow: 0 10px 20px rgb(0 0 0 / 14%);
  25. }
  26. .leftNumber {
  27. overflow: hidden;
  28. font-size: 62px;
  29. }
  30. }
  31. .itemCenter {
  32. height: 100%;
  33. padding: 40px;
  34. background: #f2f8f3;
  35. border-radius: 25px;
  36. .itemImg {
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. width: 70px;
  41. height: 70px;
  42. margin: 0 auto;
  43. background: #fff;
  44. border-radius: 20px;
  45. img {
  46. width: 50px;
  47. height: 50px;
  48. }
  49. }
  50. .itemValue {
  51. margin-top: 40px;
  52. font-weight: bold;
  53. font-size: 28px;
  54. text-align: center;
  55. }
  56. .itemTitle {
  57. overflow: hidden;
  58. color: #1a1a37;
  59. font-size: 15px;
  60. white-space: nowrap;
  61. text-align: center;
  62. }
  63. }
  64. .itemRight {
  65. display: flex;
  66. flex-wrap: wrap;
  67. height: 100%;
  68. .imgRightBox {
  69. display: flex;
  70. flex-direction: column;
  71. box-sizing: border-box;
  72. width: 48%;
  73. height: 47%;
  74. margin: 10px;
  75. padding: 25px;
  76. border-radius: 30px;
  77. .itemRightImg {
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. width: 70px;
  82. height: 70px;
  83. margin-bottom: 10px;
  84. background-color: #fff;
  85. border-radius: 19px;
  86. img {
  87. width: 33px;
  88. height: 33px;
  89. }
  90. }
  91. .itemRightVal {
  92. margin-bottom: 4px;
  93. color: #1a1a37;
  94. font-weight: bold;
  95. font-size: 28px;
  96. }
  97. .itemRightTitle {
  98. overflow: hidden;
  99. color: #1a1a37;
  100. font-size: 15px;
  101. white-space: nowrap;
  102. }
  103. }
  104. .itemRightBg1 {
  105. background: #e8faea url('../../public/icons/1-bg.png');
  106. background-size: 100% 100%;
  107. }
  108. .itemRightBg2 {
  109. background: #e7e1fb url('../../public/icons/2-bg.png');
  110. background-size: 100% 100%;
  111. }
  112. .itemRightBg3 {
  113. background: #fdf3e9 url('../../public/icons/3-bg.png');
  114. background-size: 100% 100%;
  115. }
  116. .itemRightBg4 {
  117. background: #f0f5fb url('../../public/icons/4-bg.png');
  118. background-size: 100% 100%;
  119. }
  120. }
  121. }