momentItem.vue 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783
  1. <template name="momentItem">
  2. <view class="item">
  3. <view class="post-left">
  4. <image class="post_header" :src="item.user.avatar"></image>
  5. </view>
  6. <view class="post_right">
  7. <text class="post-username"><text v-if="item.user.author" style="margin-right:10rpx;color: #00B3FF;">[{{item.user.author}}]</text>{{item.user.username}}</text>
  8. <view class="paragraph">{{item.content}}</view>
  9. <!-- 相册 -->
  10. <view class="thumbnails" v-if="item.pic.length > 0 && item.pic[0]">
  11. <view :class="item.pic.length === 1?'my-gallery':'thumbnail'" v-for="(v, k) in item.pic" :key="k">
  12. <image class="gallery_img" lazy-load mode="aspectFill" :src="v" :data-src="v" @tap="Dever.viewPic(item.pic, v)"></image>
  13. </view>
  14. </view>
  15. <!-- 资料条 -->
  16. <view class="toolbar">
  17. <view class="timestamp">{{item.cdate_string}}</view>
  18. <view class="like" @tap="updateUp(item)">
  19. <image :src="item.is_up ? '../../static/moment/like.png' : '../../static/moment/islike.png'" style="width: 30px;"></image>
  20. </view>
  21. <view class="comment" @tap="updateComment(item.id)">
  22. <image src="@/static/moment/comment.png" style="width: 30px;"></image>
  23. </view>
  24. </view>
  25. <!-- 赞/评论区 -->
  26. <view class="post-footer">
  27. <view class="footer_content">
  28. <image class="liked" src="@/static/moment/liked.png"></image>
  29. <text class="nickname" v-for="(v, k) in item.up_list" :key="k">{{v.username}}</text>
  30. </view>
  31. <view v-if="item.child.length" class="footer_content" v-for="(v, k) in item.child" :key="k" @tap="reply()">
  32. <text class="comment-nickname">{{v.user.username}}: </text>
  33. <text class="comment-content">{{v.content}}</text>
  34. </view>
  35. <view class="text-grey flex solid-bottom padding justify-center more" style="padding: 8rpx;" @click="getMore" v-if="item.child_total > 1">{{more}}</view>
  36. </view>
  37. </view>
  38. <view v-if="show">
  39. <dever-publish :title="title" :is_upload="false" @hideModal="hideModal" @getRefresh="getRefresh" :cate_id="false" :type="type" :type_id="type_id" :to_id="to_id" :to_uid="to_uid" :api="api"></dever-publish>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import deverPublish from '@/lib/dever/components/publish.vue';
  45. export default {
  46. name: "momentItem",
  47. props: {
  48. item: {
  49. type: Object
  50. },
  51. },
  52. components: {
  53. deverPublish
  54. },
  55. data() {
  56. return {
  57. title : '回复动态',
  58. api : 'app/community/?l=api.addMoment',
  59. show : false,
  60. showPop: false,
  61. type : 30,
  62. type_id : 0,
  63. to_id : 0,
  64. to_uid : 0,
  65. page : 1,
  66. num : 5,
  67. more : '',
  68. id : 0,
  69. child : [],
  70. }
  71. },
  72. created() {
  73. this.more = '展开'+(this.item.child_total-1)+'条回复';
  74. if (this.item.child_total > 0) {
  75. this.id = this.item.child[0].id;
  76. }
  77. this.child = this.item.child;
  78. },
  79. methods: {
  80. getRefresh : function(cate_id, type, type_id) {
  81. this.item.num_comment++;
  82. this.getMore(1, 1);
  83. },
  84. getMore : function(page, push) {
  85. var self = this;
  86. if (page && typeof(page) != 'object') {
  87. self.page = page;
  88. }
  89. if (self.page > 1 && self.more == '收起') {
  90. // 收起
  91. self.item.child = self.child;
  92. self.more = '展开'+(self.item.child_total-1)+'条回复';
  93. self.page = 1;
  94. return;
  95. }
  96. var send = {cate_id:self.cate_id, type:self.type, type_id:self.item.id, pg:self.page, noconcat:true};
  97. send.code = self.Dever.config.code;
  98. send.info_id = self.id;
  99. this.Dever.get(this, 'app/community/?l=api.moment', send, function(t) {
  100. if (self.page == 1) {
  101. self.item.child = self.child;
  102. }
  103. if (t.info && t.info.length > 0) {
  104. self.item.child = self.item.child.concat(t.info);
  105. self.page = self.page + 1;
  106. }
  107. if (self.Dever.pageData.status == 0) {
  108. self.more = '收起';
  109. } else {
  110. self.more = '展开更多回复';
  111. }
  112. self.hideModal();
  113. });
  114. },
  115. updateUp : function(item) {
  116. var self = this;
  117. if (item.is_oppose) {
  118. return;
  119. }
  120. if (item.is_up) {
  121. item.num_up--;
  122. item.is_up = false;
  123. } else {
  124. item.num_up++;
  125. item.is_up = true;
  126. }
  127. self.Dever.post('app/community/?l=api.up', {id:item.id,type:this.type,noloading:1});
  128. },
  129. updateOppose : function(item) {
  130. var self = this;
  131. if (item.is_up) {
  132. return;
  133. }
  134. if (item.is_oppose) {
  135. item.num_oppose--;
  136. item.is_oppose = false;
  137. } else {
  138. item.num_oppose++;
  139. item.is_oppose = true;
  140. }
  141. self.Dever.post('app/community/?l=api.oppose', {id:item.id,type:this.type,noloading:1});
  142. },
  143. updateComment : function (type_id, to_id, to_uid) {
  144. this.type = this.type;
  145. this.type_id = type_id;
  146. if (to_id) {
  147. this.to_id = to_id;
  148. } else {
  149. this.to_id = 0;
  150. }
  151. if (to_uid) {
  152. this.to_uid = to_uid;
  153. } else {
  154. this.to_uid = 0;
  155. }
  156. this.show = true;
  157. },
  158. hideModal : function () {
  159. this.show = false;
  160. }
  161. }
  162. }
  163. </script>
  164. <style scoped>
  165. .item {
  166. width: 100%;
  167. position: relative;
  168. display: flex;
  169. }
  170. .liked{
  171. /* display: inline-block; */
  172. position: relative;
  173. margin-right: 10upx;
  174. width: 34upx;
  175. height: 34upx;
  176. }
  177. .post-username{
  178. font-size:32upx;
  179. font-weight: 600;
  180. color: #36648B;
  181. }
  182. .gallery_img {
  183. width: 100%;
  184. height: 100%
  185. }
  186. .publish {
  187. position: absolute;
  188. top: 20upx;
  189. right: 20upx;
  190. /* z-index: 9999; */
  191. }
  192. .post_header {
  193. width: 90upx !important;
  194. height: 90upx !important;
  195. border-radius: 10upx;
  196. margin-top: 8upx;
  197. }
  198. .post_right {
  199. font-size: 32upx;
  200. display: table-cell;
  201. padding-left: 20upx;
  202. width: 100%;
  203. }
  204. /* .post_right .paragraphExtender {
  205. margin: 5px auto;
  206. display: -webkit-box;
  207. display: -webkit-flex;
  208. display: -ms-flexbox;
  209. display: flex
  210. } */
  211. .title {
  212. color: #094dcc
  213. }
  214. .thumbnails {
  215. width: 100%;
  216. display: flex;
  217. flex-wrap: wrap;
  218. /* display: -webkit-box;
  219. display: -webkit-flex;
  220. display: -ms-flexbox; */
  221. /* -webkit-flex-wrap: wrap;
  222. -ms-flex-wrap: wrap; */
  223. }
  224. .thumbnails .thumbnail {
  225. width: 30%;
  226. height: 180upx;
  227. margin: 4upx;
  228. background: #757575;
  229. overflow: hidden;
  230. }
  231. .my-gallery{
  232. width: 250upx;
  233. height: 400upx;
  234. margin: 4upx;
  235. background: #757575;
  236. overflow: hidden
  237. }
  238. .toolbar {
  239. position: relative;
  240. top: 10upx;
  241. display: -webkit-box;
  242. display: -webkit-flex;
  243. display: -ms-flexbox;
  244. display: flex;
  245. -webkit-box-align: center;
  246. -webkit-align-items: center;
  247. -ms-flex-align: center;
  248. align-items: center
  249. }
  250. .toolbar .timestamp {
  251. color: #757575;
  252. font-size: 22upx;
  253. }
  254. .like {
  255. width: auto;
  256. height: auto;
  257. position: absolute;
  258. right: 60upx;
  259. display: flex;
  260. align-items: center;
  261. }
  262. .comment {
  263. width: auto;
  264. height: auto;
  265. position: absolute;
  266. right: 0upx;
  267. display: flex;
  268. align-items: center;
  269. }
  270. .toolbar image{
  271. padding-left: 20upx;
  272. width: 40upx;
  273. height: 40upx;
  274. }
  275. .post-footer{
  276. margin-top: 30upx;
  277. background-color: #f3f3f5;
  278. width: 100%;
  279. }
  280. .footer_content {
  281. padding-left: 10upx;
  282. position: relative;
  283. display: -webkit-box;
  284. display: -webkit-flex;
  285. display: -ms-flexbox;
  286. display: flex;
  287. -webkit-box-align: center;
  288. -webkit-align-items: center;
  289. -ms-flex-align: center;
  290. align-items: center;
  291. -webkit-flex-wrap: wrap;
  292. -ms-flex-wrap: wrap;
  293. flex-wrap: wrap
  294. }
  295. .footer_content .nickname {
  296. color: #36648B;
  297. font-size: 24upx
  298. }
  299. .footer_content .comment-nickname {
  300. color: #36648B;
  301. font-size: 24upx
  302. }
  303. .footer_content .comment-content {
  304. color: #000000;
  305. font-size: 24upx
  306. }
  307. .foot {
  308. position: fixed;
  309. width: 100%;
  310. height: 90upx;
  311. min-height: 90upx;
  312. left: 0upx;
  313. bottom: 0upx;
  314. overflow: hidden;
  315. }
  316. @font-face {
  317. font-family: uniicons;
  318. font-weight: normal;
  319. font-style: normal;
  320. src: url('https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf') format('truetype');
  321. }
  322. /*通用 */
  323. view{
  324. font-size:28upx;
  325. line-height:1.8;
  326. }
  327. progress, checkbox-group{
  328. width: 100%;
  329. }
  330. form {
  331. width: 100%;
  332. }
  333. .uni-flex {
  334. display: flex;
  335. flex-direction: row;
  336. }
  337. .uni-flex-item {
  338. flex: 1;
  339. }
  340. .uni-row {
  341. flex-direction: row;
  342. }
  343. .uni-column {
  344. flex-direction: column;
  345. }
  346. .uni-link{
  347. color:#576B95;
  348. font-size:26upx;
  349. }
  350. .uni-center{
  351. text-align:center;
  352. }
  353. .uni-inline-item{
  354. display: flex;
  355. flex-direction: row;
  356. align-items:center;
  357. }
  358. .uni-inline-item text{
  359. margin-right: 20upx;
  360. }
  361. .uni-inline-item text:last-child{
  362. margin-right: 0upx;
  363. margin-left: 20upx;
  364. }
  365. /* page */
  366. .uni-page-head{
  367. padding:35upx;
  368. text-align: center;
  369. }
  370. .uni-page-head-title {
  371. display: inline-block;
  372. padding: 0 40upx;
  373. font-size: 30upx;
  374. height: 88upx;
  375. line-height: 88upx;
  376. color: #BEBEBE;
  377. box-sizing: border-box;
  378. border-bottom: 2upx solid #D8D8D8;
  379. }
  380. .uni-page-body {
  381. width: 100%;
  382. flex-grow: 1;
  383. overflow-x: hidden;
  384. }
  385. .uni-padding-wrap{
  386. width:690upx;
  387. padding:0 30upx;
  388. }
  389. .uni-word {
  390. text-align: center;
  391. padding:200upx 100upx;
  392. }
  393. .uni-title {
  394. font-size:30upx;
  395. font-weight:500;
  396. padding:20upx 0;
  397. line-height:1.5;
  398. }
  399. .uni-text{
  400. font-size:28upx;
  401. }
  402. .uni-title text{
  403. font-size:24upx;
  404. color:#888;
  405. }
  406. .uni-text-gray{
  407. color: #ccc;
  408. }
  409. .uni-text-small {
  410. font-size:24upx;
  411. }
  412. .uni-common-mb{
  413. margin-bottom:30upx;
  414. }
  415. .uni-common-pb{
  416. padding-bottom:30upx;
  417. }
  418. .uni-common-pl{
  419. padding-left:30upx;
  420. }
  421. .uni-common-mt{
  422. margin-top:30upx;
  423. }
  424. /* 背景色 */
  425. .uni-bg-red{
  426. background:#F76260; color:#FFF;
  427. }
  428. .uni-bg-green{
  429. background:#09BB07; color:#FFF;
  430. }
  431. .uni-bg-blue{
  432. background:#007AFF; color:#FFF;
  433. }
  434. /* 标题 */
  435. .uni-h1 {font-size: 80upx; font-weight:700;}
  436. .uni-h2 {font-size: 60upx; font-weight:700;}
  437. .uni-h3 {font-size: 48upx; font-weight:700;}
  438. .uni-h4 {font-size: 36upx; font-weight:700;}
  439. .uni-h5 {font-size: 28upx; color: #8f8f94;}
  440. .uni-h6 {font-size: 24upx; color: #8f8f94;}
  441. .uni-bold{font-weight:bold;}
  442. /* 文本溢出隐藏 */
  443. .uni-ellipsis {overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
  444. /* 竖向百分百按钮 */
  445. .uni-btn-v{
  446. padding:10upx 0;
  447. }
  448. .uni-btn-v button{margin:20upx 0;}
  449. /* 表单 */
  450. .uni-form-item{
  451. display:flex;
  452. width:100%;
  453. padding:10upx 0;
  454. }
  455. .uni-form-item .title{
  456. padding:10upx 25upx;
  457. }
  458. .uni-label {
  459. width: 210upx;
  460. word-wrap: break-word;
  461. word-break: break-all;
  462. text-indent:20upx;
  463. }
  464. .uni-input {
  465. height: 50upx;
  466. padding: 15upx 25upx;
  467. line-height:50upx;
  468. font-size:28upx;
  469. background:#FFF;
  470. flex: 1;
  471. }
  472. radio-group, checkbox-group{
  473. width:100%;
  474. }
  475. radio-group label, checkbox-group label{
  476. padding-right:20upx;
  477. }
  478. .uni-form-item .with-fun{
  479. display:flex;
  480. flex-wrap:nowrap;
  481. background:#FFFFFF;
  482. }
  483. .uni-form-item .with-fun .uni-icon{
  484. width:40px;
  485. height:80upx;
  486. line-height:80upx;
  487. flex-shrink:0;
  488. }
  489. /* loadmore */
  490. .uni-loadmore{
  491. height:80upx;
  492. line-height:80upx;
  493. text-align:center;
  494. padding-bottom:30upx;
  495. }
  496. /*数字角标*/
  497. .uni-badge,
  498. .uni-badge-default {
  499. font-family: 'Helvetica Neue', Helvetica, sans-serif;
  500. font-size: 12px;
  501. line-height: 1;
  502. display: inline-block;
  503. padding: 3px 6px;
  504. color: #333;
  505. border-radius: 100px;
  506. background-color: rgba(0, 0, 0, .15);
  507. }
  508. .uni-badge.uni-badge-inverted {
  509. padding: 0 5px 0 0;
  510. color: #929292;
  511. background-color: transparent
  512. }
  513. .uni-badge-primary {
  514. color: #fff;
  515. background-color: #007aff
  516. }
  517. .uni-badge-blue.uni-badge-inverted,
  518. .uni-badge-primary.uni-badge-inverted {
  519. color: #007aff;
  520. background-color: transparent
  521. }
  522. .uni-badge-green,
  523. .uni-badge-success {
  524. color: #fff;
  525. background-color: #4cd964;
  526. }
  527. .uni-badge-green.uni-badge-inverted,
  528. .uni-badge-success.uni-badge-inverted {
  529. color: #4cd964;
  530. background-color: transparent
  531. }
  532. .uni-badge-warning,
  533. .uni-badge-yellow {
  534. color: #fff;
  535. background-color: #f0ad4e
  536. }
  537. .uni-badge-warning.uni-badge-inverted,
  538. .uni-badge-yellow.uni-badge-inverted {
  539. color: #f0ad4e;
  540. background-color: transparent
  541. }
  542. .uni-badge-danger,
  543. .uni-badge-red {
  544. color: #fff;
  545. background-color: #dd524d
  546. }
  547. .uni-badge-danger.uni-badge-inverted,
  548. .uni-badge-red.uni-badge-inverted {
  549. color: #dd524d;
  550. background-color: transparent
  551. }
  552. .uni-badge-purple,
  553. .uni-badge-royal {
  554. color: #fff;
  555. background-color: #8a6de9
  556. }
  557. .uni-badge-purple.uni-badge-inverted,
  558. .uni-badge-royal.uni-badge-inverted {
  559. color: #8a6de9;
  560. background-color: transparent
  561. }
  562. /*折叠面板 */
  563. .uni-collapse-content {
  564. height: 0;
  565. width: 100%;
  566. overflow: hidden;
  567. }
  568. .uni-collapse-content.uni-active {
  569. height: auto;
  570. }
  571. /*卡片视图 */
  572. .uni-card {
  573. background: #fff;
  574. border-radius: 8upx;
  575. margin:20upx 0;
  576. position: relative;
  577. box-shadow: 0 2upx 4upx rgba(0, 0, 0, .3);
  578. }
  579. .uni-card-content {
  580. font-size: 30upx;
  581. }
  582. .uni-card-content.image-view{
  583. width: 100%;
  584. margin: 0;
  585. }
  586. .uni-card-content-inner {
  587. position: relative;
  588. padding: 30upx;
  589. }
  590. .uni-card-footer,
  591. .uni-card-header {
  592. position: relative;
  593. display: flex;
  594. min-height: 50upx;
  595. padding: 20upx 30upx;
  596. justify-content: space-between;
  597. align-items: center;
  598. }
  599. .uni-card-header {
  600. font-size: 36upx;
  601. }
  602. .uni-card-footer {
  603. color: #6d6d72;
  604. }
  605. .uni-card-footer:before,
  606. .uni-card-header:after {
  607. position: absolute;
  608. top: 0;
  609. right: 0;
  610. left: 0;
  611. height: 2upx;
  612. content: '';
  613. -webkit-transform: scaleY(.5);
  614. transform: scaleY(.5);
  615. background-color: #c8c7cc;
  616. }
  617. .uni-card-header:after {
  618. top: auto;
  619. bottom: 0;
  620. }
  621. .uni-card-media {
  622. justify-content: flex-start;
  623. }
  624. .uni-card-media-logo {
  625. height: 84upx;
  626. width: 84upx;
  627. margin-right: 20upx;
  628. }
  629. .uni-card-media-body {
  630. height: 84upx;
  631. display: flex;
  632. flex-direction: column;
  633. justify-content: space-between;
  634. align-items: flex-start;
  635. }
  636. .uni-card-media-text-top {
  637. line-height: 36upx;
  638. font-size: 34upx;
  639. }
  640. .uni-card-media-text-bottom {
  641. line-height: 30upx;
  642. font-size: 28upx;
  643. color: #8f8f94;
  644. }
  645. .uni-card-link {
  646. color: #007AFF;
  647. }
  648. /* 列表 */
  649. .uni-list {
  650. background-color: #FFFFFF;
  651. position: relative;
  652. width: 100%;
  653. display: flex;
  654. flex-direction: column;
  655. }
  656. .uni-list:after {
  657. position: absolute;
  658. z-index: 10;
  659. right: 0;
  660. bottom: 0;
  661. left: 0;
  662. height: 1px;
  663. content: '';
  664. -webkit-transform: scaleY(.5);
  665. transform: scaleY(.5);
  666. background-color: #c8c7cc;
  667. }
  668. .uni-list::before {
  669. position: absolute;
  670. z-index: 10;
  671. right: 0;
  672. top: 0;
  673. left: 0;
  674. height: 1px;
  675. content: '';
  676. -webkit-transform: scaleY(.5);
  677. transform: scaleY(.5);
  678. background-color: #c8c7cc;
  679. }
  680. .uni-list-cell {
  681. position: relative;
  682. display: flex;
  683. flex-direction: row;
  684. justify-content: space-between;
  685. align-items: center;
  686. }
  687. .uni-list-cell-hover {
  688. background-color: #eee;
  689. }
  690. .uni-list-cell-pd {
  691. padding: 22upx 30upx;
  692. }
  693. .uni-list-cell-left {
  694. font-size:28upx;
  695. padding: 0 30upx;
  696. }
  697. .uni-list-cell-db,
  698. .uni-list-cell-right {
  699. flex: 1;
  700. }
  701. .uni-list-cell::after {
  702. position: absolute;
  703. z-index: 3;
  704. right: 0;
  705. bottom: 0;
  706. left: 30upx;
  707. height: 1px;
  708. content: '';
  709. -webkit-transform: scaleY(.5);
  710. transform: scaleY(.5);
  711. background-color: #c8c7cc;
  712. }
  713. .uni-list .uni-list-cell:last-child::after {
  714. height: 0upx;
  715. }
  716. .uni-list-cell-last.uni-list-cell::after {
  717. height: 0upx;
  718. }
  719. .uni-list-cell-divider {
  720. position: relative;
  721. display: flex;
  722. color: #999;
  723. background-color: #f7f7f7;
  724. padding:15upx 20upx;
  725. }
  726. .uni-list-cell-divider::before {
  727. position: absolute;
  728. right: 0;
  729. top: 0;
  730. left: 0;
  731. height: 1px;
  732. content: '';
  733. -webkit-transform: scaleY(.5);
  734. transform: scaleY(.5);
  735. background-color: #c8c7cc;
  736. }
  737. .uni-list-cell-divider::after {
  738. position: absolute;
  739. right: 0;
  740. bottom: 0;
  741. left: 0upx;
  742. height: 1px;
  743. content: '';
  744. -webkit-transform: scaleY(.5);
  745. transform: scaleY(.5);
  746. background-color: #c8c7cc;
  747. }
  748. .uni-list-cell-navigate {
  749. font-size:30upx;
  750. padding: 22upx 30upx;
  751. line-height: 48upx;
  752. position: relative;
  753. display: flex;
  754. box-sizing: border-box;
  755. width: 100%;
  756. flex: 1;
  757. justify-content: space-between;
  758. align-items: center;
  759. }
  760. .uni-list-cell-navigate {
  761. padding-right: 36upx;
  762. }
  763. .uni-navigate-badge {
  764. padding-right: 50upx;
  765. }
  766. .uni-list-cell-navigate.uni-navigate-right:after {
  767. font-family: uniicons;
  768. content: '\e583';
  769. position: absolute;
  770. right: 24upx;
  771. top: 50%;
  772. color: #bbb;
  773. -webkit-transform: translateY(-50%);
  774. transform: translateY(-50%);
  775. }
  776. .uni-list-cell-navigate.uni-navigate-bottom:after {
  777. font-family: uniicons;
  778. content: '\e581';
  779. position: absolute;
  780. right: 24upx;
  781. top: 50%;
  782. color: #bbb;
  783. -webkit-transform: translateY(-50%);
  784. transform: translateY(-50%);
  785. }
  786. .uni-list-cell-navigate.uni-navigate-bottom.uni-active::after {
  787. font-family: uniicons;
  788. content: '\e580';
  789. position: absolute;
  790. right: 24upx;
  791. top: 50%;
  792. color: #bbb;
  793. -webkit-transform: translateY(-50%);
  794. transform: translateY(-50%);
  795. }
  796. .uni-collapse.uni-list-cell {
  797. flex-direction: column;
  798. }
  799. .uni-list-cell-navigate.uni-active {
  800. background: #eee;
  801. }
  802. .uni-list.uni-collapse {
  803. box-sizing: border-box;
  804. height: 0;
  805. overflow: hidden;
  806. }
  807. .uni-collapse .uni-list-cell {
  808. padding-left: 20upx;
  809. }
  810. .uni-collapse .uni-list-cell::after {
  811. left: 52upx;
  812. }
  813. .uni-list.uni-active {
  814. height: auto;
  815. }
  816. /* 三行列表 */
  817. .uni-triplex-row {
  818. display: flex;
  819. flex: 1;
  820. width: 100%;
  821. box-sizing: border-box;
  822. flex-direction: row;
  823. padding: 22upx 30upx;
  824. }
  825. .uni-triplex-right,
  826. .uni-triplex-left {
  827. display: flex;
  828. flex-direction: column;
  829. }
  830. .uni-triplex-left {
  831. width: 84%;
  832. }
  833. .uni-triplex-left .uni-title{
  834. padding:8upx 0;
  835. }
  836. .uni-triplex-left .uni-text, .uni-triplex-left .uni-text-small{color:#999999;}
  837. .uni-triplex-right {
  838. width: 16%;
  839. text-align: right;
  840. }
  841. /* 图文列表 */
  842. .uni-media-list {
  843. padding: 22upx 30upx;
  844. box-sizing: border-box;
  845. display: flex;
  846. width: 100%;
  847. flex-direction: row;
  848. }
  849. .uni-navigate-right.uni-media-list {
  850. padding-right: 74upx;
  851. }
  852. .uni-pull-right {
  853. flex-direction: row-reverse;
  854. }
  855. .uni-pull-right>.uni-media-list-logo {
  856. margin-right: 0upx;
  857. margin-left: 20upx;
  858. }
  859. .uni-media-list-logo {
  860. height: 84upx;
  861. width: 84upx;
  862. margin-right: 20upx;
  863. }
  864. .uni-media-list-logo image {
  865. height: 100%;
  866. width: 100%;
  867. }
  868. .uni-media-list-body {
  869. height: 84upx;
  870. display: flex;
  871. flex: 1;
  872. flex-direction: column;
  873. justify-content: space-between;
  874. align-items: flex-start;
  875. overflow: hidden;
  876. }
  877. .uni-media-list-text-top {
  878. width: 100%;
  879. line-height: 36upx;
  880. font-size: 30upx;
  881. }
  882. .uni-media-list-text-bottom {
  883. width: 100%;
  884. line-height: 30upx;
  885. font-size: 26upx;
  886. color: #8f8f94;
  887. }
  888. /* 九宫格 */
  889. .uni-grid-9 {
  890. background: #f2f2f2;
  891. width: 750upx;
  892. display: flex;
  893. flex-direction: row;
  894. flex-wrap: wrap;
  895. border-top: 2upx solid #eee;
  896. }
  897. .uni-grid-9-item {
  898. width: 250upx;
  899. height: 200upx;
  900. display: flex;
  901. flex-direction: column;
  902. align-items: center;
  903. justify-content: center;
  904. border-bottom: 2upx solid;
  905. border-right: 2upx solid;
  906. border-color: #eee;
  907. box-sizing: border-box;
  908. }
  909. .no-border-right {
  910. border-right: none;
  911. }
  912. .uni-grid-9-image {
  913. width: 100upx;
  914. height: 100upx;
  915. }
  916. .uni-grid-9-text {
  917. width: 250upx;
  918. line-height: 4upx;
  919. height: 40upx;
  920. text-align: center;
  921. font-size: 30upx;
  922. }
  923. .uni-grid-9-item-hover {
  924. background: rgba(0, 0, 0, 0.1);
  925. }
  926. /* 上传 */
  927. .uni-uploader {
  928. flex: 1;
  929. flex-direction: column;
  930. }
  931. .uni-uploader-head {
  932. display: flex;
  933. flex-direction: row;
  934. justify-content: space-between;
  935. }
  936. .uni-uploader-info {
  937. color: #B2B2B2;
  938. }
  939. .uni-uploader-body {
  940. margin-top: 16upx;
  941. }
  942. .uni-uploader__files {
  943. display: flex;
  944. flex-direction: row;
  945. flex-wrap: wrap;
  946. }
  947. .uni-uploader__file {
  948. margin: 10upx;
  949. width: 210upx;
  950. height: 210upx;
  951. }
  952. .uni-uploader__img {
  953. display: block;
  954. width: 210upx;
  955. height: 210upx;
  956. }
  957. .uni-uploader__input-box {
  958. position: relative;
  959. margin:10upx;
  960. width: 208upx;
  961. height: 208upx;
  962. border: 2upx solid #D9D9D9;
  963. }
  964. .uni-uploader__input-box:before,
  965. .uni-uploader__input-box:after {
  966. content: " ";
  967. position: absolute;
  968. top: 50%;
  969. left: 50%;
  970. -webkit-transform: translate(-50%, -50%);
  971. transform: translate(-50%, -50%);
  972. background-color: #D9D9D9;
  973. }
  974. .uni-uploader__input-box:before {
  975. width: 4upx;
  976. height: 79upx;
  977. }
  978. .uni-uploader__input-box:after {
  979. width: 79upx;
  980. height: 4upx;
  981. }
  982. .uni-uploader__input-box:active {
  983. border-color: #999999;
  984. }
  985. .uni-uploader__input-box:active:before,
  986. .uni-uploader__input-box:active:after {
  987. background-color: #999999;
  988. }
  989. .uni-uploader__input {
  990. position: absolute;
  991. z-index: 1;
  992. top: 0;
  993. left: 0;
  994. width: 100%;
  995. height: 100%;
  996. opacity: 0;
  997. }
  998. /*问题反馈*/
  999. .feedback-title {
  1000. display: flex;
  1001. flex-direction: row;
  1002. justify-content: space-between;
  1003. align-items: center;
  1004. padding: 20upx;
  1005. color: #8f8f94;
  1006. font-size: 28upx;
  1007. }
  1008. .feedback-star-view.feedback-title {
  1009. justify-content: flex-start;
  1010. margin: 0;
  1011. }
  1012. .feedback-quick {
  1013. position: relative;
  1014. padding-right: 40upx;
  1015. }
  1016. .feedback-quick:after {
  1017. font-family: uniicons;
  1018. font-size: 40upx;
  1019. content: '\e581';
  1020. position: absolute;
  1021. right: 0;
  1022. top: 50%;
  1023. color: #bbb;
  1024. -webkit-transform: translateY(-50%);
  1025. transform: translateY(-50%);
  1026. }
  1027. .feedback-body {
  1028. background: #fff;
  1029. }
  1030. .feedback-textare {
  1031. height: 200upx;
  1032. font-size: 34upx;
  1033. line-height: 50upx;
  1034. width: 100%;
  1035. box-sizing: border-box;
  1036. padding: 20upx 30upx 0;
  1037. }
  1038. .feedback-input {
  1039. font-size: 34upx;
  1040. height: 50upx;
  1041. min-height: 50upx;
  1042. padding: 15upx 20upx;
  1043. line-height: 50upx;
  1044. }
  1045. .feedback-uploader {
  1046. padding: 22upx 20upx;
  1047. }
  1048. .feedback-star {
  1049. font-family: uniicons;
  1050. font-size: 40upx;
  1051. margin-left: 6upx;
  1052. }
  1053. .feedback-star-view {
  1054. margin-left: 20upx;
  1055. }
  1056. .feedback-star:after {
  1057. content: '\e408';
  1058. }
  1059. .feedback-star.active {
  1060. color: #FFB400;
  1061. }
  1062. .feedback-star.active:after {
  1063. content: '\e438';
  1064. }
  1065. .feedback-submit {
  1066. background: #007AFF;
  1067. color: #FFFFFF;
  1068. margin: 20upx;
  1069. }
  1070. /* input group */
  1071. .uni-input-group {
  1072. position: relative;
  1073. padding: 0;
  1074. border: 0;
  1075. background-color: #fff;
  1076. }
  1077. .uni-input-group:before {
  1078. position: absolute;
  1079. top: 0;
  1080. right: 0;
  1081. left: 0;
  1082. height: 2upx;
  1083. content: '';
  1084. transform: scaleY(.5);
  1085. background-color: #c8c7cc;
  1086. }
  1087. .uni-input-group:after {
  1088. position: absolute;
  1089. right: 0;
  1090. bottom: 0;
  1091. left: 0;
  1092. height: 2upx;
  1093. content: '';
  1094. transform: scaleY(.5);
  1095. background-color: #c8c7cc;
  1096. }
  1097. .uni-input-row {
  1098. position: relative;
  1099. display: flex;
  1100. flex-direction: row;
  1101. font-size:28upx;
  1102. padding: 22upx 30upx;
  1103. justify-content: space-between;
  1104. }
  1105. .uni-input-group .uni-input-row:after {
  1106. position: absolute;
  1107. right: 0;
  1108. bottom: 0;
  1109. left: 30upx;
  1110. height: 2upx;
  1111. content: '';
  1112. transform: scaleY(.5);
  1113. background-color: #c8c7cc;
  1114. }
  1115. .uni-input-row label {
  1116. line-height: 70upx;
  1117. }
  1118. /* textarea */
  1119. .uni-textarea{
  1120. width:100%;
  1121. background:#FFF;
  1122. }
  1123. .uni-textarea textarea{
  1124. width:96%;
  1125. padding:18upx 2%;
  1126. line-height:1.6;
  1127. font-size:28upx;
  1128. height:150upx;
  1129. }
  1130. /* tab bar */
  1131. .uni-tab-bar {
  1132. display: flex;
  1133. flex: 1;
  1134. flex-direction: column;
  1135. overflow: hidden;
  1136. height: 100%;
  1137. }
  1138. .uni-tab-bar .list {
  1139. width: 750upx;
  1140. height: 100%;
  1141. }
  1142. .uni-swiper-tab {
  1143. width: 100%;
  1144. white-space: nowrap;
  1145. line-height: 100upx;
  1146. height: 100upx;
  1147. border-bottom: 1px solid #c8c7cc;
  1148. }
  1149. .swiper-tab-list {
  1150. font-size: 30upx;
  1151. width: 150upx;
  1152. display: inline-block;
  1153. text-align: center;
  1154. color: #555;
  1155. }
  1156. .uni-tab-bar .active {
  1157. color: #007AFF;
  1158. }
  1159. .uni-tab-bar .swiper-box {
  1160. flex: 1;
  1161. width: 100%;
  1162. height: calc(100% - 100upx);
  1163. }
  1164. .uni-tab-bar-loading{
  1165. padding:20upx 0;
  1166. }
  1167. /* steps */
  1168. .uni-steps{padding:20upx 30upx; flex-grow: 1; display:flex; flex-wrap:wrap;}
  1169. .uni-steps view{display:flex; flex-wrap:wrap; float:none;}
  1170. .uni-steps .step{width:31.3%; margin:0 1%; flex-wrap:nowrap;}
  1171. .uni-steps .step-circle{width:50upx; height:50upx; border-radius:50upx; background:#F1F1F3; justify-content:center; line-height:50upx; flex-shrink:0; margin-right:15upx; color:#666; font-size:28upx;}
  1172. .uni-steps .step-content{width:100%; height:22upx; border-bottom:1px solid #F1F2F3;}
  1173. .uni-steps .step-title{line-height:50upx; height:50upx; background:#FFFFFF; width:auto; overflow:hidden; padding-right:8upx;}
  1174. .uni-steps .current .step-circle{background:#00B26A; color:#FFFFFF;}
  1175. .uni-steps .current .step-content{border-color:#00B26A;}
  1176. .uni-steps .current .step-title{color:#00B26A;}
  1177. /* comment */
  1178. .uni-comment{padding:5rpx 0; display: flex; flex-grow:1; flex-direction: column;}
  1179. .uni-comment-list{flex-wrap:nowrap; padding:10rpx 0; margin:10rpx 0; width:100%; display: flex;}
  1180. .uni-comment-face{width:70upx; height:70upx; border-radius:100%; margin-right:20upx; flex-shrink:0; overflow:hidden;}
  1181. .uni-comment-face image{width:100%; border-radius:100%;}
  1182. .uni-comment-body{width:100%;}
  1183. .uni-comment-top{line-height:1.5em; justify-content:space-between;}
  1184. .uni-comment-top text{color:#0A98D5; font-size:24upx;}
  1185. .uni-comment-date{line-height:38upx; flex-direction:row; justify-content:space-between; display:flex !important; flex-grow:1;}
  1186. .uni-comment-date view{color:#666666; font-size:24upx; line-height:38upx;}
  1187. .uni-comment-content{line-height:1.6em; font-size:28upx; padding:8rpx 0;}
  1188. .uni-comment-replay-btn{background:#FFF; font-size:24upx; line-height:28upx; padding:5rpx 20upx; border-radius:30upx; color:#333 !important; margin:0 10upx;}
  1189. /* swiper msg */
  1190. .uni-swiper-msg{width:100%; padding:12rpx 0; flex-wrap:nowrap; display:flex;}
  1191. .uni-swiper-msg-icon{width:50upx; margin-right:20upx;}
  1192. .uni-swiper-msg-icon image{width:100%; flex-shrink:0;}
  1193. .uni-swiper-msg swiper{width:100%; height:50upx;}
  1194. .uni-swiper-msg swiper-item{line-height:50upx;}
  1195. /* product */
  1196. .uni-product-list {
  1197. display: flex;
  1198. width: 100%;
  1199. flex-wrap: wrap;
  1200. flex-direction: row;
  1201. }
  1202. .uni-product {
  1203. padding: 20upx;
  1204. display: flex;
  1205. flex-direction: column;
  1206. }
  1207. .image-view {
  1208. height: 330upx;
  1209. width: 330upx;
  1210. margin:12upx 0;
  1211. }
  1212. .uni-product-image {
  1213. height: 330upx;
  1214. width: 330upx;
  1215. }
  1216. .uni-product-title {
  1217. width: 300upx;
  1218. word-break: break-all;
  1219. display: -webkit-box;
  1220. overflow: hidden;
  1221. line-height:1.5;
  1222. text-overflow: ellipsis;
  1223. -webkit-box-orient: vertical;
  1224. -webkit-line-clamp: 2;
  1225. }
  1226. .uni-product-price {
  1227. margin-top:10upx;
  1228. font-size: 28upx;
  1229. line-height:1.5;
  1230. position: relative;
  1231. }
  1232. .uni-product-price-original {
  1233. color: #e80080;
  1234. }
  1235. .uni-product-price-favour {
  1236. color: #888888;
  1237. text-decoration: line-through;
  1238. margin-left: 10upx;
  1239. }
  1240. .uni-product-tip {
  1241. position: absolute;
  1242. right: 10upx;
  1243. background-color: #ff3333;
  1244. color: #ffffff;
  1245. padding: 0 10upx;
  1246. border-radius: 5upx;
  1247. }
  1248. /* timeline */
  1249. .uni-timeline {
  1250. margin: 35upx 0;
  1251. display: flex;
  1252. flex-direction: column;
  1253. position: relative;
  1254. }
  1255. .uni-timeline-item {
  1256. display: flex;
  1257. flex-direction: row;
  1258. position: relative;
  1259. padding-bottom: 20upx;
  1260. box-sizing: border-box;
  1261. overflow: hidden;
  1262. }
  1263. .uni-timeline-item .uni-timeline-item-keynode {
  1264. width: 160upx;
  1265. flex-shrink: 0;
  1266. box-sizing: border-box;
  1267. padding-right: 20upx;
  1268. text-align: right;
  1269. line-height: 65upx;
  1270. }
  1271. .uni-timeline-item .uni-timeline-item-divider {
  1272. flex-shrink: 0;
  1273. position: relative;
  1274. width: 30upx;
  1275. height: 30upx;
  1276. top: 15upx;
  1277. border-radius: 50%;
  1278. background-color: #bbb;
  1279. }
  1280. .uni-timeline-item-divider::before,
  1281. .uni-timeline-item-divider::after {
  1282. position: absolute;
  1283. left: 15upx;
  1284. width: 1upx;
  1285. height: 100vh;
  1286. content: '';
  1287. background: inherit;
  1288. }
  1289. .uni-timeline-item-divider::before {
  1290. bottom: 100%;
  1291. }
  1292. .uni-timeline-item-divider::after {
  1293. top: 100%;
  1294. }
  1295. .uni-timeline-last-item .uni-timeline-item-divider:after {
  1296. display: none;
  1297. }
  1298. .uni-timeline-first-item .uni-timeline-item-divider:before {
  1299. display: none;
  1300. }
  1301. .uni-timeline-item .uni-timeline-item-content {
  1302. padding-left: 20upx;
  1303. }
  1304. .uni-timeline-last-item .bottom-border::after{
  1305. display: none;
  1306. }
  1307. .uni-timeline-item-content .datetime{
  1308. color: #CCCCCC;
  1309. }
  1310. /* 自定义节点颜色 */
  1311. .uni-timeline-last-item .uni-timeline-item-divider{
  1312. background-color: #1AAD19;
  1313. }
  1314. /* uni-icon */
  1315. .uni-icon {
  1316. font-family: uniicons;
  1317. font-size: 24px;
  1318. font-weight: normal;
  1319. font-style: normal;
  1320. line-height: 1;
  1321. display: inline-block;
  1322. text-decoration: none;
  1323. -webkit-font-smoothing: antialiased;
  1324. }
  1325. .uni-icon.uni-active {
  1326. color: #007aff;
  1327. }
  1328. .uni-icon-contact:before {
  1329. content: '\e100';
  1330. }
  1331. .uni-icon-person:before {
  1332. content: '\e101';
  1333. }
  1334. .uni-icon-personadd:before {
  1335. content: '\e102';
  1336. }
  1337. .uni-icon-contact-filled:before {
  1338. content: '\e130';
  1339. }
  1340. .uni-icon-person-filled:before {
  1341. content: '\e131';
  1342. }
  1343. .uni-icon-personadd-filled:before {
  1344. content: '\e132';
  1345. }
  1346. .uni-icon-phone:before {
  1347. content: '\e200';
  1348. }
  1349. .uni-icon-email:before {
  1350. content: '\e201';
  1351. }
  1352. .uni-icon-chatbubble:before {
  1353. content: '\e202';
  1354. }
  1355. .uni-icon-chatboxes:before {
  1356. content: '\e203';
  1357. }
  1358. .uni-icon-phone-filled:before {
  1359. content: '\e230';
  1360. }
  1361. .uni-icon-email-filled:before {
  1362. content: '\e231';
  1363. }
  1364. .uni-icon-chatbubble-filled:before {
  1365. content: '\e232';
  1366. }
  1367. .uni-icon-chatboxes-filled:before {
  1368. content: '\e233';
  1369. }
  1370. .uni-icon-weibo:before {
  1371. content: '\e260';
  1372. }
  1373. .uni-icon-weixin:before {
  1374. content: '\e261';
  1375. }
  1376. .uni-icon-pengyouquan:before {
  1377. content: '\e262';
  1378. }
  1379. .uni-icon-chat:before {
  1380. content: '\e263';
  1381. }
  1382. .uni-icon-qq:before {
  1383. content: '\e264';
  1384. }
  1385. .uni-icon-videocam:before {
  1386. content: '\e300';
  1387. }
  1388. .uni-icon-camera:before {
  1389. content: '\e301';
  1390. }
  1391. .uni-icon-mic:before {
  1392. content: '\e302';
  1393. }
  1394. .uni-icon-location:before {
  1395. content: '\e303';
  1396. }
  1397. .uni-icon-mic-filled:before,
  1398. .uni-icon-speech:before {
  1399. content: '\e332';
  1400. }
  1401. .uni-icon-location-filled:before {
  1402. content: '\e333';
  1403. }
  1404. .uni-icon-micoff:before {
  1405. content: '\e360';
  1406. }
  1407. .uni-icon-image:before {
  1408. content: '\e363';
  1409. }
  1410. .uni-icon-map:before {
  1411. content: '\e364';
  1412. }
  1413. .uni-icon-compose:before {
  1414. content: '\e400';
  1415. }
  1416. .uni-icon-trash:before {
  1417. content: '\e401';
  1418. }
  1419. .uni-icon-upload:before {
  1420. content: '\e402';
  1421. }
  1422. .uni-icon-download:before {
  1423. content: '\e403';
  1424. }
  1425. .uni-icon-close:before {
  1426. content: '\e404';
  1427. }
  1428. .uni-icon-redo:before {
  1429. content: '\e405';
  1430. }
  1431. .uni-icon-undo:before {
  1432. content: '\e406';
  1433. }
  1434. .uni-icon-refresh:before {
  1435. content: '\e407';
  1436. }
  1437. .uni-icon-star:before {
  1438. content: '\e408';
  1439. }
  1440. .uni-icon-plus:before {
  1441. content: '\e409';
  1442. }
  1443. .uni-icon-minus:before {
  1444. content: '\e410';
  1445. }
  1446. .uni-icon-circle:before,
  1447. .uni-icon-checkbox:before {
  1448. content: '\e411';
  1449. }
  1450. .uni-icon-close-filled:before,
  1451. .uni-icon-clear:before {
  1452. content: '\e434';
  1453. }
  1454. .uni-icon-refresh-filled:before {
  1455. content: '\e437';
  1456. }
  1457. .uni-icon-star-filled:before {
  1458. content: '\e438';
  1459. }
  1460. .uni-icon-plus-filled:before {
  1461. content: '\e439';
  1462. }
  1463. .uni-icon-minus-filled:before {
  1464. content: '\e440';
  1465. }
  1466. .uni-icon-circle-filled:before {
  1467. content: '\e441';
  1468. }
  1469. .uni-icon-checkbox-filled:before {
  1470. content: '\e442';
  1471. }
  1472. .uni-icon-closeempty:before {
  1473. content: '\e460';
  1474. }
  1475. .uni-icon-refreshempty:before {
  1476. content: '\e461';
  1477. }
  1478. .uni-icon-reload:before {
  1479. content: '\e462';
  1480. }
  1481. .uni-icon-starhalf:before {
  1482. content: '\e463';
  1483. }
  1484. .uni-icon-spinner:before {
  1485. content: '\e464';
  1486. }
  1487. .uni-icon-spinner-cycle:before {
  1488. content: '\e465';
  1489. }
  1490. .uni-icon-search:before {
  1491. content: '\e466';
  1492. }
  1493. .uni-icon-plusempty:before {
  1494. content: '\e468';
  1495. }
  1496. .uni-icon-forward:before {
  1497. content: '\e470';
  1498. }
  1499. .uni-icon-back:before,
  1500. .uni-icon-left-nav:before {
  1501. content: '\e471';
  1502. }
  1503. .uni-icon-checkmarkempty:before {
  1504. content: '\e472';
  1505. }
  1506. .uni-icon-home:before {
  1507. content: '\e500';
  1508. }
  1509. .uni-icon-navigate:before {
  1510. content: '\e501';
  1511. }
  1512. .uni-icon-gear:before {
  1513. content: '\e502';
  1514. }
  1515. .uni-icon-paperplane:before {
  1516. content: '\e503';
  1517. }
  1518. .uni-icon-info:before {
  1519. content: '\e504';
  1520. }
  1521. .uni-icon-help:before {
  1522. content: '\e505';
  1523. }
  1524. .uni-icon-locked:before {
  1525. content: '\e506';
  1526. }
  1527. .uni-icon-more:before {
  1528. content: '\e507';
  1529. }
  1530. .uni-icon-flag:before {
  1531. content: '\e508';
  1532. }
  1533. .uni-icon-home-filled:before {
  1534. content: '\e530';
  1535. }
  1536. .uni-icon-gear-filled:before {
  1537. content: '\e532';
  1538. }
  1539. .uni-icon-info-filled:before {
  1540. content: '\e534';
  1541. }
  1542. .uni-icon-help-filled:before {
  1543. content: '\e535';
  1544. }
  1545. .uni-icon-more-filled:before {
  1546. content: '\e537';
  1547. }
  1548. .uni-icon-settings:before {
  1549. content: '\e560';
  1550. }
  1551. .uni-icon-list:before {
  1552. content: '\e562';
  1553. }
  1554. .uni-icon-bars:before {
  1555. content: '\e563';
  1556. }
  1557. .uni-icon-loop:before {
  1558. content: '\e565';
  1559. }
  1560. .uni-icon-paperclip:before {
  1561. content: '\e567';
  1562. }
  1563. .uni-icon-eye:before {
  1564. content: '\e568';
  1565. }
  1566. .uni-icon-arrowup:before {
  1567. content: '\e580';
  1568. }
  1569. .uni-icon-arrowdown:before {
  1570. content: '\e581';
  1571. }
  1572. .uni-icon-arrowleft:before {
  1573. content: '\e582';
  1574. }
  1575. .uni-icon-arrowright:before {
  1576. content: '\e583';
  1577. }
  1578. .uni-icon-arrowthinup:before {
  1579. content: '\e584';
  1580. }
  1581. .uni-icon-arrowthindown:before {
  1582. content: '\e585';
  1583. }
  1584. .uni-icon-arrowthinleft:before {
  1585. content: '\e586';
  1586. }
  1587. .uni-icon-arrowthinright:before {
  1588. content: '\e587';
  1589. }
  1590. .uni-icon-pulldown:before {
  1591. content: '\e588';
  1592. }
  1593. .uni-icon-scan:before {
  1594. content: "\e612";
  1595. }
  1596. </style>