web.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. .btn {
  2. padding: 4px 28px;
  3. font-size: 12px;
  4. line-height: 24px;
  5. border-radius: 4px;
  6. }
  7. .list {
  8. padding: 0 20px;
  9. display: flex;
  10. flex-direction: column;
  11. &-item {
  12. padding: 14px 0;
  13. display: flex;
  14. align-items: center;
  15. font-size: 14px;
  16. }
  17. &-between {
  18. justify-content: space-between;
  19. }
  20. }
  21. .manage {
  22. display: flex;
  23. flex-direction: column;
  24. width: 100%;
  25. height: 100%;
  26. overflow: auto;
  27. &-header {
  28. padding: 10px;
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. &-content {
  33. margin-left: -20px;
  34. text-align: center;
  35. font-size: 16px;
  36. line-height: 30px;
  37. font-weight: 500;
  38. }
  39. &-left {
  40. display: flex;
  41. }
  42. }
  43. .main {
  44. .user-info {
  45. padding: 0 20px;
  46. display: flex;
  47. flex-direction: column;
  48. font-size: 14px;
  49. &-header {
  50. display: flex;
  51. justify-content: space-between;
  52. align-items: center;
  53. padding: 14px 0;
  54. &-right {
  55. display: flex;
  56. align-items: center;
  57. }
  58. }
  59. &-list {
  60. flex: 1;
  61. display: flex;
  62. flex-wrap: wrap;
  63. padding-bottom: 20px;
  64. &-item {
  65. position: relative;
  66. flex: 0 0 36px;
  67. display: flex;
  68. flex-direction: column;
  69. padding-right: 20px;
  70. &:last-child {
  71. padding-right: 0;
  72. }
  73. .more {
  74. padding-top: 10px;
  75. }
  76. &-info {
  77. text-align: center;
  78. max-width: 36px;
  79. overflow: hidden;
  80. text-overflow: ellipsis;
  81. white-space: nowrap;
  82. }
  83. }
  84. }
  85. }
  86. .content {
  87. padding: 0 20px;
  88. .list-item {
  89. justify-content: space-between;
  90. .btn {
  91. flex: 1;
  92. }
  93. .article {
  94. opacity: 0.6;
  95. width: 246px;
  96. overflow: hidden;
  97. text-overflow: ellipsis;
  98. white-space: nowrap;
  99. }
  100. .end {
  101. align-self: flex-end;
  102. margin-bottom: 4px;
  103. }
  104. }
  105. }
  106. .footer {
  107. padding: 0 20px;
  108. .list-item {
  109. cursor: pointer;
  110. width: 100%;
  111. font-size: 14px;
  112. padding: 14px 0;
  113. justify-content: center;
  114. &:last-child {
  115. border: none;
  116. }
  117. }
  118. }
  119. }
  120. .admin {
  121. padding: 20px 0;
  122. &-content {
  123. padding: 20px 20px 12px;
  124. display: flex;
  125. align-items: center;
  126. .aside {
  127. flex: 1;
  128. font-size: 14px;
  129. .p {
  130. font-size: 12px;
  131. }
  132. }
  133. }
  134. &-list {
  135. padding: 0 20px;
  136. .label {
  137. display: inline-block;
  138. font-size: 14px;
  139. padding-bottom: 8px;
  140. }
  141. }
  142. .last {
  143. padding-top: 13px;
  144. position: relative;
  145. &::before {
  146. position: absolute;
  147. content: "";
  148. width: calc(100% - 40px);
  149. height: 1px;
  150. top: 0;
  151. left: 0;
  152. right: 0;
  153. margin: 0 auto;
  154. }
  155. }
  156. }
  157. }
  158. .input {
  159. border-radius: 4px;
  160. padding: 4px 16px;
  161. font-size: 14px;
  162. }
  163. .group-id {
  164. display: flex;
  165. flex-direction: row;
  166. align-items: center;
  167. .icon {
  168. width: 15px;
  169. height: 15px;
  170. cursor: pointer;
  171. }
  172. }
  173. .avatar {
  174. width: 36px;
  175. height: 36px;
  176. border-radius: 4px;
  177. font-size: 12px;
  178. display: flex;
  179. justify-content: center;
  180. align-items: center;
  181. }
  182. .slider {
  183. &-box {
  184. display: flex;
  185. align-items: center;
  186. width: 34px;
  187. height: 20px;
  188. border-radius: 10px;
  189. }
  190. &-block {
  191. display: inline-block;
  192. width: 16px;
  193. height: 16px;
  194. border-radius: 8px;
  195. margin: 0 2px;
  196. }
  197. }
  198. .space-between {
  199. justify-content: space-between;
  200. }
  201. .del-dialog-title {
  202. text-align: center;
  203. padding: 20px 0;
  204. }