index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. .index .d-container.data-v-57280228 {
  15. padding-top: constant(safe-area-inset-bottom);
  16. padding-top: env(safe-area-inset-bottom);
  17. }
  18. /* 颜色变量 */
  19. /* 行为相关颜色 */
  20. /* 文字基本颜色 */
  21. /* 背景颜色 */
  22. /* 边框颜色 */
  23. /* 尺寸变量 */
  24. /* 文字尺寸 */
  25. /* 图片尺寸 */
  26. /* Border Radius */
  27. /* 水平间距 */
  28. /* 垂直间距 */
  29. /* 透明度 */
  30. /* 文章场景相关 */
  31. .index.data-v-57280228 {
  32. width: 100vw;
  33. min-height: 100vh;
  34. background-color: #F1F1F1;
  35. }
  36. .index .detail-top.data-v-57280228 {
  37. width: 100%;
  38. height: 100%;
  39. position: relative;
  40. z-index: 2;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. flex-direction: flase;
  45. gap: 0rpx;
  46. }
  47. .index .detail-top .top-left.data-v-57280228 {
  48. position: absolute;
  49. left: 28rpx;
  50. top: 50%;
  51. -webkit-transform: translateY(-50%);
  52. transform: translateY(-50%);
  53. }
  54. .index .detail-top .top-left image.data-v-57280228 {
  55. width: 48rpx;
  56. height: 48rpx;
  57. display: block;
  58. }
  59. .index .detail-top .top-text.data-v-57280228 {
  60. font-size: 32rpx;
  61. font-weight: 600;
  62. color: #000;
  63. }
  64. .index .seat.data-v-57280228 {
  65. width: 100%;
  66. height: 16rpx;
  67. }
  68. .index .box-bg.data-v-57280228 {
  69. width: 100%;
  70. height: 393rpx;
  71. background-image: linear-gradient(to bottom, #8CCBFF 0%, #CDE9FF 71%, #F1F1F1 100%);
  72. position: fixed;
  73. top: 0;
  74. left: 0;
  75. }
  76. .index .container.data-v-57280228 {
  77. width: 100%;
  78. padding: 28rpx 32rpx 28rpx 28rpx;
  79. box-sizing: border-box;
  80. }
  81. .index .container .card-list.data-v-57280228 {
  82. position: relative;
  83. }
  84. .index .container .card-list .card-item.data-v-57280228 {
  85. position: absolute;
  86. left: 0;
  87. }
  88. .index .container .empty-box.data-v-57280228 {
  89. width: 100%;
  90. height: 649rpx;
  91. padding-top: 260rpx;
  92. box-sizing: border-box;
  93. display: flex;
  94. align-items: center;
  95. justify-content: center;
  96. flex-direction: column;
  97. gap: 6rpx;
  98. }
  99. .index .container .empty-box image.data-v-57280228 {
  100. width: 280rpx;
  101. height: 297rpx;
  102. display: block;
  103. }
  104. .index .container .empty-box text.data-v-57280228 {
  105. font-size: 28rpx;
  106. font-weight: 600;
  107. color: #3A495F;
  108. }
  109. .index .container .card-btn.data-v-57280228 {
  110. width: 100%;
  111. }
  112. .index .container .card-btn button.data-v-57280228 {
  113. width: 100%;
  114. height: 98rpx;
  115. background: linear-gradient(98deg, #0E83FF 0%, #0E3EFF 100%);
  116. text-align: center;
  117. line-height: 98rpx;
  118. border-radius: 16rpx;
  119. margin-top: 24rpx;
  120. font-size: 28rpx;
  121. color: #FFFFFF;
  122. }
  123. .index .d-container.data-v-57280228 {
  124. box-sizing: border-box;
  125. height: 100vh;
  126. width: 350rpx;
  127. background-color: #fff;
  128. border-radius: 16rpx;
  129. }
  130. .index .d-container .d-image.data-v-57280228 {
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. flex-direction: column;
  135. gap: 20rpx;
  136. padding: 35rpx 0;
  137. box-sizing: border-box;
  138. border-top: 1rpx solid #cccccc;
  139. border-bottom: 1rpx solid #cccccc;
  140. }
  141. .index .d-container .d-image image.data-v-57280228 {
  142. width: 100rpx;
  143. height: 100rpx;
  144. display: block;
  145. border-radius: 50%;
  146. }
  147. .index .d-container .d-image text.data-v-57280228 {
  148. font-size: 28rpx;
  149. }
  150. .index .d-container .quit.data-v-57280228 {
  151. height: 80rpx;
  152. text-align: center;
  153. line-height: 80rpx;
  154. font-size: 26rpx;
  155. border-bottom: 1rpx solid #cccccc;
  156. }
  157. .data-v-57280228 .tui-drawer-container {
  158. border-radius: 0 16rpx 16rpx 0;
  159. }