index.scss 2.2 KB

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