style.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. *{
  2. margin:0;
  3. padding: 0;
  4. }
  5. /* CDN 服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
  6. @font-face {
  7. font-family: "阿里巴巴普惠体 2.0 35 Thin";font-weight: 250;
  8. src: url("//at.alicdn.com/wf/webfont/HB6yVW1i0ADP/IUVK5X2zYVPbI6oplagJ1.woff2") format("woff2"),
  9. url("//at.alicdn.com/wf/webfont/HB6yVW1i0ADP/oengschXIq68YqRU8lkf4.woff") format("woff");
  10. font-display: swap;
  11. }
  12. body{
  13. color: #333333;
  14. min-width: 1200px;
  15. }
  16. input[type=number] {
  17. -moz-appearance:textfield;
  18. }
  19. input[type=number]::-webkit-inner-spin-button,
  20. input[type=number]::-webkit-outer-spin-button {
  21. -webkit-appearance: none;
  22. margin: 0;
  23. }
  24. ul{
  25. list-style:none;
  26. }
  27. .inline{
  28. display: inline;
  29. }
  30. .info{
  31. color: rgb(184, 179, 179);
  32. }
  33. .container{
  34. position: relative;
  35. padding: 16px;
  36. }
  37. .flex-align-center{
  38. display: flex;
  39. align-items: center;
  40. }
  41. .flex-align-top{
  42. display: -webkit-flex; /* Safari */
  43. display: flex;
  44. align-items: flex-start;
  45. justify-content: flex-start;
  46. }
  47. .flex-align-center-wrap{
  48. display: flex;
  49. flex-wrap: wrap;
  50. align-items: center;
  51. }
  52. .flex-align-stretch{
  53. display: flex;
  54. flex-wrap: wrap;
  55. align-items: stretch;
  56. }
  57. .flex-align-start{
  58. display: flex;
  59. flex-wrap: wrap;
  60. align-items: flex-start;
  61. }
  62. .flex-between{
  63. justify-content: space-between;
  64. }
  65. .flex-around{
  66. justify-content: space-around;
  67. }
  68. .flex-end{
  69. justify-content: flex-end;
  70. }
  71. .normal-panel{
  72. background-color: #fff;
  73. }
  74. .normal-title{
  75. /* margin: 10px 0; */
  76. color: #333;
  77. font-size: 16px;
  78. font-weight: 700;
  79. }
  80. .normal-card{
  81. padding: 16px;
  82. background: #fff;
  83. border-radius: 4px;
  84. }
  85. .normal-margin{
  86. margin-bottom: 16px !important;
  87. }
  88. .normal-btn-width{
  89. width: 120px;
  90. }
  91. .btn-warning {
  92. background-color: #FA8C16 !important;
  93. }
  94. .el-table .el-table__cell{
  95. }
  96. .el-input-group__append, .el-input-group__prepend{
  97. background-color: #4F7BFD !important;
  98. color: #fff !important;
  99. border: 1px solid #4F7BFD !important;
  100. cursor: pointer;
  101. }
  102. .el-table__body tr.current-row>td{
  103. background-color: #f1f2f3 !important;
  104. color: #333;
  105. /* font-weight: bold; */
  106. }
  107. .list-table-height{
  108. height:calc(100vh - 302px)
  109. }
  110. .inline-16{
  111. display: inline-block !important;
  112. margin-right: 10px !important;
  113. }
  114. .inline-15{
  115. display: inline-block !important;
  116. margin-right: 15px !important;
  117. }
  118. .inline-24{
  119. display: inline-block !important;
  120. margin-right: 24px !important;
  121. }
  122. .normal_input-width{
  123. width: 240px !important;
  124. }
  125. .image-panel{
  126. position: relative;
  127. display: flex;
  128. align-items: center;
  129. justify-content: space-around;
  130. width: 150px;
  131. height: 150px;
  132. margin-top:10px;
  133. background: #FFFFFF;
  134. border-radius: 4px 4px 4px 4px;
  135. opacity: 1;
  136. border: 1px solid rgb(0 0 0 / 5%);
  137. color: #CCCCCC;
  138. font-size: 1.5rem;
  139. cursor: pointer;
  140. overflow: hidden;
  141. }
  142. .close-btn{
  143. position: absolute;
  144. right:5px;
  145. top:5px;
  146. color:red;
  147. text-shadow: 0px 0px 3px #ccc;
  148. z-index: 999;
  149. }
  150. .dialog-footer{
  151. margin-top:32px;
  152. text-align: center;
  153. }
  154. .my-tabs .el-tabs__header{
  155. margin: 0 !important;
  156. border:none !important;
  157. }
  158. .my-tabs .el-tabs__item.is-active{
  159. background: #fff !important;
  160. }
  161. .my-tabs .el-tabs--card>.el-tabs__header .el-tabs__nav, .my-tabs .el-tabs--card>.el-tabs__header .el-tabs__item{
  162. border:none !important;
  163. }
  164. .sticky{
  165. position:sticky;
  166. top:0;
  167. z-index:99
  168. }
  169. .el-tree--highlight-current .is-current.el-tree-node > .el-tree-node__content {
  170. background-color: #4F7BFD !important;
  171. color:#fff !important;
  172. border-radius:3px
  173. }
  174. .my-label{
  175. width: 150px !important;
  176. font-size: 14px;
  177. color:rgb(163, 163, 163) !important;
  178. }
  179. .my-content{
  180. font-size: 14px;
  181. color:#666 !important;
  182. width: 800px;
  183. }
  184. .my-label__title{
  185. color:#666;
  186. }
  187. .el-drawer__wrapper{
  188. right:60px !important;
  189. }
  190. .fixed__btn__panel{
  191. position: absolute;
  192. display: flex;
  193. justify-content: center;
  194. width: 100%;
  195. bottom: 0;
  196. left:0;
  197. padding:16px 10px;
  198. text-align: center;
  199. border-top:1px solid #f1f2f3;
  200. background-color: #fff;
  201. box-shadow: 0 -5px 5px rgba(0, 0, 0, .05);
  202. z-index: 9999999;
  203. }
  204. .drawer__panel{
  205. border-top:1px solid #eeeeee;
  206. padding:20px 16px;
  207. margin-bottom:72px
  208. }
  209. .drawer__panel_new{
  210. border-top:1px solid #eeeeee;
  211. padding:20px 16px;
  212. margin-bottom:0
  213. }
  214. .el-notification.right{
  215. right:70px !important;
  216. }
  217. .search__label{
  218. display: inline-block;
  219. text-align: right;
  220. font-size: 14px;
  221. color:rgb(163, 163, 163) !important;
  222. margin-right: 10px;
  223. }
  224. .label_center {
  225. display: flex;
  226. align-items: center;
  227. }
  228. .mt-10{
  229. margin-bottom: 10px;
  230. }
  231. .el-dialog__body{
  232. padding: 20px !important;
  233. }
  234. .table_row_link{
  235. color:#3874F6;
  236. text-decoration: underline;
  237. cursor: pointer;
  238. }
  239. .title-font{
  240. font-size: 17px;
  241. color: #666
  242. }
  243. .content-title{
  244. font-size: 14px;
  245. color: #888;
  246. text-align: center;
  247. }
  248. .div-line{
  249. background: #4F7BFD;
  250. height: 22px;
  251. vertical-align: middle;
  252. line-height: 22px;
  253. width: 5px;
  254. float: left;
  255. }
  256. .div-box-new-margin{
  257. margin: 0 16px 0 16px
  258. }
  259. .div-box-new-margin .div-border-box{
  260. margin-top: 16px;
  261. width: 100%;
  262. border-radius: 2px;
  263. border: 1px solid #e9e9e9;
  264. background-color: #ffffff;
  265. box-sizing: border-box;
  266. box-shadow: -1px -1px 5px 0px rgba(0, 0, 0, 0.2);
  267. padding: 16px
  268. }
  269. .div-border-box .content-new-content{
  270. height: 32px
  271. }
  272. .div-border-box .content-new-content .title{
  273. line-height: 22px;
  274. height: 22px;
  275. vertical-align: middle;
  276. margin-left: 10px;
  277. float: left
  278. }
  279. .div-border-box .title{
  280. line-height: 22px;
  281. height: 22px;
  282. vertical-align: middle;
  283. }
  284. .div-border-box .chart{
  285. height: 410px;
  286. position: relative;
  287. }
  288. .div-border-box .out{
  289. display: flex;
  290. justify-content: space-between;
  291. align-items: center;
  292. }
  293. .div-border-box .in{
  294. display: flex;
  295. flex-wrap: wrap;
  296. align-items: center;
  297. }
  298. .div-line-right{
  299. margin-right: 10px;
  300. }
  301. .el-table__header-wrapper table thead .cell, .el-table__fixed-header-wrapper table thead .cell{
  302. white-space: nowrap !important;
  303. width: auto !important;
  304. }
  305. .justify-between-flex-style{
  306. display: flex;
  307. justify-content: space-between;
  308. }
  309. .font-color-style-black{
  310. color: #333333;
  311. }
  312. .font-color-style-green{
  313. color: #009966;
  314. }
  315. .font-color-style-gray{
  316. color: #888888;
  317. }
  318. .font-color-style-yellow{
  319. color: #E6A23C;
  320. }
  321. .font-color-style-blue{
  322. color: #3874F6;
  323. }
  324. .font-class-bold{
  325. font-weight: bold;
  326. }
  327. .mt-5{
  328. margin-bottom: 5px;
  329. }
  330. .justify-div-position{
  331. display: flex;
  332. justify-content: left;
  333. }