thorui.wxss 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437
  1. /* Thor UI 基础组件 样式*/
  2. /*!
  3. * =====================================================
  4. * Thor UI v1.0.0 (https://www.thorui.cn/)
  5. * =====================================================
  6. */
  7. .tui-mask {
  8. width: 100%;
  9. height: 100%;
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. background: rgba(0, 0, 0, 0.5);
  14. z-index: 999;
  15. }
  16. .tui-ellipsis {
  17. overflow: hidden;
  18. white-space: nowrap;
  19. text-overflow: ellipsis;
  20. }
  21. .tui-ellipsis-2 {
  22. display: -webkit-box;
  23. overflow: hidden;
  24. white-space: normal !important;
  25. text-overflow: ellipsis;
  26. word-wrap: break-word;
  27. -webkit-line-clamp: 2;
  28. -webkit-box-orient: vertical;
  29. }
  30. .tui-center {
  31. text-align: center;
  32. }
  33. .tui-right {
  34. text-align: right;
  35. }
  36. .tui-opcity {
  37. opacity: 0.5;
  38. }
  39. .tui-scale-small {
  40. transform: scale(0.9);
  41. transform-origin: center center;
  42. }
  43. .tui-height-full{
  44. height: 100%;
  45. }
  46. .tui-width-full{
  47. width: 100%;
  48. }
  49. .tui-ptop-zero{
  50. padding-top: 0;
  51. }
  52. .tui-pbottom-zero{
  53. padding-bottom: 0;
  54. }
  55. .tui-pleft-zero{
  56. padding-left: 0;
  57. }
  58. .tui-pright-zero{
  59. padding-right: 0;
  60. }
  61. .tui-col-12 {
  62. width: 100%;
  63. }
  64. .tui-col-11 {
  65. width: 91.66666667%;
  66. }
  67. .tui-col-10 {
  68. width: 83.33333333%;
  69. }
  70. .tui-col-9 {
  71. width: 75%;
  72. }
  73. .tui-col-8 {
  74. width: 66.66666667%;
  75. }
  76. .tui-col-7 {
  77. width: 58.33333333%;
  78. }
  79. .tui-col-6 {
  80. width: 50%;
  81. }
  82. .tui-col-5 {
  83. width: 41.66666667%;
  84. }
  85. .tui-col-4 {
  86. width: 33.33333333%;
  87. }
  88. .tui-col-3 {
  89. width: 25%;
  90. }
  91. .tui-col-2 {
  92. width: 16.66666667%;
  93. }
  94. .tui-col-1 {
  95. width: 8.33333333%;
  96. }
  97. /* color start*/
  98. .tui-primary {
  99. background: #5677fc !important;
  100. color: #fff;
  101. }
  102. .tui-light-primary {
  103. background: #5c8dff !important;
  104. color: #fff;
  105. }
  106. .tui-dark-primary {
  107. background: #4a67d6 !important;
  108. color: #fff;
  109. }
  110. .tui-dLight-primary {
  111. background: #4e77d9 !important;
  112. color: #fff;
  113. }
  114. .tui-danger {
  115. background: #ed3f14 !important;
  116. color: #fff;
  117. }
  118. .tui-warning {
  119. background: #ff7900 !important;
  120. color: #fff;
  121. }
  122. .tui-green {
  123. background: #19be6b !important;
  124. color: #fff;
  125. }
  126. .tui-black {
  127. background: #000 !important;
  128. color: #fff;
  129. }
  130. .tui-white {
  131. background: #fff !important;
  132. color: #333 !important;
  133. }
  134. .tui-translucent {
  135. background: rgba(0, 0, 0, 0.7);
  136. }
  137. .tui-light-black {
  138. background: #333 !important;
  139. }
  140. .tui-gray {
  141. background: #80848f !important;
  142. }
  143. .tui-phcolor-gray {
  144. background: #ccc !important;
  145. }
  146. .tui-divider-gray {
  147. background: #eaeef1 !important;
  148. }
  149. .tui-btn-gray {
  150. background: #ededed !important;
  151. color: #999 !important;
  152. }
  153. .tui-hover-gray {
  154. background: #f7f7f9 !important;
  155. }
  156. .tui-bg-gray {
  157. background: #fafafa !important;
  158. }
  159. .tui-light-blue {
  160. background: #ecf6fd;
  161. color: #4dabeb !important;
  162. }
  163. .tui-light-brownish {
  164. background: #fcebef;
  165. color: #8a5966 !important;
  166. }
  167. .tui-light-orange {
  168. background: #fef5eb;
  169. color: #faa851 !important;
  170. }
  171. .tui-light-green {
  172. background: #e8f6e8;
  173. color: #44cf85 !important;
  174. }
  175. /* color end*/
  176. /* button start*/
  177. .tui-btn {
  178. width: 100%;
  179. position: relative;
  180. border: 0 !important;
  181. border-radius: 10rpx;
  182. display: inline-block;
  183. }
  184. .tui-btn::after {
  185. content: "";
  186. position: absolute;
  187. width: 200%;
  188. height: 200%;
  189. -webkit-transform-origin: 0 0;
  190. transform-origin: 0 0;
  191. -webkit-transform: scale(0.5, 0.5);
  192. transform: scale(0.5, 0.5);
  193. -webkit-box-sizing: border-box;
  194. box-sizing: border-box;
  195. left: 0;
  196. top: 0;
  197. border-radius: 20rpx;
  198. }
  199. .tui-btn-block {
  200. font-size: 36rpx;
  201. height: 90rpx;
  202. line-height: 90rpx;
  203. }
  204. .tui-white::after {
  205. border: 1px solid #eaeef1;
  206. }
  207. .tui-white-hover {
  208. background: #e5e5e5 !important;
  209. color: #2e2e2e !important;
  210. }
  211. .tui-dark-disabled {
  212. opacity: 0.6;
  213. color: #fafbfc !important;
  214. }
  215. .tui-outline-hover {
  216. opacity: 0.5;
  217. }
  218. .tui-primary-hover {
  219. background: #4a67d6 !important;
  220. color: #e5e5e5 !important;
  221. }
  222. .tui-primary-outline::after {
  223. border: 1px solid #5677fc !important;
  224. }
  225. .tui-primary-outline {
  226. color: #5677fc !important;
  227. background: none;
  228. }
  229. .tui-danger-hover {
  230. background: #d53912 !important;
  231. color: #e5e5e5 !important;
  232. }
  233. .tui-danger-outline {
  234. color: #ed3f14 !important;
  235. background: none;
  236. }
  237. .tui-danger-outline::after {
  238. border: 1px solid #ed3f14 !important;
  239. }
  240. .tui-warning-hover {
  241. background: #e56d00 !important;
  242. color: #e5e5e5 !important;
  243. }
  244. .tui-warning-outline {
  245. color: #ff7900 !important;
  246. background: none;
  247. }
  248. .tui-warning-outline::after {
  249. border: 1px solid #ff7900 !important;
  250. }
  251. .tui-green-hover {
  252. background: #16ab60 !important;
  253. color: #e5e5e5 !important;
  254. }
  255. .tui-green-outline {
  256. color: #44cf85 !important;
  257. background: none;
  258. }
  259. .tui-green-outline::after {
  260. border: 1px solid #44cf85 !important;
  261. }
  262. .tui-gray-hover {
  263. background: #d5d5d5 !important;
  264. color: #898989;
  265. }
  266. .tui-gray-outline {
  267. color: #999 !important;
  268. background: none;
  269. }
  270. .tui-gray-outline::after {
  271. border: 1px solid #ccc !important;
  272. }
  273. /*圆角 */
  274. .tui-fillet {
  275. border-radius: 45rpx;
  276. }
  277. .tui-white.tui-fillet::after {
  278. border-radius: 90rpx;
  279. }
  280. .tui-outline-fillet::after {
  281. border-radius: 90rpx;
  282. }
  283. /*渐变 */
  284. .tui-btn-gradual {
  285. background: linear-gradient(-90deg, #5677fc, #5c8dff);
  286. border-radius: 45rpx;
  287. color: #fff;
  288. }
  289. .tui-gradual-hover {
  290. color: #d5d4d9 !important;
  291. background: linear-gradient(-90deg, #4a67d6, #4e77d9);
  292. }
  293. .btn-gradual-disabled {
  294. color: #fafbfc !important;
  295. border-radius: 45rpx;
  296. background: linear-gradient(-90deg, #cad8fb, #c9d3fb);
  297. }
  298. /*不同尺寸 */
  299. .tui-btn-mini {
  300. width: auto;
  301. font-size: 30rpx;
  302. height: 70rpx;
  303. line-height: 70rpx;
  304. }
  305. .tui-btn-small {
  306. width: auto;
  307. font-size: 30rpx;
  308. height: 60rpx;
  309. line-height: 60rpx;
  310. }
  311. /* button end*/
  312. /* flex start*/
  313. .tui-flex {
  314. display: -webkit-flex;
  315. display: flex;
  316. }
  317. .tui-flex-1 {
  318. flex: 1;
  319. }
  320. .tui-align-center {
  321. justify-content: center;
  322. }
  323. .tui-align-left {
  324. justify-content: flex-start !important;
  325. }
  326. .tui-align-right {
  327. justify-content: flex-end !important;
  328. }
  329. .tui-align-between {
  330. justify-content: space-between !important;
  331. }
  332. .tui-align-around {
  333. justify-content: space-around !important;
  334. }
  335. .tui-vertical-center {
  336. align-items: center;
  337. }
  338. .tui-vertical-top {
  339. align-items: flex-start;
  340. }
  341. .tui-vertical-top {
  342. align-items: flex-end;
  343. }
  344. .tui-line-feed {
  345. flex-direction: row;
  346. flex-wrap: wrap;
  347. }
  348. /* flex end*/
  349. /* tag start*/
  350. .tui-tag {
  351. padding: 16rpx 26rpx;
  352. font-size: 28rpx;
  353. border-radius: 6rpx;
  354. display: inline-block;
  355. line-height: 28rpx;
  356. }
  357. .tui-tag-small {
  358. padding: 10rpx 14rpx;
  359. font-size: 24rpx;
  360. border-radius: 6rpx;
  361. display: inline-block;
  362. line-height: 24rpx;
  363. }
  364. .tui-tag-outline {
  365. position: relative;
  366. background: none;
  367. color: #5677fc;
  368. }
  369. .tui-tag-outline::after {
  370. content: "";
  371. position: absolute;
  372. width: 200%;
  373. height: 200%;
  374. -webkit-transform-origin: 0 0;
  375. transform-origin: 0 0;
  376. -webkit-transform: scale(0.5, 0.5);
  377. transform: scale(0.5, 0.5);
  378. -webkit-box-sizing: border-box;
  379. box-sizing: border-box;
  380. left: 0;
  381. top: 0;
  382. border-radius: 20rpx;
  383. border: 1px solid #5677fc;
  384. }
  385. .tui-tag-fillet {
  386. border-radius: 50rpx;
  387. }
  388. .tui-white.tui-tag-fillet::after {
  389. border-radius: 80rpx;
  390. }
  391. .tui-tag-outline-fillet::after {
  392. border-radius: 80rpx;
  393. }
  394. .tui-tag-fillet-left {
  395. border-radius: 50rpx 0 0 50rpx;
  396. }
  397. .tui-tag-fillet-right {
  398. border-radius: 0 50rpx 50rpx 0;
  399. }
  400. /* tag end*/
  401. /* badge start*/
  402. .tui-badge-dot {
  403. height: 16rpx;
  404. width: 16rpx;
  405. border-radius: 8rpx;
  406. display: inline-block;
  407. background: #5677fc;
  408. }
  409. .tui-badge {
  410. font-size: 12px;
  411. line-height: 1;
  412. display: inline-block;
  413. padding: 3px 6px;
  414. border-radius: 50px;
  415. background: #5677fc;
  416. color: #fff;
  417. }
  418. .tui-badge-small {
  419. transform: scale(0.8);
  420. transform-origin: center center;
  421. }
  422. /* badge end*/
  423. /* loading start*/
  424. .tui-loadmore {
  425. width: 48%;
  426. margin: 1.5em auto;
  427. line-height: 1.5em;
  428. font-size: 24rpx;
  429. text-align: center;
  430. }
  431. .tui-loading {
  432. margin: 0 5px;
  433. width: 20px;
  434. height: 20px;
  435. display: inline-block;
  436. vertical-align: middle;
  437. -webkit-animation: a 1s steps(12) infinite;
  438. animation: a 1s steps(12) infinite;
  439. background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;
  440. background-size: 100%;
  441. }
  442. @-webkit-keyframes a {
  443. 0% {
  444. -webkit-transform: rotate(0deg);
  445. transform: rotate(0deg);
  446. }
  447. to {
  448. -webkit-transform: rotate(1turn);
  449. transform: rotate(1turn);
  450. }
  451. }
  452. @keyframes a {
  453. 0% {
  454. -webkit-transform: rotate(0deg);
  455. transform: rotate(0deg);
  456. }
  457. to {
  458. -webkit-transform: rotate(1turn);
  459. transform: rotate(1turn);
  460. }
  461. }
  462. .tui-loadmore-tips {
  463. display: inline-block;
  464. vertical-align: middle;
  465. }
  466. .tui-loading-2 {
  467. width: 28rpx;
  468. height: 28rpx;
  469. border: 1px solid #8f8d8e;
  470. border-radius: 50%;
  471. margin: 0 6px;
  472. display: inline-block;
  473. vertical-align: middle;
  474. clip-path: polygon(0% 0%, 100% 0%, 100% 30%, 0% 30%);
  475. animation: rotate 1s linear infinite;
  476. }
  477. @-webkit-keyframes rotate {
  478. from {
  479. transform: rotatez(0deg);
  480. }
  481. to {
  482. transform: rotatez(360deg);
  483. }
  484. }
  485. @keyframes rotate {
  486. from {
  487. transform: rotatez(0deg);
  488. }
  489. to {
  490. transform: rotatez(360deg);
  491. }
  492. }
  493. .tui-loading-3 {
  494. display: inline-block;
  495. margin: 0 6px;
  496. vertical-align: middle;
  497. width: 28rpx;
  498. height: 28rpx;
  499. background: 0 0;
  500. border-radius: 50%;
  501. border: 2px solid;
  502. border-color: #e5e5e5 #e5e5e5 #e5e5e5 #5677fc;
  503. animation: tui-rotate 0.7s linear infinite;
  504. }
  505. .tui-loading-3.tui-loading-red {
  506. border-color: #e5e5e5 #e5e5e5 #e5e5e5 #19be6b;
  507. }
  508. .tui-loading-3.tui-loading-orange {
  509. border-color: #e5e5e5 #e5e5e5 #e5e5e5 #ff7900;
  510. }
  511. .tui-loading-3.tui-loading-green {
  512. border-color: #ededed #ededed #ededed #ed3f14;
  513. }
  514. @-webkit-keyframes tui-rotate {
  515. 0% {
  516. transform: rotate(0);
  517. }
  518. 100% {
  519. transform: rotate(360deg);
  520. }
  521. }
  522. @keyframes tui-rotate {
  523. 0% {
  524. transform: rotate(0);
  525. }
  526. 100% {
  527. transform: rotate(360deg);
  528. }
  529. }
  530. .tui-nomore {
  531. position: relative;
  532. text-align: center;
  533. display: flex;
  534. justify-content: center;
  535. margin-top: 10rpx;
  536. padding-bottom: 44rpx;
  537. }
  538. .tui-nomore::before {
  539. content: '';
  540. position: absolute;
  541. border-bottom: 1rpx solid #e5e5e5;
  542. -webkit-transform: scaleY(0.5);
  543. transform: scaleY(0.5);
  544. width: 360rpx;
  545. top: 18rpx;
  546. }
  547. .tui-nomore::after {
  548. content: '没有更多了';
  549. position: absolute;
  550. color: #999;
  551. font-size: 24rpx;
  552. text-align: center;
  553. /* width: 160rpx; */
  554. padding: 0 18rpx;
  555. height: 36rpx;
  556. line-height: 36rpx;
  557. background: #fafafa;
  558. z-index: 1;
  559. }
  560. .tui-nomore-dot {
  561. position: relative;
  562. text-align: center;
  563. display: flex;
  564. justify-content: center;
  565. margin-top: 10rpx;
  566. padding-bottom: 40rpx;
  567. }
  568. .tui-nomore-dot::before {
  569. content: '';
  570. position: absolute;
  571. border-bottom: 1rpx solid #e5e5e5;
  572. -webkit-transform: scaleY(0.5);
  573. transform: scaleY(0.5);
  574. width: 360rpx;
  575. top: 18rpx;
  576. }
  577. .tui-nomore-dot::after {
  578. content: '●';
  579. position: absolute;
  580. color: #e5e5e5;
  581. font-size: 10px;
  582. text-align: center;
  583. width: 50rpx;
  584. height: 36rpx;
  585. line-height: 36rpx;
  586. background: #fafafa;
  587. transform: scale(0.8);
  588. transform-origin: center center;
  589. z-index: 1;
  590. }
  591. /* loading end*/
  592. /* list start*/
  593. .tui-list-title {
  594. width: 100%;
  595. padding: 25rpx 30rpx;
  596. box-sizing: border-box;
  597. font-size: 28rpx;
  598. line-height: 1;
  599. color: #999;
  600. }
  601. .tui-list-content {
  602. width: 100%;
  603. position: relative;
  604. }
  605. .tui-list-content::before {
  606. content: " ";
  607. position: absolute;
  608. top: -1rpx;
  609. right: 0;
  610. left: 0;
  611. border-top: 1rpx solid #eaeef1;
  612. -webkit-transform: scaleY(0.5);
  613. transform: scaleY(0.5);
  614. }
  615. .tui-list-content::after {
  616. content: '';
  617. position: absolute;
  618. border-bottom: 1rpx solid #eaeef1;
  619. -webkit-transform: scaleY(0.5);
  620. transform: scaleY(0.5);
  621. bottom: 0;
  622. right: 0;
  623. left: 0;
  624. }
  625. .tui-border-top::after {
  626. border-top: 0;
  627. }
  628. .tui-border-bottom::after {
  629. border-bottom: 0;
  630. }
  631. .tui-border-all::after {
  632. border: 0;
  633. }
  634. .tui-list-cell {
  635. position: relative;
  636. background: #fff;
  637. width: 100%;
  638. padding: 26rpx 30rpx;
  639. box-sizing: border-box;
  640. overflow: hidden;
  641. display: flex;
  642. align-items: center;
  643. }
  644. .tui-list-cell.tui-padding-small {
  645. padding: 24rpx 30rpx;
  646. }
  647. .tui-cell-hover {
  648. background: #f7f7f9 !important;
  649. }
  650. .tui-list-cell::after {
  651. content: '';
  652. position: absolute;
  653. border-bottom: 1rpx solid #eaeef1;
  654. -webkit-transform: scaleY(0.5);
  655. transform: scaleY(0.5);
  656. bottom: 0;
  657. right: 0;
  658. left: 30rpx;
  659. }
  660. .tui-cell-last::after {
  661. border-bottom: 0 !important;
  662. }
  663. .tui-list-cell.tui-cell-arrow:before {
  664. content: " ";
  665. height: 11px;
  666. width: 11px;
  667. border-width: 2px 2px 0 0;
  668. border-color: #b2b2b2;
  669. border-style: solid;
  670. -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  671. transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  672. position: absolute;
  673. top: 50%;
  674. margin-top: -7px;
  675. right: 30rpx;
  676. }
  677. /* list end*/
  678. /* card start*/
  679. .tui-card {
  680. margin: 0 30rpx;
  681. font-size: 28rpx;
  682. overflow: hidden;
  683. background: #fff;
  684. border-radius: 10rpx;
  685. box-shadow: 0 0 10rpx #eee;
  686. }
  687. .tui-card-border {
  688. position: relative;
  689. box-shadow: none !important;
  690. }
  691. .tui-card-border::after {
  692. content: '';
  693. position: absolute;
  694. height: 200%;
  695. width: 200%;
  696. border: 1px solid #eaeef1;
  697. transform-origin: 0 0;
  698. -webkit-transform-origin: 0 0;
  699. -webkit-transform: scale(0.5);
  700. transform: scale(0.5);
  701. left: 0;
  702. top: 0;
  703. border-radius: 20rpx;
  704. }
  705. .tui-card-header {
  706. padding: 20rpx;
  707. display: flex;
  708. align-items: center;
  709. justify-content: space-between;
  710. position: relative;
  711. }
  712. .tui-card-header::after {
  713. content: '';
  714. position: absolute;
  715. border-bottom: 1rpx solid #eaeef1;
  716. -webkit-transform: scaleY(0.5);
  717. transform: scaleY(0.5);
  718. bottom: 0;
  719. right: 0;
  720. left: 0;
  721. }
  722. .tui-header-line::after {
  723. border-bottom: 0 !important;
  724. }
  725. .tui-header-thumb {
  726. height: 60rpx;
  727. width: 60rpx;
  728. vertical-align: middle;
  729. margin-right: 20rpx;
  730. border-radius: 6rpx;
  731. }
  732. .tui-thumb-circle {
  733. border-radius: 50% !important;
  734. }
  735. .tui-header-title {
  736. display: inline-block;
  737. font-size: 30rpx;
  738. color: #7a7a7a;
  739. vertical-align: middle;
  740. max-width: 460rpx;
  741. overflow: hidden;
  742. white-space: nowrap;
  743. text-overflow: ellipsis;
  744. }
  745. .tui-header-right {
  746. font-size: 24rpx;
  747. color: #b2b2b2;
  748. }
  749. .tui-card-body {
  750. font-size: 32rpx;
  751. color: #262b3a;
  752. }
  753. .tui-card-footer {
  754. font-size: 28rpx;
  755. color: #596d96;
  756. }
  757. /* card end*/
  758. /* grid start*/
  759. .tui-grids {
  760. width: 100%;
  761. position: relative;
  762. overflow: hidden;
  763. display: flex;
  764. display: -webkit-flex;
  765. /* justify-content: space-between; */
  766. flex-direction: row;
  767. flex-wrap: wrap;
  768. }
  769. .tui-grids::after {
  770. content: " ";
  771. position: absolute;
  772. left: 0;
  773. top: 0;
  774. width: 100%;
  775. height: 1px;
  776. border-top: 1px solid #eaeef1;
  777. -webkit-transform-origin: 0 0;
  778. transform-origin: 0 0;
  779. -webkit-transform: scaleY(0.5);
  780. transform: scaleY(0.5);
  781. }
  782. .tui-grid {
  783. position: relative;
  784. padding: 40rpx 20rpx;
  785. box-sizing: border-box;
  786. background: #fff;
  787. }
  788. .tui-grid-2 {
  789. width: 50%;
  790. }
  791. .tui-grid-3 {
  792. width: 33.33333333%;
  793. }
  794. .tui-grid-4 {
  795. width: 25%;
  796. }
  797. .tui-grid-5 {
  798. width: 20%;
  799. }
  800. .tui-grid-2:nth-of-type(2n)::before, .tui-grid-3:nth-of-type(3n)::before,
  801. .tui-grid-4:nth-of-type(4n)::before, .tui-grid-5:nth-of-type(5n)::before {
  802. width: 0;
  803. border-right: 0;
  804. }
  805. .tui-grid::before {
  806. content: " ";
  807. position: absolute;
  808. right: 0;
  809. top: 0;
  810. width: 1px;
  811. bottom: 0;
  812. border-right: 1px solid #eaeef1;
  813. -webkit-transform-origin: 100% 0;
  814. transform-origin: 100% 0;
  815. -webkit-transform: scaleX(0.5);
  816. transform: scaleX(0.5);
  817. }
  818. .tui-grid::after {
  819. content: " ";
  820. position: absolute;
  821. left: 0;
  822. bottom: 0;
  823. right: 0;
  824. height: 1px;
  825. border-bottom: 1px solid #eaeef1;
  826. -webkit-transform-origin: 0 100%;
  827. transform-origin: 0 100%;
  828. -webkit-transform: scaleY(0.5);
  829. transform: scaleY(0.5);
  830. }
  831. .tui-grid-bg {
  832. position: relative;
  833. padding: 0;
  834. width: 100%;
  835. box-sizing: border-box;
  836. }
  837. .tui-grid-icon {
  838. width: 64rpx;
  839. height: 64rpx;
  840. margin: 0 auto;
  841. }
  842. .tui-grid-icon image {
  843. display: block;
  844. width: 64rpx;
  845. height: 64rpx;
  846. }
  847. .tui-grid-icon + .tui-grid-label {
  848. margin-top: 10rpx;
  849. }
  850. .tui-grid-label {
  851. display: block;
  852. text-align: center;
  853. font-weight: 400;
  854. color: #333;
  855. font-size: 28rpx;
  856. white-space: nowrap;
  857. overflow: hidden;
  858. text-overflow: ellipsis;
  859. }
  860. /* grid end*/
  861. /* footer start*/
  862. .tui-footer {
  863. width: 100%;
  864. overflow: hidden;
  865. padding: 30rpx 24rpx;
  866. box-sizing: border-box;
  867. }
  868. .tui-fixed {
  869. position: fixed;
  870. bottom: 0;
  871. }
  872. .tui-footer-link {
  873. color: #596d96;
  874. display: flex;
  875. align-items: center;
  876. justify-content: center;
  877. font-size: 28rpx;
  878. }
  879. .tui-link {
  880. position: relative;
  881. padding: 0 18rpx;
  882. line-height: 1;
  883. }
  884. .tui-link::before {
  885. content: " ";
  886. position: absolute;
  887. right: 0;
  888. top: 0;
  889. width: 1px;
  890. bottom: 0;
  891. border-right: 1px solid #d3d3d3;
  892. -webkit-transform-origin: 100% 0;
  893. transform-origin: 100% 0;
  894. -webkit-transform: scaleX(0.5);
  895. transform: scaleX(0.5);
  896. }
  897. .tui-link:last-child::before {
  898. border-right: 0 !important;
  899. }
  900. .tui-link-hover {
  901. opacity: 0.5;
  902. }
  903. .tui-footer-copyright {
  904. font-size: 24rpx;
  905. color: #a7a7a7;
  906. line-height: 1;
  907. text-align: center;
  908. padding-top: 16rpx;
  909. }
  910. /* footer end*/
  911. /* custom start*/
  912. .tui-triangle {
  913. border: 16rpx solid;
  914. width: 0;
  915. height: 0;
  916. }
  917. .tui-triangle-left {
  918. border-color: transparent #5c8dff transparent transparent;
  919. }
  920. .tui-triangle-right {
  921. border-color: transparent transparent transparent #5c8dff;
  922. }
  923. .tui-triangle-top {
  924. border-color: transparent transparent #5c8dff transparent;
  925. }
  926. .tui-triangle-bottom {
  927. border-color: #5c8dff transparent transparent transparent;
  928. }
  929. .tui-parallelogram {
  930. width: 100rpx;
  931. height: 50rpx;
  932. transform: skew(-10deg);
  933. background: #19be6b;
  934. margin-left: 10rpx;
  935. }
  936. .tui-crescent {
  937. width: 60rpx;
  938. height: 60rpx;
  939. border-radius: 50%;
  940. box-shadow: 12rpx 12rpx 0 0 yellowgreen;
  941. }
  942. .tui-chatbox {
  943. max-width: 60%;
  944. border-radius: 10rpx;
  945. position: relative;
  946. padding: 20rpx 26rpx;
  947. font-size: 28rpx;
  948. color: #fff;
  949. /* word-break: break-all;
  950. word-wrap: break-word; */
  951. }
  952. .tui-chatbox-left {
  953. background: #5c8dff;
  954. border: 1rpx solid #5c8dff;
  955. display: inline-block;
  956. }
  957. .tui-chatbox-right {
  958. background: #19be6b;
  959. border: 1rpx solid #19be6b;
  960. }
  961. .tui-chatbox::before {
  962. content: "";
  963. position: absolute;
  964. width: 0;
  965. height: 0;
  966. top: 20rpx;
  967. border: 16rpx solid;
  968. }
  969. .tui-chatbox-left::before {
  970. right: 100%;
  971. border-color: transparent #5c8dff transparent transparent;
  972. }
  973. .tui-chatbox-right::before {
  974. left: 100%;
  975. border-color: transparent transparent transparent #19be6b;
  976. }
  977. /*checkbox 整体大小 */
  978. .tui-checkbox {
  979. width: 36rpx;
  980. height: 36rpx;
  981. border-radius: 50%;
  982. }
  983. /*checkbox 选项框大小 */
  984. .tui-checkbox .wx-checkbox-input {
  985. width: 36rpx;
  986. height: 36rpx;
  987. border-radius: 50%;
  988. }
  989. /*checkbox选中后样式 */
  990. .tui-checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  991. background: #5c8dff;
  992. width: 38rpx !important;
  993. height: 38rpx !important;
  994. border: none;
  995. }
  996. /*checkbox选中后图标样式 */
  997. .tui-checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  998. width: 30rpx;
  999. height: 30rpx;
  1000. line-height: 30rpx;
  1001. text-align: center;
  1002. font-size: 20rpx;
  1003. color: #fff;
  1004. background: transparent;
  1005. transform: translate(-50%, -50%);
  1006. -webkit-transform: translate(-50%, -50%);
  1007. }
  1008. .tui-cells {
  1009. /* border: 1rpx solid #e6e6e6; */
  1010. border-radius: 4rpx;
  1011. height: 280rpx;
  1012. box-sizing: border-box;
  1013. padding: 20rpx 20rpx 0 20rpx;
  1014. position: relative;
  1015. }
  1016. .tui-cells::after {
  1017. content: '';
  1018. position: absolute;
  1019. height: 200%;
  1020. width: 200%;
  1021. border: 1px solid #e6e6e6;
  1022. transform-origin: 0 0;
  1023. -webkit-transform-origin: 0 0;
  1024. -webkit-transform: scale(0.5);
  1025. transform: scale(0.5);
  1026. left: 0;
  1027. top: 0;
  1028. border-radius: 8rpx;
  1029. }
  1030. .tui-textarea {
  1031. height: 210rpx;
  1032. width: 100%;
  1033. color: #666;
  1034. font-size: 28rpx;
  1035. }
  1036. .tui-phcolor-color {
  1037. color: #ccc !important;
  1038. }
  1039. .tui-textarea-counter {
  1040. font-size: 24rpx;
  1041. color: #999;
  1042. text-align: right;
  1043. height: 40rpx;
  1044. line-height: 40rpx;
  1045. padding-top: 4rpx;
  1046. }
  1047. .tui-upload-box {
  1048. display: flex;
  1049. display: -webkit-flex;
  1050. flex-direction: row;
  1051. flex-wrap: wrap;
  1052. }
  1053. .tui-upload-item {
  1054. width: 153rpx;
  1055. height: 153rpx;
  1056. border: 1rpx solid #e6e6e6;
  1057. box-sizing: border-box;
  1058. border-radius: 4rpx;
  1059. position: relative;
  1060. margin-bottom: 36rpx;
  1061. margin-right: 26rpx;
  1062. }
  1063. .tui-upload-item:nth-of-type(4n) {
  1064. margin-right: 0 !important;
  1065. }
  1066. .tui-upload-img {
  1067. width: 153rpx;
  1068. height: 153rpx;
  1069. border-radius: 4rpx;
  1070. }
  1071. .tui-upload-del {
  1072. position: absolute;
  1073. font-size: 24px !important;
  1074. right: -18rpx;
  1075. top: -18rpx;
  1076. color: #ed3f14 !important;
  1077. }
  1078. .tui-upload-add {
  1079. color: #e6e6e6;
  1080. font-weight: 200;
  1081. display: flex;
  1082. align-items: center;
  1083. justify-content: center;
  1084. }
  1085. .tui-upload-add text {
  1086. font-size: 84rpx;
  1087. line-height: 38rpx;
  1088. height: 48rpx;
  1089. }
  1090. .tui-operation {
  1091. width: 100%;
  1092. height: 100rpx;
  1093. box-sizing: border-box;
  1094. overflow: hidden;
  1095. background: rgba(255, 255, 255, 0.9);
  1096. position: relative;
  1097. display: flex;
  1098. align-items: center;
  1099. justify-content: space-between;
  1100. }
  1101. .tui-operation::before {
  1102. content: '';
  1103. position: absolute;
  1104. top: 0px;
  1105. right: 0;
  1106. left: 0;
  1107. border-top: 1rpx solid #eaeef1;
  1108. -webkit-transform: scaleY(0.5);
  1109. transform: scaleY(0.5);
  1110. }
  1111. .tui-operation-left {
  1112. display: flex;
  1113. align-items: center;
  1114. }
  1115. .tui-operation-item {
  1116. flex: 1;
  1117. display: flex;
  1118. align-items: center;
  1119. justify-content: center;
  1120. flex-direction: column;
  1121. position: relative;
  1122. }
  1123. .tui-operation-text {
  1124. font-size: 22rpx;
  1125. color: #333;
  1126. }
  1127. .tui-operation-right {
  1128. height: 100rpx;
  1129. box-sizing: border-box;
  1130. padding-top: 0;
  1131. }
  1132. .tui-btn-class {
  1133. border-radius: 0 !important;
  1134. height: 100rpx !important;
  1135. line-height: 100rpx !important;
  1136. }
  1137. .tui-badge-class {
  1138. position: absolute;
  1139. top: -6rpx;
  1140. }
  1141. .tui-btn-class-2 {
  1142. border-radius: 0 !important;
  1143. height: 100rpx !important;
  1144. line-height: 100rpx !important;
  1145. font-size: 30rpx !important;
  1146. width: 50% !important;
  1147. }
  1148. .tui-right-flex {
  1149. display: flex;
  1150. align-items: center;
  1151. justify-content: center;
  1152. }
  1153. .tui-btn-class-3 {
  1154. display: block !important;
  1155. font-size: 28rpx !important;
  1156. width: 120%!important;
  1157. }
  1158. .tui-btn-equals {
  1159. width: 90% !important;
  1160. display: block !important;
  1161. font-size: 28rpx !important;
  1162. }
  1163. .tui-btn-comment{
  1164. height: 64rpx;
  1165. width: 84%;
  1166. background: #ededed;
  1167. color: #999;
  1168. border-radius: 8rpx;
  1169. font-size: 28rpx;
  1170. display: flex;
  1171. align-items: center;
  1172. padding-left: 20rpx;
  1173. box-sizing: border-box;
  1174. padding-top: 0;
  1175. margin-left: 30rpx;
  1176. }
  1177. .tui-chat-operation{
  1178. background: #F6F6F6 !important;
  1179. padding-right:18rpx;
  1180. box-sizing: border-box;
  1181. }
  1182. .tui-input-box{
  1183. width: 78%;
  1184. justify-content: flex-start;
  1185. }
  1186. .tui-chat-input{
  1187. background: #fff;
  1188. height: 72rpx;
  1189. border-radius: 6rpx;
  1190. padding-left:20rpx;
  1191. padding-right: 20rpx;
  1192. flex: 1;
  1193. }
  1194. .tui-voice-icon{
  1195. margin-left: 12rpx;
  1196. margin-right: 12rpx
  1197. }
  1198. /* custom end*/