report.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. .Report {
  2. width: 1000px !important;
  3. min-height: 790px;
  4. background:rgba(255,255,255,1);
  5. .titleArea {
  6. width: calc(100% - 40px);
  7. height: 90px;
  8. margin: 0 20px;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. border-bottom: 2px solid rgba(0,0,0, 0.06);
  13. p {
  14. font-size:26px;
  15. font-weight:500;
  16. color:rgba(29,42,58,1);
  17. line-height:37px;
  18. height: 37px;
  19. }
  20. }
  21. .bodyArea {
  22. width: 650px;
  23. margin: 0 auto;
  24. .topTips {
  25. margin-top: 20px;
  26. width: 100%;
  27. height: 132px;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. border-bottom: 1px solid rgba(0,0,0, 0.06);
  32. p {
  33. font-size:14px;
  34. font-weight:600;
  35. color:rgba(51,51,51,1);
  36. line-height:20px;
  37. text-align: left;
  38. height: 20px;
  39. }
  40. }
  41. .reportBox {
  42. margin-top: 40px;
  43. .left {
  44. width: 94px;
  45. text-align: right;
  46. align-self: flex-start;
  47. flex-shrink: 0;
  48. p {
  49. font-size:14px;
  50. font-weight:500;
  51. color:rgba(29,42,58,1);
  52. line-height:20px;
  53. }
  54. }
  55. .reportUser {
  56. display: flex;
  57. align-items: center;
  58. height: 55px;
  59. .left {
  60. display: flex;
  61. justify-content: flex-end;
  62. align-items: center;
  63. align-self: center;
  64. }
  65. .right {
  66. margin-left: 17px;
  67. display: flex;
  68. align-items: center;
  69. font-size: 0;
  70. height: 55px;
  71. img {
  72. width:55px;
  73. height:55px;
  74. border-radius: 50%;
  75. }
  76. p {
  77. height:20px;
  78. font-size:14px;
  79. font-weight:500;
  80. color:rgba(29,42,58,1);
  81. line-height:20px;
  82. margin-left: 10px;
  83. }
  84. }
  85. }
  86. .reportType {
  87. margin-top: 42px;
  88. display: flex;
  89. align-items: center;
  90. .left {
  91. flex-shrink: 0;
  92. }
  93. .right {
  94. margin-left: 17px;
  95. display: flex;
  96. align-items: center;
  97. justify-content: space-between;
  98. flex-wrap: wrap;
  99. .cell {
  100. display: flex;
  101. align-items: center;
  102. width: 250px;
  103. cursor: pointer;
  104. &:nth-child(0n+3) {
  105. margin-top: 22px;
  106. }
  107. .check {
  108. width: 20px;
  109. height: 20px;
  110. background-image: url('~@/assets/img/other/report/noneSelected@2x.png');
  111. background-repeat: no-repeat;
  112. background-size: cover;
  113. &.ok {
  114. background-image: url('~@/assets/img/other/report/selected@2x.png');
  115. }
  116. }
  117. .word {
  118. height:20px;
  119. font-size:14px;
  120. font-weight:600;
  121. color:rgba(29,42,58,1);
  122. line-height:20px;
  123. margin-left: 7px;
  124. }
  125. }
  126. }
  127. }
  128. .reportDesc {
  129. margin-top: 46px;
  130. display: flex;
  131. align-items: center;
  132. min-height: 110px;
  133. .right {
  134. margin-left: 17px;
  135. }
  136. }
  137. .reportButton {
  138. margin-top: 27px;
  139. display: flex;
  140. align-items: center;
  141. height: 55px;
  142. .right {
  143. margin-left: 17px;
  144. width:153px;
  145. height:46px;
  146. background:rgba(48,142,255,1);
  147. box-shadow:0px 2px 6px 0px rgba(48,142,255,0.3);
  148. border-radius:2px;
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. cursor: pointer;
  153. p {
  154. height:20px;
  155. font-size:14px;
  156. font-weight:500;
  157. color:rgba(255,255,255,1);
  158. line-height:20px;
  159. }
  160. }
  161. }
  162. }
  163. }
  164. }