wish_detail.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* parents/pages/wish_detail/wish_detail.wxss */
  2. @import '../../../templates/loading/loading.wxss';
  3. .header {
  4. margin: 20rpx 30rpx 0 30rpx;
  5. display: flex;
  6. justify-content: flex-start;
  7. align-items: center;
  8. }
  9. .header-img {
  10. width: 108rpx;
  11. height: 108rpx;
  12. border-radius: 200rpx;
  13. margin-right: 30rpx;
  14. }
  15. .header-col {
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: flex-start;
  19. align-items: flex-start;
  20. }
  21. .header-icon {
  22. width: 20rpx;
  23. height: 16rpx;
  24. }
  25. .header-text-black {
  26. font-size: 28rpx;
  27. color: #333;
  28. }
  29. .header-text-gray {
  30. font-size: 30rpx;
  31. color: #666;
  32. margin-top: 22rpx;
  33. }
  34. .header-text-gray text {
  35. margin: 0 16rpx;
  36. }
  37. .li-progress {
  38. width: 100%;
  39. margin-top: 40rpx;
  40. }
  41. .li-row {
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. position: relative;
  46. margin-top: 10rpx;
  47. }
  48. .li-row-center {
  49. justify-content: center;
  50. }
  51. .li-icon-one {
  52. width: 64rpx;
  53. height: 68rpx;
  54. display: flex;
  55. justify-content: center;
  56. align-items: flex-start;
  57. position: relative;
  58. animation: snake-slow 2s infinite ease-in-out;
  59. }
  60. .li-icon-one image {
  61. position: absolute;
  62. bottom: 20rpx;
  63. left: 0;
  64. width: 64rpx;
  65. height: 68rpx;
  66. }
  67. .li-icon-one text {
  68. margin-top: -5rpx;
  69. font-size: 24rpx;
  70. color: #fff;
  71. z-index: 9;
  72. }
  73. .li-icon-two {
  74. width: 30rpx;
  75. height: 18rpx;
  76. }
  77. .li-circle-blue {
  78. width: 14rpx;
  79. height: 14rpx;
  80. border-radius: 100rpx;
  81. border: 8rpx solid rgba(0,183,255,1);
  82. background: #fff;
  83. z-index: 1;
  84. }
  85. .li-circle-red {
  86. width: 14rpx;
  87. height: 14rpx;
  88. border-radius: 100rpx;
  89. border: 8rpx solid rgba(255,128,168,1);
  90. background: #fff;
  91. z-index: 1;
  92. }
  93. .li-line {
  94. position: absolute;
  95. top: 50%;
  96. transform: translateY(-50%);
  97. left: 0;
  98. width: 100%;
  99. height: 2rpx;
  100. background: rgba(0,183,255,1);
  101. }
  102. .li-text-red {
  103. font-size: 26rpx;
  104. color: #FF80A8;
  105. }
  106. .li-text-blue {
  107. font-size: 26rpx;
  108. color: #00B7FF;
  109. }
  110. .li-footer {
  111. padding: 30rpx 30rpx 0 30rpx;
  112. margin-top: 30rpx;
  113. border-top: solid 1rpx #e6e6e6;
  114. text-align: center;
  115. }
  116. .li-footer-text {
  117. background: linear-gradient(90deg,rgba(81,206,255,1),rgba(0,183,255,1));
  118. border-radius: 200rpx;
  119. font-size: 28rpx;
  120. color: #fff;
  121. padding: 16rpx 30rpx;
  122. }
  123. .li-reset {
  124. padding: 0;
  125. }
  126. .li-title {
  127. padding: 30rpx 0rpx;
  128. display: flex;
  129. justify-content: center;
  130. align-items: center;
  131. text-align: center;
  132. }
  133. .li-title-icon {
  134. width: 18rpx;
  135. height: 16rpx;
  136. }
  137. .li-title-text {
  138. margin: 0 16rpx;
  139. font-size: 30rpx;
  140. color: #FF80A8;
  141. }
  142. .li-items {
  143. padding-left: 30rpx;
  144. }
  145. .li-item {
  146. padding: 30rpx 30rpx 30rpx 0;
  147. display: flex;
  148. justify-content: flex-start;
  149. align-items: center;
  150. border-top: solid 1rpx #e6e6e6;
  151. }
  152. .li-item:nth-of-type(1) {
  153. padding-top: 10rpx;
  154. border-top: none;
  155. }
  156. .li-item-img {
  157. width: 98rpx;
  158. height: 98rpx;
  159. border-radius: 200rpx;
  160. margin-right: 30rpx;
  161. }
  162. .li-item-col {
  163. display: flex;
  164. flex-direction: column;
  165. justify-content: flex-start;
  166. align-items: flex-start;
  167. }
  168. .li-item-text {
  169. font-size: 30rpx;
  170. color: #666;
  171. }
  172. .li-item-text-small {
  173. font-size: 28rpx;
  174. color: #666;
  175. margin-top: 8rpx;
  176. }