select.scss 1.6 KB

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