web.scss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. .manage {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 360Px;
  6. overflow-y: auto;
  7. // border-radius: 8Px 0 0 8Px;
  8. position: absolute;
  9. right: 0;
  10. height: calc(100% - 54px);
  11. z-index: 2;
  12. top: 54Px;
  13. &-header {
  14. padding: 12Px;
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. &.currentModel {
  19. background: #F8F9FC;
  20. border: none;
  21. .manage-header-left {
  22. width: 100%;
  23. }
  24. }
  25. aside {
  26. display: flex;
  27. align-items: center;
  28. }
  29. h1 {
  30. font-size: 16Px;
  31. }
  32. &-left {
  33. display: flex;
  34. :deep(.n-tab-pane) {
  35. padding: 0;
  36. }
  37. .icon {
  38. margin-right: 14Px;
  39. background-position: center;
  40. }
  41. main {
  42. display: flex;
  43. flex-direction: column;
  44. p {
  45. padding-top: 8Px;
  46. font-size: 12Px;
  47. }
  48. }
  49. }
  50. }
  51. .main {
  52. .userInfo {
  53. padding: 0 20Px;
  54. display: flex;
  55. flex-direction: column;
  56. font-size: 14Px;
  57. &-header {
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. padding: 14Px 0;
  62. p {
  63. display: flex;
  64. align-items: center;
  65. }
  66. }
  67. ol {
  68. flex: 1;
  69. display: flex;
  70. flex-wrap: wrap;
  71. padding-bottom: 20Px;
  72. dt {
  73. text-align: center;
  74. margin: 0 auto;
  75. }
  76. dl {
  77. position: relative;
  78. flex: 0 0 36Px;
  79. display: flex;
  80. flex-direction: column;
  81. padding-right: 20Px;
  82. &:last-child {
  83. padding-right: 0;
  84. }
  85. .more {
  86. padding-top: 10Px;
  87. }
  88. dd {
  89. padding-top: 6px;
  90. text-align: center;
  91. max-width: 50Px;
  92. font-size: 12px;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. white-space: nowrap;
  96. }
  97. .userInfo-mask {
  98. position: absolute;
  99. z-index: 5;
  100. padding: 20Px;
  101. left: 100%;
  102. li {
  103. display: flex;
  104. align-items: center;
  105. label {
  106. width: 60Px;
  107. }
  108. span {
  109. max-width: 200Px;
  110. word-break: keep-all;
  111. }
  112. }
  113. }
  114. }
  115. }
  116. }
  117. .content {
  118. padding: 0 20Px;
  119. li {
  120. padding: 14Px 0;
  121. display: flex;
  122. justify-content: space-between;
  123. align-items: center;
  124. font-size: 14Px;
  125. .btn {
  126. flex: 1;
  127. }
  128. article {
  129. opacity: 0.6;
  130. width: 246Px;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. white-space: nowrap;
  134. }
  135. .end {
  136. align-self: flex-end;
  137. margin-bottom: 4Px;
  138. }
  139. }
  140. }
  141. .footer {
  142. padding: 0 20Px;
  143. li {
  144. cursor: pointer;
  145. width: 100%;
  146. font-size: 14Px;
  147. padding: 11Px 0;
  148. text-align: center;
  149. background: #198CFE;
  150. border-radius: 8px;
  151. color: #fff;
  152. margin-bottom: 12px;
  153. &:last-child {
  154. border: none;
  155. }
  156. }
  157. }
  158. }
  159. .admin {
  160. padding: 20Px 0;
  161. &-content {
  162. padding: 20Px 20Px 12Px;
  163. display: flex;
  164. align-items: center;
  165. aside {
  166. flex: 1;
  167. font-size: 14Px;
  168. p {
  169. font-size: 12Px;
  170. }
  171. }
  172. }
  173. &-list {
  174. padding: 0 20Px;
  175. label {
  176. display: inline-block;
  177. font-size: 14Px;
  178. padding-bottom: 8Px;
  179. }
  180. }
  181. .last {
  182. padding-top: 13Px;
  183. position: relative;
  184. &::before {
  185. position: absolute;
  186. content: '';
  187. width: calc(100% - 40Px);
  188. height: 1Px;
  189. top: 0;
  190. left: 0;
  191. right: 0;
  192. margin: 0 auto;
  193. }
  194. }
  195. }
  196. ol {
  197. flex: 1;
  198. display: flex;
  199. flex-wrap: wrap;
  200. padding-bottom: 20Px;
  201. dl {
  202. position: relative;
  203. flex: 0 0 36Px;
  204. display: flex;
  205. flex-direction: column;
  206. padding-right: 20Px;
  207. &:last-child {
  208. padding-right: 0;
  209. }
  210. .more {
  211. padding-top: 10Px;
  212. }
  213. dd {
  214. text-align: center;
  215. max-width: 36Px;
  216. overflow: hidden;
  217. text-overflow: ellipsis;
  218. white-space: nowrap;
  219. }
  220. .userInfo-mask {
  221. position: fixed;
  222. z-index: 5;
  223. padding: 20Px;
  224. margin-left: 36Px;
  225. li {
  226. display: flex;
  227. align-items: center;
  228. label {
  229. width: 60Px;
  230. }
  231. span {
  232. max-width: 200Px;
  233. word-break: keep-all;
  234. }
  235. }
  236. }
  237. }
  238. }
  239. }
  240. .input {
  241. border-radius: 4Px;
  242. padding: 4Px 16Px;
  243. font-size: 14Px;
  244. }
  245. .groupID {
  246. display: flex;
  247. flex-direction: row;
  248. align-items: center;
  249. span {
  250. padding-right: 10Px;
  251. }
  252. .icon {
  253. width: 15Px;
  254. height: 15Px;
  255. cursor: pointer;
  256. }
  257. }
  258. .avatar {
  259. width: 36Px;
  260. height: 36Px;
  261. border-radius: 4Px;
  262. font-size: 12Px;
  263. display: flex;
  264. justify-content: center;
  265. align-items: center;
  266. }
  267. .btn {
  268. padding: 4Px 28Px;
  269. font-size: 12Px;
  270. line-height: 24Px;
  271. border-radius: 4Px;
  272. }
  273. .slider {
  274. &-box {
  275. display: flex;
  276. align-items: center;
  277. width: 34Px;
  278. height: 20Px;
  279. border-radius: 10Px;
  280. }
  281. &-block {
  282. display: inline-block;
  283. width: 16Px;
  284. height: 16Px;
  285. border-radius: 8Px;
  286. margin: 0 2Px;
  287. }
  288. }
  289. .space-between {
  290. justify-content: space-between;
  291. }
  292. .delDialog-title {
  293. text-align: center;
  294. padding: 20Px 0;
  295. }
  296. .icon-chat-setting {
  297. margin-right: 40Px;
  298. }