index.scss 7.9 KB

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