myhome.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /* pages/myhome/myhome.wxss */
  2. .myhome-wrp {
  3. position: relative;
  4. }
  5. .topbg {
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 80rpx;
  11. /* background-color: #fe7124; */
  12. z-index: 1;
  13. }
  14. .header {
  15. position: relative;
  16. z-index: 2;
  17. display: flex;
  18. margin-bottom: 0;
  19. padding: 40rpx;
  20. /* border-radius: 15rpx; */
  21. background-color: #fff;
  22. box-sizing: border-box;
  23. }
  24. .header .avtor {
  25. width: 120rpx;
  26. height: 120rpx;
  27. border-radius: 50%;
  28. margin-right: 30rpx;
  29. }
  30. .header .info {
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. flex: 1;
  35. }
  36. .header .leftContent {
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: center;
  40. }
  41. .link {
  42. font-size: 24rpx;
  43. color: #8e8e8e;
  44. width: 45rpx;
  45. height: 45rpx;
  46. }
  47. .header .info .nickname {
  48. font-size: 34rpx;
  49. font-weight: bold;
  50. margin-bottom: 10rpx;
  51. }
  52. .header .info .weixin {
  53. font-size: 24rpx;
  54. color: #8e8e8e;
  55. margin-bottom: 10rpx;
  56. }
  57. .header .info .other {
  58. width: 350rpx;
  59. font-size: 26rpx;
  60. color: #8e8e8e;
  61. background-color: rgb(FF, FF, FF);
  62. }
  63. .header .info .other .money {
  64. color: #000000;
  65. }
  66. .card {
  67. width: 690rpx;
  68. margin: 0 auto;
  69. background-color: #fff;
  70. box-sizing: border-box;
  71. }
  72. .card-title {
  73. display: flex;
  74. padding: 30rpx 20rpx;
  75. align-items: center;
  76. border-radius: 15rpx;
  77. }
  78. .card-title:active {
  79. background-color: #eee;
  80. }
  81. .card-title .icon {
  82. margin-right: 15rpx;
  83. }
  84. .icon-postage {
  85. width: 45rpx;
  86. height: 45rpx;
  87. }
  88. .icon-phone {
  89. width: 45rpx;
  90. height: 45rpx;
  91. }
  92. .card-title .text {
  93. flex: 1
  94. }
  95. .card-title .more {
  96. font-size: 24rpx;
  97. color: #8e8e8e;
  98. width: 45rpx;
  99. height: 45rpx;
  100. }
  101. .card-body {
  102. padding: 0 20rpx 20rpx;
  103. }
  104. .card-item {
  105. padding: 30rpx;
  106. margin: 20rpx 0;
  107. border-radius: 15rpx;
  108. color: #fff;
  109. }
  110. .card-item:active {
  111. /* opacity: .8; */
  112. }
  113. .bg-orange {
  114. background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
  115. }
  116. .bg-blue {
  117. background: linear-gradient(to right, #006ec9 0%, #2599d8 100%);
  118. }
  119. .order_list {
  120. position: relative;
  121. padding-top: 28rpx;
  122. font-size: 30rpx;
  123. box-shadow: 0 -5rpx 10rpx #ccc;
  124. }
  125. .order_list_box {
  126. width: 690rpx;
  127. margin: 0 auto;
  128. border-radius: 10rpx;
  129. background: #ffffff;
  130. }
  131. .order_list .order_title {
  132. position: relative;
  133. display: flex;
  134. height: 104rpx;
  135. box-sizing: border-box;
  136. line-height: 104rpx;
  137. padding: 0 40rpx;
  138. }
  139. .order_list .order_title text {
  140. color: #1E242E;
  141. flex: 1;
  142. font-weight: bolder;
  143. font-size: 36rpx;
  144. }
  145. .order_list .order_title .look_all_order {
  146. font-size: 24rpx;
  147. text-align: right;
  148. color: #999;
  149. }
  150. .order_list .order_info {
  151. display: flex;
  152. padding: 0 30rpx;
  153. padding-bottom: 30rpx;
  154. }
  155. .order_list .order_info>view {
  156. flex: 1;
  157. text-align: center;
  158. font-size: 20rpx;
  159. color: #999;
  160. }
  161. .order_list .order_info image {
  162. vertical-align: middle;
  163. }
  164. .order_list .order_info text {
  165. display: inline-block;
  166. height: 30rpx;
  167. }
  168. .sub_count {
  169. position: absolute;
  170. z-index: 1;
  171. width: 36rpx;
  172. height: 36rpx;
  173. line-height: 40rpx;
  174. left: 50%;
  175. top: -4rpx;
  176. background: #FF4E4E;
  177. color: #fff;
  178. font-size: 20rpx;
  179. border-radius: 50%;
  180. transform: scale(.8);
  181. }
  182. .mt8 .label {
  183. font-size: 28rpx;
  184. color: #333;
  185. }
  186. .qrcodeLabel {
  187. font-size: 26rpx;
  188. color: #999;
  189. }
  190. .cardList {
  191. width: 690rpx;
  192. border-radius: 10rpx;
  193. margin: 0 auto;
  194. margin-top: 30rpx;
  195. }
  196. .limit {
  197. position: relative;
  198. height: 90rpx;
  199. width: 690rpx;
  200. margin: 0 auto;
  201. background-image: linear-gradient(150deg, #77C7FF 0%, #2E8EFD 100%);
  202. border-radius: 9rpx 9rpx 0 0;
  203. display: flex;
  204. align-items: center;
  205. font-size: 26rpx;
  206. color: #fff;
  207. padding-left: 30rpx;
  208. box-sizing: border-box;
  209. z-index: 10;
  210. }
  211. .limit .label {
  212. font-size: 30rpx;
  213. color: #fff;
  214. margin-left: 10rpx;
  215. margin-right: 17rpx;
  216. }
  217. .crown {
  218. width: 46rpx;
  219. height: 38rpx;
  220. }