Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

index.scss 9.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  1. @import "./variables.scss";
  2. @import "./mixin.scss";
  3. @import "./transition.scss";
  4. @import "./element-ui.scss";
  5. @import "./sidebar.scss";
  6. @import "./btn.scss";
  7. @import "./reset.scss";
  8. body {
  9. height: 100%;
  10. -moz-osx-font-smoothing: grayscale;
  11. -webkit-font-smoothing: antialiased;
  12. text-rendering: optimizeLegibility;
  13. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
  14. Microsoft YaHei, Arial, sans-serif;
  15. }
  16. ul {
  17. padding: 0;
  18. }
  19. label {
  20. // font-weight: 700;
  21. }
  22. html {
  23. height: 100%;
  24. box-sizing: border-box;
  25. }
  26. li {
  27. list-style: none;
  28. }
  29. #app {
  30. height: 100%;
  31. }
  32. *,
  33. *:before,
  34. *:after {
  35. box-sizing: inherit;
  36. }
  37. .no-padding {
  38. padding: 0px !important;
  39. }
  40. .padding-content {
  41. padding: 4px 0;
  42. }
  43. a:focus,
  44. a:active {
  45. outline: none;
  46. }
  47. a,
  48. a:focus,
  49. a:hover {
  50. cursor: pointer;
  51. color: inherit;
  52. text-decoration: none;
  53. }
  54. div:focus {
  55. outline: none;
  56. }
  57. .fr {
  58. float: right;
  59. }
  60. .fl {
  61. float: left;
  62. }
  63. .pr-5 {
  64. padding-right: 5px;
  65. }
  66. .pl-5 {
  67. padding-left: 5px;
  68. }
  69. .block {
  70. display: block;
  71. }
  72. .pointer {
  73. cursor: pointer;
  74. }
  75. .inlineBlock {
  76. display: block;
  77. }
  78. .clearfix {
  79. &:after {
  80. visibility: hidden;
  81. display: block;
  82. font-size: 0;
  83. content: " ";
  84. clear: both;
  85. height: 0;
  86. }
  87. }
  88. code {
  89. background: #eef1f6;
  90. padding: 15px 16px;
  91. margin-bottom: 20px;
  92. display: block;
  93. line-height: 36px;
  94. font-size: 15px;
  95. font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  96. a {
  97. color: #337ab7;
  98. cursor: pointer;
  99. &:hover {
  100. color: rgb(32, 160, 255);
  101. }
  102. }
  103. }
  104. .warn-content {
  105. background: rgba(66, 185, 131, 0.1);
  106. border-radius: 2px;
  107. padding: 16px;
  108. padding: 1rem;
  109. line-height: 1.6rem;
  110. word-spacing: 0.05rem;
  111. a {
  112. color: #42b983;
  113. font-weight: 600;
  114. }
  115. }
  116. //main-container全局样式
  117. .app-container {
  118. padding: 20px;
  119. background: #fff;
  120. margin: 10px 10px 5px 10px;
  121. // min-height: calc(100vh - 178px);
  122. min-height: calc(100vh - 118px);
  123. }
  124. .components-container {
  125. margin: 30px 50px;
  126. position: relative;
  127. }
  128. .pagination-container {
  129. margin-top: 30px;
  130. }
  131. .text-center {
  132. text-align: center;
  133. }
  134. .sub-navbar {
  135. height: 50px;
  136. line-height: 50px;
  137. position: relative;
  138. width: 100%;
  139. text-align: right;
  140. padding-right: 20px;
  141. transition: 600ms ease position;
  142. background: linear-gradient(
  143. 90deg,
  144. rgba(32, 182, 249, 1) 0%,
  145. rgba(32, 182, 249, 1) 0%,
  146. rgba(33, 120, 241, 1) 100%,
  147. rgba(33, 120, 241, 1) 100%
  148. );
  149. .subtitle {
  150. font-size: 20px;
  151. color: #fff;
  152. }
  153. &.draft {
  154. background: #d0d0d0;
  155. }
  156. &.deleted {
  157. background: #d0d0d0;
  158. }
  159. }
  160. .link-type,
  161. .link-type:focus {
  162. color: #337ab7;
  163. cursor: pointer;
  164. &:hover {
  165. color: rgb(32, 160, 255);
  166. }
  167. }
  168. .filter-container {
  169. padding-bottom: 10px;
  170. .filter-item {
  171. display: inline-block;
  172. vertical-align: middle;
  173. margin-bottom: 10px;
  174. }
  175. }
  176. //refine vue-multiselect plugin
  177. .multiselect {
  178. line-height: 16px;
  179. }
  180. .multiselect--active {
  181. z-index: 1000 !important;
  182. }
  183. .DetailsTit {
  184. border-bottom: 1px #e5e5e5 solid;
  185. text-align: center;
  186. span {
  187. height: 50px;
  188. line-height: 50px;
  189. color: $main-color;
  190. position: relative;
  191. font-size: 16px;
  192. width: 120px;
  193. margin: 0 auto;
  194. display: inline-block;
  195. font-weight: 700;
  196. &::before,
  197. &::after {
  198. content: "";
  199. display: block;
  200. position: absolute;
  201. top: 23px;
  202. width: 10px;
  203. height: 2px;
  204. background: $main-color;
  205. }
  206. &::before {
  207. left: 10px;
  208. }
  209. &::after {
  210. right: 10px;
  211. }
  212. }
  213. }
  214. .middleLine {
  215. background: #f5f7fa;
  216. height: 18px;
  217. }
  218. .plate {
  219. margin: 12px 100px 0 100px;
  220. padding-bottom: 14px;
  221. @include box-sizing;
  222. @include display-flex;
  223. -webkit-box-align: flex-start;
  224. -ms-flex-align: flex-start;
  225. align-items: flex-start;
  226. // @include align-items-center;
  227. @include justify-content-between; // border-bottom: 1px #e6e6e6 dashed;
  228. ul {
  229. width: 33.3%;
  230. li {
  231. font-size: 15px;
  232. line-height: 30px;
  233. label {
  234. color: #34495e;
  235. }
  236. .content {
  237. color: $main-color;
  238. }
  239. .unit {
  240. color: $font-color;
  241. }
  242. }
  243. }
  244. // border: solid 1px red;
  245. }
  246. .note {
  247. font-size: 14px;
  248. color: $pgh-color;
  249. margin: 0 100px;
  250. line-height: 50px;
  251. border-top: 1px #e5e5e5 dashed;
  252. span {
  253. color: $main-color;
  254. }
  255. }
  256. .el-dialog__body {
  257. max-height: calc(100vh - 290px) !important;
  258. overflow-y: scroll !important;
  259. // margin-right: 8px;
  260. /* 针对缺省样式 (必须的) */
  261. &::-webkit-scrollbar {
  262. width: 6px;
  263. height: 10px;
  264. }
  265. /* 滚动条的滑轨背景颜色 */
  266. &::-webkit-scrollbar-track {
  267. background-color: #fff;
  268. border-radius: 3px;
  269. -moz-border-radius: 3px;
  270. -webkit-border-radius: 3px;
  271. }
  272. /* 滑块颜色 */
  273. &::-webkit-scrollbar-thumb {
  274. background: #d7dce2;
  275. border-radius: 3px;
  276. -moz-border-radius: 3px;
  277. -webkit-border-radius: 3px;
  278. }
  279. /*内层轨道的颜色*/
  280. &::-webkit-scrollbar-track-piece {
  281. background-color: #fff;
  282. border-radius: 3px;
  283. -moz-border-radius: 3px;
  284. -webkit-border-radius: 3px;
  285. }
  286. /* 滑轨两头的监听按钮颜色 */
  287. &::-webkit-scrollbar-button {
  288. background-color: #eee;
  289. width: 0;
  290. height: 0;
  291. }
  292. /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
  293. &::-webkit-scrollbar-corner {
  294. background-color: #eee;
  295. }
  296. }
  297. .NoData {
  298. width: 180px;
  299. margin: 40px auto;
  300. img {
  301. width: 100%;
  302. }
  303. }
  304. .el-menu-item,
  305. .el-submenu__title {
  306. height: 46px !important;
  307. line-height: 46px !important;
  308. padding: 0 15px !important;
  309. }
  310. .el-menu-item {
  311. min-width: 0;
  312. }
  313. .position {
  314. background: #fff;
  315. padding: 10px 20px;
  316. display: flex;
  317. align-items: center;
  318. justify-content: space-between;
  319. height: 50px;
  320. border-top:1px solid #e5e5e5;
  321. border-bottom:1px solid #e5e5e5;
  322. }
  323. // 筛选全局样式
  324. .app-container {
  325. height:100%;
  326. .cell.clearfix {
  327. margin: 0px 0 12px 0;
  328. display: flex;
  329. align-items: center;
  330. justify-content: flex-start;
  331. box-sizing: border-box;
  332. color: #333;
  333. .el-button--primary {
  334. margin-left: 6px;
  335. }
  336. .title {
  337. width: 80px;
  338. display: inline-block;
  339. font-weight: normal;
  340. color: #909399;
  341. padding: 6px 0;
  342. .name {
  343. width: 60px;
  344. text-align: justify;
  345. text-justify: distribute-all-lines;
  346. text-align-last: justify;
  347. -moz-text-align-last: justify;
  348. -webkit-text-align-last: justify;
  349. display: inline-block;
  350. font-size: 14px;
  351. }
  352. }
  353. .time {
  354. // -webkit-box-flex: 1;
  355. // -ms-flex: 1;
  356. // flex: 1;
  357. ul {
  358. margin: 0;
  359. // padding-left: 5px;
  360. li {
  361. float: left;
  362. list-style: none;
  363. cursor: pointer;
  364. padding: 6px 20px;
  365. color: #606266;
  366. border-radius: 4px;
  367. margin: 0 8px 0 0;
  368. font-size: 14px;
  369. // width: 70px;
  370. text-align: center;
  371. &:hover {
  372. background: #f5f7fa;
  373. }
  374. }
  375. .active {
  376. background: #409eff;
  377. color: #fff;
  378. }
  379. }
  380. }
  381. }
  382. }
  383. // 表格
  384. .el-table {
  385. th,
  386. td {
  387. .cell {
  388. margin: 0;
  389. padding: 0 12px;
  390. }
  391. }
  392. td {
  393. .cell {
  394. padding: 0 12px;
  395. }
  396. }
  397. }
  398. // 标题线
  399. .dataTitle {
  400. color: #303133;
  401. font-size: 14px;
  402. border-bottom: 2px #e4e7ed solid;
  403. height: 36px;
  404. line-height: 36px;
  405. margin: 0 0 25px 0;
  406. position: relative;
  407. &::before {
  408. position: absolute;
  409. left: 0;
  410. bottom: -2px;
  411. content: "";
  412. width: 60px;
  413. height: 2px;
  414. background: #409eff;
  415. }
  416. }
  417. .el-dialog__wrapper {
  418. // z-index: 2012 !important;
  419. }
  420. .el-dialog {
  421. left: 50% !important;
  422. position: fixed !important;
  423. top: 50% !important;
  424. transform: translate(-50%, -50%) !important;
  425. margin-top: 0 !important;
  426. }
  427. .el-dialog__wrapper {
  428. // z-index: 9999!important;
  429. }
  430. .el-message {
  431. z-index: 99999 !important;
  432. }
  433. .el-select-dropdown {
  434. // z-index: 2003!important;
  435. }
  436. // .patient-app-container {
  437. // margin-bottom: 4px;
  438. // height: 36px;
  439. // line-height: 36px;
  440. // }
  441. .patient-app-container {
  442. margin-left: 180px;
  443. margin-right: 0;
  444. background: #fff;
  445. }
  446. .patient-name {
  447. color: #606266;
  448. font-size: 14px;
  449. padding: 15px 0 15px 0;
  450. display: block;
  451. border-bottom: 1px #e4e7ed solid;
  452. margin: 0 18px;
  453. flex: 1;
  454. }
  455. .el-button + .el-button {
  456. // margin-left: 0;
  457. }
  458. // 病人管理-病程管理
  459. .filter_title {
  460. font-size: 14px;
  461. color: gray;
  462. margin-right: 6px;
  463. }
  464. .Total {
  465. margin: 0 0 10px 0;
  466. float: right;
  467. }
  468. .cellLine {
  469. color: #c0c4cc;
  470. padding: 0 3px;
  471. }
  472. //点击框
  473. .el-checkbox__inner::after {
  474. height: 10px;
  475. left: 7px;
  476. }
  477. .el-checkbox__inner {
  478. width: 20px;
  479. height: 20px;
  480. }
  481. .el-table th {
  482. text-align: center;
  483. }
  484. // 修改选中表格内容颜色
  485. .el-table .success-row {
  486. background: #87ceff !important;
  487. }
  488. .el-checkbox__inner {
  489. border: 1px solid #696969 !important;
  490. }
  491. .el-table--striped .el-table__body tr.el-table__row--striped.current-row td,
  492. .el-table__body tr.current-row > td {
  493. background-color: #ecf5ff !important;
  494. color: #3a8ee6;
  495. }
  496. .el-table__body tr:hover > td {
  497. background-color: #ecf5ff !important;
  498. color: #3a8ee6;
  499. }
  500. .el-table__body tr > td:hover {
  501. background-color: #409eff !important;
  502. color: #fff !important;
  503. }
  504. .el-table__body td > div:hover{
  505. background-color: #409eff !important;
  506. color: #fff !important;
  507. }
  508. .el-table__body div > span:hover{
  509. background-color: #409eff !important;
  510. color: #fff !important;
  511. }
  512. .el-table__body div > a:hover{
  513. background-color: #409eff !important;
  514. color: #fff !important;
  515. }