public.scss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. html {
  2. color: #3e3e3e;
  3. font-family: "微软雅黑";
  4. cursor: default;
  5. }
  6. body,
  7. ul,
  8. ol,
  9. li,
  10. p,
  11. h1,
  12. h2,
  13. h3,
  14. h4,
  15. h5,
  16. h6,
  17. form,
  18. fieldset,
  19. table,
  20. td,
  21. img,
  22. div,
  23. dl,
  24. dt,
  25. dd,
  26. input,
  27. figure {
  28. /* margin: 0;
  29. padding: 0;*/
  30. }
  31. body {
  32. -webkit-overflow-scrolling: touch;
  33. text-align: left;
  34. max-height: 100%;
  35. }
  36. a,
  37. a:hover {
  38. text-decoration: none;
  39. outline: none;
  40. }
  41. li {
  42. list-style: none;
  43. }
  44. img {
  45. border: none;
  46. max-width: 100%;
  47. }
  48. input,
  49. select,
  50. textarea {
  51. border: none;
  52. outline: none;
  53. background: none;
  54. }
  55. em,
  56. i {
  57. font-style: normal;
  58. }
  59. h1,
  60. h2,
  61. h3,
  62. h4,
  63. h5,
  64. h6 {
  65. font-weight: normal;
  66. }
  67. span,
  68. p,
  69. h1,
  70. h2,
  71. h3,
  72. h4,
  73. h5,
  74. h6 {
  75. word-break: break-word;
  76. }
  77. ::-webkit-scrollbar {
  78. width: 8px;
  79. height: 8px;
  80. border-radius: 4px;
  81. background: #535353;
  82. }
  83. ::-webkit-scrollbar-thumb {
  84. /*滚动条里面小方块*/
  85. border-radius: 6px;
  86. background-color: #aaaaaa;
  87. }
  88. ::-webkit-scrollbar-track {
  89. /*滚动条里面轨道*/
  90. border-radius: 4px;
  91. background-color: #f6f6f6;
  92. }
  93. .collapsed-menu {
  94. .ivu-icon-ios-arrow-down {
  95. display: none;
  96. }
  97. }
  98. .handleBox {
  99. position: relative;
  100. height: 100%;
  101. .handleRow {
  102. height: 100%;
  103. .handleCol {
  104. height: 100%;
  105. .handleCard {
  106. height: 100%;
  107. .ivu-card-head {
  108. p {
  109. font-weight: 600;
  110. font-size: 14px;
  111. color: #333;
  112. }
  113. }
  114. .ivu-card-body {
  115. height: calc(100% - 50px);
  116. .handleCardBody {
  117. height: 100%;
  118. }
  119. }
  120. }
  121. }
  122. }
  123. }
  124. .treeBox {
  125. width: 100%;
  126. height: 100%;
  127. box-sizing: border-box;
  128. padding-right: 10px;
  129. .treeFilter {
  130. margin-bottom: 10px;
  131. }
  132. .treeCon {
  133. overflow-x: hidden;
  134. overflow-y: auto;
  135. }
  136. }
  137. .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
  138. color: #ffffff;
  139. background: #82bfff;
  140. .expanded:before {
  141. color: #ffffff;
  142. }
  143. .treeIcon {
  144. color: #ffffff90;
  145. }
  146. .treeIcon:hover {
  147. color: #ffffff;
  148. }
  149. }
  150. .drawerHandle {
  151. width: 100%;
  152. height: calc(100% - 45px);
  153. padding-right: 8px;
  154. overflow-y: auto;
  155. overflow-x: hidden;
  156. }
  157. .drawerHandleCard {
  158. width: 100%;
  159. height: calc(100% - 45px);
  160. .ivu-card {
  161. min-height: 100%;
  162. }
  163. }
  164. .drawerFooter {
  165. width: 100%;
  166. height: 50px;
  167. box-sizing: border-box;
  168. padding: 9px 10px;
  169. border-top: 1px solid #e8eaec;
  170. position: absolute;
  171. left: 0px;
  172. bottom: 0px;
  173. text-align: right;
  174. }
  175. .tableForm {
  176. border-top: 1px solid #ddd;
  177. .ivu-row {
  178. background-color: #f9f9f9;
  179. border-width: 0px 0px 0px 1px;
  180. border-style: solid;
  181. border-color: #ddd;
  182. overflow: hidden;
  183. .ivu-col {
  184. // padding: 3px 0px;
  185. border-width: 0px 1px 1px 0px;
  186. border-style: solid;
  187. border-color: #ddd;
  188. overflow: hidden;
  189. .ivu-form-item {
  190. margin-bottom: 0px;
  191. padding-bottom: 24px;
  192. position: relative;
  193. .ivu-form-item-label {
  194. position: absolute;
  195. top: 50%;
  196. transform: translate(0, -50%);
  197. text-align: center;
  198. padding-right: 0px;
  199. }
  200. .ivu-form-item-content {
  201. padding: 12px 8px 12px 8px;
  202. margin-bottom: -24px;
  203. .ivu-form-item-error-tip {
  204. margin-left: 10px;
  205. }
  206. }
  207. .ivu-form-item-content:before {
  208. content: "";
  209. width: 1px;
  210. top: 0;
  211. height: 200%;
  212. bottom: -100px;
  213. left: 0;
  214. background-color: #ddd;
  215. position: absolute;
  216. }
  217. }
  218. .ivu-form-item-required {
  219. .ivu-form-item-label:before {
  220. display: none;
  221. }
  222. .ivu-form-item-label:after {
  223. content: "*";
  224. display: inline-block;
  225. margin-left: 4px;
  226. line-height: 1;
  227. font-family: SimSun;
  228. font-size: 14px;
  229. color: #ed4014;
  230. }
  231. }
  232. .ivu-form-item-error {
  233. .ivu-form-item-content {
  234. padding-top: 0px;
  235. padding-bottom: 0px;
  236. margin-bottom: 0px;
  237. }
  238. .ivu-form-item-content:before {
  239. bottom: -100px;
  240. }
  241. }
  242. }
  243. .ivu-col:last-child {
  244. //border-right-width: 0px;
  245. }
  246. }
  247. }
  248. .uploadImgBox {
  249. float: left;
  250. border-radius: 3px;
  251. overflow: hidden;
  252. position: relative;
  253. margin: 10px 5px 0px 5px;
  254. .imgHandleBox {
  255. width: 100%;
  256. height: 100%;
  257. z-index: 1;
  258. position: absolute;
  259. top: 0;
  260. left: 0;
  261. flex: 1;
  262. display: flex;
  263. align-items: center;
  264. justify-content: space-around;
  265. background: #0000002e;
  266. opacity: 0;
  267. .ivu-icon {
  268. font-size: 20px;
  269. color: #ffffffcc;
  270. cursor: pointer;
  271. }
  272. .ivu-icon:hover {
  273. color: #ffffff;
  274. }
  275. }
  276. .imgHandleBox:hover {
  277. opacity: 1;
  278. }
  279. .el-icon-circle-close {
  280. color: #ffffff;
  281. }
  282. }
  283. .uploadImgBox:hover {
  284. box-shadow: 0px 0px 2px 1px #00000054;
  285. }
  286. .filterDropdown {
  287. position: fixed;
  288. }
  289. .tablePage {
  290. margin-top: 15px;
  291. }