index.scss 1.4 KB

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