mine.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .bor::after {
  28. border: none;
  29. }
  30. .page {
  31. min-height: 100vh;
  32. padding: 0 24rpx;
  33. background-color: #F7F6FB;
  34. }
  35. .setting {
  36. width: 692rpx;
  37. height: 454rpx;
  38. background: white;
  39. border-radius: 34rpx;
  40. margin: 40rpx 0 0rpx 0;
  41. padding: 34rpx 24rpx 36rpx;
  42. }
  43. .setting .active {
  44. font-size: 24rpx;
  45. font-family: PingFangSC-Regular;
  46. font-weight: 400;
  47. line-height: 34rpx;
  48. color: #323337;
  49. margin-top: 32rpx;
  50. }
  51. .serve {
  52. width: 702rpx;
  53. height: 482rpx;
  54. background: white;
  55. opacity: 1;
  56. border-radius: 28rpx;
  57. padding: 26rpx 28rpx 28rpx 30rpx;
  58. }
  59. .order_text {
  60. font-size: 30rpx;
  61. font-family: PingFang SC;
  62. font-weight: 500;
  63. line-height: 42rpx;
  64. color: #070707;
  65. }
  66. .order_all {
  67. font-size: 26rpx;
  68. font-family: PingFang SC;
  69. font-weight: 400;
  70. line-height: 36rpx;
  71. color: #999999;
  72. }
  73. .order {
  74. width: 702rpx;
  75. height: 230rpx;
  76. background: white;
  77. border-radius: 18rpx;
  78. margin: 24rpx 0 18rpx;
  79. padding: 22rpx 28rpx;
  80. }
  81. .order .icon {
  82. margin-top: 46rpx;
  83. }
  84. .order .icon .icon_text {
  85. margin-top: 12rpx;
  86. font-size: 26rpx;
  87. font-family: PingFang SC;
  88. font-weight: 400;
  89. line-height: 36rpx;
  90. color: #070707;
  91. }
  92. .back {
  93. width: 690rpx;
  94. height: 128rpx;
  95. background: linear-gradient(95deg, #898EA3 0%, #A1A4B5 40%, #BDC0D1 100%);
  96. opacity: 1;
  97. border-radius: 22rpx;
  98. padding: 22rpx 0 24rpx 58rpx;
  99. }
  100. .back .top1 {
  101. font-size: 28rpx;
  102. font-family: DOUYU;
  103. font-weight: normal;
  104. line-height: 38rpx;
  105. color: #FFF7F7;
  106. }
  107. .back .bottom {
  108. font-size: 22rpx;
  109. font-family: PingFang SC;
  110. font-weight: 400;
  111. line-height: 32rpx;
  112. color: #FFF7F7;
  113. margin-top: 14rpx;
  114. }
  115. .top {
  116. margin: 44rpx 0 38rpx 0;
  117. overflow: hidden;
  118. }
  119. .top .left {
  120. display: flex;
  121. overflow: hidden;
  122. }
  123. .top .left .login {
  124. font-size: 36rpx;
  125. font-family: PingFang SC;
  126. font-weight: 500;
  127. line-height: 50rpx;
  128. color: #323337;
  129. margin-bottom: 10rpx;
  130. }
  131. .top .left .look {
  132. font-size: 24rpx;
  133. font-family: PingFangSC-Regular;
  134. line-height: 34rpx;
  135. color: #959595;
  136. }
  137. .top .qiandao {
  138. width: 168rpx;
  139. height: 54rpx;
  140. background: #B1E3FA;
  141. box-shadow: 0rpx 6rpx 12rpx #B1E3FA;
  142. opacity: 1;
  143. border-radius: 28rpx;
  144. line-height: 54rpx;
  145. text-align: center;
  146. font-size: 26rpx;
  147. font-family: PingFangSC-Regular;
  148. color: #FFF7F7;
  149. }