testResult.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
  27. display: flex;
  28. flex-direction: column;
  29. flex-shrink: 0;
  30. flex-grow: 0;
  31. flex-basis: auto;
  32. align-items: stretch;
  33. align-content: flex-start;
  34. }
  35. .u-loading-icon[data-v-2af81691] {
  36. flex-direction: row;
  37. align-items: center;
  38. justify-content: center;
  39. color: #c8c9cc;
  40. }
  41. .u-loading-icon__text[data-v-2af81691] {
  42. margin-left: 4px;
  43. color: #606266;
  44. font-size: 14px;
  45. line-height: 20px;
  46. }
  47. .u-loading-icon__spinner[data-v-2af81691] {
  48. width: 30px;
  49. height: 30px;
  50. position: relative;
  51. box-sizing: border-box;
  52. max-width: 100%;
  53. max-height: 100%;
  54. animation: u-rotate-2af81691 1s linear infinite;
  55. }
  56. .u-loading-icon__spinner--semicircle[data-v-2af81691] {
  57. border-width: 2px;
  58. border-color: transparent;
  59. border-top-right-radius: 100px;
  60. border-top-left-radius: 100px;
  61. border-bottom-left-radius: 100px;
  62. border-bottom-right-radius: 100px;
  63. border-style: solid;
  64. }
  65. .u-loading-icon__spinner--circle[data-v-2af81691] {
  66. border-top-right-radius: 100px;
  67. border-top-left-radius: 100px;
  68. border-bottom-left-radius: 100px;
  69. border-bottom-right-radius: 100px;
  70. border-width: 2px;
  71. border-top-color: #e5e5e5;
  72. border-right-color: #e5e5e5;
  73. border-bottom-color: #e5e5e5;
  74. border-left-color: #e5e5e5;
  75. border-style: solid;
  76. }
  77. .u-loading-icon--vertical[data-v-2af81691] {
  78. flex-direction: column;
  79. }
  80. [data-v-2af81691]:host {
  81. font-size: 0px;
  82. line-height: 1;
  83. }
  84. .u-loading-icon__spinner--spinner[data-v-2af81691] {
  85. animation-timing-function: steps(12);
  86. }
  87. .u-loading-icon__text[data-v-2af81691]:empty {
  88. display: none;
  89. }
  90. .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
  91. margin: 6px 0 0;
  92. color: #606266;
  93. }
  94. .u-loading-icon__dot[data-v-2af81691] {
  95. position: absolute;
  96. top: 0;
  97. left: 0;
  98. width: 100%;
  99. height: 100%;
  100. }
  101. .u-loading-icon__dot[data-v-2af81691]:before {
  102. display: block;
  103. width: 2px;
  104. height: 25%;
  105. margin: 0 auto;
  106. background-color: currentColor;
  107. border-radius: 40%;
  108. content: " ";
  109. }
  110. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
  111. transform: rotate(30deg);
  112. opacity: 1;
  113. }
  114. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
  115. transform: rotate(60deg);
  116. opacity: 0.9375;
  117. }
  118. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
  119. transform: rotate(90deg);
  120. opacity: 0.875;
  121. }
  122. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
  123. transform: rotate(120deg);
  124. opacity: 0.8125;
  125. }
  126. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
  127. transform: rotate(150deg);
  128. opacity: 0.75;
  129. }
  130. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
  131. transform: rotate(180deg);
  132. opacity: 0.6875;
  133. }
  134. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
  135. transform: rotate(210deg);
  136. opacity: 0.625;
  137. }
  138. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
  139. transform: rotate(240deg);
  140. opacity: 0.5625;
  141. }
  142. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
  143. transform: rotate(270deg);
  144. opacity: 0.5;
  145. }
  146. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
  147. transform: rotate(300deg);
  148. opacity: 0.4375;
  149. }
  150. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
  151. transform: rotate(330deg);
  152. opacity: 0.375;
  153. }
  154. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
  155. transform: rotate(360deg);
  156. opacity: 0.3125;
  157. }
  158. @keyframes u-rotate-2af81691 {
  159. 0% {
  160. transform: rotate(0deg);
  161. }
  162. to {
  163. transform: rotate(1turn);
  164. }
  165. }
  166. /**
  167. * 这里是uni-app内置的常用样式变量
  168. *
  169. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  170. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  171. *
  172. */
  173. /**
  174. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  175. *
  176. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  177. */
  178. /* 颜色变量 */
  179. /* 行为相关颜色 */
  180. /* 文字基本颜色 */
  181. /* 背景颜色 */
  182. /* 边框颜色 */
  183. /* 尺寸变量 */
  184. /* 文字尺寸 */
  185. /* 图片尺寸 */
  186. /* Border Radius */
  187. /* 水平间距 */
  188. /* 垂直间距 */
  189. /* 透明度 */
  190. /* 文章场景相关 */
  191. uni-view[data-v-7b7c7ea6], uni-scroll-view[data-v-7b7c7ea6], uni-swiper-item[data-v-7b7c7ea6] {
  192. display: flex;
  193. flex-direction: column;
  194. flex-shrink: 0;
  195. flex-grow: 0;
  196. flex-basis: auto;
  197. align-items: stretch;
  198. align-content: flex-start;
  199. }
  200. .u-swiper-indicator__wrapper[data-v-7b7c7ea6] {
  201. display: flex;
  202. flex-direction: row;
  203. }
  204. .u-swiper-indicator__wrapper--line[data-v-7b7c7ea6] {
  205. border-radius: 100px;
  206. height: 4px;
  207. }
  208. .u-swiper-indicator__wrapper--line__bar[data-v-7b7c7ea6] {
  209. width: 22px;
  210. height: 4px;
  211. border-radius: 100px;
  212. background-color: #FFFFFF;
  213. transition: transform 0.3s;
  214. }
  215. .u-swiper-indicator__wrapper__dot[data-v-7b7c7ea6] {
  216. width: 5px;
  217. height: 5px;
  218. border-radius: 100px;
  219. margin: 0 4px;
  220. }
  221. .u-swiper-indicator__wrapper__dot--active[data-v-7b7c7ea6] {
  222. width: 12px;
  223. }
  224. /**
  225. * 这里是uni-app内置的常用样式变量
  226. *
  227. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  228. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  229. *
  230. */
  231. /**
  232. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  233. *
  234. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  235. */
  236. /* 颜色变量 */
  237. /* 行为相关颜色 */
  238. /* 文字基本颜色 */
  239. /* 背景颜色 */
  240. /* 边框颜色 */
  241. /* 尺寸变量 */
  242. /* 文字尺寸 */
  243. /* 图片尺寸 */
  244. /* Border Radius */
  245. /* 水平间距 */
  246. /* 垂直间距 */
  247. /* 透明度 */
  248. /* 文章场景相关 */
  249. uni-view[data-v-4e7d0c90], uni-scroll-view[data-v-4e7d0c90], uni-swiper-item[data-v-4e7d0c90] {
  250. display: flex;
  251. flex-direction: column;
  252. flex-shrink: 0;
  253. flex-grow: 0;
  254. flex-basis: auto;
  255. align-items: stretch;
  256. align-content: flex-start;
  257. }
  258. .u-swiper[data-v-4e7d0c90] {
  259. display: flex;
  260. flex-direction: row;
  261. justify-content: center;
  262. align-items: center;
  263. position: relative;
  264. overflow: hidden;
  265. }
  266. .u-swiper__wrapper[data-v-4e7d0c90] {
  267. flex: 1;
  268. }
  269. .u-swiper__wrapper__item[data-v-4e7d0c90] {
  270. flex: 1;
  271. }
  272. .u-swiper__wrapper__item__wrapper[data-v-4e7d0c90] {
  273. display: flex;
  274. flex-direction: row;
  275. position: relative;
  276. overflow: hidden;
  277. transition: transform 0.3s;
  278. flex: 1;
  279. }
  280. .u-swiper__wrapper__item__wrapper__image[data-v-4e7d0c90] {
  281. flex: 1;
  282. }
  283. .u-swiper__wrapper__item__wrapper__video[data-v-4e7d0c90] {
  284. flex: 1;
  285. }
  286. .u-swiper__wrapper__item__wrapper__title[data-v-4e7d0c90] {
  287. position: absolute;
  288. background-color: rgba(0, 0, 0, 0.3);
  289. bottom: 0;
  290. left: 0;
  291. right: 0;
  292. font-size: 0.875rem;
  293. padding: 0.375rem 0.75rem;
  294. color: #FFFFFF;
  295. flex: 1;
  296. }
  297. .u-swiper__indicator[data-v-4e7d0c90] {
  298. position: absolute;
  299. bottom: 10px;
  300. }
  301. /**
  302. * 这里是uni-app内置的常用样式变量
  303. *
  304. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  305. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  306. *
  307. */
  308. /**
  309. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  310. *
  311. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  312. */
  313. /* 颜色变量 */
  314. /* 行为相关颜色 */
  315. /* 文字基本颜色 */
  316. /* 背景颜色 */
  317. /* 边框颜色 */
  318. /* 尺寸变量 */
  319. /* 文字尺寸 */
  320. /* 图片尺寸 */
  321. /* Border Radius */
  322. /* 水平间距 */
  323. /* 垂直间距 */
  324. /* 透明度 */
  325. /* 文章场景相关 */
  326. body {
  327. background-color: #FDF7F0;
  328. height: 100%;
  329. }
  330. .content .cont {
  331. position: relative;
  332. width: 100%;
  333. display: flex;
  334. flex-direction: column;
  335. }
  336. .content .cont .bg {
  337. width: 100%;
  338. height: 100%;
  339. position: fixed;
  340. z-index: 1;
  341. }
  342. .content .cont .bg uni-image {
  343. width: 100%;
  344. height: 100%;
  345. }
  346. .content .cont .cont-box {
  347. z-index: 1000;
  348. margin-top: 2.75rem;
  349. }
  350. .content .cont .cont-box .user {
  351. width: 100%;
  352. display: flex;
  353. flex-direction: column;
  354. align-items: center;
  355. justify-content: center;
  356. padding: 0.9375rem;
  357. }
  358. .content .cont .cont-box .user uni-image {
  359. border-radius: 50%;
  360. border: 0.0625rem solid #ffffff;
  361. width: 3.75rem;
  362. height: 3.75rem;
  363. }
  364. .content .cont .cont-box .user .user-box {
  365. padding: 0.9375rem;
  366. display: flex;
  367. align-items: center;
  368. justify-content: center;
  369. }
  370. .content .cont .cont-box .user .user-box .sex {
  371. font-weight: bold;
  372. font-size: 40supx;
  373. font-family: PingFang SC;
  374. color: #925924;
  375. }
  376. .content .cont .cont-box .user .user-box .username {
  377. margin-left: 0.46875rem;
  378. font-size: 40supx;
  379. font-family: PingFang SC;
  380. color: #925924;
  381. }
  382. .content .cont .cont-box .items {
  383. width: 100%;
  384. display: flex;
  385. flex-direction: column;
  386. align-items: flex-start;
  387. justify-content: flex-start;
  388. padding: 0.625rem;
  389. }
  390. .content .cont .cont-box .items .result-box {
  391. width: 100%;
  392. display: flex;
  393. flex-direction: column;
  394. align-items: center;
  395. justify-content: center;
  396. padding: 0.9375rem;
  397. background-color: #fff;
  398. border-radius: 0.46875rem;
  399. margin-bottom: 0.46875rem;
  400. }
  401. .content .cont .cont-box .items .result-box .time {
  402. margin-top: 0.46875rem;
  403. font-family: PingFang SC;
  404. font-size: 0.75rem;
  405. color: #9B9B9B;
  406. }
  407. .content .cont .cont-box .items .result-box .title {
  408. margin-top: 0.46875rem;
  409. font-family: PingFang SC;
  410. font-size: 0.875rem;
  411. color: #626468;
  412. }
  413. .content .cont .cont-box .items .result-box .name {
  414. margin-top: 0.9375rem;
  415. font-family: PingFang SC;
  416. font-weight: bold;
  417. font-size: 1.875rem;
  418. color: #925924;
  419. }
  420. .content .cont .cont-box .items .result-box .descs {
  421. font-family: PingFang SC;
  422. font-size: 0.875rem;
  423. color: #2A2B2E;
  424. padding: 0.9375rem;
  425. margin-top: 0.9375rem;
  426. background-color: #F5F6F6;
  427. border-radius: 0.3125rem;
  428. }
  429. .content .cont .cont-box .items .item-box {
  430. width: 100%;
  431. }
  432. .content .cont .cont-box .items .item-box .item {
  433. width: 100%;
  434. padding: 0.9375rem;
  435. background-color: #fff;
  436. border-radius: 0.9375rem;
  437. }
  438. .content .cont .cont-box .items .item-box .item .title-box {
  439. display: flex;
  440. align-items: center;
  441. justify-content: flex-start;
  442. }
  443. .content .cont .cont-box .items .item-box .item .title-box .title {
  444. margin-left: 0.3125rem;
  445. font-size: 32supx;
  446. font-family: PingFang SC;
  447. color: #925924;
  448. font-weight: bold;
  449. }
  450. .content .cont .cont-box .items .item-box .item .title-box .title-line {
  451. width: 0.25rem;
  452. height: 0.875rem;
  453. background: #2BC7B9;
  454. border-radius: 2px 2px 2px 2px;
  455. opacity: 1;
  456. }
  457. .content .cont .cont-box .items .item-box .item .descs {
  458. white-space: pre-line;
  459. margin-top: 0.3125rem;
  460. font-size: 28supx;
  461. font-family: PingFang SC;
  462. color: #2A2B2E;
  463. }
  464. .content .cont .cont-box .items .item-box .line {
  465. margin: 0 0.9375rem;
  466. border-bottom: #b5b5b5 0.09375rem dashed;
  467. }
  468. .content .cont .cont-box .tips {
  469. width: 100%;
  470. display: flex;
  471. align-items: center;
  472. justify-content: center;
  473. margin: 0.46875rem 0;
  474. color: #9B9B9B;
  475. font-size: 0.75rem;
  476. }
  477. .content .cont .cont-box .banner {
  478. height: 7.8125rem;
  479. width: 100%;
  480. padding: 0.46875rem 0.625rem;
  481. }
  482. .share {
  483. width: 3.125rem;
  484. height: 3.125rem;
  485. z-index: 9999;
  486. border-radius: 50%;
  487. position: fixed;
  488. bottom: 3.125rem;
  489. right: 1.5625rem;
  490. background-color: #925924;
  491. color: #fff;
  492. font-weight: bold;
  493. font-size: 0.875rem;
  494. display: flex;
  495. flex-direction: column;
  496. align-items: center;
  497. justify-content: center;
  498. }