contacts.scss 1.8 KB

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