index.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .total {
  6. height: 60rpx;
  7. line-height: 60rpx;
  8. font-size: 24rpx;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. color: #666666;
  11. padding-left: 30rpx;
  12. }
  13. .item {
  14. display: flex;
  15. align-items: center;
  16. width: 100vw;
  17. padding: 20rpx 30rpx;
  18. background-color: #FFFFFF;
  19. box-sizing: border-box;
  20. border-bottom: 1rpx solid #DDDDDD;
  21. margin-bottom: 20rpx;
  22. overflow: hidden;
  23. .main {
  24. width: 100%;
  25. padding-right: 20rpx;
  26. box-sizing: border-box;
  27. .title {
  28. line-height: 40rpx;
  29. font-family: PingFang SC, PingFang SC;
  30. font-size: 28rpx;
  31. color: #333333;
  32. text {
  33. font-family: PingFang SC, PingFang SC;
  34. font-size: 24rpx;
  35. color: #999999;
  36. }
  37. }
  38. .subfield {
  39. line-height: 34rpx;
  40. font-family: PingFang SC, PingFang SC;
  41. font-size: 24rpx;
  42. color: #999999;
  43. margin-top: 8rpx
  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. }