query.scss 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. .credit-query-wrapper {
  2. width: 1000px;
  3. .identify-wrapper {
  4. width: 100%;
  5. height: 82px;
  6. padding: 0 20px;
  7. background: #ffffff;
  8. // border: 1px solid #eeeeee;
  9. display: flex;
  10. align-items: center;
  11. .identify-title {
  12. height: 20px;
  13. line-height: 20px;
  14. margin-right: 16px;
  15. font-size: 14px;
  16. font-family: PingFangSC, PingFangSC-Medium;
  17. font-weight: 500;
  18. text-align: center;
  19. color: #666666;
  20. }
  21. .identify-btn {
  22. background: #fff;
  23. border-color: #308eff;
  24. color: #308eff;
  25. &.active {
  26. background: #308eff;
  27. color: #fff;
  28. }
  29. }
  30. }
  31. .credit-query-content {
  32. width: 100%;
  33. margin-top: 10px;
  34. // border: 1px solid #eeeeee;
  35. .title-area {
  36. width: 100%;
  37. background: #ffffff;
  38. padding: 20px;
  39. .stitle {
  40. font-size: 22px;
  41. font-weight: 600;
  42. color: #333;
  43. }
  44. .stips {
  45. font-size: 12px;
  46. color: #919aa7;
  47. margin-top: 10px;
  48. }
  49. .select-area {
  50. width: 164px;
  51. height: 44px;
  52. margin-top: 16px;
  53. }
  54. }
  55. .list-empty {
  56. width: 100%;
  57. height: 320px;
  58. margin-top: 10px;
  59. display: flex;
  60. flex-direction: column;
  61. align-items: center;
  62. justify-content: center;
  63. background: #ffffff;
  64. img {
  65. width: 154px;
  66. height: 154px;
  67. }
  68. span {
  69. margin-top: -20px;
  70. height: 20px;
  71. line-height: 20px;
  72. font-size: 14px;
  73. font-family: PingFangSC, PingFangSC-Regular;
  74. color: #999999;
  75. }
  76. }
  77. .list {
  78. .cell {
  79. margin-top: 10px;
  80. width: 100%;
  81. height: 184px;
  82. background: white;
  83. padding: 0 20px;
  84. .top {
  85. width: 100%;
  86. height: 46px;
  87. display: flex;
  88. justify-content: space-between;
  89. align-items: center;
  90. box-shadow: 0px -1px 0px 0px rgba(136, 136, 136, 0.1);
  91. border-bottom: 1px solid #ededed;
  92. .left {
  93. font-size: 15px;
  94. font-weight: 500;
  95. color: #333333;
  96. }
  97. .right {
  98. .status {
  99. width: 58px;
  100. height: 20px;
  101. border-radius: 1px;
  102. border: 1px solid #999999;
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. p {
  107. color: #999999;
  108. font-size: 10px;
  109. font-weight: 500;
  110. line-height: 14px;
  111. transform-origin: center;
  112. transform: scale(0.833);
  113. }
  114. &.ok {
  115. border: 1px solid #308eff;
  116. p {
  117. color: #308eff;
  118. }
  119. }
  120. &.green {
  121. border: 1px solid #27bb6f;
  122. p {
  123. color: #27BB6F;
  124. }
  125. }
  126. }
  127. .rightWord {
  128. font-size: 12px;
  129. font-weight: 600;
  130. color: #666666;
  131. span {
  132. font-size: 12px;
  133. font-weight: 600;
  134. color: #FE5F00;
  135. }
  136. }
  137. }
  138. }
  139. }
  140. .cBody {
  141. width: 100%;
  142. height: 138px;
  143. display: flex;
  144. justify-content: space-between;
  145. align-items: center;
  146. .left {
  147. width: 520px;
  148. p {
  149. height: 23px;
  150. font-size: 13px;
  151. font-weight: 400;
  152. color: #666666;
  153. line-height: 23px;
  154. }
  155. .p1 span {
  156. color: #308EFF;
  157. }
  158. .p2 span {
  159. text-decoration: underline;
  160. cursor: pointer;
  161. }
  162. .p4, .p5, .p6, .p7 {
  163. font-size: 14px;
  164. font-weight: 400;
  165. color: #333333;
  166. line-height: 23px;
  167. word-break: keep-all;
  168. white-space: nowrap;
  169. overflow: hidden;
  170. text-overflow: ellipsis;
  171. }
  172. .p4, .p5, .p6, .p7 {
  173. span {
  174. color: #999999;
  175. }
  176. .num {
  177. color: #FE5F00;
  178. }
  179. }
  180. .p2, .p3, .p4, .p5, .p6, .p7 {
  181. margin-top: 5px;
  182. }
  183. .p8, .p9 {
  184. .data {
  185. color: #0093FD;
  186. }
  187. .point {
  188. color: #0093FD;
  189. cursor: pointer;
  190. }
  191. }
  192. }
  193. .right {
  194. display: flex;
  195. .disAgree, .agree {
  196. cursor: pointer;
  197. width: 100px;
  198. height: 38px;
  199. background: white;
  200. border-radius: 2px;
  201. border: 1px solid #dfe2e6;
  202. display: flex;
  203. justify-content: center;
  204. align-items: center;
  205. p {
  206. height: 20px;
  207. font-size: 14px;
  208. font-weight: 500;
  209. color: #333333;
  210. line-height: 20px;
  211. }
  212. }
  213. .agree {
  214. margin-left: 14px;
  215. background: #308eff;
  216. box-shadow: 0px 2px 6px 0px rgba(48, 142, 255, 0.3);
  217. p {
  218. color: white;
  219. }
  220. }
  221. .userInfo {
  222. margin-right: 30px;
  223. font-size: 0;
  224. display: flex;
  225. flex-direction: column;
  226. justify-content: center;
  227. align-items: center;
  228. img {
  229. width: 54px;
  230. height: 54px;
  231. border-radius: 50%;
  232. }
  233. .uname {
  234. margin-top: 5px;
  235. height: 18px;
  236. font-size: 13px;
  237. font-weight: 400;
  238. color: #333333;
  239. line-height: 18px;
  240. }
  241. }
  242. }
  243. }
  244. }
  245. .bottomArea {
  246. margin-top: 10px;
  247. height: 70px;
  248. background: white;
  249. display: flex;
  250. justify-content: center;
  251. align-items: center;
  252. }
  253. }
  254. }