app.css 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597
  1. * {
  2. margin: 0;
  3. -webkit-box-sizing: inherit;
  4. box-sizing: inherit;
  5. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  6. }
  7. img {
  8. transition: all 0.5s ease-out;
  9. -moz-transition: all 0.5s ease-out;
  10. -webkit-transition: all 0.5s ease-out;
  11. -o-transition: all 0.5s ease-out;
  12. height: 100%;
  13. object-fit: contain;
  14. }
  15. /* 防止 Vue 页面闪烁 */
  16. [v-cloak] {
  17. display: none !important;
  18. }
  19. /* 设置滚动条 */
  20. html, body {
  21. -ms-overflow-style: scrollbar;
  22. background-color: var(--bodyBackground);
  23. }
  24. ::-webkit-scrollbar {
  25. width: 13px;
  26. height: 13px;
  27. }
  28. ::-webkit-scrollbar-thumb {
  29. background-color: rgba(0, 0, 0, .4);
  30. background-clip: padding-box;
  31. border: 3px solid transparent;
  32. border-radius: 7px;
  33. }
  34. ::-webkit-scrollbar-track {
  35. background-color: transparent;
  36. }
  37. /* 设置滚动条 end. */
  38. .page-container {
  39. position: relative;
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .layout {
  44. height: 100%;
  45. }
  46. #app-main {
  47. width: 100%;
  48. height: 100%;
  49. margin: 0 auto;
  50. -webkit-transition: all .2s;
  51. transition: all .2s;
  52. }
  53. .page-container .layout #app-main .page-left {
  54. position: fixed;
  55. z-index: 1010;
  56. top: 0;
  57. bottom: 0;
  58. display: -webkit-box;
  59. display: -ms-flexbox;
  60. display: flex;
  61. width: var(--real-sidebar-width);
  62. transition: width 0.2s;
  63. -webkit-box-shadow: 10px 0 10px -10px var(--leftBackground);
  64. box-shadow: 10px 0 10px -10px var(--leftBackground);
  65. background: var(--leftBackground);
  66. color: #fff;
  67. -webkit-transition: .3s;
  68. transition: .3s;
  69. overflow-x: hidden;
  70. /*overflow-y: auto;*/
  71. -ms-scroll-chaining: none;
  72. overscroll-behavior: contain;
  73. scrollbar-width: none;
  74. }
  75. .page-container .layout #app-main .page-left::-webkit-scrollbar {
  76. display: none;
  77. }
  78. .page-container .layout #app-main .page-left .left-title {
  79. position: fixed;
  80. z-index: 1000;
  81. top: 0;
  82. width: inherit;
  83. display: -webkit-box;
  84. display: -ms-flexbox;
  85. display: flex;
  86. -webkit-box-align: center;
  87. -ms-flex-align: center;
  88. align-items: center;
  89. -webkit-box-pack: center;
  90. -ms-flex-pack: center;
  91. justify-content: center;
  92. height: 50px;
  93. text-align: center;
  94. overflow: hidden;
  95. text-decoration: none;
  96. background: var(--leftBackground);
  97. -webkit-transition: background .3s;
  98. transition: background .3s;
  99. }
  100. .page-container .layout #app-main .page-left .left-title img {
  101. width: 30px;
  102. border-radius: 3px;
  103. }
  104. .page-container .layout #app-main .page-left .left-title span {
  105. font-size: 14px;
  106. font-weight: 700;
  107. margin-left: 5px;
  108. }
  109. .el-menu-vertical-demo {
  110. border-right: none;
  111. padding-top: 50px;
  112. }
  113. .el-menu-vertical-demo::-webkit-scrollbar {
  114. width: 0 !important
  115. }
  116. .page-container .layout #app-main .page-mask {
  117. position: fixed;
  118. z-index: 1000;
  119. top: 0;
  120. left: 0;
  121. width: 100%;
  122. height: 100%;
  123. background-color: rgba(0, 0, 0, .5);
  124. -webkit-backdrop-filter: blur(2px);
  125. backdrop-filter: blur(2px);
  126. -webkit-transition: all .2s;
  127. transition: all .2s;
  128. -webkit-transform: translateZ(0);
  129. transform: translateZ(0);
  130. opacity: 0;
  131. visibility: hidden;
  132. }
  133. .page-container .layout #app-main .page-main {
  134. display: -webkit-box;
  135. display: -ms-flexbox;
  136. display: flex;
  137. -webkit-box-orient: vertical;
  138. -webkit-box-direction: normal;
  139. -ms-flex-direction: column;
  140. flex-direction: column;
  141. min-height: 100%;
  142. margin-left: var(--real-sidebar-width);
  143. background-color: var(--bodyBackground);
  144. -webkit-box-shadow: 1px 0 0 0 #d5dee6;
  145. box-shadow: 1px 0 0 0 #d5dee6;
  146. -webkit-transition: .3s;
  147. transition: .3s;
  148. }
  149. .page-container .layout #app-main .page-main .main-header[data-7512a93d] {
  150. position: fixed;
  151. z-index: 999;
  152. top: 0;
  153. right: 0;
  154. left: 50%;
  155. width: calc(100% - var(--real-sidebar-width));
  156. -webkit-transform: translateX(calc(-50% + var(--real-sidebar-width) * 0.5));
  157. transform: translateX(calc(-50% + var(--real-sidebar-width) * 0.5));
  158. display: -webkit-box;
  159. display: -ms-flexbox;
  160. display: flex;
  161. -webkit-box-align: center;
  162. -ms-flex-align: center;
  163. align-items: center;
  164. -webkit-box-pack: justify;
  165. -ms-flex-pack: justify;
  166. justify-content: space-between;
  167. height: 50px;
  168. background: var(--headerBackground);
  169. color: var(--headerTextColors);
  170. -webkit-transition: .3s, -webkit-box-shadow .2s;
  171. transition: .3s, -webkit-box-shadow .2s;
  172. transition: .3s, box-shadow .2s;
  173. transition: .3s, box-shadow .2s, -webkit-box-shadow .2s;
  174. -webkit-box-shadow: 0 0 1px 0 #ccc;
  175. box-shadow: 0 0 1px 0 #ccc;
  176. }
  177. .page-container .layout #app-main .page-main .main-header .right-header .el-dropdown {
  178. color: var(--headerTextColors);
  179. }
  180. .Va-aside-menu[data-7512a93d] {
  181. -webkit-transition: .3s;
  182. transition: .3s;
  183. background: var(--leftBackground)
  184. }
  185. .Va-aside-menu[data-7512a93d] .el-menu-item {
  186. color: var(--leftTextColors);
  187. background: var(--leftBackground)
  188. }
  189. .Va-aside-menu[data-7512a93d] .el-menu-item.is-active {
  190. color: var(--themeColors);
  191. background: #409EFF23;
  192. border-left: 3px solid var(--themeColors)
  193. }
  194. .Va-aside-menu[data-7512a93d] .el-submenu__title {
  195. color: var(--leftTextColors);
  196. background: var(--leftBackground);
  197. font-size: 14px;
  198. }
  199. .Va-aside-menu[data-7512a93d] .va-children .el-submenu__title {
  200. color: var(--leftTextColors);
  201. background: var(--leftBackground);
  202. font-size: 14px;
  203. }
  204. .el-menu-item i, .el-submenu__title i {
  205. color: inherit;
  206. }
  207. .Va-aside-menu[data-7512a93d] .el-menu-item:hover, .Va-aside-menu[data-7512a93d] .el-submenu__title:hover {
  208. color: var(--themeColors);
  209. background: var(--leftBackground)
  210. }
  211. .Va-aside-menu[data-7512a93d] .el-menu {
  212. background: var(--leftBackground);
  213. }
  214. .Va-aside-menu[data-7512a93d] .Va-aside-menu[data-7512a93d] .el-menu-item.is-active {
  215. color: var(--themeColors);
  216. background: var(--leftBackground)
  217. }
  218. .Va-aside-menu[data-7512a93d] .el-submenu.is-active .el-menu .el-menu-item.is-active {
  219. color: var(--themeColors);
  220. background: #ffffff;
  221. border-left: 3px solid var(--themeColors)
  222. }
  223. .page-container .layout #app-main .page-main .main-header .right-header .functional-areas {
  224. padding: 0px 20px;
  225. }
  226. .page-container .layout #app-main .page-main .main-header .right-header .functional-areas .theme .el-dropdown-link .svg-icon {
  227. width: 20px;
  228. height: 20px;
  229. }
  230. .el-menu-vertical-demo:not(.el-menu--collapse) {
  231. width: 200px;
  232. max-height: 100vh;
  233. min-height: 400px;
  234. }
  235. .page-container .layout #app-main .page-main .main-content {
  236. /*height: 100%;*/
  237. /*-webkit-box-flex: 1;*/
  238. /*-ms-flex: auto;*/
  239. /*flex: auto;*/
  240. /*position: relative;*/
  241. /*overflow: hidden;*/
  242. margin: 60px 10px 10px 10px;
  243. /*background: #f0f0f0;*/
  244. border-radius: 3px;
  245. }
  246. .left-header {
  247. display: -webkit-box;
  248. display: -ms-flexbox;
  249. display: flex;
  250. -webkit-box-align: center;
  251. -ms-flex-align: center;
  252. align-items: center;
  253. padding-right: 50px;
  254. overflow: hidden;
  255. -webkit-mask-image: linear-gradient(90deg, #000, #000 calc(100% - 50px), transparent);
  256. mask-image: linear-gradient(90deg, #000, #000 calc(100% - 50px), transparent);
  257. }
  258. .right-header {
  259. display: -webkit-box;
  260. display: -ms-flexbox;
  261. display: flex;
  262. -webkit-box-align: center;
  263. -ms-flex-align: center;
  264. align-items: center;
  265. padding: 0 17px;
  266. white-space: nowrap;
  267. }
  268. .sidebar-collapse {
  269. display: flex;
  270. align-items: center;
  271. padding: 0 20px;
  272. height: 50px;
  273. cursor: pointer;
  274. transition: 0.3s;
  275. }
  276. .sidebar-collapse:hover {
  277. background-image: linear-gradient(to right, #ddd, transparent);
  278. }
  279. .svg-icon {
  280. transition: 0.3s;
  281. }
  282. .is-collapse .svg-icon {
  283. transform: rotateZ(-180deg);
  284. }
  285. .el-breadcrumb {
  286. margin-left: 0;
  287. }
  288. .head-image {
  289. width: 30px;
  290. border-radius: 3px;
  291. vertical-align: middle;
  292. margin-top: -2px;
  293. margin-right: 4px;
  294. /*box-shadow: 0 0 1px 1px var(--leftBackground);*/
  295. }
  296. .form-container {
  297. background: #fff;
  298. padding: 20px;
  299. }
  300. .form-container-header .options-right {
  301. float: right;
  302. display: inline-block;
  303. margin-bottom: 10px;
  304. }
  305. #nprogress .bar {
  306. background: var(--themeColors);
  307. !important;
  308. }
  309. .has-gutter tr th {
  310. background: #f5f6fa;
  311. }
  312. .inline-tables .el-table .cell {
  313. white-space: nowrap;
  314. font-size: 12px;
  315. min-height: 36px;
  316. line-height: 36px;
  317. }
  318. .inline-tables .el-table td {
  319. padding: 0 0
  320. }
  321. .inline-tables .el-table th {
  322. padding: 1px 0
  323. }
  324. .Va-table-move {
  325. position: relative;
  326. white-space: pre-wrap !important;
  327. width: max-content !important;
  328. background: #fff;
  329. text-align: left;
  330. z-index: 1991;
  331. padding: 0 10px !important;
  332. border-radius: 4px;
  333. max-width: 400px;
  334. word-break: break-all !important;
  335. font-size: 14px;
  336. overflow: visible !important;
  337. text-overflow: clip !important;
  338. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
  339. }
  340. .Va-table-move-close {
  341. top: -10px;
  342. right: -10px;
  343. position: absolute;
  344. width: 20px;
  345. height: 20px;
  346. padding: 0 0 0 0.5px;
  347. cursor: pointer;
  348. background-color: #666;
  349. border-radius: 50%;
  350. color: #fff;
  351. z-index: 9999999999;
  352. margin: 0 auto;
  353. font-size: 20px;
  354. }
  355. .Va-container-tables-pagination-box{
  356. text-align: right;margin-top: 10px;
  357. }
  358. .Va-container[data-7512a93d] .Va-container-tables-pagination[data-7512a93d] {
  359. text-align: right;
  360. margin-bottom: 10px;
  361. margin-top: 10px
  362. }
  363. .el-button[inline] {
  364. padding: 4PX 5PX;
  365. margin-left: 5px;
  366. }
  367. .Va-drawer.fixed {
  368. position: fixed;
  369. right: 0;
  370. border-radius: 0;
  371. margin-top: 0 !important;
  372. margin-bottom: 0 !important;
  373. height: -webkit-fill-available;
  374. }
  375. .Va-drawer .el-drawer__header {
  376. border-bottom: 1px solid #eee;
  377. padding: 15px 20px 10px;
  378. margin-bottom: 0;
  379. }
  380. .el-drawer__header > :first-child {
  381. font-size: 18px;
  382. }
  383. .Va-drawer.fixed .Va-drawer-main[data-7512a93d] {
  384. overflow: auto;
  385. }
  386. .Va-drawer.fixed .el-drawer__body {
  387. padding: 1px 12px 1px 15px;
  388. }
  389. .Va-drawer .el-drawer__body {
  390. padding: 1px 12px 1px 5px;
  391. min-height: 200px;
  392. }
  393. .el-drawer__body {
  394. padding: 10px 22px;
  395. min-height: 200px;
  396. }
  397. .Va-drawer .Va-forms[data-7512a93d] {
  398. padding: 15px;
  399. }
  400. .Va-forms[data-7512a93d].el-form--label-top .el-form-item {
  401. margin-bottom: 15px;
  402. }
  403. .Va-forms[data-7512a93d].el-form--label-top .el-form-item__label {
  404. padding: 0 0 1px;
  405. line-height: 20px;
  406. }
  407. .Va-forms[data-7512a93d] .el-form-item__label {
  408. word-wrap: break-word;
  409. word-break: normal;
  410. }
  411. /*footer*/
  412. .el-drawer__footer {
  413. padding: 5px 20px 8px;
  414. }
  415. .el-drawer__footer {
  416. padding: 10px 20px 20px;
  417. text-align: right;
  418. -webkit-box-sizing: border-box;
  419. box-sizing: border-box;
  420. }
  421. .Va-drawer .Va-drawer-footer[data-7512a93d] {
  422. border-top: 1px solid #eee;
  423. padding-top: 10px;
  424. padding-bottom: 5px;
  425. }
  426. /*footer*/
  427. .Va-text-left[data-7512a93d] {
  428. text-align: left;
  429. }
  430. .Va-dialog.fixed .el-dialog__body {
  431. padding: 1px 12px 1px 15px
  432. }
  433. .Va-dialog.fixed .Va-dialog-main[data-7512a93d] {
  434. overflow: auto
  435. }
  436. .Va-dialog.auto .Va-dialog-main[data-7512a93d] {
  437. overflow: auto
  438. }
  439. .Va-dialog.auto .el-card__body {
  440. padding: 8px
  441. }
  442. .Va-dialog .el-dialog__header {
  443. border-bottom: 1px solid #eee;
  444. padding: 15px 20px 10px
  445. }
  446. .Va-dialog .Va-dialog-footer[data-7512a93d] {
  447. border-top: 1px solid #eee;
  448. padding-top: 10px;
  449. padding-bottom: 5px
  450. }
  451. [class*=" el-icon-"], [class^=el-icon-] {
  452. font-family: element-icons !important;
  453. speak: none;
  454. font-style: normal;
  455. font-weight: 400;
  456. font-variant: normal;
  457. text-transform: none;
  458. line-height: 1;
  459. vertical-align: baseline;
  460. display: inline-block;
  461. -webkit-font-smoothing: antialiased;
  462. -moz-osx-font-smoothing: grayscale;
  463. }
  464. /* 字体色 */
  465. .Va-help-block.success, .table-span.success, .views-span.success {
  466. color: #67C23A
  467. }
  468. .Va-help-block.warning, .table-span.warning, .views-span.warning {
  469. color: #E6A23C
  470. }
  471. .Va-help-block.fail, .table-span.fail, .views-span.fail {
  472. color: #F56C6C
  473. }
  474. .Va-help-block.primary, .table-span.primary, .views-span.primary {
  475. color: #409EFF
  476. }
  477. .Va-help-block.black, .table-span.black, .views-span.black {
  478. color: #344058
  479. }
  480. .Va-help-block.purple, .table-span.purple, .views-span.purple {
  481. color: #d21074
  482. }
  483. .Va-help-block.blue, .table-span.blue, .views-span.blue {
  484. color: #2d6973
  485. }
  486. .va-el-dropdown-link {
  487. font-size: 12px;
  488. color: var(--themeColors);
  489. }
  490. .el-button[primary] {
  491. color: var(--themeColors)
  492. }
  493. .el-button[primary]:hover {
  494. color: var(--buttonHoverColors)
  495. }
  496. .el-button[primary].is-disabled {
  497. color: #a0cfff
  498. }
  499. .el-button[success] {
  500. color: #67c23a
  501. }
  502. .el-button[success]:hover {
  503. color: #85ce61
  504. }
  505. .el-button[success].is-disabled {
  506. color: #b3e19d
  507. }
  508. .el-button[info] {
  509. color: #909399
  510. }
  511. .el-button[info]:hover {
  512. color: #a6a9ad
  513. }
  514. .el-button[info].is-disabled {
  515. color: #c8c9cc
  516. }
  517. .el-button[warning] {
  518. color: #e6a23c
  519. }
  520. .el-button[warning]:hover {
  521. color: #ebb563
  522. }
  523. .el-button[warning].is-disabled {
  524. color: #f3d19e
  525. }
  526. .el-button[danger] {
  527. color: #F56C6C
  528. }
  529. .el-button[danger]:hover {
  530. color: #f78989
  531. }
  532. .el-button[danger].is-disabled {
  533. color: #fab6b6
  534. }
  535. .Va-help-block {
  536. display: block;
  537. margin-top: 3px;
  538. color: #737373;
  539. font-size: 12px;
  540. min-height: 18px;
  541. margin-bottom: 0;
  542. line-height: 1.5
  543. }
  544. .Va-help-block:hover {
  545. color: #222
  546. }
  547. .Va-dialog .Va-dialog-footer[data-7512a93d] {
  548. border-top: 1px solid #eee;
  549. padding-top: 10px;
  550. padding-bottom: 5px
  551. }
  552. .Va-text-right[data-7512a93d] {
  553. text-align: right
  554. }
  555. .Va-text-left[data-7512a93d] {
  556. text-align: left
  557. }
  558. .forms-items-left {
  559. float: left;
  560. width: 49%;
  561. overflow: hidden;
  562. }
  563. .forms-items-right {
  564. float: right;
  565. width: 49%;
  566. overflow: hidden;
  567. }
  568. .float-clear {
  569. clear: both
  570. }
  571. .forms-divider {
  572. width: 100%;
  573. margin-bottom: 12px;
  574. font-weight: 500
  575. }
  576. .forms-divider.line {
  577. border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  578. box-shadow: 0 2px 0 -5px rgba(0, 0, 0, 0.1);
  579. }
  580. .forms-divider > .left {
  581. font-size: 20px;
  582. padding-left: 10px;
  583. color: #333;
  584. font-weight: 600;
  585. }
  586. .forms-divider > .right {
  587. font-size: 20px;
  588. /*padding-right: 10px;*/
  589. float: right;
  590. padding-bottom: 5px;
  591. color: #333;
  592. font-weight: 600;
  593. }
  594. .va-component-picture {
  595. position: relative;
  596. background-color: #fbfdff;
  597. border: 1px dashed #c0ccda;
  598. border-radius: 6px;
  599. box-sizing: border-box;
  600. width: 108px;
  601. height: 108px;
  602. line-height: 106px;
  603. vertical-align: top;
  604. overflow: hidden;
  605. display: inline-block
  606. }
  607. .va-component-picture:hover {
  608. border: 1px dashed var(--themeColors);
  609. }
  610. .va-component-picture .upload {
  611. position: relative;
  612. border-radius: 6px;
  613. box-sizing: border-box;
  614. width: 108px;
  615. height: 108px;
  616. line-height: 106px;
  617. vertical-align: top
  618. }
  619. .va-component-picture .upload .icon {
  620. font-size: 50px;
  621. margin-top: 25px;
  622. text-align: center;
  623. cursor: pointer;
  624. display: block;
  625. color: #8c939d
  626. }
  627. .va-component-picture.iconfont {
  628. position: relative;
  629. background-color: #fbfdff;
  630. border: 1px dashed #c0ccda;
  631. border-radius: 6px;
  632. box-sizing: border-box;
  633. width: 85px;
  634. height: 85px;
  635. line-height: 80px;
  636. vertical-align: top;
  637. overflow: hidden;
  638. display: inline-block
  639. }
  640. .va-component-picture.iconfont .upload {
  641. position: relative;
  642. border-radius: 6px;
  643. box-sizing: border-box;
  644. width: 85px;
  645. height: 85px;
  646. line-height: 80px;
  647. vertical-align: top
  648. }
  649. .va-component-picture.iconfont .upload:hover .upload-block {
  650. display: inline-block;
  651. }
  652. .va-component-picture.iconfont .upload-block {
  653. display: inline-block;
  654. position: absolute;
  655. border-radius: 2px;
  656. box-sizing: border-box;
  657. width: 82px;
  658. height: 27px;
  659. background: #000;
  660. bottom: -1px;
  661. opacity: .4;
  662. }
  663. .va-component-picture.iconfont .upload-block-icon {
  664. display: inline-block;
  665. position: absolute;
  666. box-sizing: border-box;
  667. width: 82px;
  668. height: 27px;
  669. line-height: 27px;
  670. text-align: center;
  671. bottom: -1px;
  672. color: var(--themeColors);
  673. }
  674. .va-component-picture.iconfont .upload .icon, .va-component-picture.iconfont .upload .fa {
  675. font-size: 55px;
  676. margin-top: 10px;
  677. text-align: center;
  678. cursor: pointer;
  679. display: block;
  680. color: #8c939d
  681. }
  682. .va-component-picture.iconfont .upload .iconfont {
  683. font-size: 55px;
  684. text-align: center;
  685. cursor: pointer;
  686. display: block;
  687. color: #8c939d
  688. }
  689. .va-component-picture .show {
  690. position: relative;
  691. background-color: #fbfdff;
  692. border-radius: 6px;
  693. box-sizing: border-box;
  694. width: 108px;
  695. height: 108px;
  696. line-height: 106px;
  697. vertical-align: top
  698. }
  699. .va-component-picture .show .image {
  700. width: 104px;
  701. height: 105px;
  702. object-fit: contain;
  703. border-radius: 6px;
  704. position: absolute;
  705. left: 0;
  706. top: 0;
  707. transition: all 0.5s ease-out;
  708. -moz-transition: all 0.5s ease-out;
  709. -webkit-transition: all 0.5s ease-out;
  710. -o-transition: all 0.5s ease-out
  711. }
  712. .va-component-picture .show .shadow {
  713. position: absolute;
  714. width: 100%;
  715. height: 30px;
  716. left: 0;
  717. bottom: 0;
  718. text-align: center;
  719. color: #fff;
  720. font-size: 20px;
  721. background-color: rgba(0, 0, 0, .5);
  722. -webkit-transition: opacity .3s;
  723. transition: opacity .3s
  724. }
  725. .va-component-picture .show .shadow .icon {
  726. color: rgb(254, 254, 254);
  727. font-size: 16px;
  728. cursor: pointer;
  729. margin-top: 5px;
  730. float: left;
  731. margin-left: 10px
  732. }
  733. .va-component-picture .show .shadow .icon.float-right {
  734. float: right !important;
  735. margin-right: 15px
  736. }
  737. .va-component-picture .show:hover .image {
  738. transform: scale(1.2, 1.2)
  739. }
  740. .va-component-picture .el-progress-circle {
  741. width: 90px !important;
  742. height: 90px !important;
  743. }
  744. .el-dialog__body {
  745. padding: 10px 22px;
  746. min-height: 200px
  747. }
  748. .Va-dialog .el-dialog__body {
  749. padding: 1px 12px 1px 5px;
  750. min-height: 200px
  751. }
  752. .Va-dialog .Va-forms[data-7512a93d] {
  753. padding: 15px
  754. }
  755. .el-dialog__footer {
  756. padding: 5px 20px 8px
  757. }
  758. .gallery-tab .el-tabs__header {
  759. margin-bottom: 0
  760. }
  761. .gallery-tab .el-tabs__header .el-tabs__nav {
  762. margin-left: 30px
  763. }
  764. .gallery-group {
  765. height: 90%
  766. }
  767. .gallery-group-create {
  768. display: inline-block;
  769. text-align: right;
  770. position: absolute;
  771. bottom: 9px
  772. }
  773. .Va-forms .el-upload {
  774. display: inline-flex
  775. }
  776. .Va-picture:hover .el-image__inner {
  777. transform: scale(1.2, 1.2)
  778. }
  779. .el-image__inner {
  780. transition: all 0.5s ease-out;
  781. -moz-transition: all 0.5s ease-out;
  782. -webkit-transition: all 0.5s ease-out;
  783. -o-transition: all 0.5s ease-out;
  784. border-radius: 5px
  785. }
  786. .Va-picture {
  787. margin-top: 30px;
  788. position: relative;
  789. width: 200px;
  790. height: 235px;
  791. line-height: 225px
  792. }
  793. .Va-picture-image {
  794. width: 100%;
  795. height: inherit;
  796. border: 1px dashed #d9d9d9;
  797. border-radius: 6px;
  798. cursor: pointer;
  799. position: relative;
  800. overflow: hidden;
  801. background: #fbfdff
  802. }
  803. .Va-picture-image .default {
  804. font-size: 48px;
  805. color: #8c939d;
  806. display: block;
  807. text-align: center;
  808. line-height: inherit
  809. }
  810. .Va-picture-shadow {
  811. position: absolute;
  812. width: 100%;
  813. height: 100%;
  814. left: 1px;
  815. top: 1px;
  816. cursor: pointer;
  817. text-align: center;
  818. color: #fff;
  819. opacity: 0;
  820. font-size: 20px;
  821. background-color: rgba(0, 0, 0, .5);
  822. -webkit-transition: opacity .3s;
  823. transition: opacity .3s;
  824. border-radius: 5px
  825. }
  826. .Va-picture:hover .Va-picture-shadow {
  827. opacity: .9
  828. }
  829. .Va-picture-shadow .options {
  830. font-size: 22px;
  831. display: contents;
  832. text-align: center;
  833. color: white
  834. }
  835. .va-component-file {
  836. background-color: #fff;
  837. border: 1px dashed #d9d9d9;
  838. border-radius: 6px;
  839. box-sizing: border-box;
  840. width: 300px;
  841. height: 145px;
  842. text-align: center;
  843. position: relative;
  844. overflow: hidden
  845. }
  846. .va-component-file .files {
  847. background-color: #fff;
  848. border: 1px dashed #d9d9d9;
  849. border-radius: 6px;
  850. box-sizing: border-box;
  851. width: 320px;
  852. height: 160px;
  853. text-align: center;
  854. position: relative;
  855. overflow: hidden;
  856. margin-bottom: 10px
  857. }
  858. .va-component-file .el-upload-dragger {
  859. width: 300px;
  860. border: none
  861. }
  862. .va-component-file .progress {
  863. margin: 0 auto;
  864. position: relative;
  865. top: 12%
  866. }
  867. .va-component-file .files .button {
  868. position: absolute;
  869. right: 30px;
  870. top: 12px
  871. }
  872. .va-component-file:hover {
  873. border-color: var(--themeColors)
  874. }
  875. .va-component-file .upload:hover {
  876. cursor: pointer
  877. }
  878. .va-component-file .upload .icon, .va-component-file .files .icon {
  879. font-size: 50px;
  880. color: #C0C4CC;
  881. margin: 20px 0 0;
  882. line-height: 40px
  883. }
  884. .va-component-file .files .icon {
  885. margin-top: 25px
  886. }
  887. .va-component-file[disabled] {
  888. background-color: #F5F7FA !important;
  889. border-color: #E4E7ED;
  890. color: #C0C4CC;
  891. cursor: not-allowed
  892. }
  893. .va-component-file[disabled] .upload {
  894. background-color: #F5F7FA !important;
  895. border-color: #E4E7ED;
  896. color: #C0C4CC;
  897. cursor: not-allowed;
  898. height: 100%;
  899. }
  900. .va-component-file[disabled] .icon {
  901. cursor: not-allowed !important
  902. }
  903. .va-gallery-main {
  904. position: relative;
  905. background-color: #fbfdff;
  906. border: 1px dashed #c0ccda;
  907. border-radius: 6px;
  908. box-sizing: border-box;
  909. width: 148px;
  910. height: 148px;
  911. line-height: 146px;
  912. vertical-align: top;
  913. overflow: hidden
  914. }
  915. .va-gallery-multiple {
  916. clear: both;
  917. display: flex
  918. }
  919. .va-gallery-multiple .va-gallery-main {
  920. float: left;
  921. margin-left: 8px
  922. }
  923. .va-gallery-upload {
  924. position: relative;
  925. background-color: #fbfdff;
  926. border: 1px dashed #c0ccda;
  927. border-radius: 6px;
  928. box-sizing: border-box;
  929. width: 148px;
  930. height: 148px;
  931. line-height: 146px;
  932. vertical-align: top
  933. }
  934. .gallery-upload-tips {
  935. margin-right: 10px;
  936. margin-top: 5px;
  937. display: inline-block;
  938. }
  939. .va-gallery-upload .va-gallery-icon {
  940. font-size: 50px;
  941. margin-top: 40px;
  942. text-align: center;
  943. cursor: pointer;
  944. display: block;
  945. color: #8c939d
  946. }
  947. .va-gallery-upload .va-gallery-icon:hover {
  948. cursor: pointer
  949. }
  950. .va-gallery-image {
  951. width: 100%;
  952. height: 100%
  953. }
  954. .va-gallery-image .image {
  955. width: 144px;
  956. height: 145px;
  957. object-fit: contain;
  958. border-radius: 6px;
  959. position: absolute;
  960. left: 0;
  961. top: 0;
  962. transition: all 0.5s ease-out;
  963. -moz-transition: all 0.5s ease-out;
  964. -webkit-transition: all 0.5s ease-out;
  965. -o-transition: all 0.5s ease-out
  966. }
  967. .va-gallery-shadow {
  968. position: absolute;
  969. width: 100%;
  970. height: 30px;
  971. left: 0;
  972. bottom: 0;
  973. text-align: center;
  974. color: #fff;
  975. font-size: 20px;
  976. background-color: rgba(0, 0, 0, .5);
  977. -webkit-transition: opacity .3s;
  978. transition: opacity .3s
  979. }
  980. .va-gallery-shadow .va-gallery-icon {
  981. color: rgb(254, 254, 254);
  982. font-size: 20px;
  983. cursor: pointer;
  984. margin-top: 6px;
  985. float: left;
  986. margin-left: 15px
  987. }
  988. .va-gallery-shadow .va-gallery-icon.float-right {
  989. float: right !important;
  990. margin-right: 15px
  991. }
  992. .va-gallery-image:hover .image {
  993. transform: scale(1.2, 1.2)
  994. }
  995. .va-gallery-image:hover .va-gallery-shadow {
  996. opacity: .8
  997. }
  998. .va-gallery-upload.gallery:hover {
  999. cursor: pointer
  1000. }
  1001. .__gallery_group {
  1002. width: 100%;
  1003. display: block;
  1004. margin-bottom: 15px;
  1005. height: 30px;
  1006. margin-left: 10px
  1007. }
  1008. .__gallery_group_item {
  1009. cursor: pointer;
  1010. min-width: 10px;
  1011. height: 30px;
  1012. border-radius: 15px;
  1013. -moz-border-radius: 15px;
  1014. -webkit-border-radius: 15px;
  1015. margin-right: 10px;
  1016. display: inline-block;
  1017. float: left;
  1018. padding: 0 8px;
  1019. line-height: 30px;
  1020. border: 1px solid transparent;
  1021. }
  1022. .__gallery_group_item.is_active {
  1023. color: var(--themeColors);
  1024. border-color: currentColor;
  1025. }
  1026. .__gallery_group_item:hover {
  1027. color: var(--themeColors);
  1028. border-color: currentColor;
  1029. }
  1030. .__gallery_group_item_update {
  1031. cursor: pointer;
  1032. min-width: 10px;
  1033. height: 30px;
  1034. border-radius: 5px;
  1035. margin-right: 10px;
  1036. display: inline-block;
  1037. float: left;
  1038. padding: 0 8px;
  1039. line-height: 30px;
  1040. border: 1px solid transparent;
  1041. }
  1042. .__gallery_group_item_update:hover {
  1043. color: var(--themeColors);
  1044. }
  1045. .gallery-header {
  1046. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  1047. min-height: 90px;
  1048. }
  1049. .gallery-dialog-group-box {
  1050. margin-top: 10px;
  1051. clear: both;
  1052. padding-left: 8px;
  1053. }
  1054. .gallery-dialog-group-box .item {
  1055. min-width: 85px;
  1056. display: inline-block;
  1057. text-align: center;
  1058. padding: 4px 12px;
  1059. margin-right: 12px;
  1060. border: 1px solid var(--themeColors);
  1061. border-radius: 20px;
  1062. margin-bottom: 8px;
  1063. }
  1064. .gallery-dialog-group-box .item:hover {
  1065. cursor: pointer;
  1066. background: var(--themeColors);
  1067. color: white;
  1068. border: 1px solid white;
  1069. }
  1070. .gallery-dialog-group-box .item.active {
  1071. cursor: pointer;
  1072. background: var(--themeColors);
  1073. color: white;
  1074. border: 1px solid white;
  1075. }
  1076. .gallery-dialog-image-item {
  1077. float: left;
  1078. width: 15.4%;
  1079. height: 200px;
  1080. padding: 10px 5px 0 5px;
  1081. position: relative;
  1082. overflow: hidden
  1083. }
  1084. .gallery-dialog-image-item.index {
  1085. float: left;
  1086. width: 12.5%;
  1087. padding: 8px;
  1088. position: relative;
  1089. overflow: hidden
  1090. }
  1091. .gallery-dialog-image-item:hover {
  1092. cursor: pointer;
  1093. }
  1094. .gallery-dialog-image-item .el-image {
  1095. border-radius: 5px;
  1096. border: 1px dashed #d9d9d9;
  1097. height: 140px;
  1098. width: 100%
  1099. }
  1100. .gallery-dialog-image-item .el-image:hover {
  1101. border: 1px dashed var(--themeColors);
  1102. }
  1103. .gallery-dialog-image-item .el-image .image-slot, .gallery-dialog-image-item .el-image .image-slot .iconfont {
  1104. text-align: center;
  1105. margin-top: 20%;
  1106. font-size: 50px;
  1107. }
  1108. .gallery-dialog-image-item:hover .el-image__inner {
  1109. transform: scale(1.2, 1.2)
  1110. }
  1111. .gallery-image-dropdown {
  1112. position: absolute;
  1113. right: 17px;
  1114. top: 17px;
  1115. z-index: 10;
  1116. }
  1117. .gallery-image-checkbox {
  1118. position: absolute;
  1119. left: 20px;
  1120. top: 18px;
  1121. font-size: 25px;
  1122. color: #EBEEF5;
  1123. z-index: 10;
  1124. }
  1125. .gallery-image-active {
  1126. position: absolute;
  1127. left: 20px;
  1128. top: 18px;
  1129. font-size: 25px;
  1130. color: #07C160;
  1131. z-index: 10;
  1132. }
  1133. .gallery-image-dropdown:hover, .gallery-image-checkbox:hover, .gallery-image-active:hover {
  1134. cursor: pointer
  1135. }
  1136. .Va-imageDialog-item[data-7512a93d] {
  1137. width: 140px;
  1138. height: 145px;
  1139. background: white;
  1140. padding: 10px;
  1141. margin: 10px;
  1142. float: left;
  1143. border-radius: 5px;
  1144. position: relative;
  1145. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04)
  1146. }
  1147. .Va-imageDialog-item[data-7512a93d]:hover .Va-imageDialog-mask, .Va-imageDialog-item[data-7512a93d]:hover .Va-imageDialog-checkbox {
  1148. display: inline-block
  1149. }
  1150. .Va-imageDialog-item[data-7512a93d] .Va-imageDialog-mask {
  1151. width: 100%;
  1152. height: 100%;
  1153. background: #111;
  1154. opacity: 0.1;
  1155. position: absolute;
  1156. z-index: 10;
  1157. border-radius: 5px;
  1158. display: none;
  1159. top: 0;
  1160. left: 0;
  1161. cursor: pointer
  1162. }
  1163. .Va-imageDialog-item[data-7512a93d] .Va-imageDialog-checkbox {
  1164. width: 140px;
  1165. height: 145px;
  1166. position: absolute;
  1167. z-index: 20;
  1168. display: none;
  1169. left: 50px;
  1170. cursor: pointer
  1171. }
  1172. .Va-imageDialog-item[data-7512a93d] .Va-imageDialog-container[data-7512a93d] {
  1173. height: 120px;
  1174. cursor: pointer
  1175. }
  1176. .Va-imageDialog-item[data-7512a93d] .Va-imageDialog-container[data-7512a93d] .el-image {
  1177. width: 140px;
  1178. margin: 0 auto;
  1179. height: 100%;
  1180. cursor: pointer
  1181. }
  1182. .Va-imageDialog-item[data-7512a93d] .Va-imageDialog-container[data-7512a93d] .title {
  1183. width: 140px;
  1184. padding-left: 5px;
  1185. font-size: 14px;
  1186. display: inline-block;
  1187. height: 20px;
  1188. overflow: hidden;
  1189. text-overflow: ellipsis;
  1190. white-space: nowrap;
  1191. cursor: pointer
  1192. }
  1193. .Va-imageDialog-item[data-7512a93d] .itemsChecked {
  1194. display: inline-block
  1195. }
  1196. .Va-imageDialog-container[data-7512a93d] .image-slot {
  1197. display: flex;
  1198. justify-content: center;
  1199. align-items: center;
  1200. width: 100%;
  1201. height: 100%;
  1202. color: #aaa;
  1203. font-size: 26px
  1204. }
  1205. .Va-image-multiple[data-7512a93d] {
  1206. width: 100%
  1207. }
  1208. .Va-image-multiple[data-7512a93d] .el-image {
  1209. width: 88px;
  1210. height: 88px;
  1211. border: 1px dashed #bbbbbb;
  1212. border-radius: 3px;
  1213. cursor: pointer
  1214. }
  1215. .Va-image-multiple[data-7512a93d] .Va-image-multiple-update[data-7512a93d] {
  1216. display: inline-block
  1217. }
  1218. .Va-image-multiple[data-7512a93d] .Va-image-multiple-box[data-7512a93d] {
  1219. display: inline-block
  1220. }
  1221. .Va-image-multiple[data-7512a93d] .Va-image-multiple-box[data-7512a93d] .el-image {
  1222. margin-right: 10px
  1223. }
  1224. .Va-image-multiple[data-7512a93d] .image-slot {
  1225. display: flex;
  1226. justify-content: center;
  1227. align-items: center;
  1228. width: 100%;
  1229. height: 100%;
  1230. background: #f5f7fa;
  1231. color: #aaa;
  1232. font-size: 26px
  1233. }
  1234. .Va-image-box[data-7512a93d] {
  1235. width: 100px;
  1236. float: left
  1237. }
  1238. .Va-image-box[data-7512a93d] .el-image {
  1239. width: 88px;
  1240. height: 88px;
  1241. border: 1px dashed #bbbbbb;
  1242. border-radius: 3px;
  1243. cursor: pointer
  1244. }
  1245. .Va-image-box[data-7512a93d] .image-slot {
  1246. display: flex;
  1247. justify-content: center;
  1248. align-items: center;
  1249. width: 100%;
  1250. height: 100%;
  1251. background: #f5f7fa;
  1252. color: #aaa;
  1253. font-size: 26px
  1254. }
  1255. .tables-image {
  1256. padding-top: 5px;
  1257. height: 40px;
  1258. width: 55px
  1259. }
  1260. .transform-image {
  1261. overflow: hidden;
  1262. transition: all 0.5s ease-out;
  1263. }
  1264. .forms-upload-box:hover img, .tables-image:hover img, .el-image:hover img, .transform-image img:hover {
  1265. transform: scale(1.2, 1.2);
  1266. }
  1267. .select-line-left{
  1268. float: left
  1269. }
  1270. .select-line-right{
  1271. float: right;
  1272. color: #8492a6;
  1273. font-size: 13px
  1274. }
  1275. .No-data {
  1276. text-align: center;
  1277. line-height: 20;
  1278. font-size: 16px;
  1279. color: #9a9a9a
  1280. }
  1281. .text-space {
  1282. white-space: nowrap;
  1283. text-overflow: ellipsis;
  1284. overflow: hidden;
  1285. word-break: break-all;
  1286. display: inline-block;
  1287. width: 100%
  1288. }
  1289. .setup-file-compress {
  1290. width: 150px;
  1291. }
  1292. .setup-file-compress label {
  1293. width: 100%;
  1294. text-align: center;
  1295. }
  1296. .setup-file-compress label {
  1297. width: 50px;
  1298. display: block;
  1299. background-color: var(--leftBackground);
  1300. box-sizing: border-box;
  1301. position: relative;
  1302. cursor: pointer;
  1303. float: left;
  1304. height: 42px;
  1305. border: 1px solid #e6e9f0;
  1306. margin: 0;
  1307. color: #8d9199;
  1308. text-align: center;
  1309. line-height: 42px;
  1310. }
  1311. .setup-file-compress label:nth-child(1) {
  1312. border-radius: 5px 0 0 0
  1313. }
  1314. .setup-file-compress label:nth-child(3) {
  1315. border-radius: 0 5px 0 0
  1316. }
  1317. .setup-file-compress label:nth-child(7) {
  1318. border-radius: 0 0 0 5px
  1319. }
  1320. .setup-file-compress label:nth-child(9) {
  1321. border-radius: 0 0 5px 0
  1322. }
  1323. .setup-file-compress label:hover {
  1324. background-color: var(--themeColors);
  1325. color: white
  1326. }
  1327. .setup-file-compress .active {
  1328. background-color: var(--themeColors);
  1329. color: white
  1330. }
  1331. /* tinymce 与 element 抽屉弹出层冲突 */
  1332. .tox-tinymce-aux {
  1333. z-index: 9999 !important;
  1334. }
  1335. .tinymce.ui.FloatPanel {
  1336. z-Index: 99 !important;
  1337. }
  1338. @media screen and (max-width: 500px){
  1339. .page-container .layout #app-main .page-main .main-header .right-header .functional-areas{
  1340. padding: 0;
  1341. }
  1342. .right-header{
  1343. padding: 0 8px;
  1344. }
  1345. }
  1346. /* 控制台风格 */
  1347. .home{
  1348. overflow: hidden;
  1349. background-color: var(--headerBackground);
  1350. color: var(--headerTextColors);
  1351. }
  1352. /* 控制台风格 end */
  1353. /* 主题色 */
  1354. :root {
  1355. --themeColors: #009688;
  1356. --themeTextColors: #F9F9F9;
  1357. --themeSelectColors: #606266;
  1358. --headerBackground: #fff;
  1359. --headerTextColors: #303133;
  1360. --leftBackground: #344058;
  1361. --leftTextColors: #fff;
  1362. --buttonHoverColors: #009688;
  1363. --bodyBackground: #f0f2f5;
  1364. }