select.scss 1.8 KB

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