index.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. .subfield {
  14. margin-top: 6rpx;
  15. height: 34rpx;
  16. line-height: 34rpx;
  17. }
  18. .input {
  19. height: 54rpx;
  20. background: #FFFFFF;
  21. border-radius: 8rpx;
  22. border: 1rpx solid #CCCCCC;
  23. font-size: 28rpx;
  24. font-family: PingFang SC-Regular, PingFang SC;
  25. color: #333333;
  26. line-height: 44px;
  27. text-align: center;
  28. margin-left: 20rpx;
  29. }
  30. .item {
  31. display: flex;
  32. align-items: center;
  33. width: 100vw;
  34. padding: 20rpx 30rpx;
  35. background-color: #FFFFFF;
  36. box-sizing: border-box;
  37. border-bottom: 1rpx solid #DDDDDD;
  38. margin-bottom: 20rpx;
  39. overflow: hidden;
  40. .main {
  41. width: 100%;
  42. padding-right: 20rpx;
  43. box-sizing: border-box;
  44. .title {
  45. height: 40rpx;
  46. line-height: 40rpx;
  47. font-size: 28rpx;
  48. font-family: PingFang SC-Semibold, PingFang SC;
  49. font-weight: 600;
  50. color: #333333;
  51. }
  52. .subfield {
  53. margin-top: 6rpx;
  54. height: 34rpx;
  55. line-height: 34rpx;
  56. font-size: 24rpx;
  57. color: #999999;
  58. }
  59. }
  60. }
  61. .footer {
  62. display: flex;
  63. justify-content: space-between;
  64. align-items: center;
  65. padding: 0 30rpx;
  66. position: fixed;
  67. width: 100vw;
  68. height: 130rpx;
  69. background: #FFFFFF;
  70. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  71. bottom: 0;
  72. box-sizing: border-box;
  73. .count {
  74. font-size: 28rpx;
  75. font-family: PingFang SC-Regular, PingFang SC;
  76. color: #333333;
  77. }
  78. .but {
  79. width: 156rpx;
  80. height: 90rpx;
  81. background: #3874F6;
  82. border-radius: 8rpx;
  83. font-size: 28rpx;
  84. font-family: PingFang SC-Bold, PingFang SC;
  85. font-weight: bold;
  86. color: #FFFFFF;
  87. }
  88. }