style.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. .applyDrawer {
  2. .applyDrawer-topBar {
  3. display: flex;
  4. flex-direction: row;
  5. justify-content: space-between;
  6. align-items: center;
  7. margin-bottom: 16px;
  8. .applyDrawer-topBar-title {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: flex-start;
  12. align-items: center;
  13. font-weight: 500;
  14. font-size: 16px;
  15. color: #17181A;
  16. .closeIcon {
  17. display: inline-flex;
  18. justify-content: center;
  19. align-items: center;
  20. width: 24px;
  21. height: 24px;
  22. border-radius: 4px;
  23. margin-right: 8px;
  24. cursor: pointer;
  25. &:hover {
  26. background-color: #E6EAF2;
  27. }
  28. }
  29. }
  30. .btnGroup {
  31. &>span {
  32. display: inline-block;
  33. text-align: center;
  34. cursor: pointer;
  35. width: 56px;
  36. height: 24px;
  37. line-height: 21px;
  38. margin-right: 8px;
  39. font-weight: 400;
  40. font-size: 14px;
  41. color: #17181A;
  42. background: #FAFCFF;
  43. border-radius: 4px;
  44. border: 1px solid #DAE2F2;
  45. &.reject {
  46. width: auto;
  47. min-width: 56px;
  48. color: #FFFFFF;
  49. background: #FF4D6A;
  50. }
  51. &.commit {
  52. width: auto;
  53. min-width: 56px;
  54. color: #FFFFFF;
  55. background: #3377FF;
  56. }
  57. &:last-child {
  58. margin-right: 0;
  59. }
  60. }
  61. }
  62. }
  63. .drawer-content {
  64. max-height: calc(100vh - 72px);
  65. overflow-y: scroll;
  66. .personInfo {
  67. display: flex;
  68. flex-direction: row;
  69. justify-content: flex-start;
  70. align-items: center;
  71. height: 78px;
  72. padding: 11px 16px;
  73. background: #FFFFFF;
  74. border-radius: 4px;
  75. margin-bottom: 16px;
  76. .avator {
  77. width: 56px;
  78. height: 56px;
  79. margin-right: 16px;
  80. border-radius: 50%;
  81. overflow: hidden;
  82. background: #F2F7FF;
  83. border: 1px solid #FFFFFF;
  84. &>img {
  85. width: 100%;
  86. height: 100%;
  87. }
  88. }
  89. .personInfo-detail {
  90. .name {
  91. font-weight: bold;
  92. font-size: 20px;
  93. height: 20px;
  94. color: #17181A;
  95. line-height: 20px;
  96. margin-bottom: 12px;
  97. &>img {
  98. position: relative;
  99. top: -2px;
  100. width: 16px;
  101. height: 16px;
  102. margin-left: 8px;
  103. }
  104. }
  105. .personInfo-detail-sub {
  106. font-weight: 400;
  107. font-size: 14px;
  108. height: 14px;
  109. color: #525866;
  110. line-height: 14px;
  111. }
  112. }
  113. }
  114. .qualificationInfo {
  115. padding: 16px;
  116. background: #FFFFFF;
  117. border-radius: 4px;
  118. margin-bottom: 16px;
  119. padding-bottom: 8px;
  120. .qualificationInfo-title {
  121. font-weight: 500;
  122. font-size: 16px;
  123. height: 16px;
  124. color: #17181A;
  125. line-height: 16px;
  126. margin-bottom: 16px;
  127. }
  128. .qualificationInfo-tagWrapper {
  129. display: flex;
  130. flex-direction: row;
  131. justify-content: flex-start;
  132. align-items: center;
  133. flex-wrap: wrap;
  134. .qualificationInfo-tagWrapper-tag {
  135. width: 340px;
  136. font-weight: 400;
  137. height: 14px;
  138. font-size: 14px;
  139. color: #525866;
  140. line-height: 14px;
  141. margin-bottom: 12px;
  142. margin-right: 8px;
  143. &>span {
  144. display: inline-block;
  145. color: #17181A;
  146. }
  147. &:nth-child(3n) {
  148. margin-right: 0;
  149. }
  150. }
  151. }
  152. .qualificationInfo-fileWrapper {
  153. display: flex;
  154. flex-direction: row;
  155. flex-wrap: wrap;
  156. justify-content: flex-start;
  157. align-items: center;
  158. margin-top: 4px;
  159. .qualificationInfo-fileItem {
  160. position: relative;
  161. display: flex;
  162. width: 100%;
  163. margin-right: 8px;
  164. margin-bottom: 8px;
  165. flex-direction: row;
  166. justify-content: flex-start;
  167. align-items: center;
  168. width: 340px;
  169. height: 48px;
  170. background: #F7F9FC;
  171. border-radius: 4px;
  172. padding: 0 12px;
  173. &>img {
  174. width: 20px;
  175. height: 20px;
  176. }
  177. .downloadBtn {
  178. display: flex;
  179. cursor: pointer;
  180. justify-content: center;
  181. align-items: center;
  182. position: absolute;
  183. width: 16px;
  184. height: 16px;
  185. padding: 2px;
  186. top: 16px;
  187. right: 12px;
  188. &:hover {
  189. color: #3376FE;
  190. }
  191. }
  192. .qualificationInfo-fileItem-detail {
  193. margin-left: 8px;
  194. .qualificationInfo-fileItem-detail-name {
  195. font-weight: 500;
  196. font-size: 14px;
  197. height: 14px;
  198. color: #17181A;
  199. line-height: 14px;
  200. margin-bottom: 4px;
  201. }
  202. .qualificationInfo-fileItem-detail-sub {
  203. width: 200;
  204. font-weight: 400;
  205. font-size: 12px;
  206. height: 12px;
  207. color: #7A8599;
  208. line-height: 12px;
  209. white-space: nowrap;
  210. overflow: hidden;
  211. text-overflow: ellipsis;
  212. }
  213. }
  214. &:nth-child(3n) {
  215. margin-right: 0;
  216. }
  217. }
  218. }
  219. }
  220. .qualificationInfo-apply {
  221. padding: 16px;
  222. background: #FFFFFF;
  223. border-radius: 4px;
  224. margin-top: 16px;
  225. .editContent-header-title {
  226. display: flex;
  227. width: 100%;
  228. flex-direction: row;
  229. justify-content: space-between;
  230. align-items: center;
  231. font-weight: bold;
  232. font-size: 16px;
  233. height: 16px;
  234. line-height: 16px;
  235. color: #17181A;
  236. margin-bottom: 16px;
  237. }
  238. .editContent-header-title-sub {
  239. display: flex;
  240. flex-direction: row;
  241. justify-content: flex-start;
  242. align-items: center;
  243. &>div {
  244. display: flex;
  245. flex-direction: row;
  246. justify-content: flex-start;
  247. align-items: center;
  248. width: 347px;
  249. font-weight: 400;
  250. font-size: 14px;
  251. height: 14px;
  252. color: #525866;
  253. line-height: 14px;
  254. &>span {
  255. font-weight: 400;
  256. font-size: 14px;
  257. height: 14px;
  258. color: #17181A;
  259. line-height: 14px;
  260. white-space: nowrap;
  261. overflow: hidden;
  262. text-overflow: ellipsis;
  263. }
  264. }
  265. }
  266. .editContent-header-title-authStandard {
  267. position: relative;
  268. background: #F7F9FC;
  269. border-radius: 4px;
  270. min-height: 56px;
  271. padding-right: 64px;
  272. padding: 6px 12px;
  273. font-weight: 400;
  274. font-size: 14px;
  275. color: #17181A;
  276. line-height: 18px;
  277. margin-top: 12px;
  278. border: 1px solid #DAE4F2;
  279. &::after {
  280. position: absolute;
  281. content: '';
  282. top: 8px;
  283. right: 12px;
  284. display: inline-block;
  285. width: 40px;
  286. height: 40px;
  287. background: url('../../../../static/shouquanyiju.png');
  288. background-size: contain;
  289. background-repeat: no-repeat;
  290. }
  291. }
  292. .editContent-header-title-detail {
  293. position: relative;
  294. top: 2px;
  295. display: flex;
  296. flex-direction: row;
  297. justify-content: flex-start;
  298. align-items: flex-start;
  299. border-radius: 4px;
  300. max-height: 72px;
  301. margin-top: 12px;
  302. margin-bottom: 12px;
  303. &>span {
  304. display: inline-block;
  305. font-weight: 400;
  306. font-size: 14px;
  307. height: 14px;
  308. line-height: 14px;
  309. color: #525866;
  310. }
  311. &>div {
  312. position: relative;
  313. top: -2px;
  314. overflow: hidden;
  315. white-space: nowrap;
  316. text-overflow: ellipsis;
  317. font-weight: 400;
  318. font-size: 14px;
  319. color: #17181A;
  320. line-height: 18px;
  321. }
  322. }
  323. .appendix {
  324. font-weight: 400;
  325. height: 14px;
  326. line-height: 14px;
  327. font-size: 14px;
  328. color: #525866;
  329. }
  330. }
  331. .deptOpinion {
  332. padding: 16px;
  333. background: #FFFFFF;
  334. border-radius: 4px;
  335. margin-top: 16px;
  336. .deptOpinion-title {
  337. font-weight: 500;
  338. font-size: 16px;
  339. height: 16px;
  340. color: #17181A;
  341. line-height: 16px;
  342. margin-bottom: 16px;
  343. }
  344. .time-info {
  345. display: flex;
  346. flex-direction: row;
  347. justify-content: flex-start;
  348. align-items: center;
  349. .info-tag {
  350. font-weight: 400;
  351. font-size: 14px;
  352. height: 14px;
  353. line-height: 14px;
  354. color: #525866;
  355. &>span {
  356. color: #17181A;
  357. }
  358. &:first-child {
  359. margin-right: 214px;
  360. }
  361. }
  362. }
  363. .time-wrapper {
  364. display: flex;
  365. flex-direction: row;
  366. justify-content: flex-start;
  367. align-items: center;
  368. margin-bottom: 20px;
  369. .type,
  370. .time {
  371. display: flex;
  372. flex-direction: column;
  373. justify-content: flex-start;
  374. align-items: flex-start;
  375. margin-right: 61px;
  376. &>span {
  377. font-weight: 400;
  378. font-size: 14px;
  379. height: 14px;
  380. color: #17181A;
  381. line-height: 14px;
  382. margin-bottom: 12px;
  383. }
  384. }
  385. }
  386. .manageOpinion-detail {
  387. display: flex;
  388. width: 100%;
  389. margin-top: 12px;
  390. flex-direction: row;
  391. justify-content: flex-start;
  392. align-items: flex-start;
  393. &>span {
  394. font-weight: 400;
  395. height: 14px;
  396. font-size: 14px;
  397. color: #525866;
  398. line-height: 14px;
  399. }
  400. &>div {
  401. position: relative;
  402. top: -2px;
  403. font-weight: 400;
  404. font-size: 14px;
  405. color: #17181A;
  406. line-height: 18px;
  407. }
  408. }
  409. }
  410. }
  411. }
  412. .QualificationApproval {
  413. .pageContent {
  414. padding: 16px;
  415. background: #FFFFFF;
  416. border-radius: 4px;
  417. .toolBar {
  418. display: flex;
  419. flex-direction: row;
  420. justify-content: space-between;
  421. align-items: center;
  422. margin-bottom: 16px;
  423. .filter {
  424. display: flex;
  425. flex-direction: row;
  426. justify-content: flex-start;
  427. align-items: center;
  428. .filterItem {
  429. display: flex;
  430. flex-direction: row;
  431. justify-content: center;
  432. align-items: center;
  433. }
  434. }
  435. .btnGroup {
  436. .import,
  437. .export {
  438. cursor: pointer;
  439. display: inline-block;
  440. font-size: 14px;
  441. font-weight: 400;
  442. color: #17181A;
  443. line-height: 24px;
  444. padding: 0 14px;
  445. margin-right: 8px;
  446. background: #FAFCFF;
  447. border-radius: 4px;
  448. border: 1px solid #DAE2F2;
  449. }
  450. .add {
  451. cursor: pointer;
  452. display: inline-block;
  453. font-size: 14px;
  454. font-weight: 400;
  455. color: #FFFFFF;
  456. line-height: 24px;
  457. padding: 0 14px;
  458. background: #3377FF;
  459. border-radius: 4px;
  460. }
  461. }
  462. }
  463. }
  464. }