add.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* 目标 */
  2. .target {
  3. display: flex;
  4. width: 100vw;
  5. height: 124rpx;
  6. background-color: #ffffff;
  7. box-sizing: border-box;
  8. >view {
  9. width: 50%;
  10. .lable {
  11. font-size: 24rpx;
  12. font-family: PingFang SC-Regular, PingFang SC;
  13. color: #666666;
  14. height: 34rpx;
  15. line-height: 34rpx;
  16. text-align: center;
  17. margin-top: 20rpx;
  18. }
  19. .value {
  20. font-size: 28rpx;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. color: #333333;
  23. height: 40rpx;
  24. line-height: 40rpx;
  25. text-align: center;
  26. margin-top: 10rpx;
  27. }
  28. }
  29. }
  30. .season {
  31. width: 100vw;
  32. height: 90rpx;
  33. line-height: 90rpx;
  34. background-color: #ffffff;
  35. padding-left: 30rpx;
  36. box-sizing: border-box;
  37. font-size: 28rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. color: #333333;
  40. }
  41. .m-target {
  42. // height: 270rpx;
  43. width: 100vw;
  44. background-color: #ffffff;
  45. border-top: 1px solid #ddd;
  46. box-sizing: border-box;
  47. padding-left: 30rpx;
  48. margin-bottom: 20rpx;
  49. >view {
  50. display: flex;
  51. justify-content: space-between;
  52. width: 100%;
  53. height: 90rpx;
  54. align-items: center;
  55. border-bottom: 1px solid #ddd;
  56. box-sizing: border-box;
  57. padding-right: 30rpx;
  58. font-size: 28rpx;
  59. font-family: PingFang SC-Regular, PingFang SC;
  60. color: #666666;
  61. input {
  62. text-align: right;
  63. }
  64. }
  65. }
  66. .title {
  67. padding: 20rpx 30rpx 0;
  68. background-color: #fff;
  69. font-size: 26rpx;
  70. font-weight: bold;
  71. width: 100vw;
  72. text-align: center;
  73. box-sizing: border-box;
  74. }
  75. .footer {
  76. display: flex;
  77. justify-content: space-between;
  78. padding: 0 30rpx;
  79. position: fixed;
  80. width: 100vw;
  81. height: 130rpx;
  82. background: #FFFFFF;
  83. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  84. bottom: 0;
  85. box-sizing: border-box;
  86. z-index: 9999;
  87. padding-top: 10rpx;
  88. .but {
  89. min-width: 156rpx;
  90. height: 90rpx;
  91. background: #3874F6;
  92. border-radius: 8rpx;
  93. font-size: 28rpx;
  94. font-family: PingFang SC-Bold, PingFang SC;
  95. font-weight: bold;
  96. color: #FFFFFF;
  97. }
  98. }