index.module.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .A2business {
  2. display: flex;
  3. justify-content: space-between;
  4. font-size: 16px;
  5. :global {
  6. .A2tit {
  7. height: 52px;
  8. font-weight: 700;
  9. font-size: 18px;
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. margin-bottom: 10px;
  14. }
  15. .A2none {
  16. width: 100%;
  17. height: 70px;
  18. font-weight: 700;
  19. font-size: 18px;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .A2ll {
  25. width: calc(100% - 190px);
  26. height: 100%;
  27. overflow-y: auto;
  28. margin-right: 20px;
  29. .A2ll1 {
  30. height: 100px;
  31. background-color: #dddddd;
  32. border-radius: 10px;
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-between;
  36. padding: 0 24px;
  37. .A2ll1_1 {
  38. display: flex;
  39. img {
  40. width: 70px;
  41. height: 70px;
  42. border-radius: 50%;
  43. }
  44. .A2ll1_1Txt {
  45. margin-left: 30px;
  46. & > h1 {
  47. font-size: 18px;
  48. }
  49. & > p {
  50. margin-top: 20px;
  51. }
  52. }
  53. }
  54. }
  55. .A2ll2 {
  56. margin-top: 15px;
  57. display: flex;
  58. justify-content: space-between;
  59. min-height: 27.3%;
  60. .A2ll2_1 {
  61. width: calc(100% - 520px);
  62. padding: 10px 20px 0px;
  63. background-color: #fff;
  64. border-radius: 10px;
  65. }
  66. .A2ll2_2 {
  67. width: 500px;
  68. margin-left: 20px;
  69. padding: 10px 20px 0px;
  70. background-color: #fff;
  71. border-radius: 10px;
  72. }
  73. .A2ll2RowBox {
  74. display: flex;
  75. flex-wrap: wrap;
  76. align-items: center;
  77. .A2ll2Row {
  78. border: 2px solid #dddddd;
  79. cursor: pointer;
  80. transition: all 0.3s;
  81. margin-right: 20px;
  82. margin-bottom: 20px;
  83. height: 90px;
  84. width: 100px;
  85. background-color: #dddddd;
  86. border-radius: 10px;
  87. display: flex;
  88. flex-direction: column;
  89. justify-content: center;
  90. align-items: center;
  91. font-weight: 700;
  92. &:hover {
  93. border-color: var(--themeColor);
  94. }
  95. & > p {
  96. margin-top: 10px;
  97. }
  98. }
  99. }
  100. }
  101. .A2ll2Full {
  102. background-color: #fff;
  103. border-radius: 10px;
  104. padding: 10px 20px 0px;
  105. display: block;
  106. }
  107. }
  108. .A2rr {
  109. width: 170px;
  110. background-color: #fff;
  111. border-radius: 10px;
  112. padding: 20px;
  113. & > h1 {
  114. font-size: 18px;
  115. }
  116. .A2rrRow {
  117. margin-top: 36%;
  118. width: 100%;
  119. height: 12%;
  120. background-color: #dddddd;
  121. border-radius: 10px;
  122. display: flex;
  123. align-items: center;
  124. & > div {
  125. text-align: center;
  126. &:nth-of-type(1) {
  127. width: 60%;
  128. }
  129. &:nth-of-type(2) {
  130. width: 40%;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }