index.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .total {
  6. height: 60rpx;
  7. line-height: 60rpx;
  8. font-size: 24rpx;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. color: #666666;
  11. padding-left: 30rpx;
  12. }
  13. .user-box {
  14. width: 100vw;
  15. background-color: #fff;
  16. box-sizing: border-box;
  17. padding: 20rpx 0 0 30rpx;
  18. .user {
  19. display: flex;
  20. border-bottom: 1px solid #ddd;
  21. padding-bottom: 20rpx;
  22. .profile {
  23. height: 84rpx;
  24. width: 84rpx;
  25. text-align: center;
  26. overflow: hidden;
  27. border-radius: 50%;
  28. flex-shrink: 0;
  29. margin-right: 20rpx;
  30. .text {
  31. line-height: 84rpx;
  32. text-align: center;
  33. background-color: #3874F6;
  34. color: #fff;
  35. }
  36. }
  37. .content {
  38. flex: 1;
  39. height: 84rpx;
  40. width: 0;
  41. .name {
  42. font-size: 28rpx;
  43. margin-bottom: 4rpx;
  44. }
  45. }
  46. .set {
  47. display: flex;
  48. align-items: center;
  49. flex-shrink: 0;
  50. height: 84rpxrpx;
  51. margin-right: 30rpx;
  52. }
  53. }
  54. }
  55. .footer {
  56. display: flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. padding: 0 30rpx;
  60. position: fixed;
  61. width: 100vw;
  62. height: 130rpx;
  63. background: #FFFFFF;
  64. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  65. bottom: 0;
  66. box-sizing: border-box;
  67. .count {
  68. font-size: 28rpx;
  69. font-family: PingFang SC-Regular, PingFang SC;
  70. color: #333333;
  71. }
  72. .but {
  73. width: 156rpx;
  74. height: 90rpx;
  75. background: #3874F6;
  76. border-radius: 8rpx;
  77. font-size: 28rpx;
  78. font-family: PingFang SC-Bold, PingFang SC;
  79. font-weight: bold;
  80. color: #FFFFFF;
  81. }
  82. }