query.wxss 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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. @-webkit-keyframes breathe-data-v-2a310e7e {
  28. 0% {
  29. opacity: 0.3;
  30. }
  31. 50% {
  32. opacity: 1;
  33. }
  34. 100% {
  35. opacity: 0.3;
  36. }
  37. }
  38. @keyframes breathe-data-v-2a310e7e {
  39. 0% {
  40. opacity: 0.3;
  41. }
  42. 50% {
  43. opacity: 1;
  44. }
  45. 100% {
  46. opacity: 0.3;
  47. }
  48. }
  49. .u-char-box.data-v-2a310e7e {
  50. text-align: center;
  51. }
  52. .u-char-flex.data-v-2a310e7e {
  53. display: -webkit-box;
  54. display: -webkit-flex;
  55. display: flex;
  56. -webkit-box-orient: horizontal;
  57. -webkit-box-direction: normal;
  58. -webkit-flex-direction: row;
  59. flex-direction: row;
  60. -webkit-box-pack: center;
  61. -webkit-justify-content: center;
  62. justify-content: center;
  63. -webkit-flex-wrap: wrap;
  64. flex-wrap: wrap;
  65. position: relative;
  66. }
  67. .u-input.data-v-2a310e7e {
  68. position: absolute;
  69. top: 0;
  70. left: -100%;
  71. width: 200%;
  72. height: 100%;
  73. text-align: left;
  74. z-index: 9;
  75. opacity: 0;
  76. background: none;
  77. }
  78. .u-char-item.data-v-2a310e7e {
  79. position: relative;
  80. width: 90rpx;
  81. height: 90rpx;
  82. margin: 10rpx 10rpx;
  83. font-size: 60rpx;
  84. font-weight: bold;
  85. color: #999;
  86. line-height: 90rpx;
  87. display: -webkit-box;
  88. display: -webkit-flex;
  89. display: flex;
  90. -webkit-box-orient: horizontal;
  91. -webkit-box-direction: normal;
  92. -webkit-flex-direction: row;
  93. flex-direction: row;
  94. -webkit-box-pack: center;
  95. -webkit-justify-content: center;
  96. justify-content: center;
  97. -webkit-box-align: center;
  98. -webkit-align-items: center;
  99. align-items: center;
  100. }
  101. .u-middle-line.data-v-2a310e7e {
  102. border: none;
  103. }
  104. .u-box.data-v-2a310e7e {
  105. box-sizing: border-box;
  106. border: 2rpx solid #cccccc;
  107. border-radius: 6rpx;
  108. }
  109. .u-box-active.data-v-2a310e7e {
  110. overflow: hidden;
  111. -webkit-animation-timing-function: ease-in-out;
  112. animation-timing-function: ease-in-out;
  113. -webkit-animation-duration: 1500ms;
  114. animation-duration: 1500ms;
  115. -webkit-animation-iteration-count: infinite;
  116. animation-iteration-count: infinite;
  117. -webkit-animation-direction: alternate;
  118. animation-direction: alternate;
  119. border: 2rpx solid #999;
  120. }
  121. .u-middle-line-active.data-v-2a310e7e {
  122. background: #999;
  123. }
  124. .u-breathe.data-v-2a310e7e {
  125. -webkit-animation: breathe-data-v-2a310e7e 2s infinite ease;
  126. animation: breathe-data-v-2a310e7e 2s infinite ease;
  127. }
  128. .u-placeholder-line.data-v-2a310e7e {
  129. display: none;
  130. position: absolute;
  131. left: 50%;
  132. top: 50%;
  133. -webkit-transform: translate(-50%, -50%);
  134. transform: translate(-50%, -50%);
  135. width: 2rpx;
  136. height: 40rpx;
  137. background: #333333;
  138. -webkit-animation: twinkling 1.5s infinite ease;
  139. animation: twinkling 1.5s infinite ease;
  140. }
  141. .u-animation-breathe.data-v-2a310e7e {
  142. -webkit-animation-name: breathe-data-v-2a310e7e;
  143. animation-name: breathe-data-v-2a310e7e;
  144. }
  145. .u-dot.data-v-2a310e7e {
  146. font-size: 34rpx;
  147. line-height: 34rpx;
  148. }
  149. .u-middle-line.data-v-2a310e7e {
  150. height: 4px;
  151. background: #000000;
  152. width: 80%;
  153. position: absolute;
  154. border-radius: 2px;
  155. top: 50%;
  156. left: 50%;
  157. -webkit-transform: translate(-50%, -50%);
  158. transform: translate(-50%, -50%);
  159. }
  160. .u-buttom-line-active.data-v-2a310e7e {
  161. background: #999;
  162. }
  163. .u-bottom-line.data-v-2a310e7e {
  164. height: 4px;
  165. background: #000000;
  166. width: 80%;
  167. position: absolute;
  168. border-radius: 2px;
  169. bottom: 0;
  170. left: 50%;
  171. -webkit-transform: translate(-50%);
  172. transform: translate(-50%);
  173. }
  174. @charset "UTF-8";
  175. /**
  176. * 这里是uni-app内置的常用样式变量
  177. *
  178. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  179. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  180. *
  181. */
  182. /**
  183. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  184. *
  185. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  186. */
  187. /* 颜色变量 */
  188. /* 行为相关颜色 */
  189. /* 文字基本颜色 */
  190. /* 背景颜色 */
  191. /* 边框颜色 */
  192. /* 尺寸变量 */
  193. /* 文字尺寸 */
  194. /* 图片尺寸 */
  195. /* Border Radius */
  196. /* 水平间距 */
  197. /* 垂直间距 */
  198. /* 透明度 */
  199. /* 文章场景相关 */
  200. .query {
  201. width: 100%;
  202. min-height: 100%;
  203. }
  204. .query .query_bg {
  205. width: 100%;
  206. height: 100%;
  207. position: fixed;
  208. top: 0;
  209. left: 0;
  210. }
  211. .query .query_con {
  212. width: 100%;
  213. position: absolute;
  214. top: 5vh;
  215. left: 0;
  216. display: -webkit-box;
  217. display: -webkit-flex;
  218. display: flex;
  219. -webkit-box-orient: vertical;
  220. -webkit-box-direction: normal;
  221. -webkit-flex-direction: column;
  222. flex-direction: column;
  223. -webkit-box-pack: center;
  224. -webkit-justify-content: center;
  225. justify-content: center;
  226. -webkit-box-align: center;
  227. -webkit-align-items: center;
  228. align-items: center;
  229. margin-bottom: 50rpx;
  230. }
  231. .query .query_con image {
  232. width: 156rpx;
  233. height: 156rpx;
  234. }
  235. .query .query_con .info {
  236. font-size: 48rpx;
  237. color: #fff;
  238. font-weight: bold;
  239. margin: 30rpx 0;
  240. }
  241. .query .query_con .anti {
  242. width: 690rpx;
  243. margin: 0 auto;
  244. background-color: #fff;
  245. border-radius: 24rpx;
  246. padding: 0 30rpx 86rpx 30rpx;
  247. box-sizing: border-box;
  248. }
  249. .query .query_con .anti .anti_title {
  250. font-size: 40rpx;
  251. color: #333;
  252. font-weight: bold;
  253. padding: 40rpx 0 30rpx;
  254. }
  255. .query .query_con .anti .query_btn {
  256. width: 530rpx;
  257. height: 88rpx;
  258. text-align: center;
  259. line-height: 88rpx;
  260. background: -webkit-linear-gradient(357deg, #a080ff 0%, #5d6bff 100%);
  261. background: linear-gradient(93deg, #a080ff 0%, #5d6bff 100%);
  262. border-radius: 44rpx;
  263. color: #fff;
  264. font-size: 32rpx;
  265. margin: 56rpx auto 80rpx;
  266. }
  267. .query .query_con .anti .notice .notice_title {
  268. font-size: 32rpx;
  269. font-weight: bold;
  270. }
  271. .query .query_con .anti .notice .notice_intr {
  272. font-size: 28rpx;
  273. padding: 16rpx 0 38rpx;
  274. line-height: 1.5;
  275. }
  276. .query .query_con .anti .notice .code {
  277. text-align: center;
  278. margin-bottom: 66rpx;
  279. }
  280. .query .query_con .anti .notice .code image {
  281. width: 306rpx;
  282. height: 176rpx;
  283. }
  284. .query .query_con .anti .notice .detail {
  285. margin-bottom: 15rpx;
  286. }
  287. .query .query_con .anti .notice .detail image {
  288. width: 36rpx;
  289. height: 36rpx;
  290. vertical-align: middle;
  291. margin-right: 15rpx;
  292. }
  293. .query .query_con .anti .notice .detail text {
  294. font-size: 28rpx;
  295. font-weight: 500;
  296. color: #333;
  297. }