index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .total {
  6. height: 20rpx;
  7. }
  8. .item {
  9. display: flex;
  10. align-items: center;
  11. width: 100vw;
  12. padding: 20rpx 30rpx;
  13. background-color: #FFFFFF;
  14. box-sizing: border-box;
  15. border-bottom: 1rpx solid #DDDDDD;
  16. margin-bottom: 20rpx;
  17. overflow: hidden;
  18. .main {
  19. width: 100%;
  20. padding-right: 20rpx;
  21. box-sizing: border-box;
  22. .title {
  23. height: 40rpx;
  24. line-height: 40rpx;
  25. font-size: 28rpx;
  26. font-family: PingFang SC-Semibold, PingFang SC;
  27. font-weight: 600;
  28. color: #333333;
  29. }
  30. .subfield {
  31. margin-top: 6rpx;
  32. height: 34rpx;
  33. line-height: 34rpx;
  34. font-size: 24rpx;
  35. color: #999999;
  36. }
  37. }
  38. }
  39. .footer {
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: center;
  43. padding: 0 30rpx;
  44. position: fixed;
  45. width: 100vw;
  46. height: 130rpx;
  47. background: #FFFFFF;
  48. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  49. bottom: 0;
  50. box-sizing: border-box;
  51. .count {
  52. font-size: 28rpx;
  53. font-family: PingFang SC-Regular, PingFang SC;
  54. color: #333333;
  55. }
  56. .but {
  57. width: 156rpx;
  58. height: 90rpx;
  59. background: #3874F6;
  60. border-radius: 8rpx;
  61. font-size: 28rpx;
  62. font-family: PingFang SC-Bold, PingFang SC;
  63. font-weight: bold;
  64. color: #FFFFFF;
  65. }
  66. }