index.scss 2.3 KB

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