select.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. border-radius: 50%;
  27. overflow: hidden;
  28. margin-right: 20rpx;
  29. flex-shrink: 0;
  30. .replace {
  31. text-align: center;
  32. line-height: 80rpx;
  33. background-color: #3874F6;
  34. font-size: 28rpx;
  35. font-family: PingFang SC-Regular, PingFang SC;
  36. color: #FFFFFF;
  37. }
  38. }
  39. .exp {
  40. width: 100%;
  41. margin-left: 20rpx;
  42. .line-1 {
  43. height: 42rpx;
  44. font-size: 30rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #333333;
  47. }
  48. .phone {
  49. font-size: 24rpx;
  50. font-family: PingFang SC-Regular, PingFang SC;
  51. color: #999999;
  52. margin-top: 4rpx;
  53. }
  54. }
  55. }
  56. }
  57. }
  58. .footer {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. padding: 0 30rpx;
  63. position: fixed;
  64. width: 100vw;
  65. height: 130rpx;
  66. background: #FFFFFF;
  67. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  68. bottom: 0;
  69. box-sizing: border-box;
  70. .count {
  71. font-size: 28rpx;
  72. font-family: PingFang SC-Regular, PingFang SC;
  73. color: #333333;
  74. }
  75. .but {
  76. width: 156rpx;
  77. height: 90rpx;
  78. background: #3874F6;
  79. border-radius: 8rpx;
  80. font-size: 28rpx;
  81. font-family: PingFang SC-Bold, PingFang SC;
  82. font-weight: bold;
  83. color: #FFFFFF;
  84. }
  85. }