style.css 4.1 KB

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