index.scss 1.6 KB

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