index.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. height: 40rpx;
  29. line-height: 40rpx;
  30. font-size: 28rpx;
  31. font-family: PingFang SC-Semibold, PingFang SC;
  32. font-weight: 600;
  33. color: #333333;
  34. }
  35. .subfield {
  36. margin-top: 6rpx;
  37. height: 34rpx;
  38. line-height: 34rpx;
  39. font-size: 24rpx;
  40. color: #999999;
  41. }
  42. }
  43. }
  44. .footer {
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. padding: 0 30rpx;
  49. position: fixed;
  50. width: 100vw;
  51. height: 130rpx;
  52. background: #FFFFFF;
  53. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  54. bottom: 0;
  55. box-sizing: border-box;
  56. .count {
  57. font-size: 28rpx;
  58. font-family: PingFang SC-Regular, PingFang SC;
  59. color: #333333;
  60. }
  61. .but {
  62. width: 156rpx;
  63. height: 90rpx;
  64. background: #3874F6;
  65. border-radius: 8rpx;
  66. font-size: 28rpx;
  67. font-family: PingFang SC-Bold, PingFang SC;
  68. font-weight: bold;
  69. color: #FFFFFF;
  70. }
  71. }