my-commission.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. page {
  2. min-height: 100%;
  3. background: linear-gradient(180deg, #FFFFFF, #F2F2F2);
  4. }
  5. .wrap {
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. padding: 20rpx 24rpx;
  10. box-sizing: border-box;
  11. }
  12. .card {
  13. width: 100%;
  14. min-height: 292rpx;
  15. background: linear-gradient(43deg, #E77E1E, #FF5E45);
  16. border-radius: 24rpx;
  17. padding: 24rpx 42rpx 14rpx;
  18. box-sizing: border-box;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: space-between;
  22. }
  23. .card-label {
  24. color: #FAE6D7;
  25. font-size: 28rpx;
  26. }
  27. .card-middle {
  28. width: 100%;
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. }
  33. .money {
  34. color: #FFFFFF;
  35. font-size: 40rpx;
  36. }
  37. .money text {
  38. font-size: 70rpx;
  39. font-weight: bold;
  40. }
  41. .btn {
  42. width: 182rpx;
  43. height: 64rpx;
  44. line-height: 64rpx;
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. background-color: #FFFFFF;
  49. border-radius: 100rpx;
  50. color: #F2501A;
  51. font-size: 28rpx;
  52. }
  53. .card-bottom {
  54. width: 100%;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. }
  59. .card-bottom-row {
  60. display: flex;
  61. flex-direction: column;
  62. }
  63. .card-bottom-row-label {
  64. font-size: 30rpx;
  65. color: rgba(255, 255, 255, 0.8);
  66. margin-bottom: 5rpx;
  67. }
  68. .small-money {
  69. color: #fff;
  70. font-size: 30rpx;
  71. }
  72. .small-money text {
  73. font-size: 40rpx;
  74. font-weight: bold;
  75. }
  76. .password-msg {
  77. color: #FEF2EE;
  78. font-size: 24rpx;
  79. }
  80. .tab-list {
  81. width: 100%;
  82. white-space: nowrap;
  83. }
  84. .child {
  85. display: inline-block;
  86. line-height: 90rpx;
  87. font-size: 32rpx;
  88. margin-right: 88rpx;
  89. }
  90. .child:last-child {
  91. margin-right: 0;
  92. }
  93. .child.active {
  94. color: #F2501A;
  95. }
  96. .list {
  97. width: 100%;
  98. display: flex;
  99. flex-direction: column;
  100. }
  101. .item {
  102. width: 100%;
  103. min-height: 114rpx;
  104. display: flex;
  105. justify-content: space-between;
  106. align-items: center;
  107. position: relative;
  108. padding: 0 42rpx;
  109. box-sizing: border-box;
  110. background-color: #fff;
  111. }
  112. .item::after {
  113. content: "";
  114. position: absolute;
  115. width: calc(100% - 84rpx);
  116. height: 1px;
  117. left: 50%;
  118. transform: translate(-50%, 0);
  119. bottom: 0;
  120. background-color: #EEEEEE;
  121. }
  122. .item:first-child {
  123. border-top-left-radius: 16rpx;
  124. border-top-right-radius: 16rpx;
  125. }
  126. .item:last-child {
  127. border-bottom-left-radius: 16rpx;
  128. border-bottom-right-radius: 16rpx;
  129. }
  130. .item:last-child::after {
  131. background: initial;
  132. }
  133. .item-sidebar {
  134. flex: 1;
  135. display: flex;
  136. flex-direction: column;
  137. }
  138. .item-name {
  139. color: #202020;
  140. font-size: 28rpx;
  141. }
  142. .numadd {
  143. color: #202020;
  144. font-size: 32rpx;
  145. font-weight: bold;
  146. }
  147. .numless {
  148. color: #F2501A;
  149. font-size: 32rpx;
  150. font-weight: bold;
  151. }
  152. .item-msg {
  153. width: 100%;
  154. color: #A7A7A7;
  155. font-size: 24rpx;
  156. margin-top: 4rpx;
  157. }
  158. .normal-box {
  159. width: 100%;
  160. display: flex;
  161. flex-direction: column;
  162. align-items: center;
  163. color: #999999;
  164. font-size: 26rpx;
  165. padding: 80rpx 0;
  166. }
  167. .normal-box image {
  168. width: 580rpx;
  169. margin-bottom: 12rpx;
  170. }