index.scss 2.1 KB

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