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

index.scss 9.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  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: 0 15px 15px 15px;
  121. min-height: calc(100vh - 178px);
  122. }
  123. .components-container {
  124. margin: 30px 50px;
  125. position: relative;
  126. }
  127. .pagination-container {
  128. margin-top: 30px;
  129. }
  130. .text-center {
  131. text-align: center;
  132. }
  133. .sub-navbar {
  134. height: 50px;
  135. line-height: 50px;
  136. position: relative;
  137. width: 100%;
  138. text-align: right;
  139. padding-right: 20px;
  140. transition: 600ms ease position;
  141. background: linear-gradient(
  142. 90deg,
  143. rgba(32, 182, 249, 1) 0%,
  144. rgba(32, 182, 249, 1) 0%,
  145. rgba(33, 120, 241, 1) 100%,
  146. rgba(33, 120, 241, 1) 100%
  147. );
  148. .subtitle {
  149. font-size: 20px;
  150. color: #fff;
  151. }
  152. &.draft {
  153. background: #d0d0d0;
  154. }
  155. &.deleted {
  156. background: #d0d0d0;
  157. }
  158. }
  159. .link-type,
  160. .link-type:focus {
  161. color: #337ab7;
  162. cursor: pointer;
  163. &:hover {
  164. color: rgb(32, 160, 255);
  165. }
  166. }
  167. .filter-container {
  168. padding-bottom: 10px;
  169. .filter-item {
  170. display: inline-block;
  171. vertical-align: middle;
  172. margin-bottom: 10px;
  173. }
  174. }
  175. //refine vue-multiselect plugin
  176. .multiselect {
  177. line-height: 16px;
  178. }
  179. .multiselect--active {
  180. z-index: 1000 !important;
  181. }
  182. .DetailsTit {
  183. border-bottom: 1px #e5e5e5 solid;
  184. text-align: center;
  185. span {
  186. height: 50px;
  187. line-height: 50px;
  188. color: $main-color;
  189. position: relative;
  190. font-size: 16px;
  191. width: 120px;
  192. margin: 0 auto;
  193. display: inline-block;
  194. font-weight: 700;
  195. &::before,
  196. &::after {
  197. content: "";
  198. display: block;
  199. position: absolute;
  200. top: 23px;
  201. width: 10px;
  202. height: 2px;
  203. background: $main-color;
  204. }
  205. &::before {
  206. left: 10px;
  207. }
  208. &::after {
  209. right: 10px;
  210. }
  211. }
  212. }
  213. .middleLine {
  214. background: #f5f7fa;
  215. height: 18px;
  216. }
  217. .plate {
  218. margin: 12px 100px 0 100px;
  219. padding-bottom: 14px;
  220. @include box-sizing;
  221. @include display-flex;
  222. -webkit-box-align: flex-start;
  223. -ms-flex-align: flex-start;
  224. align-items: flex-start;
  225. // @include align-items-center;
  226. @include justify-content-between; // border-bottom: 1px #e6e6e6 dashed;
  227. ul {
  228. width: 33.3%;
  229. li {
  230. font-size: 15px;
  231. line-height: 30px;
  232. label {
  233. color: #34495e;
  234. }
  235. .content {
  236. color: $main-color;
  237. }
  238. .unit {
  239. color: $font-color;
  240. }
  241. }
  242. }
  243. // border: solid 1px red;
  244. }
  245. .note {
  246. font-size: 14px;
  247. color: $pgh-color;
  248. margin: 0 100px;
  249. line-height: 50px;
  250. border-top: 1px #e5e5e5 dashed;
  251. span {
  252. color: $main-color;
  253. }
  254. }
  255. .el-dialog__body {
  256. max-height: calc(100vh - 290px) !important;
  257. overflow-y: scroll !important;
  258. margin-right: 8px;
  259. /* 针对缺省样式 (必须的) */
  260. &::-webkit-scrollbar {
  261. width: 6px;
  262. height: 10px;
  263. }
  264. /* 滚动条的滑轨背景颜色 */
  265. &::-webkit-scrollbar-track {
  266. background-color: #fff;
  267. border-radius: 3px;
  268. -moz-border-radius: 3px;
  269. -webkit-border-radius: 3px;
  270. }
  271. /* 滑块颜色 */
  272. &::-webkit-scrollbar-thumb {
  273. background: #d7dce2;
  274. border-radius: 3px;
  275. -moz-border-radius: 3px;
  276. -webkit-border-radius: 3px;
  277. }
  278. /*内层轨道的颜色*/
  279. &::-webkit-scrollbar-track-piece {
  280. background-color: #fff;
  281. border-radius: 3px;
  282. -moz-border-radius: 3px;
  283. -webkit-border-radius: 3px;
  284. }
  285. /* 滑轨两头的监听按钮颜色 */
  286. &::-webkit-scrollbar-button {
  287. background-color: #eee;
  288. width: 0;
  289. height: 0;
  290. }
  291. /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
  292. &::-webkit-scrollbar-corner {
  293. background-color: #eee;
  294. }
  295. }
  296. .NoData {
  297. width: 180px;
  298. margin: 40px auto;
  299. img {
  300. width: 100%;
  301. }
  302. }
  303. .el-menu-item,
  304. .el-submenu__title {
  305. height: 46px !important;
  306. line-height: 46px !important;
  307. padding: 0 15px !important;
  308. }
  309. .el-menu-item {
  310. min-width: 0;
  311. }
  312. .position {
  313. background: #f6f8f9;
  314. padding: 10px 20px;
  315. display: flex;
  316. align-items: center;
  317. justify-content: space-between;
  318. height: 52px;
  319. }
  320. // 筛选全局样式
  321. .app-container {
  322. .cell.clearfix {
  323. margin: 0px 0 12px 0;
  324. display: flex;
  325. align-items: center;
  326. justify-content: flex-start;
  327. box-sizing: border-box;
  328. color: #333;
  329. .el-button--primary {
  330. margin-left: 6px;
  331. }
  332. .title {
  333. width: 80px;
  334. display: inline-block;
  335. font-weight: normal;
  336. color: #909399;
  337. padding: 6px 0;
  338. .name {
  339. width: 60px;
  340. text-align: justify;
  341. text-justify: distribute-all-lines;
  342. text-align-last: justify;
  343. -moz-text-align-last: justify;
  344. -webkit-text-align-last: justify;
  345. display: inline-block;
  346. font-size: 14px;
  347. }
  348. }
  349. .time {
  350. // -webkit-box-flex: 1;
  351. // -ms-flex: 1;
  352. // flex: 1;
  353. ul {
  354. margin: 0;
  355. // padding-left: 5px;
  356. li {
  357. float: left;
  358. list-style: none;
  359. cursor: pointer;
  360. padding: 6px 20px;
  361. color: #606266;
  362. border-radius: 4px;
  363. margin: 0 8px 0 0;
  364. font-size: 14px;
  365. // width: 70px;
  366. text-align: center;
  367. &:hover {
  368. background: #f5f7fa;
  369. }
  370. }
  371. .active {
  372. background: #409eff;
  373. color: #fff;
  374. }
  375. }
  376. }
  377. }
  378. }
  379. // 表格
  380. .el-table {
  381. th,
  382. td {
  383. .cell {
  384. margin: 0;
  385. padding: 0 12px;
  386. }
  387. }
  388. td {
  389. .cell {
  390. padding: 0 12px;
  391. }
  392. }
  393. }
  394. // 标题线
  395. .dataTitle {
  396. color: #303133;
  397. font-size: 14px;
  398. border-bottom: 2px #e4e7ed solid;
  399. height: 36px;
  400. line-height: 36px;
  401. margin: 0 0 25px 0;
  402. position: relative;
  403. &::before {
  404. position: absolute;
  405. left: 0;
  406. bottom: -2px;
  407. content: "";
  408. width: 60px;
  409. height: 2px;
  410. background: #409eff;
  411. }
  412. }
  413. .el-dialog__wrapper {
  414. // z-index: 2012 !important;
  415. }
  416. .el-dialog {
  417. left: 50% !important;
  418. position: fixed !important;
  419. top: 50% !important;
  420. transform: translate(-50%, -50%) !important;
  421. margin-top: 0 !important;
  422. }
  423. .el-dialog__wrapper {
  424. // z-index: 9999!important;
  425. }
  426. .el-message {
  427. z-index: 99999 !important;
  428. }
  429. .el-select-dropdown {
  430. // z-index: 2003!important;
  431. }
  432. // .patient-app-container {
  433. // margin-bottom: 4px;
  434. // height: 36px;
  435. // line-height: 36px;
  436. // }
  437. .patient-app-container {
  438. margin-left: 180px;
  439. margin-right: 0;
  440. background: #fff;
  441. }
  442. .patient-name {
  443. color: #606266;
  444. font-size: 14px;
  445. padding: 15px 0 15px 0;
  446. display: block;
  447. border-bottom: 1px #e4e7ed solid;
  448. margin: 0 18px;
  449. flex: 1;
  450. }
  451. .el-button + .el-button {
  452. // margin-left: 0;
  453. }
  454. // 病人管理-病程管理
  455. .filter_title {
  456. font-size: 14px;
  457. color: gray;
  458. margin-right: 6px;
  459. }
  460. .Total {
  461. margin: 0 0 10px 0;
  462. float: right;
  463. }
  464. .cellLine {
  465. color: #c0c4cc;
  466. padding: 0 3px;
  467. }
  468. //点击框
  469. .el-checkbox__inner::after {
  470. height: 10px;
  471. left: 7px;
  472. }
  473. .el-checkbox__inner {
  474. width: 20px;
  475. height: 20px;
  476. }
  477. .el-table th {
  478. text-align: center;
  479. }
  480. // 修改选中表格内容颜色
  481. .el-table .success-row {
  482. background: #87ceff !important;
  483. }
  484. .el-checkbox__inner {
  485. border: 1px solid #696969 !important;
  486. }
  487. .el-table--striped .el-table__body tr.el-table__row--striped.current-row td,
  488. .el-table__body tr.current-row > td {
  489. background-color: #ecf5ff !important;
  490. color: #3a8ee6;
  491. }
  492. .el-table__body tr:hover > td {
  493. background-color: #ecf5ff !important;
  494. color: #3a8ee6;
  495. }
  496. .el-table__body tr > td:hover {
  497. background-color: #409eff !important;
  498. color: #fff !important;
  499. }