index.less 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. .MsgProcessDrawer {
  2. .drawerHeader {
  3. display: flex;
  4. flex-direction: row;
  5. justify-content: flex-start;
  6. align-items: center;
  7. margin-bottom: 12px;
  8. .title {
  9. font-weight: 500;
  10. font-size: 16px;
  11. color: #17181A;
  12. &>span {
  13. display: inline-block;
  14. width: 24px;
  15. height: 24px;
  16. cursor: pointer;
  17. margin-right: 8px;
  18. border-radius: 4px;
  19. text-align: center;
  20. line-height: 20px;
  21. &>img {
  22. width: 16px;
  23. height: 16px;
  24. }
  25. &:hover {
  26. background: #E6EAF2;
  27. }
  28. }
  29. }
  30. }
  31. .msgInfo {
  32. display: flex;
  33. flex-direction: row;
  34. justify-content: space-between;
  35. align-items: center;
  36. height: 72px;
  37. background: #FFFFFF;
  38. border-radius: 8px;
  39. padding: 0 16px;
  40. margin-bottom: 16px;
  41. .left {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: flex-start;
  45. align-items: center;
  46. &>img {
  47. width: 32px;
  48. height: 32px;
  49. margin-right: 16px;
  50. }
  51. .detail {
  52. .msgtitle {
  53. height: 18px;
  54. line-height: 18px;
  55. font-weight: 500;
  56. font-size: 18px;
  57. color: #17181A;
  58. margin-bottom: 8px;
  59. }
  60. .date {
  61. height: 14px;
  62. line-height: 14px;
  63. font-weight: 400;
  64. font-size: 14px;
  65. color: #7A8599;
  66. }
  67. }
  68. }
  69. .right {
  70. position: relative;
  71. top: 12px;
  72. font-weight: 500;
  73. font-size: 14px;
  74. color: #FFAA33;
  75. }
  76. }
  77. .content {
  78. height:calc(100% - 126px);
  79. background: #FFFFFF;
  80. border-radius: 8px;
  81. overflow: scroll;
  82. }
  83. }
  84. .indexPage {
  85. height: 100%;
  86. min-width: 1180px;
  87. background: #f5f7fa;
  88. .pageContainer {
  89. display: flex;
  90. width: calc(100%);
  91. flex-direction: row;
  92. align-items: flex-start;
  93. justify-content: space-between;
  94. padding: 16px;
  95. // .profileCard {
  96. // display: flex;
  97. // flex-direction: column;
  98. // justify-content: flex-start;
  99. // padding: 32px;
  100. // background: #FFFFFF;
  101. // border-radius: 4px;
  102. // .wraper {
  103. // display: flex;
  104. // flex: 1;
  105. // .avatar {
  106. // width: 80px;
  107. // height: 80px;
  108. // margin-right: 24px;
  109. // img {
  110. // width: 100%;
  111. // }
  112. // }
  113. // .description {
  114. // width: calc(100% - 104px);
  115. // .rowOne {
  116. // display: flex;
  117. // flex: 1;
  118. // flex-direction: row;
  119. // justify-content: space-between;
  120. // align-items: flex-start;
  121. // padding-top: 16px;
  122. // .info {
  123. // .name {
  124. // height: 20px;
  125. // font-size: 20px;
  126. // font-family: SourceHanSansCN-Bold, SourceHanSansCN;
  127. // font-weight: bold;
  128. // color: #17181A;
  129. // line-height: 30px;
  130. // margin-bottom: 16px;
  131. // }
  132. // .baseInfo {
  133. // height: 14px;
  134. // font-size: 14px;
  135. // font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  136. // font-weight: 400;
  137. // color: #666E80;
  138. // line-height: 21px;
  139. // }
  140. // }
  141. // .staffBaseInfo {
  142. // display: flex;
  143. // flex: 1;
  144. // flex-direction: row;
  145. // justify-content: flex-end;
  146. // align-items: flex-start;
  147. // .staffBaseInfoSpan {
  148. // display: flex;
  149. // flex-direction: column;
  150. // justify-content: center;
  151. // align-items: center;
  152. // .spanName {
  153. // height: 14px;
  154. // font-size: 14px;
  155. // font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  156. // font-weight: 400;
  157. // color: #666E80;
  158. // line-height: 14px;
  159. // margin-bottom: 16px;
  160. // }
  161. // .spanValue {
  162. // height: 20px;
  163. // font-size: 20px;
  164. // font-family: SourceHanSansCN-Bold, SourceHanSansCN;
  165. // font-weight: bold;
  166. // color: #17181A;
  167. // line-height: 20px;
  168. // &.status {
  169. // color: #FFB54D;
  170. // }
  171. // }
  172. // }
  173. // .Divider {
  174. // height: 24px;
  175. // margin-left: 5%;
  176. // margin-right: 5%;
  177. // margin-top: 10px;
  178. // }
  179. // }
  180. // }
  181. // .rowTwo {
  182. // display: flex;
  183. // flex: 1;
  184. // margin-top: 45px;
  185. // flex-direction: row;
  186. // justify-content: flex-start;
  187. // align-items: center;
  188. // .medicalInfoSpan {
  189. // display: flex;
  190. // width: 20%;
  191. // height: 45px;
  192. // flex-direction: column;
  193. // align-items: flex-start;
  194. // margin-right: 10%;
  195. // .span {
  196. // height: 14px;
  197. // font-size: 14px;
  198. // font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  199. // font-weight: 400;
  200. // color: #666E80;
  201. // line-height: 14px;
  202. // margin-bottom: 16px;
  203. // span {
  204. // color: #17181A;
  205. // }
  206. // &:last-child {
  207. // margin-bottom: 0;
  208. // }
  209. // }
  210. // &:first-child {
  211. // width: 40%;
  212. // }
  213. // &:last-child {
  214. // margin-right: 0;
  215. // }
  216. // }
  217. // }
  218. // }
  219. // }
  220. // .profileFooter {
  221. // display: flex;
  222. // flex-direction: row;
  223. // justify-content: space-between;
  224. // padding-top: 25px;
  225. // margin-top: 32px;
  226. // border-top: 1px solid #DFE3EB;
  227. // .flowInstruction {
  228. // height: 14px;
  229. // font-size: 14px;
  230. // font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  231. // font-weight: 400;
  232. // color: #17181A;
  233. // line-height: 14px;
  234. // cursor: pointer;
  235. // &::before {
  236. // position: relative;
  237. // display: inline-block;
  238. // content: '';
  239. // top: 2px;
  240. // width: 16px;
  241. // height: 16px;
  242. // margin-right: 8px;
  243. // // background-image: url('../../../../public/images/alert.png');
  244. // // background-size: cover;
  245. // }
  246. // }
  247. // .action {
  248. // display: flex;
  249. // flex-direction: row;
  250. // .editProfile {
  251. // height: 14px;
  252. // font-size: 14px;
  253. // font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  254. // font-weight: 400;
  255. // color: #26334D;
  256. // line-height: 14px;
  257. // margin-right: 32px;
  258. // cursor: pointer;
  259. // &::before {
  260. // position: relative;
  261. // display: inline-block;
  262. // content: '';
  263. // top: 3px;
  264. // width: 16px;
  265. // height: 16px;
  266. // margin-right: 8px;
  267. // // background-image: url('../../../../public/images/box.png');
  268. // // background-size: cover;
  269. // }
  270. // }
  271. // .qualificationApply {
  272. // height: 14px;
  273. // font-size: 14px;
  274. // font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  275. // font-weight: 400;
  276. // color: #26334D;
  277. // line-height: 14px;
  278. // cursor: pointer;
  279. // &::before {
  280. // position: relative;
  281. // display: inline-block;
  282. // content: '';
  283. // top: 3px;
  284. // width: 16px;
  285. // height: 16px;
  286. // margin-right: 8px;
  287. // // background-image: url('../../../../public/images/blueFile.png');
  288. // // background-size: cover;
  289. // }
  290. // }
  291. // }
  292. // }
  293. // }
  294. // .cardTwo {
  295. // display: flex;
  296. // flex-direction: row;
  297. // padding-top: 16px;
  298. // margin-bottom: 16px;
  299. // }
  300. // .cardThree {
  301. // display: flex;
  302. // flex-direction: row;
  303. // margin-bottom: 16px;
  304. // }
  305. .left {
  306. width: calc(100% - 454px);
  307. height: calc(100vh - 80px);
  308. min-height: 686px;
  309. padding: 16px;
  310. border-radius: 4px;
  311. background: #fff;
  312. .leftTitle {
  313. height: 24px;
  314. line-height: 24px;
  315. font-size: 24px;
  316. font-weight: bold;
  317. color: #17181a;
  318. margin-bottom: 12px;
  319. }
  320. .leftTitleSub {
  321. font-size: 14px;
  322. font-weight: 400;
  323. color: #525866;
  324. display: -webkit-box;
  325. -webkit-line-clamp: 2;
  326. -webkit-box-orient: vertical;
  327. overflow: hidden;
  328. text-overflow: ellipsis;
  329. }
  330. .leftContent {
  331. display: flex;
  332. width: 100%;
  333. height: calc(100% - 112px);
  334. justify-content: center;
  335. align-items: center;
  336. margin-top: 16px;
  337. overflow: hidden;
  338. .imgWrap {
  339. display: flex;
  340. justify-content: center;
  341. align-items: center;
  342. width: 100%;
  343. height: 100%;
  344. background-size: cover !important;
  345. background-repeat: no-repeat !important;
  346. &>img {
  347. width: 810px;
  348. transition: all 0.3s linear;
  349. }
  350. }
  351. /* 当屏幕宽度小于或等于 600px */
  352. @media screen and (max-width: 1250px) {
  353. .imgWrap>img {
  354. width: 600px;
  355. }
  356. }
  357. /* 当屏幕宽度小于或等于 600px */
  358. @media screen and (min-width: 1250px) and (max-width: 1360px) {
  359. .imgWrap>img {
  360. width: 700px;
  361. }
  362. }
  363. /* 当屏幕宽度在 601px 到 900px */
  364. @media screen and (min-width: 1360px) and (max-width: 1500px) {
  365. .imgWrap>img {
  366. width: 800px;
  367. }
  368. }
  369. /* 当屏幕宽度大于 900px */
  370. @media screen and (min-width: 1500px) and (max-width: 1760px) {
  371. .imgWrap>img {
  372. width: 900px;
  373. }
  374. }
  375. /* 当屏幕宽度大于 900px */
  376. @media screen and (min-width: 1760px) and (max-width: 1920px) {
  377. .imgWrap>img {
  378. width: 1000px;
  379. }
  380. }
  381. /* 当屏幕宽度大于 900px */
  382. @media screen and (min-width: 1960px) and (max-width: 2000px) {
  383. .imgWrap>img {
  384. width: 1200px;
  385. }
  386. }
  387. /* 当屏幕宽度大于 900px */
  388. @media screen and (min-width: 2000px) {
  389. .imgWrap>img {
  390. width: 1400px;
  391. }
  392. }
  393. }
  394. }
  395. .right {
  396. width: 434px;
  397. min-height: 686px;
  398. height: calc(100vh - 80px);
  399. .cardOne {
  400. position: relative;
  401. width: 100%;
  402. height: 132px;
  403. padding: 16px;
  404. background: linear-gradient(180deg, #ebf2fc 0%, #fcfeff 100%);
  405. box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.02);
  406. border-radius: 4px;
  407. border: 1px solid #f7fbff;
  408. .welcomBg {
  409. position: absolute;
  410. z-index: 1;
  411. top: 0;
  412. left: 0;
  413. width: 100%;
  414. height: 100%;
  415. }
  416. .inner {
  417. position: relative;
  418. z-index: 9;
  419. width: 100%;
  420. height: 100%;
  421. .userId {
  422. position: absolute;
  423. top: -7px;
  424. right: -15.5px;
  425. font-size: 14px;
  426. color: #5c7599;
  427. height: 24px;
  428. padding-left: 16px;
  429. padding-right: 8px;
  430. font-weight: 500;
  431. background: linear-gradient(180deg, #e8f1fc 0%, #fcfeff 100%);
  432. border-radius: 100px 0px 0px 100px;
  433. opacity: 0.8;
  434. border: 1px solid #f7fbff;
  435. }
  436. .cardOneTitle {
  437. height: 24px;
  438. font-size: 24px;
  439. font-weight: bold;
  440. color: #17181a;
  441. margin-bottom: 25px;
  442. }
  443. .content {
  444. .row {
  445. display: flex;
  446. height: 16px;
  447. flex-direction: row;
  448. align-items: center;
  449. overflow: hidden;
  450. text-overflow: ellipsis;
  451. white-space: nowrap;
  452. .label {
  453. width: 50%;
  454. font-size: 14px;
  455. color: #17181a;
  456. text-align: left;
  457. &>img {
  458. position: relative;
  459. top: -1px;
  460. width: 16px;
  461. height: 16px;
  462. margin-right: 4px;
  463. }
  464. &>span {
  465. color: #7a8599;
  466. padding-right: 16px;
  467. }
  468. }
  469. &:last-child {
  470. margin-top: 14px;
  471. }
  472. }
  473. }
  474. }
  475. }
  476. .cardTwo {
  477. margin-top: 16px;
  478. }
  479. .cardThree {
  480. // height: calc(100% - 340px);
  481. margin-top: 16px;
  482. border-radius: 4px;
  483. background-color: #fff;
  484. }
  485. }
  486. }
  487. }