rehabilitation_management.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887
  1. .flex-box {
  2. display: -webkit-box;
  3. /* OLD - iOS 6-, Safari 3.1-6 */
  4. /* OLD - Firefox 19- (buggy but mostly works) */
  5. display: -ms-flexbox;
  6. /* TWEENER - IE 10 */
  7. /* NEW - Chrome */
  8. display: flex;
  9. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  10. -webkit-box-pack: center;
  11. -ms-flex-pack: center;
  12. justify-content: center;
  13. -webkit-box-align: center;
  14. -ms-flex-align: center;
  15. align-items: center;
  16. -ms-flex-wrap: wrap;
  17. flex-wrap: wrap;
  18. }
  19. .flex-box-item {
  20. -webkit-box-flex: 1;
  21. /* OLD - iOS 6-, Safari 3.1-6 */
  22. -moz-box-flex: 1;
  23. /* OLD - Firefox 19- */
  24. -webkit-flex: 1;
  25. /* Chrome */
  26. -ms-flex: 1;
  27. /* IE 10 */
  28. width: 50%;
  29. /* For old syntax, otherwise collapses. */
  30. flex: 1;
  31. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  32. position: relative;
  33. }
  34. [flex-grow="2"] {
  35. -webkit-box-flex: 2;
  36. -ms-flex-positive: 2;
  37. flex-grow: 2;
  38. }
  39. [flex-grow="5"] {
  40. -webkit-box-flex: 5;
  41. -ms-flex-positive: 5;
  42. flex-grow: 5;
  43. }
  44. body,
  45. html,
  46. .c-container {
  47. height: 100%;
  48. }
  49. .rehabilition {
  50. /*height: 100%;*/
  51. overflow: hidden;
  52. /*overflow-y: scroll;*/
  53. /*padding-top: 49px;*/
  54. /*max-width: 1620px;*/
  55. margin: 0 auto;
  56. padding-bottom: 50px;
  57. }
  58. .nav-content-right {
  59. height: 100%;
  60. overflow: auto;
  61. }
  62. .search-left {
  63. border-right: solid 1px #d7dce6;
  64. background-color: #f5f5f5;
  65. height: 100%;
  66. }
  67. .mw400 {
  68. max-width: 400px;
  69. }
  70. .search-condition {
  71. padding: 20px 10px;
  72. border-bottom: solid 1px #d7dce6;
  73. }
  74. .search-condition p {
  75. font-size: 14px;
  76. margin-bottom: 15px;
  77. }
  78. .task-list {
  79. padding-left: 10px;
  80. overflow: hidden;
  81. }
  82. .task-list li {
  83. min-width: 90px;
  84. cursor: pointer;
  85. text-align: center;
  86. display: block;
  87. float: left;
  88. border-radius: 14px;
  89. font-size: 14px;
  90. margin-left: 20px;
  91. margin-bottom: 20px;
  92. color: #333333;
  93. border: solid 1px #d7dce6;
  94. padding: 3px 8px;
  95. }
  96. .task-list li.active {
  97. background-color: #12b7f5;
  98. color: #fff;
  99. }
  100. .btn-search {
  101. background-color: #12b7f5;
  102. color: #fff;
  103. border-radius: 0;
  104. width: 120px;
  105. margin-top: 30px;
  106. }
  107. .btn-search:hover,
  108. .btn-search:focus,
  109. .btn-search:active,
  110. .btn-search:hover:active {
  111. background-color: #1c9aca;
  112. color: #fff;
  113. outline: none;
  114. outline-color: transparent;
  115. }
  116. /*日历*/
  117. .calendar-content {
  118. margin: 0 auto;
  119. height: 100%;
  120. }
  121. /*图例注释*/
  122. .calendar-descript {
  123. padding: 15px 20px;
  124. background-color: #fff;
  125. }
  126. .calendar-descript span {
  127. vertical-align: middle;
  128. }
  129. .icon {
  130. width: 12px;
  131. height: 12px;
  132. vertical-align: middle;
  133. background-size: 100% 100%;
  134. background-repeat: no-repeat;
  135. display: inline-block;
  136. }
  137. .icon-blue {
  138. background-color: #12b7f5;
  139. border-radius: 2px;
  140. }
  141. .icon-green {
  142. background-color: #2dbe55;
  143. border-radius: 2px;
  144. }
  145. .icon-flag {
  146. background-image: url(../images/woderenwu_icon.png);
  147. background-size: 100% 100%;
  148. }
  149. .icon-shuaxin {
  150. background-image: url(../images/icon/shuaxin.png);
  151. }
  152. .icon-shuaxin:hover {
  153. background-image: url(../images/icon/shuaxin1.png);
  154. }
  155. .icon-back {
  156. background-image: url(../images/icon/fanhui_icon.png);
  157. }
  158. .icon-back:hover {
  159. background-image: url(../images/icon/fanhui02_icon.png);
  160. }
  161. .icon-check {
  162. background-image: url(../images/wancheng_icon.png);
  163. background-size: 100% 100%;
  164. }
  165. .icon-prev {
  166. background-image: url(../images/icon/houtui_icon.png);
  167. }
  168. .icon-next {
  169. background-image: url(../images/icon/qianjing_icon.png);
  170. }
  171. .icon-rili {
  172. background-image: url(../images/icon/rilibiao02_icon.png);
  173. }
  174. .rili:hover .icon-rili,
  175. .active .icon-rili {
  176. background-image: url(../images/icon/rilibiao_icon.png);
  177. }
  178. .icon-liebiao {
  179. background-image: url(../images/icon/shijianzhou_icon.png);
  180. }
  181. .shijianzhou:hover .icon-liebiao,
  182. .active .icon-liebiao {
  183. background-image: url(../images/icon/shijianzhou02_icon.png);
  184. }
  185. .icon-20 {
  186. width: 20px;
  187. height: 20px;
  188. }
  189. .icon-16 {
  190. width: 16px;
  191. height: 16px;
  192. }
  193. /*周期*/
  194. .calendar-week {
  195. background-color: #ebebf5;
  196. border: solid 1px #d7dce6;
  197. padding: 11px;
  198. }
  199. /*日期*/
  200. .calendar-days>.flex-box {
  201. border-bottom: 1px solid #d7dce6;
  202. border-right: 1px solid #D7DCE6;
  203. /*border-left: 1px solid #D7DCE6;*/
  204. }
  205. .calendar-day {
  206. height: 135px;
  207. border-left: 1px solid #d7dce6;
  208. cursor: pointer;
  209. position: relative;
  210. padding: 5px;
  211. width: 14.28571428%;
  212. /*border-bottom: 1px solid #d7dce6;*/
  213. }
  214. .calendar-days .calendar-day:first-child {
  215. border-left-width: 0;
  216. }
  217. .calendar-day:hover {
  218. -webkit-box-shadow: 0 0 0 1px #12b7f5 inset;
  219. box-shadow: 0 0 0 1px #12b7f5 inset;
  220. }
  221. .calendar-day.current-day {
  222. background-color: #ddf6fe;
  223. }
  224. .no-server {
  225. text-align: center;
  226. top: 50%;
  227. position: absolute;
  228. left: 0;
  229. right: 0;
  230. color: #c8c8c8;
  231. font-size: 18px;
  232. }
  233. /*彩带*/
  234. .coloured-ribbon {
  235. font-size: 12px;
  236. width: 22px;
  237. text-align: center;
  238. height: 40px;
  239. display: inline-block;
  240. padding-top: 8px;
  241. line-height: 1;
  242. color: #fff;
  243. }
  244. .coloured-box {
  245. top: 0;
  246. position: absolute;
  247. right: 5px;
  248. }
  249. .coloured-ribbon-blue {
  250. background-image: url(../images/biaoqian-lanse_img.png);
  251. background-position: center center;
  252. background-size: 100% 100%;
  253. background-repeat: no-repeat;
  254. }
  255. .coloured-ribbon-green {
  256. background-image: url(../images/biaoqian-lvse_img.png);
  257. background-position: center center;
  258. background-size: 100% 100%;
  259. background-repeat: no-repeat;
  260. margin-left: 5px;
  261. }
  262. .task-icon {
  263. position: absolute;
  264. left: 50px;
  265. top: 10px;
  266. min-height: 20px;
  267. }
  268. .task-icon .icon-check {
  269. position: absolute;
  270. right: -3px;
  271. bottom: 0;
  272. width: 15px;
  273. height: 15px;
  274. }
  275. .day-number {
  276. font-size: 28px;
  277. color: #999999;
  278. margin-bottom: 0;
  279. line-height: 1;
  280. }
  281. /*进度条*/
  282. .progress-box {
  283. position: absolute;
  284. bottom: 0;
  285. left: 0;
  286. right: 0;
  287. padding: 10px 5px;
  288. text-align: center;
  289. }
  290. .progress-box .progress {
  291. margin-bottom: 9px;
  292. background-color: #d7dce6;
  293. border-radius: 10px;
  294. position: relative;
  295. }
  296. .progress-box .progress>span {
  297. position: absolute;
  298. left: 0;
  299. right: 0;
  300. text-align: center;
  301. color: #333333;
  302. top: 2px;
  303. }
  304. .progress-box .progress-bar {
  305. background-color: #12b7f5;
  306. border-radius: 10px;
  307. }
  308. .progress-box .progress-bar-success {
  309. background-color: #2dbe55;
  310. border-radius: 10px;
  311. }
  312. /*页头*/
  313. /*max-width: 1620px;*/
  314. .page-title {
  315. /*position: fixed;
  316. top: 0;
  317. left: 0;
  318. right: 0;*/
  319. padding: 9px;
  320. border-bottom: 1px solid #d7dce6;
  321. z-index: 5;
  322. /*margin: 0 auto;*/
  323. background-color: #fff
  324. }
  325. .page-title-name {
  326. padding-right: 15px;
  327. font-size: 14px;
  328. border-right: 1px solid #d7dce6;
  329. display: inline-block;
  330. margin-right: 10px;
  331. }
  332. .page-title span {
  333. vertical-align: middle;
  334. }
  335. .mr10 {
  336. margin-right: 10px;
  337. }
  338. .page-title .icon {
  339. cursor: pointer;
  340. }
  341. .currentDay {
  342. font-size: 16px;
  343. margin: 0 25px;
  344. vertical-align: middle;
  345. width: 100px;
  346. text-align: justify;
  347. text-align-last: justify;
  348. display: inline-block;
  349. }
  350. .switch-list {
  351. border: solid 1px #12b7f5;
  352. border-radius: 6px;
  353. overflow: hidden;
  354. }
  355. .switch-list .icon {
  356. position: relative;
  357. top: 3px;
  358. }
  359. .rili,
  360. .shijianzhou {
  361. width: 40px;
  362. height: 28px;
  363. display: inline-block;
  364. float: left;
  365. background-color: #fff;
  366. }
  367. .rili.active,
  368. .shijianzhou.active,
  369. .rili:hover,
  370. .shijianzhou:hover {
  371. background-color: #12b7f5;
  372. border-radius: 5px;
  373. }
  374. /*列表展示*/
  375. .time-axis::-webkit-scrollbar{
  376. width: 0;
  377. }
  378. .time-axis table>tr>th {
  379. border-top: 1px solid #e7eaec;
  380. line-height: 1.42857;
  381. padding: 8px;
  382. vertical-align: middle;
  383. }
  384. .time-axis td {
  385. border: none !important;
  386. color: inherit;
  387. }
  388. .time-axis th {
  389. background-color: #f5f5fa;
  390. border-bottom: solid 1px #d7dce6;
  391. }
  392. .time-axis td p {
  393. color: inherit;
  394. }
  395. .ellipsis {
  396. white-space: nowrap;
  397. overflow: hidden;
  398. text-overflow: ellipsis;
  399. }
  400. .time {
  401. position: relative;
  402. }
  403. .time-box {
  404. position: relative;
  405. padding: 8px 50px 8px 8px!important;
  406. }
  407. .cur-status {
  408. position: absolute;
  409. z-index: 3;
  410. right: 5px;
  411. top: 50%;
  412. padding: 8px;
  413. line-height: 1;
  414. margin-top: -12.5px;
  415. border-radius: 100%;
  416. color: #fff;
  417. }
  418. .cur-status:empty {
  419. margin-top: -8px;
  420. right: 12.5px;
  421. background-color: #d7dce6;
  422. }
  423. .time-axis [is-future="1"] {
  424. background-color: #dff5fc;
  425. color: #12b7f5;
  426. }
  427. /*.time-axis [is-future="1"] td p,.time-axis [is-future="1"] td{}*/
  428. .time-axis tr:hover {
  429. background-color: #f5f5fa;
  430. color: #333333;
  431. }
  432. /*.time-axis tr:hover p{}*/
  433. [is-future="1"] .cur-status,
  434. [is-future="2"] .cur-status {
  435. background-color: #12b7f5;
  436. }
  437. [is-future="-1"] .cur-status {
  438. background-color: #ff3b30;
  439. }
  440. .c-ff3b30 {
  441. color: #ff3b30!important;
  442. }
  443. [is-future="1"] .day-number {
  444. color: #12B6F4;
  445. }
  446. [is-future="2"] .day-number {
  447. color: #333;
  448. }
  449. [is-future="3"] .cur-status {
  450. background-color: #5cb85c;
  451. }
  452. .calendar-day[is-future="0"] {
  453. background-color: #f5f5fa;
  454. }
  455. .calendar-day[is-future="1"] {
  456. background-color: rgba(18, 182, 244, 0.25);
  457. }
  458. .calendar-day[is-future="3"] {
  459. background-color: #efefef;
  460. }
  461. .time-box:after {
  462. content: '';
  463. position: absolute;
  464. right: 0;
  465. z-index: 2;
  466. right: 19px;
  467. height: 100%;
  468. width: 1px;
  469. background-color: #d7dce6;
  470. top: 50%;
  471. }
  472. .time-axis tr:nth-last-of-type(1) .time-box:after {
  473. display: none;
  474. }
  475. .view-task {
  476. text-align: center;
  477. cursor: pointer;
  478. }
  479. .task-status {
  480. text-align: center;
  481. }
  482. [v-cloak] {
  483. display: none;
  484. }
  485. .visibility-hide {
  486. visibility: hidden;
  487. }
  488. .c-666 {
  489. color: #666!important;
  490. }
  491. .w-80 {
  492. width: 80%;
  493. margin: 0 auto;
  494. }
  495. .w400 {
  496. width: 400px;
  497. }
  498. .bgc-f5f5f5 {
  499. background-color: #f5f5f5;
  500. }
  501. .search-left {
  502. height: 100%;
  503. right: -400px;
  504. z-index: 999;
  505. }
  506. .tac{
  507. text-align: center;
  508. }
  509. .c-h100 {
  510. height: 100%;
  511. }
  512. .set-open {
  513. width: 40px;
  514. left: -40px;
  515. top: 0;
  516. cursor: pointer;
  517. }
  518. .set-close {
  519. width: 14px;
  520. height: 14px;
  521. top: 15px;
  522. right: 15px;
  523. background: url(../../../images/guanbi_icon.png) no-repeat no-repeat center center;
  524. background-size: 12px 12px;
  525. cursor: pointer;
  526. }
  527. .div-kuaisu-task {
  528. width: 98px;
  529. height: 28px;
  530. line-height: 28px;
  531. background-color: #ffffff;
  532. border-radius: 2px;
  533. border: solid 1px #d7dce6;
  534. position: absolute;
  535. right: 102px;
  536. cursor: pointer;
  537. }
  538. .calendar-descript {
  539. text-align: right;
  540. }
  541. .div-left {
  542. width: 460px;
  543. background-color: #ffffff;
  544. border-right: 1px solid #E1E1E1;
  545. }
  546. .div-right {
  547. width: calc(100% - 460px);
  548. }
  549. .rehabilition {
  550. height: calc(100% - 49px);
  551. padding-bottom: 0;
  552. }
  553. .tag {
  554. display: inline-block;
  555. /*background-image: url(../images/yuanjiao_biaoqian_img.png);*/
  556. background-repeat: no-repeat;
  557. background-size: 100%;
  558. width: 60px;
  559. height: 17px;
  560. line-height: 17px;
  561. font-size: 12px;
  562. color: #fff;
  563. padding-left: 15px;
  564. position: absolute;
  565. left: 191px;
  566. top: 46px;
  567. }
  568. .tag-1 {
  569. background-image: url(../images/yuanjiao_biaoqian02_img.png);
  570. }
  571. .tag-2 {
  572. background-image: url(../images/yuanjiao_biaoqian03_img.png);
  573. }
  574. .tag-3 {
  575. background-image: url(../images/yuanjiao_biaoqian04_img.png);
  576. }
  577. .tag-4 {
  578. background-image: url(../images/yuanjiao_biaoqian01_img.png);
  579. }
  580. .div-patient-home {
  581. width: 98px;
  582. height: 26px;
  583. line-height: 26px;
  584. text-align: center;
  585. border-radius: 2px;
  586. border: solid 1px #d7dce6;
  587. margin-top: 5px;
  588. cursor: pointer;
  589. }
  590. .div-patient-comfirm {
  591. width: 98px;
  592. height: 26px;
  593. line-height: 26px;
  594. text-align: center;
  595. border-radius: 2px;
  596. border: solid 1px #12b7f5;
  597. margin-top: -4px;
  598. cursor: pointer;
  599. }
  600. .progress-bar {
  601. position: relative;
  602. width: 100%;
  603. height: 28px;
  604. border-radius: 28px;
  605. background-color: #ebebf5;
  606. }
  607. .progress-bar .progress {
  608. display: block;
  609. position: absolute;
  610. top: 0;
  611. left: 0;
  612. height: 28px;
  613. border-radius: 28px;
  614. }
  615. .progress-bar .p-text {
  616. display: inline-block;
  617. position: absolute;
  618. top: 0;
  619. left: 0;
  620. width: 100%;
  621. text-align: center;
  622. font-size: 14px;
  623. height: 28px;
  624. line-height: 28px;
  625. z-index: 2;
  626. }
  627. .progress-bar.h15,
  628. .progress-bar.h15 .progress,
  629. .progress-bar.h15 .p-text {
  630. height: 15px;
  631. border-radius: 15px;
  632. line-height: 15px;
  633. font-size: 12px;
  634. }
  635. .bgc-ff9526 {
  636. background-color: #ff9526;
  637. }
  638. .bgc-12b7f5 {
  639. background-color: #12b7f5;
  640. }
  641. .ui-grid .ui-col-0 .i-icon{
  642. width: 20px;
  643. height: 20px;
  644. margin-left: 12px;
  645. }
  646. .faqi-btn{
  647. background: #12b7f5;
  648. display: inline-block;
  649. padding: 0px 4px;
  650. font-size: 12px;
  651. line-height: 21px;
  652. color: #fff;
  653. cursor: pointer;
  654. }
  655. .faqi-btn>img{
  656. width: 12px;
  657. vertical-align: initial;
  658. margin-right: 4px;
  659. }
  660. .wkp-end{
  661. -webkit-box-pack: end;
  662. }
  663. .w-row{
  664. width: 100%;
  665. }
  666. .flex {
  667. display: flex;
  668. }
  669. .flex1{
  670. flex: 1;
  671. }
  672. .vc{
  673. align-items: center;
  674. }
  675. .c-12b7f5 {
  676. color: #12b7f5;
  677. }
  678. .bg-f5f5fa{
  679. background-color: #f5f5fa;
  680. }
  681. .link-control{
  682. padding-right: 20px;
  683. position: relative;
  684. }
  685. .link-control::after{
  686. content: "";
  687. position: absolute;
  688. right: 10px;
  689. top: 50%;
  690. width: 6px;
  691. height: 6px;
  692. border-right: 1px solid #D7DCE6;
  693. border-bottom: 1px solid #D7DCE6;
  694. -webkit-transform: translateY(-50%) rotate(-45deg);
  695. -moz-transform: translateY(-50%) rotate(-45deg);
  696. -ms-transform: translateY(-50%) rotate(-45deg);
  697. -o-transform: translateY(-50%) rotate(-45deg);
  698. transform: translateY(-50%) rotate(-45deg);
  699. }
  700. .link-control.is-active{
  701. border-color: #12b7f5;
  702. }
  703. .zhibiao_icon{
  704. display: inline-block;
  705. padding-right: 10px;
  706. position: relative;
  707. }
  708. .zhibiao_icon::after{
  709. content: "";
  710. position: absolute;
  711. right: 0;
  712. top: 50%;
  713. -webkit-transform: translateY(-50%);
  714. -moz-transform: translateY(-50%);
  715. -ms-transform: translateY(-50%);
  716. -o-transform: translateY(-50%);
  717. transform: translateY(-50%);
  718. width: 8px;
  719. height: 12px;
  720. }
  721. .zhibiao_icon.low::after{
  722. background: url('../images/zhibiao_di_icon.png') no-repeat;
  723. background-size: 100% 100%;
  724. }
  725. .zhibiao_icon.high::after{
  726. background: url('../images/zhibiao_gao_icon.png') no-repeat;
  727. background-size: 100% 100%;
  728. }
  729. .icon-group{position: absolute;top: 15px;right: 15px;z-index: 1;}
  730. .icon-edit{font-size: 22px; color: #12b7f5;}
  731. .icon-close{font-size: 22px;}
  732. .btn-yuyue{background-color: #02cfb9;color: #fff;}
  733. .btn-yuyue:hover,.btn-yuyue:link{color: #fff;background-color: #01c1ad;}
  734. .btn-12b7f5{color: #fff;background-color: #12b7f5;}
  735. .btn-12b7f5:hover,.btn-12b7f5:link{color: #fff;background-color: #12b7f5;}
  736. .btn-disabled{background-color: #eee;color: #999;}
  737. .btn-disabled:hover, .btn-disabled:link{background-color: #eee;color: #999;}
  738. .btn-fuwuma{background-color: #2dbe55;color: #fff;}
  739. .btn-fuwuma:hover,.btn-fuwuma:link{color: #fff;background-color: #209440;}
  740. .btn-zhidao{background-color: #12b7f5;color: #fff;}
  741. .btn-zhidao:hover,.btn-zhidao:link{color: #fff;background-color: #10a0d6;}
  742. .upload-box{margin-top:0;padding: 10px 0 10px 10px;overflow: hidden;border: 1px solid #d7dce6;}
  743. .upload-box li{width: 60px;height: 60px;position: relative;display: block;float: left;margin-right: 10px;}
  744. .upload-box li img{width: 100%;display: block;}
  745. .upload-img-box{width: 100%;height: 100%;overflow: hidden;}
  746. .delete-img{position: absolute;right: -5px;top: -5px;color: #fff;background-color: #ccc;border-radius: 100%;text-align: center;line-height: 15px;width: 15px;height: 15px;}
  747. .upload-img{position: absolute;left: 0;right: 0;top: 0;bottom: 0;opacity: 0;z-index: 3;font-size: 0;width: 100%;height: 100%;}
  748. .add-img{font-size: 40px;line-height: 60px;font-weight: 500;width: 60px;height: 60px;display: block;text-align: center;border: 1px dashed #d7dce6;color: #bec8d2;}