index.scss 2.0 KB

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