permissionlist.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. .bf-permissionlist {
  2. width: 100%;
  3. height: 100%;
  4. > .right {
  5. width: 100%;
  6. height: 100%;
  7. background: #ffffff;
  8. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  9. border-radius: 16px;
  10. padding: 0 32px 0 32px;
  11. > .paren_header {
  12. width: 100%;
  13. height: 57px;
  14. display: flex;
  15. align-items: flex-end;
  16. > p {
  17. font-size: 24px;
  18. font-family: Microsoft YaHei;
  19. font-weight: bold;
  20. color: #303133;
  21. margin-top: 0;
  22. margin-bottom: 0;
  23. }
  24. }
  25. > .paren_type {
  26. width: 100%;
  27. height: 60px;
  28. > ul {
  29. width: 100%;
  30. height: 100%;
  31. display: flex;
  32. align-items: center;
  33. justify-content: space-between;
  34. margin-top: 0;
  35. margin-bottom: 0;
  36. padding-left: 0;
  37. > li {
  38. display: flex;
  39. align-items: center;
  40. background-size: 100% 100%;
  41. > .log {
  42. width: 22px;
  43. height: 22px;
  44. margin-right: 9px;
  45. }
  46. > p {
  47. font-size: 14px;
  48. font-family: Microsoft YaHei;
  49. font-weight: 400;
  50. color: #303133;
  51. margin-bottom: 0;
  52. margin-top: 0;
  53. }
  54. }
  55. > li:nth-child(1) {
  56. > .log {
  57. background: url('../../assets/index/ic_time@2x.png') no-repeat;
  58. background-size: 100% 100%;
  59. }
  60. }
  61. > li:nth-child(2) {
  62. > .log {
  63. background: url('../../assets/index/ic_data@2x.png') no-repeat;
  64. background-size: 100% 100%;
  65. }
  66. }
  67. > li:nth-child(3) {
  68. > .log {
  69. background: url('../../assets/index/ic_screen_edit@2x.png')
  70. no-repeat;
  71. background-size: 100% 100%;
  72. }
  73. }
  74. > li:nth-child(4) {
  75. > .log {
  76. background: url('../../assets/index/ic_screen@2x.png') no-repeat;
  77. background-size: 100% 100%;
  78. }
  79. }
  80. }
  81. }
  82. > .paren_list {
  83. width: 100%;
  84. margin-bottom: 10px;
  85. > ul {
  86. width: 100%;
  87. height: 100%;
  88. padding-left: 0;
  89. margin-bottom: 0;
  90. margin-top: 0;
  91. display: flex;
  92. align-items: center;
  93. flex-wrap: wrap;
  94. > li {
  95. margin-right: 16px;
  96. margin-bottom: 16px;
  97. > .up_type {
  98. padding: 0 5px;
  99. height: 32px;
  100. background: #f3f5fc;
  101. border: 1px solid #6e81bc;
  102. border-radius: 4px;
  103. font-size: 14px;
  104. font-family: Microsoft YaHei;
  105. font-weight: 400;
  106. color: #6e81bc;
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. cursor: pointer;
  111. }
  112. > .up_types {
  113. padding: 0 5px;
  114. height: 32px;
  115. background: #6e81bc;
  116. border-radius: 4px;
  117. font-size: 14px;
  118. font-family: Microsoft YaHei;
  119. font-weight: bold;
  120. color: #ffffff;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. cursor: pointer;
  125. }
  126. }
  127. }
  128. }
  129. .paren_content {
  130. width: 100%;
  131. height: 65%;
  132. > .el-scrollbar {
  133. > .el-scrollbar__wrap {
  134. overflow-x: hidden;
  135. > .el-scrollbar__view {
  136. padding-top: 10px;
  137. .el-row {
  138. width: 100%;
  139. }
  140. .cide {
  141. height: 80px;
  142. cursor: pointer;
  143. background: #f5f7fa;
  144. box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  145. border-radius: 8px;
  146. padding: 4px 16px 0 16px;
  147. margin-bottom: 16px;
  148. > .cide_header {
  149. width: 100%;
  150. height: 40px;
  151. display: flex;
  152. justify-content: space-between;
  153. align-items: center;
  154. > p {
  155. font-size: 16px;
  156. font-family: Microsoft YaHei;
  157. font-weight: 400;
  158. color: #303133;
  159. white-space: nowrap;
  160. overflow: hidden;
  161. text-overflow: ellipsis;
  162. }
  163. > span {
  164. font-size: 14px;
  165. font-family: Microsoft YaHei;
  166. font-weight: 400;
  167. color: #6e81bc;
  168. cursor: pointer;
  169. min-width: 30px;
  170. }
  171. }
  172. > .cide_cont {
  173. > ul {
  174. width: 100%;
  175. height: 22px;
  176. display: flex;
  177. align-items: center;
  178. margin-bottom: 0;
  179. margin-top: 0;
  180. padding-left: 0;
  181. > li {
  182. width: 22px;
  183. height: 22px;
  184. margin-right: 8px;
  185. }
  186. .statusDate {
  187. background: url('../../assets/index/ic_time@2x.png')
  188. no-repeat;
  189. background-size: 100% 100%;
  190. }
  191. .statusShow {
  192. background: url('../../assets/index/ic_data@2x.png')
  193. no-repeat;
  194. background-size: 100% 100%;
  195. }
  196. .statusRule1 {
  197. background: url('../../assets/index/ic_screen@2x.png');
  198. background-size: 100% 100%;
  199. }
  200. .statusRule2 {
  201. background: url('../../assets/index/ic_screen_edit@2x.png');
  202. background-size: 100% 100%;
  203. }
  204. }
  205. }
  206. }
  207. > .paren_list {
  208. width: 100%;
  209. height: 32px;
  210. margin-bottom: 10px;
  211. }
  212. }
  213. }
  214. }
  215. }
  216. .bgActive {
  217. > .el-scrollbar {
  218. > .el-scrollbar__wrap {
  219. > .el-scrollbar__view {
  220. .cide {
  221. cursor: pointer;
  222. }
  223. .bgColor {
  224. background: #6e81bc;
  225. > .cide_header {
  226. > p {
  227. color: #f5f7fa;
  228. }
  229. > span {
  230. color: #f5f7fa;
  231. }
  232. }
  233. .el-radio__input.is-checked .el-radio__inner {
  234. border-color: #f5f7fa;
  235. }
  236. }
  237. }
  238. }
  239. }
  240. }
  241. }
  242. }
  243. .hucPower {
  244. .right {
  245. .paren_content {
  246. height: 25%;
  247. }
  248. }
  249. }