style.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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. /* ::-webkit-scrollbar{
  25. width: 10px;
  26. } */
  27. ul{
  28. list-style:none;
  29. }
  30. .inline{
  31. display: inline;
  32. }
  33. .info{
  34. color: rgb(184, 179, 179);
  35. }
  36. .container{
  37. position: relative;
  38. padding: 16px;
  39. }
  40. .flex-align-center{
  41. display: flex;
  42. align-items: center;
  43. }
  44. .flex-align-center-wrap{
  45. display: flex;
  46. flex-wrap: wrap;
  47. align-items: center;
  48. }
  49. .flex-align-stretch{
  50. display: flex;
  51. flex-wrap: wrap;
  52. align-items: stretch;
  53. }
  54. .flex-align-start{
  55. display: flex;
  56. flex-wrap: wrap;
  57. align-items: flex-start;
  58. }
  59. .flex-between{
  60. justify-content: space-between;
  61. }
  62. .flex-around{
  63. justify-content: space-around;
  64. }
  65. .flex-end{
  66. justify-content: flex-end;
  67. }
  68. .normal-panel{
  69. background-color: #fff;
  70. }
  71. .normal-title{
  72. /* margin: 10px 0; */
  73. color: #333;
  74. font-size: 16px;
  75. font-weight: 700;
  76. }
  77. .normal-card{
  78. padding: 16px;
  79. background: #fff;
  80. border-radius: 4px;
  81. }
  82. .normal-margin{
  83. margin-bottom: 16px !important;
  84. }
  85. .normal-btn-width{
  86. width: 120px;
  87. }
  88. .btn-warning {
  89. background-color: #FA8C16 !important;
  90. }
  91. .el-table .el-table__cell{
  92. }
  93. .el-input-group__append, .el-input-group__prepend{
  94. background-color: #4F7BFD !important;
  95. color: #fff !important;
  96. border: 1px solid #4F7BFD !important;
  97. cursor: pointer;
  98. }
  99. .el-table__body tr.current-row>td{
  100. background-color: #f1f2f3 !important;
  101. color: #333;
  102. /* font-weight: bold; */
  103. }
  104. .list-table-height{
  105. height:calc(100vh - 302px)
  106. }
  107. .inline-16{
  108. display: inline-block !important;
  109. margin-right: 10px !important;
  110. }
  111. .inline-24{
  112. display: inline-block !important;
  113. margin-right: 24px !important;
  114. }
  115. .normal_input-width{
  116. width: 240px !important;
  117. }
  118. .image-panel{
  119. position: relative;
  120. display: flex;
  121. align-items: center;
  122. justify-content: space-around;
  123. width: 150px;
  124. height: 150px;
  125. margin-top:10px;
  126. background: #FFFFFF;
  127. border-radius: 4px 4px 4px 4px;
  128. opacity: 1;
  129. border: 1px solid rgb(0 0 0 / 5%);
  130. color: #CCCCCC;
  131. font-size: 1.5rem;
  132. cursor: pointer;
  133. overflow: hidden;
  134. }
  135. .close-btn{
  136. position: absolute;
  137. right:5px;
  138. top:5px;
  139. color:red;
  140. text-shadow: 0px 0px 3px #ccc;
  141. z-index: 999;
  142. }
  143. .dialog-footer{
  144. margin-top:32px;
  145. text-align: center;
  146. }
  147. .my-tabs .el-tabs__header{
  148. margin: 0 !important;
  149. border:none !important;
  150. }
  151. .my-tabs .el-tabs__item.is-active{
  152. background: #fff !important;
  153. }
  154. .my-tabs .el-tabs--card>.el-tabs__header .el-tabs__nav, .my-tabs .el-tabs--card>.el-tabs__header .el-tabs__item{
  155. border:none !important;
  156. }
  157. .sticky{
  158. position:sticky;
  159. top:0;
  160. z-index:99
  161. }
  162. .el-tree--highlight-current .is-current.el-tree-node > .el-tree-node__content {
  163. background-color: #4F7BFD !important;
  164. color:#fff !important;
  165. border-radius:3px
  166. }
  167. .my-label{
  168. width: 150px !important;
  169. font-size: 14px;
  170. color:rgb(163, 163, 163) !important;
  171. }
  172. .my-content{
  173. font-size: 14px;
  174. color:#666 !important;
  175. width: 800px;
  176. }
  177. .my-label__title{
  178. color:#666;
  179. }
  180. .el-drawer__wrapper{
  181. right:60px !important;
  182. }
  183. .fixed__btn__panel{
  184. position: absolute;
  185. display: flex;
  186. justify-content: center;
  187. width: 100%;
  188. bottom: 0;
  189. left:0;
  190. padding:16px 10px;
  191. text-align: center;
  192. border-top:1px solid #f1f2f3;
  193. background-color: #fff;
  194. box-shadow: 0 -5px 5px rgba(0, 0, 0, .05);
  195. z-index: 9999999;
  196. }
  197. .drawer__panel{
  198. border-top:1px solid #eeeeee;
  199. padding:20px 16px;
  200. margin-bottom:72px
  201. }
  202. .el-notification.right{
  203. right:70px !important;
  204. }
  205. .search__label{
  206. display: inline-block;
  207. text-align: right;
  208. font-size: 14px;
  209. color:rgb(163, 163, 163) !important;
  210. margin-right: 10px;
  211. }
  212. .label_center {
  213. display: flex;
  214. align-items: center;
  215. }
  216. .mt-10{
  217. margin-bottom: 10px;
  218. }
  219. .el-dialog__body{
  220. padding: 20px !important;
  221. }
  222. .table_row_link{
  223. color:#3874F6;
  224. text-decoration: underline;
  225. cursor: pointer;
  226. }