my.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. ax-body {
  2. display: block;
  3. height: 100%;
  4. background: #F6FAFF;
  5. }
  6. app-navigation {
  7. position: fixed;
  8. left: 0;
  9. right: 0;
  10. bottom: 0;
  11. }
  12. .page-background {
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. z-index: 0;
  18. }
  19. .page-background image {
  20. display: block;
  21. width: 100%;
  22. }
  23. .main {
  24. position: relative;
  25. z-index: 1;
  26. }
  27. /* 用户卡 */
  28. .user-card {
  29. padding: 20px 0;
  30. position: relative;
  31. }
  32. .user-avatar {
  33. display: block;
  34. width: 50px;
  35. height: 50px;
  36. margin-right: 10px;
  37. }
  38. .user-name {
  39. display: flex;
  40. align-items: center;
  41. }
  42. .user-name-text {
  43. font-size: 18px;
  44. font-weight: bold;
  45. }
  46. .user-phone {
  47. font-size: 12px;
  48. margin-top: 5px;
  49. }
  50. .seting-icon-box {
  51. position: absolute;
  52. right: 0;
  53. display: flex;
  54. align-items: center;
  55. right: -20rpx;
  56. }
  57. .seting-icon-box .img-icon {
  58. position: absolute;
  59. right: 110rpx;
  60. width: 100rpx;
  61. height: 100rpx;
  62. }
  63. .seting-icon-box .tips-text {
  64. width: 146rpx;
  65. height: 44rpx;
  66. background: linear-gradient(259deg, #F75441 0%, #FCB83C 100%);
  67. border-radius: 22rpx 0rpx 0rpx 22rpx;
  68. font-size: 28rpx;
  69. color: #FFFFFF;
  70. text-align: center;
  71. line-height: 44rpx;
  72. }
  73. .get-phone-number {
  74. display: inline-flex;
  75. height: unset;
  76. border: none;
  77. line-height: normal;
  78. background-color: transparent;
  79. font-size: 12px;
  80. color: #2B303A;
  81. padding: 0;
  82. margin: 0;
  83. }
  84. .get-phone-number::after {
  85. display: none;
  86. }
  87. .enterprise-name-card {
  88. margin-left: 10rpx;
  89. padding: 10rpx;
  90. background-color: rgba(62, 182, 248, 0.3);
  91. border-radius: 8rpx;
  92. font-size: 22rpx;
  93. color: #181818;
  94. }
  95. /* 统计卡 */
  96. .sta-card {
  97. flex: 1;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. flex-direction: column;
  102. height: 78px;
  103. border-radius: 8px;
  104. background-color: #F2F8FF;
  105. box-shadow: 0 3px 6px rgba(122, 168, 222, 0.3);
  106. position: relative;
  107. overflow: hidden;
  108. }
  109. .sta-card::before {
  110. content: '';
  111. display: block;
  112. position: absolute;
  113. top: 0;
  114. left: 0;
  115. right: 0;
  116. bottom: 0;
  117. box-shadow: 0 8px 8px #fff inset;
  118. background-color: transparent !important;
  119. }
  120. .sta-card+.sta-card {
  121. margin-left: 10px;
  122. }
  123. .sta-card .value {
  124. font-size: 24px;
  125. font-weight: bold;
  126. position: relative;
  127. z-index: 3;
  128. }
  129. .sta-card .name {
  130. font-size: 12px;
  131. color: #aaa;
  132. position: relative;
  133. z-index: 3;
  134. }
  135. .sta-card .bg {
  136. position: absolute;
  137. top: 0;
  138. right: 0;
  139. height: 100%;
  140. z-index: 2;
  141. }
  142. .buy {
  143. display: flex;
  144. align-items: center;
  145. justify-content: center;
  146. height: 50px;
  147. border-radius: 8px;
  148. font-size: 14px;
  149. margin-top: 15px;
  150. background: linear-gradient(to right, #8FF8FB, #47AEFF);
  151. }
  152. /* 卡片 */
  153. .card {
  154. background-color: #fff;
  155. border-radius: 8px;
  156. margin-top: 15px;
  157. box-shadow: 0 1px 8px rgba(122, 168, 222, 0.1);
  158. }
  159. .card-title {
  160. padding: 10px 20px 0 20px;
  161. font-weight: bold;
  162. }
  163. .act-wrap {
  164. display: flex;
  165. align-items: flex-end;
  166. width: 100%;
  167. padding: 15px 0px;
  168. }
  169. .act-item {
  170. display: inline-flex;
  171. align-items: center;
  172. justify-content: space-between;
  173. flex-direction: column;
  174. width: 25%;
  175. height: 50px;
  176. }
  177. .act-item .icon {
  178. display: block;
  179. width: 30px;
  180. height: 30px;
  181. }
  182. .act-item .name {
  183. font-size: 12px;
  184. }
  185. .act-item.about {
  186. height: auto;
  187. }
  188. .act-item.about .icon {
  189. width: 40px;
  190. height: 40px;
  191. }
  192. .playbil-box {
  193. position: relative;
  194. }
  195. .playbil-box .playbil-bg {
  196. width: 600rpx;
  197. }
  198. .enterprise-name {
  199. width: 600rpx;
  200. text-align: center;
  201. font-size: 22rpx;
  202. position: absolute;
  203. top: 610rpx;
  204. color: rgb(33, 111, 247);
  205. }
  206. .playbil-qrcode {
  207. position: absolute;
  208. left: 170rpx;
  209. top: 280rpx;
  210. width: 260rpx;
  211. height: 260rpx;
  212. }
  213. .enterprise-user {
  214. position: absolute;
  215. width: 600rpx;
  216. text-align: center;
  217. top: 880rpx;
  218. font-size: 22rpx;
  219. color: #fff;
  220. }
  221. .enterprise-tips {
  222. text-align: center;
  223. font-size: 28rpx;
  224. color: #ff0004;
  225. }