boxClass.scss 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. .work-item {
  2. margin-bottom: 12px;
  3. &.last-enter {
  4. .work-line .line-box::after {
  5. height: calc(100% - 26px);
  6. }
  7. }
  8. position: relative;
  9. &.has-bottom-btn {
  10. margin-bottom: 52px;
  11. .enter-btn {
  12. width: calc(100% - 22px);
  13. position: absolute;
  14. left: 22px;
  15. bottom: -52px;
  16. height: 40px;
  17. line-height: 40px;
  18. .btn {
  19. width: 100%;
  20. height: 40px;
  21. line-height: 40px;
  22. }
  23. }
  24. }
  25. &.dark {
  26. .work-info {
  27. background: #fff;
  28. border-color: rgba(218, 218, 218, 0.57);
  29. .card-item-title {
  30. color: #C3C3C3;
  31. .dotted {
  32. background: #C3C3C3;
  33. }
  34. }
  35. .service-name {
  36. color: #888888;
  37. }
  38. .item-table ::v-deep {
  39. border-color: rgba(218, 218, 218, 0.57);
  40. border-bottom: 0;
  41. .el-table .el-table__header th.el-table__cell {
  42. background: #F9F9F9 !important;
  43. }
  44. .el-table tr {
  45. background: #fff;
  46. }
  47. .el-table thead {
  48. color: #CCCCCC;
  49. }
  50. .el-table td.el-table__cell {
  51. border-color: #DADADA;
  52. }
  53. &.has-sub-title .el-table__header .el-table__cell:first-child {
  54. border-color: rgba(218, 218, 218, 0.57);
  55. }
  56. &.has-sub-title .el-table,
  57. &.has-sub-title .el-table__header,
  58. &.has-sub-title .el-table td.el-table__cell,
  59. &.has-sub-title .el-table__row .el-table__cell:first-child {
  60. border-color: rgba(218, 218, 218, 0.57);
  61. }
  62. &.has-sub-title .el-table__row .el-table__cell:first-child {
  63. border-color: rgba(218, 218, 218, 0.57);
  64. background: #FAFAFA;
  65. }
  66. &.has-sub-title {
  67. // border: none;
  68. border: 1px solid rgba(218, 218, 218, 0.57);
  69. .el-table, .el-table__header {
  70. border-bottom: 0;
  71. }
  72. }
  73. &.has-sub-title .remark-text {
  74. border-color: rgba(218, 218, 218, 0.57);
  75. }
  76. &.no-wrap-table {
  77. border: none;
  78. }
  79. }
  80. .prescription-box .prescription-item .sub-name {
  81. color: rgba(102, 102, 102);
  82. }
  83. .step-3-info .step-info-item .info-serve-r {
  84. color: rgba(102, 102, 102, 0.4);
  85. background: rgba(102, 102, 102, 0.05);
  86. }
  87. .prescription-box {
  88. .desc {
  89. color: rgba(0, 0, 0, 0.3);
  90. background: #FAFAFA;
  91. span {
  92. color: #BBBBBB;
  93. }
  94. }
  95. }
  96. }
  97. .prescription-result {
  98. // border: 0.5px solid rgba(218, 218, 218, 0.57);
  99. border: none;
  100. .result-index {
  101. background: #DDDDDD;
  102. }
  103. .result-title .title-item .name {
  104. color: #CCCCCC;
  105. }
  106. .result-title .title-item .value {
  107. color: #AAAAAA;
  108. }
  109. }
  110. .work-line {
  111. .line-box::after {
  112. background: #C3C3C3;
  113. }
  114. .line-dotted {
  115. background: #DDDDDD;
  116. .dotted-inset {
  117. background: #C3C3C3;
  118. }
  119. }
  120. }
  121. }
  122. .work-line {
  123. position: absolute;
  124. left: 0;
  125. top: 20px;
  126. height: 100%;
  127. .line-box {
  128. position: relative;
  129. height: 100%;
  130. &::after {
  131. content: "";
  132. position: absolute;
  133. top: 4.5px;
  134. left: 5px;
  135. width: 1px;
  136. height: calc(100% + 20px);
  137. background: #2199f8;
  138. }
  139. }
  140. .line-dotted {
  141. width: 10px;
  142. height: 10px;
  143. background: rgba(33, 153, 248, 0.2);
  144. border-radius: 50%;
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. .dotted-inset {
  149. width: 7px;
  150. height: 7px;
  151. background: #2199f8;
  152. border-radius: 50%;
  153. }
  154. }
  155. }
  156. .card-item-title {
  157. display: inline-flex;
  158. align-items: center;
  159. color: rgba(0, 0, 0, 0.8);
  160. font-size: 16px;
  161. .dotted {
  162. display: block;
  163. width: 3px;
  164. height: 10px;
  165. border-radius: 20px;
  166. background: #2199f8;
  167. margin-right: 10px;
  168. }
  169. .real-text {
  170. padding-left: 4px;
  171. font-size: 12px;
  172. color: #2199F8;
  173. }
  174. }
  175. .work-info {
  176. margin-left: 22px;
  177. background: #232323;
  178. border: 1px solid rgba(33, 153, 248, 0.57);
  179. border-radius: 5px;
  180. padding: 12px 0 12px 10px;
  181. position: relative;
  182. .step-box {
  183. position: absolute;
  184. right: 10px;
  185. top: 30px;
  186. }
  187. .todo-img {
  188. position: absolute;
  189. top: -1px;
  190. right: -1px;
  191. width: 46px;
  192. }
  193. .done-img {
  194. position: absolute;
  195. top: -1px;
  196. right: -1px;
  197. width: 30px;
  198. }
  199. .work-info-conetnt {
  200. padding-top: 6px;
  201. }
  202. .info-item {
  203. display: flex;
  204. align-items: center;
  205. .info-name {
  206. color: rgba(0, 0, 0, 0.2);
  207. flex: none;
  208. }
  209. .info-value {
  210. color: rgba(0, 0, 0, 0.4);
  211. padding-left: 12px;
  212. display: flex;
  213. align-items: center;
  214. &.primary-color {
  215. color: #2199f8;
  216. }
  217. .select-value {
  218. padding-left: 4px;
  219. }
  220. ::v-deep {
  221. .el-select__wrapper {
  222. box-shadow: 0 0 0 1px #2199F8 inset;
  223. background: none;
  224. height: 24px;
  225. min-height: 24px;
  226. padding: 4px 8px;
  227. .el-select__placeholder {
  228. color: #2199F8;
  229. }
  230. .el-select__caret {
  231. color: #2199F8;
  232. }
  233. }
  234. .date-info {
  235. height: 24px;
  236. .el-input__wrapper {
  237. box-shadow: 0 0 0 1px #2199F8 inset;
  238. background: none;
  239. .el-input__prefix {
  240. color: #2199F8;
  241. }
  242. .el-input__inner {
  243. color: #2199F8;
  244. }
  245. }
  246. }
  247. }
  248. }
  249. }
  250. .info-item + .info-item {
  251. // margin-top: 2px;
  252. &.time-picker {
  253. margin-top: 6px;
  254. }
  255. }
  256. .prescription-box {
  257. position: relative;
  258. padding-right: 10px;
  259. .desc {
  260. margin-top: 12px;
  261. border-radius: 4px;
  262. color: #999999;
  263. padding: 10px;
  264. background: #fff;
  265. span {
  266. color: #2199f8;
  267. }
  268. }
  269. .service-wrap {
  270. padding: 12px 0;
  271. .service-item {
  272. margin-top: 8px;
  273. display: flex;
  274. align-items: center;
  275. border: 1px solid #DDDDDD;
  276. padding: 0 12px;
  277. height: 48px;
  278. color: #000000;
  279. font-size: 14px;
  280. border-radius: 8px;
  281. .service-img {
  282. width: 32px;
  283. margin-right: 8px;
  284. border-radius: 50%;
  285. }
  286. .service-c {
  287. flex: 1;
  288. text-align: center;
  289. color: #666666;
  290. }
  291. }
  292. .service-bottom {
  293. padding-top: 12px;
  294. .service-btn {
  295. padding-top: 12px;
  296. width: 100%;
  297. .btn {
  298. width: 100%;
  299. }
  300. }
  301. }
  302. }
  303. .bottom-map {
  304. width: 100%;
  305. height: 150px;
  306. border-radius: 8px;
  307. }
  308. .prescription-item {
  309. padding-top: 12px;
  310. .prescription-chart {
  311. margin-top: 6px;
  312. border: 1px solid rgba(196, 196, 196, 0.8);
  313. border-radius: 5px;
  314. padding: 4px 0 8px 0;
  315. position: relative;
  316. z-index: 1;
  317. ::v-deep {
  318. .card-chart {
  319. width: calc(100vw - 60px - 40px);
  320. height: 160px;
  321. }
  322. }
  323. }
  324. .prescription-map {
  325. border: none;
  326. }
  327. .sub-name {
  328. color: #2199f8;
  329. font-size: 14px;
  330. }
  331. .edit-select {
  332. ::v-deep {
  333. .el-select__wrapper {
  334. box-shadow: 0 0 0 1px #2199F8 inset;
  335. background: #f1f9ff;
  336. }
  337. }
  338. }
  339. .recipe-item {
  340. .recipe-form {
  341. padding-top: 8px;
  342. }
  343. .form-box {
  344. border: 1px solid #2199F8;
  345. border-radius: 4px;
  346. padding: 20px 10px;
  347. width: 100%;
  348. position: relative;
  349. .form-index {
  350. position: absolute;
  351. left: 0;
  352. top: 0;
  353. padding: 0 6px;
  354. background: #2199F8;
  355. border-radius: 4px 0 4px 0;
  356. height: 18px;
  357. line-height: 18px;
  358. font-size: 12px;
  359. color: #fff;
  360. }
  361. .box-item {
  362. display: flex;
  363. align-items: center;
  364. justify-content: space-between;
  365. color: rgba(0, 0, 0, 0.4);
  366. .r-text {
  367. width: 140px;
  368. text-align: center;
  369. }
  370. }
  371. .input-box {
  372. padding: 8px 0 12px 0;
  373. ::v-deep {
  374. .el-input__wrapper {
  375. box-shadow: 0 0 0 1px #2199F8 inset;
  376. }
  377. .el-input__inner {
  378. color: #2199F8;
  379. }
  380. }
  381. }
  382. .text-center {
  383. ::v-deep {
  384. .el-input__inner {
  385. text-align: center;
  386. }
  387. }
  388. }
  389. .action-btn {
  390. .btn {
  391. flex: 1;
  392. width: calc(50% - 6px);
  393. }
  394. .delete-btn {
  395. color: #FF943D;
  396. background: rgba(255, 148, 61, 0.1);
  397. border: 1px solid #FF943D;
  398. }
  399. }
  400. .btn-group {
  401. padding-top: 12px;
  402. }
  403. .sub-item {
  404. padding-left: 10px;
  405. .has-sub {
  406. display: flex;
  407. flex-direction: column;
  408. align-items: center;
  409. .main-name {
  410. line-height: 20px;
  411. }
  412. .sub-name {
  413. font-size: 10px;
  414. color: rgba(129, 129, 129, 0.5);
  415. line-height: 14px;
  416. }
  417. }
  418. .colunm-sub {
  419. display: flex;
  420. align-items: center;
  421. .sub-name {
  422. font-size: 10px;
  423. color: rgba(129, 129, 129, 0.5);
  424. }
  425. }
  426. .r-text {
  427. width: 132px;
  428. text-align: center;
  429. font-size: 14px;
  430. color: #474747;
  431. }
  432. .price {
  433. ::v-deep {
  434. .el-input__wrapper {
  435. box-shadow: 0 0 0 1px #2199F8 inset;
  436. }
  437. .el-input__inner {
  438. color: #2199F8;
  439. }
  440. }
  441. }
  442. }
  443. .form-title {
  444. color: #008EFF;
  445. font-size: 14px;
  446. padding-top: 6px;
  447. }
  448. .box-item + .box-item {
  449. margin-top: 8px;
  450. }
  451. ::v-deep {
  452. .el-select__wrapper {
  453. box-shadow: 0 0 0 1px #2199F8 inset;
  454. .el-select__placeholder {
  455. color: #2199F8;
  456. text-align: center;
  457. }
  458. }
  459. }
  460. }
  461. .form-box + .form-box {
  462. margin-top: 8px;
  463. }
  464. }
  465. .one-btn {
  466. width: 100%;
  467. }
  468. }
  469. }
  470. .step-3-info {
  471. padding-top: 12px;
  472. .step-info-item {
  473. display: flex;
  474. justify-content: space-between;
  475. align-items: center;
  476. .info-serve-l {
  477. flex: 1;
  478. display: flex;
  479. align-items: center;
  480. color: rgba(0, 0, 0, 0.4);
  481. .type-name {
  482. flex: none;
  483. }
  484. .img-list {
  485. display: flex;
  486. .img-item {
  487. position: relative;
  488. .serve-img {
  489. width: 32px;
  490. height: 32px;
  491. object-fit: cover;
  492. border-radius: 50%;
  493. }
  494. .checked-icon {
  495. position: absolute;
  496. bottom: 0;
  497. right: 0;
  498. width: 14px;
  499. }
  500. }
  501. .img-item + .img-item {
  502. margin-left: 10px;
  503. }
  504. }
  505. }
  506. .info-serve-r {
  507. flex: none;
  508. color: #2199f8;
  509. font-size: 12px;
  510. border-radius: 20px;
  511. padding: 4px 12px;
  512. background: rgba(33, 153, 248, 0.12);
  513. }
  514. }
  515. .step-info-item + .step-info-item {
  516. padding-top: 12px;
  517. }
  518. }
  519. .item-table {
  520. margin-top: 8px;
  521. border: 1px solid rgba(33, 153, 248, 0.5);
  522. // border-top: 0;
  523. // border-bottom: 0;
  524. border-radius: 4px;
  525. color: #333333;
  526. &.has-wrap-table {
  527. ::v-deep {
  528. .el-table__row {
  529. .el-table__cell:first-child {
  530. background: #E0F2FF;
  531. border-right: 1px solid rgba(33, 153, 248, 0.5);
  532. }
  533. }
  534. .el-table__header {
  535. .el-table__cell:first-child{
  536. border-right: 1px solid rgba(33, 153, 248, 0.5);
  537. }
  538. }
  539. }
  540. }
  541. &.has-sub-title {
  542. border: none;
  543. ::v-deep {
  544. .el-table__cell {
  545. text-align: center;
  546. }
  547. .el-table__row {
  548. // .el-table__cell:first-child {
  549. // background: #E0F2FF;
  550. // border-right: 1px solid rgba(33, 153, 248, 0.5);
  551. // }
  552. }
  553. .el-table__header {
  554. border-bottom: 1px solid rgba(33, 153, 248, 0.5);
  555. // .el-table__cell:first-child{
  556. // border-right: 1px solid rgba(33, 153, 248, 0.5);
  557. // }
  558. }
  559. .el-table {
  560. border: 1px solid rgba(33, 153, 248, 0.5);
  561. border-radius: 4px 4px 0 0 ;
  562. // border-bottom: 0;
  563. }
  564. }
  565. .remark-text {
  566. border: 1px solid rgba(33, 153, 248, 0.5);
  567. color: rgba(0, 0, 0, 0.3);
  568. height: 36px;
  569. line-height: 36px;
  570. padding: 0 6px;
  571. border-radius: 0 0 4px 4px;
  572. border-top: 0;
  573. }
  574. }
  575. &.no-wrap-table {
  576. border: none;
  577. }
  578. .table-l-title {
  579. height: 100%;
  580. }
  581. ::v-deep {
  582. .el-table {
  583. color: rgba(0, 0, 0, 0.4);
  584. }
  585. .el-table th.el-table__cell {
  586. padding: 4px 3px;
  587. }
  588. .el-table thead {
  589. color: rgba(33, 153, 248, 0.6);
  590. font-weight: normal !important;
  591. }
  592. .el-table .el-table__header th.el-table__cell {
  593. background: #e0f2ff !important;
  594. }
  595. .el-table tr {
  596. background: #f1f9ff;
  597. }
  598. .el-table--default .el-table__cell {
  599. padding: 4px 0;
  600. }
  601. .el-table--default .cell {
  602. padding: 0px 2px;
  603. font-size: 11px;
  604. font-weight: normal;
  605. }
  606. .el-table__header, .el-table__body {
  607. width: auto !important;
  608. }
  609. .el-table__header .cell {
  610. line-height: 13px;
  611. }
  612. .el-table td.el-table__cell {
  613. border-color: rgba(33, 153, 248, 0.5);
  614. }
  615. }
  616. }
  617. }
  618. }