select.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. .footer {
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. padding: 0 30rpx;
  52. position: fixed;
  53. width: 100vw;
  54. height: 130rpx;
  55. background: #FFFFFF;
  56. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  57. bottom: 0;
  58. box-sizing: border-box;
  59. .count {
  60. font-size: 28rpx;
  61. font-family: PingFang SC-Regular, PingFang SC;
  62. color: #333333;
  63. }
  64. .but {
  65. width: 156rpx;
  66. height: 90rpx;
  67. background: #3874F6;
  68. border-radius: 8rpx;
  69. font-size: 28rpx;
  70. font-family: PingFang SC-Bold, PingFang SC;
  71. font-weight: bold;
  72. color: #FFFFFF;
  73. }
  74. }