scheduleCalc.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. padding:30rpx 48rpx;
  5. }
  6. view,text{
  7. box-sizing: border-box;
  8. color:#333;
  9. font-size: 28rpx;
  10. }
  11. .calc-btn{
  12. width: 654rpx;
  13. height: 60rpx;
  14. background: #3D7FFF linear-gradient(270deg, rgba(0,202,255,0.5) 0%, rgba(9,175,255,0.5) 100%);
  15. border-radius: 60rpx;
  16. color: #FFFFFF;
  17. line-height: 60rpx;
  18. text-align: center;
  19. margin:40rpx 0;
  20. }
  21. .calc-result{
  22. width: 654rpx;
  23. height: 196rpx;
  24. background: #FFFFFF;
  25. border-radius: 26rpx;
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. margin-bottom:20rpx;
  30. }
  31. .result-item{
  32. flex:1;
  33. display: flex;
  34. flex-direction: column;
  35. align-items:center;
  36. }
  37. .result-item image{
  38. width:64rpx;
  39. height:64rpx;
  40. margin-bottom:10rpx;
  41. }
  42. .result-item .number{
  43. font-size: 32rpx;
  44. height: 46rpx;
  45. line-height: 46rpx;
  46. }
  47. .result-item .desc{
  48. color: #999999;
  49. line-height: 28rpx;
  50. font-size: 20rpx;
  51. line-height:28rpx ;
  52. }
  53. .calc-item{
  54. display: flex;
  55. align-items: center;
  56. margin-bottom:10rpx;
  57. height:40rpx;
  58. }
  59. .calc-tip{
  60. color:#FF4D4F;
  61. padding-top:10rpx;
  62. }
  63. .calc-title{
  64. font-size: 30rpx;
  65. margin:0 16rpx 0 6rpx;
  66. }
  67. .select-result{
  68. background: #FFFFFF;
  69. border-radius: 8rpx;
  70. border: 1rpx solid #D9D9D9;
  71. width:280rpx;
  72. height: 44rpx;
  73. line-height: 42rpx;
  74. font-size: 20rpx;
  75. padding-left:14rpx;
  76. }
  77. .schedule-block{
  78. width: 654rpx;
  79. background: #FFFFFF;
  80. border-radius: 24rpx;
  81. padding:28rpx 8rpx 54rpx 16rpx;
  82. }
  83. .schedule-detail{
  84. display:flex;
  85. }
  86. .detail-left{
  87. display: flex;
  88. flex-direction: column;
  89. align-items: flex-end;
  90. }
  91. .detail-left .month{
  92. height: 40rpx;
  93. line-height: 40rpx;
  94. margin-bottom:4rpx;
  95. }
  96. .detail-left .amount{
  97. color: #999999;
  98. line-height: 30rpx;
  99. font-size: 22rpx;
  100. }
  101. .detail-link{
  102. width:44rpx;
  103. display: flex;
  104. flex-direction: column;
  105. align-items: center;
  106. padding-top:16rpx;
  107. margin-bottom:-16rpx;
  108. }
  109. .detail-link .circle{
  110. width: 14rpx;
  111. height: 14rpx;
  112. background: #FFFFFF;
  113. border: 1rpx solid #E5E5E5;
  114. border-radius: 14rpx;
  115. }
  116. .detail-link .line{
  117. margin-top:6rpx;
  118. width: 2rpx;
  119. height: 135rpx;
  120. background: #E5E5E5;
  121. border-radius: 1rpx;
  122. }
  123. .detail-right{
  124. flex:1;
  125. display: flex;
  126. flex-wrap: wrap;
  127. margin-left:-20rpx;
  128. }
  129. .detail-right .date-item{
  130. width:110rpx;
  131. text-align: center;
  132. margin-bottom:16rpx;
  133. }
  134. .date-item .date{
  135. color: #42C056;
  136. line-height: 42rpx;
  137. height: 42rpx;
  138. margin-bottom:8rpx;
  139. font-size: 30rpx;
  140. font-weight: 600;
  141. }
  142. .date-item .date-tips{
  143. color: #999999;
  144. line-height: 24rpx;
  145. line-height: 24rpx;
  146. font-size:18rpx;
  147. }
  148. .date-item .date.isOther{
  149. color:#333;
  150. }
  151. .date-item .date.isNone{
  152. color: #FA7878;
  153. }
  154. .date-item .date-tips.isNone{
  155. color: #C06969;
  156. }