index.less 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. flex-grow: 1;
  6. .a {
  7. display: flex;
  8. flex-direction: column;
  9. height: 81vh;
  10. background-color: #ffffff;
  11. position: relative;
  12. margin: 2vw 0 0 0;
  13. .scroll-view {
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. bottom: 0;
  19. .list-scroll-view {
  20. display: flex;
  21. flex-wrap: wrap;
  22. align-content: flex-start;
  23. justify-content: space-between;
  24. .a_1 {
  25. width: 96vw;
  26. position: relative;
  27. .image {
  28. width: 96vw;
  29. height: 160px;
  30. }
  31. .a_1_info {
  32. position: absolute;
  33. top: 30vw;
  34. width: 92vw;
  35. margin: 0 2vw;
  36. .a_1_1 {
  37. background-color: #ffffff;
  38. margin: 0 0 3vw 0;
  39. border-radius: 5px;
  40. padding: 2vw;
  41. box-shadow: 0 0 1vw #cccccc;
  42. .name {
  43. font-size: 18px;
  44. font-weight: bold;
  45. margin: 0 0 2vw 0;
  46. }
  47. .status {
  48. margin: 0 0 2vw 0;
  49. text {
  50. font-size: 16px;
  51. color: #ffffff;
  52. padding: 1vw 2vw;
  53. background-color: #ff0000;
  54. border-radius: 10px;
  55. }
  56. }
  57. .other {
  58. .other_1 {
  59. margin: 0 0 1vw 0;
  60. font-size: 16px;
  61. color: #858585;
  62. .icon {
  63. margin: 0 2vw 0 0;
  64. }
  65. text:nth-child(3) {
  66. color: #000000;
  67. }
  68. }
  69. }
  70. }
  71. .a_1_2 {
  72. .a_1_2t {
  73. margin: 0 0 1vw 0;
  74. .txt {
  75. font-size: 16px;
  76. margin: 0 0 1vw 0;
  77. }
  78. .cont {
  79. font-size: 14px;
  80. color: #858585;
  81. text-indent: 1rem;
  82. }
  83. }
  84. }
  85. }
  86. }
  87. .b_1 {
  88. width: 96vw;
  89. .groupList {
  90. .title {
  91. display: flex;
  92. flex-direction: row;
  93. justify-content: space-between;
  94. font-size: 15px;
  95. }
  96. .project {
  97. .projectList {
  98. margin: 0 0 2vw 0;
  99. border-bottom: 1px solid #cccccc;
  100. .project_1 {
  101. display: flex;
  102. flex-direction: row;
  103. justify-content: space-between;
  104. margin: 0 0 2vw 0;
  105. .project_1_1 {
  106. color: #000000;
  107. font-size: 15px;
  108. }
  109. }
  110. .user {
  111. display: flex;
  112. flex-direction: row;
  113. justify-content: space-between;
  114. flex-wrap: wrap;
  115. .userList {
  116. text-align: center;
  117. border: 1px solid #cccccc;
  118. margin: 0 0 2vw 0;
  119. padding: 2vw;
  120. border-radius: 5px;
  121. box-shadow: 0 0 1vw #cccccc;
  122. width: 22vw;
  123. .icon {
  124. width: 50px;
  125. height: 50px;
  126. border-radius: 5px;
  127. }
  128. .name {
  129. text-align: center;
  130. font-size: 15px;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }
  138. .c_1 {
  139. width: 96vw;
  140. // height: 61vh;
  141. .c_top {
  142. display: flex;
  143. flex-direction: row;
  144. // background-color: #009cd8;
  145. padding: 3px;
  146. height: 34px;
  147. width: 94vw;
  148. button {
  149. background-color: #328d26;
  150. color: #fff;
  151. font-size: 12px;
  152. height: 34px;
  153. padding: 4px 12px;
  154. }
  155. .c_top_2 {
  156. width: 70vw;
  157. input {
  158. margin: 0 0 0 5px;
  159. background-color: #f1f1f1;
  160. height: 34px;
  161. flex-grow: 1;
  162. padding: 0 0 0 4px;
  163. }
  164. }
  165. }
  166. .c_buttom {
  167. flex-grow: 1;
  168. position: relative;
  169. margin: 8px 0 0 0;
  170. display: flex;
  171. flex-direction: column;
  172. height: 73vh;
  173. .scroll-view {
  174. position: absolute;
  175. top: 0;
  176. left: 0;
  177. right: 0;
  178. bottom: 0;
  179. .list-scroll-view {
  180. display: flex;
  181. flex-wrap: wrap;
  182. align-content: flex-start;
  183. flex-direction: column;
  184. justify-content: space-between;
  185. .list {
  186. width: 96vw;
  187. margin: 0 0 5px 0;
  188. .lists {
  189. box-shadow: 0 0 1vw #cccccc;
  190. .list_1 {
  191. border-radius: 3px;
  192. background-color: #328d26;
  193. padding: 5px 3px;
  194. color: #fff;
  195. text {
  196. margin: 0 5px;
  197. }
  198. }
  199. .list_2 {
  200. display: flex;
  201. flex-direction: row;
  202. border-radius: 3px;
  203. .one {
  204. width: 33vw;
  205. display: flex;
  206. flex-direction: row;
  207. font-size: 14px;
  208. text-align: center;
  209. padding: 8px 0;
  210. image {
  211. border-radius: 50%;
  212. width: 40px;
  213. height: 40px;
  214. }
  215. }
  216. .two {
  217. display: flex;
  218. flex-direction: column;
  219. text-align: center;
  220. width: 28vw;
  221. background-color: #fff;
  222. margin: 0 3px 5px 3px;
  223. box-shadow: 13px 0 8px -15px rgb(32, 32, 32),
  224. -13px 0 8px -15px rgb(32, 32, 32);
  225. border-radius: 0 0 5px 5px;
  226. .time {
  227. background-color: #328d26;
  228. border-radius: 0 0 5px 5px;
  229. color: #fff;
  230. padding: 3px;
  231. font-size: 14px;
  232. }
  233. .branch {
  234. font-size: 22px;
  235. padding: 2px 0 0 0;
  236. font-weight: 700;
  237. text {
  238. margin: 0 5px;
  239. }
  240. }
  241. }
  242. }
  243. }
  244. }
  245. .list_2 {
  246. margin: 0 0 8px 0;
  247. padding: 0 5px;
  248. width: 96vw;
  249. .lists {
  250. display: flex;
  251. flex-direction: row;
  252. border-bottom: 1px solid #999;
  253. padding: 8px 10px;
  254. .one_1 {
  255. color: rgb(63, 63, 63);
  256. }
  257. .one_2 {
  258. color: rgb(63, 63, 63);
  259. flex-grow: 1;
  260. text-align: right;
  261. }
  262. }
  263. }
  264. }
  265. }
  266. }
  267. }
  268. }
  269. }
  270. }
  271. .d_1 {
  272. width: 96vw;
  273. text-align: center;
  274. background-color: #f1f1f1;
  275. .list {
  276. width: 46vw;
  277. font-size: 14px;
  278. background-color: #ffffff;
  279. margin: 1vw;
  280. .time {
  281. background-color: #228B22;
  282. color: #ffffff;
  283. padding: 2vw 2vw 0 2vw;
  284. border-radius: 5px 5px 0px 0px;
  285. }
  286. .adress {
  287. background-color: #228B22;
  288. color: #ffffff;
  289. padding: 0 2vw 2vw 2vw;
  290. border-radius: 0px 0px 5px 5px;
  291. }
  292. .name {
  293. display: flex;
  294. flex-direction: row;
  295. justify-content: space-between;
  296. .icon {
  297. width: 10vw;
  298. height: 7vw;
  299. background-color: #228B22;
  300. padding: 1vw;
  301. line-height: 9vw;
  302. border-radius: 0px 0px 5px 5px;
  303. }
  304. }
  305. }
  306. }
  307. .d_2 {
  308. width: 96vw;
  309. text-align: center;
  310. background-color: #f1f1f1;
  311. .list {
  312. width: 96vw;
  313. font-size: 14px;
  314. background-color: #ffffff;
  315. margin-bottom: 2vw;
  316. .adress {
  317. background-color: #228B22;
  318. color: #ffffff;
  319. padding: 2vw;
  320. border-radius: 5px;
  321. }
  322. .name {
  323. display: flex;
  324. flex-direction: row;
  325. justify-content: space-around;
  326. text-align: center;
  327. .icon {
  328. display: flex;
  329. flex-wrap: wrap;
  330. width: 25vw;
  331. height: 13vw;
  332. background-color: #228B22;
  333. color: #ffffff;
  334. border-radius: 0px 0px 5px 5px;
  335. }
  336. .person {
  337. display: flex;
  338. flex-direction: column;
  339. .person_name {
  340. width: 100%;
  341. }
  342. }
  343. }
  344. .score {
  345. font-size: 18px;
  346. font-weight: 500;
  347. }
  348. }
  349. }
  350. .e_1 {
  351. width: 96vw;
  352. .btnList {
  353. width: 96vw;
  354. }
  355. }
  356. }
  357. }