康巴易测肤/伤疤uniapp小程序类
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 月之前
3 週之前
1 月之前
1 月之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
1 月之前
1 月之前
1 月之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
3 週之前
1 月之前
1 月之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. .safe-area-bottom.data-v-54d3589c {
  28. padding-bottom: env(safe-area-inset-bottom);
  29. }
  30. text.data-v-54d3589c {
  31. font-family: Source Han Sans CN;
  32. }
  33. /* 容器样式 */
  34. .container.data-v-54d3589c {
  35. position: relative;
  36. background: #fff;
  37. overflow: hidden;
  38. }
  39. .container .main .steps.data-v-54d3589c {
  40. padding: 24rpx 32rpx;
  41. background: #F3D4A3;
  42. }
  43. .container .main .steps .step-content.data-v-54d3589c {
  44. background: #fff;
  45. border-radius: 20rpx;
  46. padding: 30rpx;
  47. }
  48. .container .main .steps .step-content .step-banner.data-v-54d3589c {
  49. display: flex;
  50. justify-content: flex-start;
  51. align-items: flex-start;
  52. flex-direction: column;
  53. }
  54. .container .main .steps .step-content .step-banner .title.data-v-54d3589c {
  55. font-size: 30rpx;
  56. font-family: Source Han Sans CN;
  57. color: #333;
  58. font-weight: bold;
  59. }
  60. .container .main .steps .step-content .step-banner .title .count.data-v-54d3589c {
  61. font-size: 40rpx;
  62. font-family: Source Han Sans CN;
  63. color: #EBA72A;
  64. }
  65. .container .main .steps .step-content .step-banner .subtitle.data-v-54d3589c {
  66. margin-top: 10rpx;
  67. font-size: 28rpx;
  68. color: #999;
  69. }
  70. .container .main .question.data-v-54d3589c {
  71. padding: 40rpx;
  72. }
  73. .container .main .question .root.data-v-54d3589c {
  74. display: flex;
  75. justify-content: flex-start;
  76. align-items: center;
  77. }
  78. .container .main .question .root .question-text.data-v-54d3589c {
  79. position: relative;
  80. /* 相对定位 */
  81. margin-left: 40rpx;
  82. padding: 20rpx;
  83. border: 4rpx solid #FDF2D4;
  84. background-color: #FDF2D4;
  85. color: #000000;
  86. border-radius: 20rpx;
  87. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  88. font-weight: b;
  89. /* 外层箭头(作为边框) */
  90. /* 内层箭头(作为背景) */
  91. }
  92. .container .main .question .root .question-text text.data-v-54d3589c {
  93. font-family: Source Han Sans CN;
  94. font-weight: bold;
  95. font-size: 30rpx;
  96. color: #1F1F1F;
  97. }
  98. .container .main .question .root .question-text .arrow-border.data-v-54d3589c {
  99. position: absolute;
  100. top: 20%;
  101. left: -26rpx;
  102. -webkit-transform: translateX(-50%);
  103. transform: translateX(-50%);
  104. border-width: 25rpx;
  105. border-style: solid;
  106. border-color: transparent #FDF2D4 transparent transparent;
  107. /* 浅紫色边框 */
  108. z-index: 99;
  109. }
  110. .container .main .question .root .question-text .arrow-background.data-v-54d3589c {
  111. position: absolute;
  112. top: 20%;
  113. left: -29rpx;
  114. -webkit-transform: translateX(-50%);
  115. transform: translateX(-50%);
  116. border-width: 22rpx;
  117. /* 小三角形 */
  118. border-style: solid;
  119. border-color: transparent #FDF2D4 transparent transparent;
  120. /* 白色背景 */
  121. margin-top: 3rpx;
  122. /* 与大三角形重叠 */
  123. margin-left: 10rpx;
  124. /* 与大三角形重叠 */
  125. z-index: 999;
  126. }
  127. .container .main .question .question-content.data-v-54d3589c {
  128. margin: 40rpx 0;
  129. padding: 20rpx 0;
  130. max-height: 52vh;
  131. overflow: scroll;
  132. }
  133. .container .main .question .question-content .select-list .select-item.data-v-54d3589c {
  134. border-radius: 60rpx;
  135. padding: 30rpx 50rpx;
  136. margin: 20rpx 0;
  137. background-color: #f8f8f8;
  138. font-weight: bold;
  139. }
  140. .container .main .question .question-content .select-list .select-item.active.data-v-54d3589c {
  141. background-color: #EBA72A;
  142. color: #fff;
  143. }
  144. /* 单选项样式 */
  145. .radio-item.data-v-54d3589c {
  146. margin-bottom: 32rpx;
  147. padding: 24rpx;
  148. border-radius: 12rpx;
  149. background: #f8f8f8;
  150. }
  151. /* 按钮容器 */
  152. .action-buttons.data-v-54d3589c {
  153. position: relative;
  154. padding: 0 40rpx;
  155. margin: 20rpx 0 60rpx 0;
  156. display: flex;
  157. justify-content: space-between;
  158. flex-direction: column;
  159. }
  160. /* 适配不同屏幕尺寸 */
  161. @media (min-width: 768px) {
  162. .container.data-v-54d3589c {
  163. max-width: 600px;
  164. margin: 0 auto;
  165. }
  166. }