withdraw_detail.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /* dispatcher/pages/withdraw_detail/withdraw_detail.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/loading/loading.wxss';
  4. .list {
  5. padding: 0 0 98rpx 0;
  6. }
  7. .li {
  8. margin: 20rpx;
  9. padding: 30rpx;
  10. border-radius: 18rpx;
  11. background: #fff;
  12. }
  13. .li-label {
  14. display: inline-block;
  15. background: linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
  16. font-size: 28rpx;
  17. color: #fff;
  18. padding: 8rpx 40rpx 8rpx 30rpx;
  19. margin: 0 0 10rpx -30rpx;
  20. position: relative;
  21. }
  22. .li-label::before {
  23. content: "";
  24. position: absolute;
  25. top: 0;
  26. right: 0;
  27. border-top: solid 14rpx #fff;
  28. border-right: solid 14rpx #fff;
  29. border-bottom: solid 14rpx transparent;
  30. border-left: solid 14rpx transparent;
  31. }
  32. .li-label::after {
  33. content: "";
  34. position: absolute;
  35. bottom: 0;
  36. right: 0;
  37. border-top: solid 14rpx transparent;
  38. border-right: solid 14rpx #fff;
  39. border-bottom: solid 14rpx #fff;
  40. border-left: solid 14rpx transparent;
  41. }
  42. .li-title {
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. padding-bottom: 30rpx;
  47. margin-bottom: 30rpx;
  48. border-bottom: dashed 1rpx #ccc;
  49. }
  50. .li-text {
  51. margin: 14rpx auto;
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. }
  56. .text-blue {
  57. color: #00B7FF;
  58. font-size: 32rpx;
  59. line-height: 40rpx;
  60. }
  61. .text-blue-small {
  62. color: #00B7FF;
  63. font-size: 28rpx;
  64. line-height: 28rpx;
  65. }
  66. .text-black {
  67. color: #333;
  68. font-size: 32rpx;
  69. line-height: 40rpx;
  70. }
  71. .text-gray {
  72. color: #666;
  73. font-size: 32rpx;
  74. line-height: 40rpx;
  75. }
  76. .text-gray-small {
  77. color: #999;
  78. font-size: 28rpx;
  79. line-height: 28rpx;
  80. }
  81. .li-items {
  82. display: flex;
  83. justify-content: space-between;
  84. align-items: center;
  85. }
  86. .li-item {
  87. flex: 1;
  88. text-align: center;
  89. position: relative;
  90. }
  91. .li-item-icon {
  92. width: 40rpx;
  93. height: 40rpx;
  94. position: relative;
  95. z-index: 9;
  96. }
  97. .li-item-line-left {
  98. content: "";
  99. position: absolute;
  100. top: 20rpx;
  101. left: 0rpx;
  102. width: 50%;
  103. height: 10rpx;
  104. background: #CECECE;
  105. }
  106. .li-item-line-right {
  107. content: "";
  108. position: absolute;
  109. top: 20rpx;
  110. right: 0rpx;
  111. width: 50%;
  112. height: 10rpx;
  113. background: #CECECE;
  114. }
  115. .bg-blue {
  116. background: #00B7FF;
  117. }
  118. .bg-gray {
  119. background: #CECECE;
  120. }
  121. .li-item-text {
  122. margin-top: 20rpx;
  123. }
  124. .footer {
  125. position: fixed;
  126. bottom: 0;
  127. left: 0;
  128. width: 100%;
  129. z-index: 9;
  130. }
  131. .footer-tips {
  132. padding: 30rpx;
  133. display: flex;
  134. justify-content: flex-start;
  135. align-items: flex-start;
  136. }
  137. .footer-tips-icon {
  138. width: 34rpx;
  139. height: 34rpx;
  140. margin: 5rpx 13rpx 0 0;
  141. }
  142. .footer-tips-text {
  143. flex: 1;
  144. color: #FF542B;
  145. font-size: 28rpx;
  146. line-height: 44rpx;
  147. }
  148. .footer-btn {
  149. padding: 24rpx;
  150. text-align: center;
  151. background: linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
  152. font-size: 30rpx;
  153. color: #fff;
  154. }