adminmanage.wxss 889 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* pages/adminmanage/adminmanage.wxss */
  2. page{
  3. background-color: #F7F7F7;
  4. }
  5. .content {
  6. display: flex;
  7. flex-wrap: wrap;
  8. }
  9. .block {
  10. width: 250rpx;
  11. box-sizing: border-box;
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. margin-top: 50rpx;
  16. position: relative;
  17. }
  18. .block>button{
  19. width: 86rpx;
  20. height: 44rpx;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. color: #989898;
  25. border-radius: 12rpx;
  26. font-size: 24rpx;
  27. white-space: nowrap;
  28. font-weight: 500;
  29. border: 1px solid #989898;
  30. margin-top: 18rpx;
  31. }
  32. .block>text{
  33. margin-top: 10rpx;
  34. }
  35. .add-button {
  36. width: 108rpx;
  37. height: 108rpx;
  38. background-color: #FFFFFF;
  39. border-radius: 50%;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. }
  44. .hide-btn {
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. /* transform: translate(-50%, -50%); */
  49. /* line-height: 200rpx; */
  50. opacity: 0;
  51. }