my.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. body {
  27. height: 100%;
  28. overflow: hidden;
  29. background-color: #f7f7f8;
  30. }
  31. .viewport {
  32. height: 100%;
  33. background-repeat: no-repeat;
  34. background-image: url(https://pcapi-xiaotuxian-front-devtest.itheima.net/miniapp/images/center_bg.png);
  35. background-size: 100% auto;
  36. }
  37. /* 用户信息 */
  38. .profile {
  39. margin-top: 0.9375rem;
  40. position: relative;
  41. }
  42. .profile .overview {
  43. display: flex;
  44. height: 3.75rem;
  45. padding: 0 1.125rem;
  46. color: #fff;
  47. }
  48. .profile .avatar {
  49. width: 3.75rem;
  50. height: 3.75rem;
  51. border-radius: 50%;
  52. background-color: #eee;
  53. }
  54. .profile .gray {
  55. filter: grayscale(100%);
  56. }
  57. .profile .meta {
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: center;
  61. align-items: flex-start;
  62. line-height: 0.9375rem;
  63. padding: 0.5rem 0;
  64. margin-left: 0.625rem;
  65. }
  66. .profile .nickname {
  67. max-width: 5.625rem;
  68. margin-bottom: 0.5rem;
  69. font-size: 0.9375rem;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. }
  74. .profile .extra {
  75. display: flex;
  76. font-size: 0.625rem;
  77. }
  78. .profile .tips {
  79. font-size: 0.6875rem;
  80. }
  81. .profile .update {
  82. padding: 0.09375rem 0.3125rem 0.03125rem;
  83. color: rgba(255, 255, 255, 0.8);
  84. border: 0.03125rem solid rgba(255, 255, 255, 0.8);
  85. margin-right: 0.3125rem;
  86. border-radius: 0.9375rem;
  87. }
  88. .profile .settings {
  89. position: absolute;
  90. bottom: 0;
  91. right: 1.25rem;
  92. font-size: 0.9375rem;
  93. color: #fff;
  94. }
  95. /* 我的订单 */
  96. .orders {
  97. position: relative;
  98. z-index: 99;
  99. padding: 0.9375rem;
  100. margin: 1.5625rem 0.625rem 0;
  101. background-color: #fff;
  102. border-radius: 0.3125rem;
  103. box-shadow: 0 0.125rem 0.1875rem rgba(240, 240, 240, 0.6);
  104. }
  105. .orders .title {
  106. height: 1.25rem;
  107. line-height: 1.25rem;
  108. font-size: 0.875rem;
  109. color: #1e1e1e;
  110. }
  111. .orders .title .navigator {
  112. font-size: 0.75rem;
  113. color: #939393;
  114. float: right;
  115. }
  116. .orders .section {
  117. width: 100%;
  118. display: flex;
  119. justify-content: space-between;
  120. padding: 1.25rem 0.625rem 0.3125rem;
  121. }
  122. .orders .section .navigator,
  123. .orders .section .contact {
  124. text-align: center;
  125. font-size: 0.75rem;
  126. color: #333;
  127. }
  128. .orders .section .navigator::before,
  129. .orders .section .contact::before {
  130. display: block;
  131. font-size: 1.875rem;
  132. color: #ff9545;
  133. }
  134. .orders .section .navigator::after,
  135. .orders .section .contact::after {
  136. border: none;
  137. }
  138. .orders .section .contact {
  139. padding: 0;
  140. margin: 0;
  141. border: 0;
  142. background-color: transparent;
  143. line-height: inherit;
  144. }