index.scss 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  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, Microsoft YaHei, Arial, sans-serif;
  12. }
  13. label {
  14. font-weight: 700;
  15. }
  16. html {
  17. height: 100%;
  18. box-sizing: border-box;
  19. }
  20. #app {
  21. height: 100%;
  22. }
  23. *,
  24. *:before,
  25. *:after {
  26. box-sizing: inherit;
  27. }
  28. a:focus,
  29. a:active {
  30. outline: none;
  31. }
  32. a,
  33. a:focus,
  34. a:hover {
  35. cursor: pointer;
  36. color: inherit;
  37. text-decoration: none;
  38. }
  39. div:focus {
  40. outline: none;
  41. }
  42. .clearfix {
  43. &:after {
  44. visibility: hidden;
  45. display: block;
  46. font-size: 0;
  47. content: " ";
  48. clear: both;
  49. height: 0;
  50. }
  51. }
  52. // main-container global css
  53. .app-container {
  54. padding: 20px;
  55. }
  56. .fl {float: left;}
  57. .fr {float: right;}
  58. .tl {text-align: left;}
  59. .tr {text-align: right;}
  60. .ellipsis {
  61. white-space: nowrap;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. }
  65. .ellipsis-2 {
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. display: -webkit-box;
  69. -webkit-line-clamp: 2;
  70. -webkit-box-orient: vertical;
  71. }
  72. // 筛选区域样式
  73. .screen-container {
  74. background: #ffffff;
  75. .el-form-item {
  76. margin-bottom: 10px;
  77. }
  78. .top {
  79. height: 40px;
  80. .title {
  81. font-size: 16px;
  82. color: #333;
  83. font-weight: 600;
  84. }
  85. .control {
  86. font-size: 14px;
  87. color: #4e73df;
  88. cursor: pointer;
  89. }
  90. }
  91. // 选择器
  92. .el-select {
  93. width: 100%;
  94. }
  95. // 时间选择器
  96. .el-date-editor.el-input, .el-date-editor.el-input__inner {
  97. width: 100%;
  98. height: 29px;
  99. }
  100. .el-range-editor--small .el-range-separator {
  101. line-height: 28px;
  102. }
  103. .el-col:last-child .el-form-item__content {
  104. margin-left: 0 !important;
  105. }
  106. // .el-form-item__label {
  107. // font-size: 13px;
  108. // }
  109. }
  110. // 主要内容区域样式
  111. .mymain-container {
  112. margin-top: 15px;
  113. margin-bottom: 20px;
  114. .table {
  115. margin: 15px 0;
  116. // .el-button {
  117. // padding: 0;
  118. // }
  119. .el-button--mini {
  120. padding: 7px 10px;
  121. }
  122. .el-button--text {
  123. padding: 0;
  124. font-size: 13px;
  125. }
  126. .el-table {
  127. font-size: 13px;
  128. }
  129. .el-table td, .el-table th {
  130. padding: 5px 0;
  131. }
  132. }
  133. .btn-group {
  134. .text {
  135. font-size: 16px;
  136. color: #666;
  137. line-height: 32px;
  138. }
  139. }
  140. // 导入
  141. .import-btn {
  142. position: relative;
  143. }
  144. .el-upload-list {
  145. position: absolute;
  146. top: 20px;
  147. left: 0;
  148. }
  149. }
  150. // 抽屉样式
  151. .el-drawer {
  152. // 整体
  153. .el-drawer__body {
  154. overflow-y: scroll;
  155. }
  156. .drawer__content {
  157. padding: 0 20px;
  158. }
  159. .drawer__footer {
  160. position: sticky;
  161. bottom: 0;
  162. left: 0;
  163. width: 100%;
  164. background: #fff;
  165. padding: 20px;
  166. }
  167. .drawer__content .el-date-editor {
  168. width: 100%;
  169. }
  170. // 选择器
  171. .el-select {
  172. width: 100%;
  173. }
  174. // 图片墙
  175. .el-upload-list--picture-card .el-upload-list__item {
  176. width: 100px;
  177. height: 100px;
  178. }
  179. .el-upload--picture-card {
  180. width: 100px;
  181. height: 100px;
  182. line-height: 100px;
  183. .avatar-uploader-icon {
  184. font-size: 28px;
  185. color: #8c939d;
  186. width: 100px;
  187. height: 100px;
  188. line-height: 100px;
  189. text-align: center;
  190. }
  191. }
  192. }
  193. .el-popover-left {
  194. margin-left: 10px;
  195. }
  196. // 上传照片样式
  197. .avatar-uploader .el-upload {
  198. border: 1px dashed #d9d9d9;
  199. border-radius: 6px;
  200. cursor: pointer;
  201. position: relative;
  202. overflow: hidden;
  203. }
  204. .avatar-uploader .el-upload:hover {
  205. border-color: #409EFF;
  206. }
  207. .avatar-uploader .el-upload-list {
  208. position: relative;
  209. top: unset;
  210. left: unset;
  211. }
  212. .avatar-uploader-icon {
  213. font-size: 28px;
  214. color: #8c939d;
  215. width: 120px;
  216. height: 120px;
  217. line-height: 120px;
  218. text-align: center;
  219. }
  220. .avatar {
  221. width: 120px;
  222. height: 120px;
  223. display: block;
  224. }
  225. // 系统设置
  226. .setting_title {
  227. font-size: 18px;
  228. padding-left: 15px;
  229. font-weight: 600;
  230. }
  231. .el-menu-item, .el-submenu__title {
  232. height: 44px;
  233. line-height: 44px;
  234. font-weight: 600 !important;
  235. }
  236. .el-submenu .el-menu-item {
  237. height: 44px;
  238. line-height: 44px;
  239. }
  240. .page-footer {
  241. height: 70px;
  242. .footer {
  243. position: fixed;
  244. bottom: 0;
  245. left: 0;
  246. z-index: 9;
  247. width: 100%;
  248. background: #fff;
  249. padding: 15px 40px;
  250. box-sizing: border-box;
  251. transition: all 0.28s;
  252. text-align: right;
  253. box-shadow: 0 2px 5px 0 rgb(0 0 0 / 50%), 0 2px 5px 0 rgb(0 0 0 / 10%);
  254. &.hideSidebar {
  255. margin-left: 54px;
  256. width: calc(100vw - 54px);
  257. }
  258. &.openSidebar {
  259. margin-left: 210px;
  260. width: calc(100vw - 210px);
  261. }
  262. }
  263. }
  264. .diy-table-1 {
  265. border: 1px solid #EBEEF5;
  266. border-right: none;
  267. border-bottom: none;
  268. .item {
  269. display: flex;
  270. border-bottom: 1px solid #EBEEF5;
  271. &.file {
  272. .label {
  273. height: 100px;
  274. }
  275. .value {
  276. height: 100px;
  277. }
  278. .file-list {
  279. display: flex;
  280. .file-item {
  281. // margin-top: 10px;
  282. margin-right: 10px;
  283. }
  284. }
  285. .img {
  286. width: 70px;
  287. height: 70px;
  288. display: block;
  289. border: 1px solid #e4e7ed;
  290. }
  291. .box2 {
  292. flex: 1;
  293. display: flex;
  294. padding: 10px;
  295. align-items: center;
  296. border: 1px solid #e4e7ed;
  297. width: 240px;
  298. height: 70px;
  299. cursor: pointer;
  300. img {
  301. width: 40px;
  302. height: 40px;
  303. display: block;
  304. }
  305. .name {
  306. flex: 1;
  307. color: #222;
  308. font-weight: 600;
  309. margin-left: 10px;
  310. }
  311. }
  312. }
  313. .label {
  314. width: 120px;
  315. height: 40px;
  316. display: flex;
  317. align-items: center;
  318. padding: 0 10px;
  319. box-sizing: border-box;
  320. background: #F5F7FA;
  321. border-right: 1px solid #EBEEF5;
  322. font-size: 14px;
  323. color: #333333;
  324. }
  325. .value {
  326. flex: 1;
  327. height: 40px;
  328. display: flex;
  329. align-items: center;
  330. padding: 0 10px;
  331. box-sizing: border-box;
  332. border-right: 1px solid #EBEEF5;
  333. font-size: 14px;
  334. color: #333333;
  335. input {
  336. border: none;
  337. padding: 0;
  338. }
  339. }
  340. }
  341. }
  342. .diy-table-2 {
  343. font-size: 14px;
  344. margin-top: 20px;
  345. margin-bottom: 20px;
  346. .el-row {
  347. margin-left: 0 !important;
  348. margin-right: 0 !important;
  349. border: 1px solid #EBEEF5;
  350. border-right: none;
  351. }
  352. .el-col {
  353. padding-top: 14px;
  354. padding-bottom: 14px;
  355. border-right: 1px solid #EBEEF5;
  356. }
  357. .head {
  358. color: #909399;
  359. font-weight: bold;
  360. background: #F5F7FA;
  361. }
  362. .body {
  363. color: #333333;
  364. .el-row {
  365. border-top: none;
  366. }
  367. }
  368. .foot {
  369. color: #333333;
  370. .el-row {
  371. border-top: none;
  372. }
  373. }
  374. }
  375. .diy-form-1 {
  376. .item {
  377. display: flex;
  378. height: 40px;
  379. .label {
  380. width: 100px;
  381. display: flex;
  382. align-items: center;
  383. padding-right: 10px;
  384. box-sizing: border-box;
  385. font-size: 14px;
  386. color: #606266;
  387. font-weight: 700;
  388. }
  389. .value {
  390. flex: 1;
  391. display: flex;
  392. align-items: center;
  393. box-sizing: border-box;
  394. font-size: 14px;
  395. color: #333333;
  396. input {
  397. border: none;
  398. padding: 0;
  399. }
  400. }
  401. }
  402. }
  403. input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  404. -webkit-appearance: none;
  405. margin: 0;
  406. }
  407. .main-title {
  408. display: flex;
  409. justify-content: space-between;
  410. align-items: center;
  411. height: 50px;
  412. border-bottom: 1px solid #DCDFE6;
  413. margin-top: 20px;
  414. margin-bottom: 20px;
  415. .title {
  416. font-size: 16px;
  417. font-weight: 600;
  418. padding-left: 10px;
  419. }
  420. }