Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /* 上 右 下 左*/
  2. /* 居中 */
  3. .as-gravity-center {
  4. /* 伸缩盒子 */
  5. display: flex;
  6. /* 对齐方式*/
  7. align-items: center;
  8. /* 两端对齐*/
  9. justify-content: center;
  10. }
  11. /* 左对齐 */
  12. .as-gravity-center-left {
  13. /* 伸缩盒子 */
  14. display: flex;
  15. /* 对齐方式*/
  16. align-items: flex-start;
  17. /* 两端对齐*/
  18. justify-content: center;
  19. }
  20. /* 右对齐 */
  21. .as-gravity-center-right {
  22. /* 伸缩盒子 */
  23. display: flex;
  24. /* 对齐方式*/
  25. align-items: flex-end;
  26. /* 两端对齐*/
  27. justify-content: center;
  28. }
  29. /* 启始对齐 */
  30. .as-gravity-center-start {
  31. /* 伸缩盒子 */
  32. display: flex;
  33. /* 对齐方式*/
  34. align-items: center;
  35. /* 两端对齐*/
  36. justify-content: flex-start;
  37. }
  38. /* 末尾对齐 */
  39. .as-gravity-center-end {
  40. /* 伸缩盒子 */
  41. display: flex;
  42. /* 对齐方式*/
  43. align-items: center;
  44. /* 两端对齐*/
  45. justify-content: flex-end;
  46. }
  47. /* 垂直布局 */
  48. .as-layout-vertical {
  49. /* 显示弯曲 */
  50. display: flex;
  51. /* 方向垂直 */
  52. flex-direction: column;
  53. /* 内容对齐 */
  54. /* justify-content: space-between; */
  55. flex: 1;
  56. /* 溢出隐藏 */
  57. overflow: hidden;
  58. }
  59. /* 横向布局 */
  60. /* padding: 2px 0; */
  61. .as-layout-horizontal {
  62. /* 显示弯曲 */
  63. display: flex;
  64. /* 方向横向 */
  65. flex-direction: row;
  66. flex: 1;
  67. overflow: hidden;
  68. }
  69. /* 文本两端对齐 */
  70. .text-justify {
  71. text-align: justify;
  72. text-justify: distribute-all-lines;
  73. text-align-last: justify;
  74. -moz-text-align-last: justify;
  75. -webkit-text-align-last: justify;
  76. }
  77. .text-right {
  78. text-align: right;
  79. text-justify: distribute-all-lines;
  80. text-align-last: right;
  81. -moz-text-align-last: right;
  82. -webkit-text-align-last: right;
  83. }
  84. .text-left {
  85. text-align: left;
  86. text-justify: distribute-all-lines;
  87. text-align-last: left;
  88. -moz-text-align-last: left;
  89. -webkit-text-align-last: right;
  90. }
  91. /* 横向占满 */
  92. .as-weight {
  93. flex: 1;
  94. }
  95. /* 阴影高度 */
  96. .as-elevation-2px {
  97. box-shadow: 2px 2px 2px 2px #f5f6fe;
  98. }
  99. .elevation {
  100. box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.13);
  101. }
  102. /* 阴影高度 */
  103. .as-elevation-4px {
  104. box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.13);
  105. }
  106. /* 圆角 */
  107. .as-radius-5px {
  108. border-radius: 5px;
  109. }
  110. .as-radius-8px {
  111. border-radius: 8px;
  112. }
  113. .as-radius-30px {
  114. border-radius: 30px;
  115. }
  116. /* 加粗 */
  117. .as-bold {
  118. font-weight: bold;
  119. }
  120. /* 边框 */
  121. .as-border-width {
  122. border-width: 0.5px;
  123. border-style: solid;
  124. border-color: #c8c7cc;
  125. background-color: #f8f8f8;
  126. }
  127. .as-bg-transparent {
  128. background: transparent;
  129. }
  130. .bottom-style {
  131. border-radius: 15px;
  132. min-height: 5rem;
  133. }
  134. .text {
  135. color: #646464;
  136. font-size: 28rpx;
  137. opacity: 1;
  138. }
  139. .text-error {
  140. font-size: 20rpx;
  141. color: #F90808;
  142. }
  143. .text-content {
  144. font-size: 28rpx;
  145. color: #646464;
  146. }
  147. .text-hint {
  148. font-size: 28rpx;
  149. color: #969696;
  150. }
  151. .text-title {
  152. font-size: 28rpx;
  153. color: #323232;
  154. }
  155. .lines2 {
  156. display: -webkit-box;
  157. -webkit-box-orient: vertical;
  158. -webkit-line-clamp: 3;
  159. overflow: hidden;
  160. }
  161. /* 文本换行 */
  162. .huanhang {
  163. display: inline-block;
  164. width: 100%;
  165. height: auto;
  166. word-break: break-all;
  167. text-overflow: ellipsis;
  168. word-wrap: break-word;
  169. white-space: pre-wrap;
  170. }
  171. /* 进度提示 */
  172. .progress-wrap {
  173. position: absolute;
  174. top: 120rpx;
  175. left: 0px;
  176. right: 0px;
  177. height: 206rpx;
  178. display: flex;
  179. justify-content: center;
  180. align-items: center;
  181. .item-circle-no {
  182. width: 52rpx;
  183. height: 52rpx;
  184. background: rgba(255, 255, 255, 0.5);
  185. border-radius: 50%;
  186. display: flex;
  187. justify-content: center;
  188. align-items: center;
  189. color: #25D8C9;
  190. font-size: 30rpx;
  191. font-weight: 700;
  192. }
  193. .item-circle {
  194. width: 52rpx;
  195. height: 52rpx;
  196. background: #FFFFFF;
  197. border-radius: 50%;
  198. display: flex;
  199. justify-content: center;
  200. align-items: center;
  201. color: #25D8C9;
  202. font-size: 30rpx;
  203. font-weight: 700;
  204. }
  205. .item-line-solid {
  206. width: 66rpx;
  207. height: 2rpx;
  208. background-color: #FFFFFF;
  209. margin: 0 12rpx;
  210. }
  211. .item-line {
  212. border: 1px dashed rgba(255, 255, 255, 0.5);
  213. width: 66rpx;
  214. margin: 0 12rpx;
  215. }
  216. .item-circle-op {
  217. width: 66rpx;
  218. height: 66rpx;
  219. background: rgba(255, 255, 255, 0.4);
  220. border-radius: 50%;
  221. display: flex;
  222. justify-content: center;
  223. align-items: center;
  224. }
  225. }
  226. .ui-btn {
  227. height: 88rpx;
  228. background: radial-gradient(at 0% 0%, #01243A 0%, #004576 100%);
  229. border-radius: 40rpx;
  230. font-size: 30rpx;
  231. font-weight: 400;
  232. color: #fff!important;
  233. line-height: 88rpx;
  234. width: 660rpx;
  235. margin: 0 auto;
  236. }
  237. .ui-btn-normal {
  238. height: 88rpx;
  239. background: #FFFFFF;
  240. border-radius: 40rpx;
  241. border: 2px solid #DCDCDC;
  242. font-size: 30rpx;
  243. font-weight: 400;
  244. line-height: 88rpx;
  245. width: 660rpx;
  246. margin: 0 auto;
  247. }
  248. .ui-btn-another {
  249. height: 88rpx;
  250. background:linear-gradient(90deg, #CCB375 0%, #E7D398 100%);
  251. border-radius: 40rpx;
  252. font-size: 30rpx;
  253. font-weight: 400;
  254. color: #fff!important;
  255. line-height: 88rpx;
  256. width: 660rpx;
  257. margin: 0 auto;
  258. }
  259. .common-word{
  260. color: #CCB375 ;
  261. }