points-details.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding-top: 84rpx;
  6. }
  7. .header {
  8. width: 100%;
  9. height: 84rpx;
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. z-index: 9999999;
  14. background-color: #fff;
  15. }
  16. .tab-list {
  17. width: 100%;
  18. height: 84rpx;
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. padding: 0 124rpx;
  23. box-sizing: border-box;
  24. border-top: 1px solid #F2F2F2;
  25. }
  26. .child {
  27. height: 84rpx;
  28. display: flex;
  29. align-items: center;
  30. font-size: 32rpx;
  31. color: #777777;
  32. position: relative;
  33. }
  34. .child.active::after {
  35. content: "";
  36. width: 122rpx;
  37. height: 8rpx;
  38. position: absolute;
  39. bottom: 0;
  40. left: 50%;
  41. transform: translate(-50%, 0);
  42. background-color: #F2501A;
  43. border-radius: 10rpx;
  44. }
  45. .child.active {
  46. color: #F2501A;
  47. font-weight: bold;
  48. }
  49. .list {
  50. width: 100%;
  51. display: flex;
  52. flex-direction: column;
  53. padding: 0 24rpx;
  54. box-sizing: border-box;
  55. }
  56. .list-label {
  57. width: 100%;
  58. padding: 20rpx 0 0;
  59. display: flex;
  60. align-items: center;
  61. font-weight: bold;
  62. font-size: 32rpx;
  63. }
  64. .list-label text {
  65. color: #F2501A;
  66. font-size: 30rpx;
  67. margin-left: 14rpx;
  68. }
  69. .item {
  70. width: 100;
  71. /* min-height: 148rpx; */
  72. display: flex;
  73. flex-direction: column;
  74. justify-content: center;
  75. background-color: #FFFFFF;
  76. border-radius: 16rpx;
  77. margin-top: 20rpx;
  78. }
  79. .item-top-content {
  80. width: 100%;
  81. min-height: 148rpx;
  82. display: flex;
  83. flex-direction: column;
  84. justify-content: center;
  85. padding: 0 24rpx 0 44rpx;
  86. box-sizing: border-box;
  87. }
  88. .item-top {
  89. width: 100%;
  90. display: flex;
  91. justify-content: space-between;
  92. align-items: center;
  93. margin-bottom: 12rpx;
  94. }
  95. .item-top text:first-child {
  96. font-size: 30rpx;
  97. font-weight: bold;
  98. color: #202020;
  99. }
  100. .item-top text:last-child {
  101. font-size: 32rpx;
  102. font-weight: bold;
  103. }
  104. .numadd {
  105. color: #3E9CFB;
  106. font-size: 32rpx;
  107. font-weight: bold;
  108. }
  109. .numless {
  110. color: #FF0000;
  111. font-size: 32rpx;
  112. font-weight: bold;
  113. }
  114. .item-bottom {
  115. width: 100%;
  116. display: flex;
  117. justify-content: space-between;
  118. align-items: center;
  119. }
  120. .item-bottom text {
  121. color: #454545;
  122. font-size: 24rpx;
  123. }
  124. .more-row {
  125. display: flex;
  126. align-items: center;
  127. color: #A7A7A7;
  128. font-size: 24rpx;
  129. }
  130. .more-row image {
  131. width: 20rpx;
  132. margin-left: 12rpx;
  133. }
  134. .item-bottom-content {
  135. width: 100%;
  136. height: 74rpx;
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: center;
  140. border-top: 1px solid #F2F2F2;
  141. padding: 0 24rpx 0 44rpx;
  142. box-sizing: border-box;
  143. }
  144. .item-bottom-content text:first-child {
  145. color: #454545;
  146. font-size: 24rpx;
  147. }
  148. .item-bottom-content text:last-child {
  149. color: #777777;
  150. font-size: 24rpx;
  151. }
  152. .hide1 {
  153. display: none;
  154. }
  155. .show1 {
  156. display: flex;
  157. }
  158. .sanjiao {
  159. width: 20rpx;
  160. margin-left: 8rpx;
  161. -webkit-transition: .25s;
  162. }
  163. .sanjiaoSelect {
  164. width: 20rpx;
  165. margin-left: 8rpx;
  166. -webkit-transform: rotate(180deg);
  167. -moz-transform: rotate(180deg);
  168. -ms-transform: rotate(180deg);
  169. -o-transform: rotate(180deg);
  170. transform: rotate(180deg);
  171. -webkit-transition: .25s;
  172. -moz-transition: .25s;
  173. -ms-transition: .25s;
  174. -o-transition: .25s;
  175. -webkit-transition: .25s;
  176. }