index.scss 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './transition.scss';
  4. @import './element-ui.scss';
  5. @import './sidebar.scss';
  6. body {
  7. height: 100%;
  8. -moz-osx-font-smoothing: grayscale;
  9. -webkit-font-smoothing: antialiased;
  10. text-rendering: optimizeLegibility;
  11. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
  12. Microsoft YaHei, Arial, sans-serif;
  13. }
  14. .content-app{
  15. width: 100%;
  16. padding: 0 24px 15px 24px;
  17. background: #dfe3ea;
  18. }
  19. .el-message {
  20. width: 240px;
  21. height: 48px;
  22. background: #f6fff7;
  23. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  24. border-radius: 24px;
  25. }
  26. label {
  27. font-weight: 700;
  28. }
  29. html {
  30. height: 100%;
  31. box-sizing: border-box;
  32. }
  33. #app {
  34. height: 100%;
  35. }
  36. *,
  37. *:before,
  38. *:after {
  39. box-sizing: inherit;
  40. }
  41. a:focus,
  42. a:active {
  43. outline: none;
  44. }
  45. a,
  46. a:focus,
  47. a:hover {
  48. cursor: pointer;
  49. color: inherit;
  50. text-decoration: none;
  51. }
  52. div:focus {
  53. outline: none;
  54. }
  55. li {
  56. list-style-type: none;
  57. }
  58. .clearfix {
  59. &:after {
  60. visibility: hidden;
  61. display: block;
  62. font-size: 0;
  63. content: ' ';
  64. clear: both;
  65. height: 0;
  66. }
  67. }
  68. // main-container global css
  69. .app-container {
  70. padding: 20px;
  71. }
  72. /*公用元素边框*/
  73. .box-public-shadow {
  74. background: #ffffff;
  75. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  76. border-radius: 4px;
  77. padding: 30px;
  78. .relative {
  79. position: relative;
  80. width: 100%;
  81. height: 100%;
  82. }
  83. }
  84. .npd {
  85. padding: 0;
  86. }
  87. .flex {
  88. display: flex;
  89. justify-content: space-between;
  90. }
  91. .flex-end {
  92. display: flex;
  93. justify-content: flex-end;
  94. }
  95. .flex-wrap {
  96. display: flex;
  97. }
  98. .flx {
  99. font-size: 16px;
  100. display: flex;
  101. align-items: center;
  102. padding: 10px 0px 10px 20px;
  103. font-family: Microsoft YaHei;
  104. font-weight: bold;
  105. height: 36px;
  106. background: #2d67e3;
  107. color: #ffffff;
  108. margin-bottom: 24px;
  109. width: 100%;
  110. }
  111. .h100 {
  112. height: 100%;
  113. }
  114. .l22 {
  115. margin-left: 22px;
  116. }
  117. .flex1 {
  118. flex: 1;
  119. }
  120. .t30 {
  121. margin-top: 24px;
  122. }
  123. .r10 {
  124. margin-right: 10px;
  125. }
  126. .l10 {
  127. margin-left: 10px;
  128. }
  129. .newbut{
  130. width: 64px;
  131. height: 32px;
  132. background: #FFFFFF;
  133. border: 1px solid #9EBBF7;
  134. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  135. border-radius: 4px;
  136. font-size: 14px;
  137. font-family: Microsoft YaHei;
  138. font-weight: 400;
  139. color: #2D67E3;
  140. cursor: pointer;
  141. }
  142. .r24 {
  143. margin-right: 24px;
  144. }
  145. .r25 {
  146. margin-right: 12px;
  147. }
  148. .b24{
  149. margin-bottom: 24px;
  150. }
  151. .b32{
  152. margin-bottom: 32;
  153. }
  154. .pt90{
  155. padding-top: 90px;
  156. }
  157. .flews{
  158. display: flex;
  159. align-items: center;
  160. justify-content: center;
  161. }
  162. .er {
  163. display: flex;
  164. align-items: center;
  165. font-size: 16px;
  166. font-family: Microsoft YaHei;
  167. font-weight: 400;
  168. color: #101611;
  169. }
  170. .up {
  171. min-height: 80px;
  172. padding-top: 24px;
  173. }
  174. .buwitch{
  175. width: 80px;
  176. height: 32px;
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. background: #FFFFFF;
  181. border: 1px solid #D2D6DF;
  182. border-radius: 4px;
  183. font-size: 14px;
  184. font-family: Microsoft YaHei;
  185. font-weight: 300;
  186. color: #ffffff;
  187. }
  188. .r26 {
  189. width: 80px;
  190. height: 32px;
  191. display: flex;
  192. align-items: center;
  193. justify-content: center;
  194. background: #FFFFFF;
  195. border: 1px solid #D2D6DF;
  196. border-radius: 4px;
  197. font-size: 14px;
  198. font-family: Microsoft YaHei;
  199. font-weight: 300;
  200. color: #101611
  201. }
  202. .flower{
  203. overflow:hidden;
  204. white-space: nowrap;
  205. text-overflow: ellipsis;
  206. -o-text-overflow:ellipsis;
  207. }
  208. .fwgh{
  209. font-family: Microsoft YaHei;
  210. font-weight: 400;
  211. color: #101116;
  212. }
  213. .right {
  214. text-align: right;
  215. }
  216. .center {
  217. text-align: center;
  218. }
  219. .box-scroll {
  220. overflow-y: scroll;
  221. overflow-x: hidden;
  222. }
  223. /*弹框输入框*/
  224. .dialog-public-background {
  225. .el-input__inner,
  226. .el-textarea__inner {
  227. background: #ffffff;
  228. border: 1px solid #d2d6df;
  229. border-radius: 2px;
  230. }
  231. }
  232. /*公用按钮阴影*/
  233. .button-public-shadow {
  234. height: 48px;
  235. line-height: 48px;
  236. text-align: center;
  237. background: linear-gradient(0deg, #6983be, #777dba);
  238. box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.18);
  239. border-radius: 6px;
  240. border: none;
  241. outline: none;
  242. margin-bottom: 32px;
  243. width: 100%;
  244. cursor: pointer;
  245. font-size: 16px;
  246. font-family: Microsoft YaHei;
  247. font-weight: bold;
  248. color: #ffffff;
  249. &:last-child {
  250. margin-bottom: 0;
  251. }
  252. }
  253. /*公用阴影-小*/
  254. .box-public-shadow-mini {
  255. background: #ffffff;
  256. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  257. border-radius: 4px;
  258. padding: 24px;
  259. .title {
  260. font-size: 16px;
  261. font-family: Microsoft YaHei;
  262. font-weight: bold;
  263. color: #303133;
  264. }
  265. .cl-hui {
  266. font-size: 14px;
  267. font-family: Microsoft YaHei;
  268. font-weight: 400;
  269. color: #909399;
  270. }
  271. .fz16{
  272. font-size: 16px;
  273. font-family: Microsoft YaHei;
  274. font-weight: bold;
  275. color: #101116;
  276. }
  277. .fwb {
  278. font-weight: bold;
  279. }
  280. .t25 {
  281. margin-top: 25px;
  282. }
  283. .t13 {
  284. margin-top: 13px;
  285. }
  286. .t12 {
  287. margin-top: 12px;
  288. }
  289. .t25 {
  290. margin-top: 25px;
  291. }
  292. .t24 {
  293. margin-top: 24px;
  294. }
  295. .mb {
  296. font-size: 14px;
  297. font-family: Helvetica;
  298. font-weight: 400;
  299. color: #AFB4BF;
  300. }
  301. .l50 {
  302. margin-left: 50px;
  303. }
  304. }
  305. .content {
  306. margin-left: 20px;
  307. }
  308. .manageTitle {
  309. position: relative;
  310. font-size: 20px;
  311. font-family: Microsoft YaHei;
  312. font-weight: bold;
  313. color: #303133;
  314. padding-left: 12px;
  315. margin-right: 48px;
  316. margin-top: 0;
  317. margin-bottom: 0;
  318. &::after {
  319. position: absolute;
  320. content: '';
  321. width: 4px;
  322. height: 20px;
  323. left: 0;
  324. top: 50%;
  325. margin-top: -10px;
  326. background: #2d67e3;
  327. }
  328. }
  329. /*鼠标样式-手*/
  330. .cursor {
  331. cursor: pointer;
  332. }
  333. .handleMsgMneu {
  334. padding: 4px 0;
  335. background: #fafcff;
  336. box-shadow: 0px 4px 8px 0px rgba(16, 17, 22, 0.1);
  337. border-radius: 0;
  338. .el-dropdown-menu__item {
  339. padding: 0;
  340. span {
  341. line-height: 28px;
  342. padding: 12px;
  343. font-size: 14px;
  344. }
  345. .editPwd {
  346. color: #101116;
  347. }
  348. .layoutSys {
  349. color: #eb2f3b;
  350. }
  351. }
  352. }
  353. /*修改提示框*/
  354. .el-message {
  355. height: 40px;
  356. width: auto;
  357. border-radius: 2px;
  358. min-width: auto;
  359. padding-right: 70px;
  360. background: #fafcff;
  361. box-shadow: 0px 2px 24px 0px rgba(16, 17, 22, 0.2);
  362. border-color: #fafcff;
  363. .el-message__content {
  364. font-weight: 400;
  365. color: #101116;
  366. }
  367. }
  368. /*修改checkbox选中样式*/
  369. .el-checkbox__input.is-checked .el-checkbox__inner,
  370. .el-checkbox__input.is-indeterminate .el-checkbox__inner {
  371. background-color: #2d67e3;
  372. border-color: #2d67e3;
  373. }
  374. /*修改tree children布局*/
  375. .el-tree-node.is-expanded > .el-tree-node__children {
  376. display: flex;
  377. }
  378. .el-tree-node__label {
  379. margin-left: 10px;
  380. width: 110px;
  381. }
  382. /*修改radio选中样式*/
  383. .el-radio__input.is-checked .el-radio__inner {
  384. border-color: #2d67e3;
  385. background: #fff;
  386. &::after {
  387. width: 8px;
  388. height: 8px;
  389. background-color: #2d67e3;
  390. }
  391. }
  392. .el-radio__input.is-checked + .el-radio__label {
  393. color: #303133;
  394. }
  395. /*修改tree背景样式*/
  396. .el-tree {
  397. background: initial;
  398. }
  399. /*按钮默认样式*/
  400. .btn-default {
  401. background: #f5f7fa;
  402. border: 1px solid #b4b7cb;
  403. border-radius: 8px;
  404. font-size: 14px;
  405. font-family: Microsoft YaHei;
  406. font-weight: bold;
  407. color: #6f81bc;
  408. &:focus {
  409. border-color: #6983be;
  410. color: #fff;
  411. background: linear-gradient(0deg, #6983be, #777dba);
  412. }
  413. &:hover {
  414. background: #94a6e0;
  415. border-color: #94a6e0;
  416. color: #fff;
  417. }
  418. }
  419. /*取消按钮*/
  420. .btn-cancel {
  421. background: #ffffff;
  422. border: 1px solid #e3e5e8;
  423. border-radius: 6px;
  424. font-size: 16px;
  425. font-family: Microsoft YaHei;
  426. font-weight: 300;
  427. color: #303133;
  428. margin-left: 24px !important;
  429. &:focus {
  430. border-color: #2d67e3;
  431. color: #fff;
  432. background: #2d67e3;
  433. }
  434. &:hover {
  435. background: #2d67e3;
  436. border-color: #2d67e3;
  437. color: #fff;
  438. }
  439. }
  440. /*提交按钮*/
  441. .foot {
  442. width: 100%;
  443. height: 56px;
  444. padding: 10px 22px 10px 0;
  445. line-height: 56px;
  446. background: #f0f5ff;
  447. border-radius: 2px;
  448. display: flex;
  449. justify-content: flex-end;
  450. }
  451. .DelFoot,
  452. .del-foot {
  453. width: 100%;
  454. height: 56px;
  455. padding: 10px 22px 10px 0;
  456. line-height: 56px;
  457. background: #fff;
  458. border-radius: 2px;
  459. display: flex;
  460. justify-content: flex-end;
  461. }
  462. .el-button--danger {
  463. background: #eb2f3b;
  464. border-radius: 4px;
  465. font-family: Microsoft YaHei;
  466. font-weight: bold;
  467. color: #ffffff;
  468. border-color: #eb2f3b;
  469. }
  470. .el-button--primary {
  471. background: #2d67e3;
  472. border-radius: 4px;
  473. font-family: Microsoft YaHei;
  474. font-weight: bold;
  475. color: #ffffff;
  476. border-color: #2d67e3;
  477. &:focus {
  478. background: #2d67e3;
  479. border-color: #2d67e3;
  480. color: #fff;
  481. }
  482. &:hover {
  483. background: #2d67e3;
  484. border-color: #2d67e3;
  485. color: #fff;
  486. }
  487. }
  488. /*二级弹框背景*/
  489. .ej-dialog-bg {
  490. background: #f5f7fa !important;
  491. box-shadow: none !important;
  492. }
  493. .edit_log {
  494. width: 14px;
  495. height: 14px;
  496. background: url('../assets/logo/ic_edit@2x.png') no-repeat;
  497. background-size: 100%;
  498. margin-left: 16px;
  499. cursor: pointer;
  500. transition: all 0.3s;
  501. }
  502. .edit_log:hover {
  503. width: 14px;
  504. height: 14px;
  505. background: url('../assets/logo/ic_edit_hovar@2x.png') no-repeat;
  506. background-size: 100%;
  507. margin-left: 16px;
  508. cursor: pointer;
  509. }
  510. // 表格列筛选弹框
  511. .dialog-check-cols .el-tree {
  512. &.has-children .el-tree-node > .el-tree-node__children {
  513. display: flex;
  514. flex-wrap: wrap;
  515. }
  516. &.no-children {
  517. display: flex;
  518. flex-wrap: wrap;
  519. }
  520. }
  521. .el-table .el-table__cell.pre-line .cell {
  522. white-space: pre-line;
  523. }
  524. .input-shadow .el-input__inner {
  525. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  526. }
  527. .btn-shadow {
  528. cursor: pointer;
  529. box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.18);
  530. &.btn-img,
  531. &.btn-square {
  532. border-radius: 8px;
  533. }
  534. }
  535. .el-table .el-table__body-wrapper::-webkit-scrollbar {
  536. height: 8px;
  537. }
  538. input[type='number'] {
  539. line-height: 1 !important;
  540. }
  541. .el-input__inner,.el-button,.el-textarea__inner{
  542. border-radius: 2px;
  543. }