details.scss 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. @import "./incidental.scss";
  2. /* 主要区域 */
  3. .main {
  4. width: 100%;
  5. background-color: #ffffff;
  6. padding: 30rpx;
  7. box-sizing: border-box;
  8. .title {
  9. font-size: 30rpx;
  10. font-family: PingFang SC-Bold, PingFang SC;
  11. font-weight: bold;
  12. color: #333333;
  13. line-height: 44rpx;
  14. }
  15. .incidental {
  16. width: 100%;
  17. margin-top: 20rpx;
  18. }
  19. }
  20. /* 通告评价 */
  21. .evaluate {
  22. .title-r {
  23. font-size: 24rpx;
  24. font-family: PingFang SC-Regular, PingFang SC;
  25. color: #999999;
  26. }
  27. .score {
  28. display: flex;
  29. align-items: center;
  30. height: 48rpx;
  31. // margin-left: 30rpx;
  32. margin: 40rpx 0 50rpx 30rpx;
  33. .rate {
  34. padding: 0 20rpx;
  35. margin-top: -12rpx;
  36. }
  37. }
  38. }
  39. /* 虚线 */
  40. .cut-off-rule {
  41. width: 100%;
  42. height: 1rpx;
  43. box-sizing: border-box;
  44. border-bottom: 1rpx dashed #CCCCCC;
  45. margin-top: 30rpx;
  46. }
  47. /* 文本域 */
  48. textarea {
  49. width: 630rpx;
  50. height: 210rpx;
  51. background: #F5F5F5;
  52. border-radius: 8rpx;
  53. margin: 24rpx auto 0;
  54. padding: 20rpx 30rpx;
  55. box-sizing: border-box;
  56. text-align: left;
  57. }
  58. /* 按钮盒子 */
  59. .but-box {
  60. width: 100%;
  61. text-align: center;
  62. margin: 50rpx 0;
  63. }
  64. /* 数据 */
  65. .head {
  66. display: flex;
  67. justify-content: space-between;
  68. background: none !important;
  69. .box {
  70. width: 336rpx;
  71. height: 184rpx;
  72. background: #ffffff;
  73. border-radius: 16rpx;
  74. padding: 20rpx 30rpx;
  75. box-sizing: border-box;
  76. .title {
  77. display: flex;
  78. align-items: center;
  79. height: 40rpx;
  80. font-size: 28rpx !important;
  81. font-family: PingFang SC-Bold, PingFang SC;
  82. font-weight: bold;
  83. color: #333333;
  84. text {
  85. color: var(--assist);
  86. font-size: 40rpx;
  87. margin-right: 10rpx;
  88. }
  89. }
  90. .data {
  91. display: flex;
  92. width: 100%;
  93. height: 84rpx;
  94. margin-top: 20rpx;
  95. text-align: center;
  96. .subarea {
  97. flex: 1;
  98. .nubmer {
  99. height: 40rpx;
  100. font-size: 28rpx;
  101. font-family: PingFang SC-Bold, PingFang SC;
  102. font-weight: bold;
  103. color: var(--assist);
  104. }
  105. .string {
  106. height: 34rpx;
  107. font-size: 24rpx;
  108. font-family: PingFang SC-Regular, PingFang SC;
  109. color: #666666;
  110. margin-top: 10rpx;
  111. }
  112. }
  113. .vertical {
  114. width: 2rpx;
  115. height: 74rpx;
  116. margin-top: 10rpx;
  117. background: #EEEEEE;
  118. }
  119. }
  120. }
  121. }
  122. .data-main {
  123. background: none !important;
  124. .data-content {
  125. padding: 30rpx;
  126. padding-right: 0;
  127. background-color: #ffffff;
  128. .title {
  129. display: flex;
  130. justify-content: space-between;
  131. width: 630rpx;
  132. height: 40rpx;
  133. &_l {
  134. font-size: 28rpx;
  135. font-family: PingFang SC-Bold, PingFang SC;
  136. font-weight: bold;
  137. color: #333333;
  138. }
  139. &_r {
  140. height: 34rpx;
  141. font-size: 24rpx;
  142. font-family: PingFang SC-Regular, PingFang SC;
  143. color: #999999;
  144. margin-top: 6rpx;
  145. }
  146. }
  147. .user-list {
  148. width: 100%;
  149. margin-top: 24rpx;
  150. width: 630rpx;
  151. background: #F5F5F5;
  152. border-radius: 16rpx;
  153. padding: 30rpx 0;
  154. .user {
  155. display: flex;
  156. justify-content: space-between;
  157. width: 600rpx;
  158. height: 40rpx;
  159. margin-top: 40rpx;
  160. margin-left: 30rpx;
  161. padding-right: 20rpx;
  162. box-sizing: border-box;
  163. view {
  164. width: 530rpx;
  165. font-size: 28rpx;
  166. font-family: PingFang SC-Regular, PingFang SC;
  167. color: #666666;
  168. }
  169. text {
  170. font-size: 40rpx;
  171. color: var(--warning);
  172. }
  173. }
  174. .user:first-child {
  175. margin-top: 0;
  176. }
  177. }
  178. .line-between {
  179. height: 1rpx;
  180. width: 100%;
  181. background-color: #EEEEEE;
  182. margin: 30rpx 0;
  183. }
  184. }
  185. }
  186. .tab {
  187. display: flex;
  188. width: 100%;
  189. &_item {
  190. flex: 1;
  191. height: 96rpx;
  192. background-color: #F8F9FA;
  193. border-radius: 16rpx 16rpx 0 0;
  194. line-height: 96rpx;
  195. text-align: center;
  196. font-size: 28rpx;
  197. font-family: PingFang SC-Regular, PingFang SC;
  198. color: #666666;
  199. }
  200. .active {
  201. position: relative;
  202. background-color: #ffffff;
  203. font-size: 28rpx;
  204. font-family: PingFang SC-Bold, PingFang SC;
  205. font-weight: bold;
  206. color: #3874F6;
  207. }
  208. }