index.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .user-box {
  2. width: 100vw;
  3. background-color: #fff;
  4. box-sizing: border-box;
  5. padding: 20rpx 0 0 30rpx;
  6. .user {
  7. display: flex;
  8. border-bottom: 1px solid #ddd;
  9. padding-bottom: 20rpx;
  10. .profile {
  11. height: 84rpx;
  12. width: 84rpx;
  13. text-align: center;
  14. overflow: hidden;
  15. border-radius: 50%;
  16. flex-shrink: 0;
  17. margin-right: 20rpx;
  18. .text {
  19. line-height: 84rpx;
  20. text-align: center;
  21. background-color: #3874F6;
  22. color: #fff;
  23. }
  24. }
  25. .content {
  26. flex: 1;
  27. height: 84rpx;
  28. width: 0;
  29. .name {
  30. font-size: 28rpx;
  31. margin-bottom: 4rpx;
  32. }
  33. }
  34. .set {
  35. display: flex;
  36. align-items: center;
  37. flex-shrink: 0;
  38. height: 84rpxrpx;
  39. margin-right: 30rpx;
  40. }
  41. }
  42. }
  43. .search {
  44. position: relative;
  45. box-shadow: rgba(50, 50, 93, 0.1) 0px 6px 12px -2px, rgba(0, 0, 0, 0.05) 0px 3px 7px -3px;
  46. z-index: 9;
  47. position: sticky;
  48. top: 0;
  49. z-index: 999;
  50. width: 100vw;
  51. }
  52. .footer {
  53. display: flex;
  54. justify-content: center;
  55. position: fixed;
  56. bottom: 0;
  57. width: 100vw;
  58. min-height: 130rpx;
  59. background-color: #fff;
  60. box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
  61. z-index: 999999999999999;
  62. .but {
  63. width: 690rpx;
  64. height: 90rpx;
  65. background: #FA8C16;
  66. border-radius: 16rpx;
  67. font-size: 28rpx;
  68. font-weight: 600;
  69. color: #FFFFFF;
  70. margin-top: 10rpx;
  71. }
  72. }