uni.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436
  1. @font-face {
  2. font-family: uniicons;
  3. font-weight: normal;
  4. font-style: normal;
  5. src: url('https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf') format('truetype');
  6. }
  7. /*通用 */
  8. view{
  9. font-size:28upx;
  10. line-height:1.8;
  11. }
  12. progress, checkbox-group{
  13. width: 100%;
  14. }
  15. form {
  16. width: 100%;
  17. }
  18. .uni-flex {
  19. display: flex;
  20. flex-direction: row;
  21. }
  22. .uni-flex-item {
  23. flex: 1;
  24. }
  25. .uni-row {
  26. flex-direction: row;
  27. }
  28. .uni-column {
  29. flex-direction: column;
  30. }
  31. .uni-link{
  32. color:#576B95;
  33. font-size:26upx;
  34. }
  35. .uni-center{
  36. text-align:center;
  37. }
  38. .uni-inline-item{
  39. display: flex;
  40. flex-direction: row;
  41. align-items:center;
  42. }
  43. .uni-inline-item text{
  44. margin-right: 20upx;
  45. }
  46. .uni-inline-item text:last-child{
  47. margin-right: 0upx;
  48. margin-left: 20upx;
  49. }
  50. /* page */
  51. .uni-page-head{
  52. padding:35upx;
  53. text-align: center;
  54. }
  55. .uni-page-head-title {
  56. display: inline-block;
  57. padding: 0 40upx;
  58. font-size: 30upx;
  59. height: 88upx;
  60. line-height: 88upx;
  61. color: #BEBEBE;
  62. box-sizing: border-box;
  63. border-bottom: 2upx solid #D8D8D8;
  64. }
  65. .uni-page-body {
  66. width: 100%;
  67. flex-grow: 1;
  68. overflow-x: hidden;
  69. }
  70. .uni-padding-wrap{
  71. width:690upx;
  72. padding:0 30upx;
  73. }
  74. .uni-word {
  75. text-align: center;
  76. padding:200upx 100upx;
  77. }
  78. .uni-title {
  79. font-size:30upx;
  80. font-weight:500;
  81. padding:20upx 0;
  82. line-height:1.5;
  83. }
  84. .uni-text{
  85. font-size:14px;
  86. }
  87. .uni-title text{
  88. font-size:24upx;
  89. color:#888;
  90. }
  91. .uni-text-gray{
  92. color: #ccc;
  93. }
  94. .uni-text-small {
  95. font-size:24upx;
  96. }
  97. .uni-common-mb{
  98. margin-bottom:30upx;
  99. }
  100. .uni-common-pb{
  101. padding-bottom:30upx;
  102. }
  103. .uni-common-pl{
  104. padding-left:30upx;
  105. }
  106. .uni-common-mt{
  107. margin-top:30upx;
  108. }
  109. /* 背景色 */
  110. .uni-bg-red{
  111. background:#F76260; color:#FFF;
  112. }
  113. .uni-bg-green{
  114. background:#09BB07; color:#FFF;
  115. }
  116. .uni-bg-blue{
  117. background:#007AFF; color:#FFF;
  118. }
  119. /* 标题 */
  120. .uni-h1 {font-size: 80upx; font-weight:700;}
  121. .uni-h2 {font-size: 60upx; font-weight:700;}
  122. .uni-h3 {font-size: 48upx; font-weight:700;}
  123. .uni-h4 {font-size: 36upx; font-weight:700;}
  124. .uni-h5 {font-size: 28upx; color: #8f8f94;}
  125. .uni-h6 {font-size: 24upx; color: #8f8f94;}
  126. .uni-bold{font-weight:bold;}
  127. /* 文本溢出隐藏 */
  128. .uni-ellipsis {overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
  129. /* 竖向百分百按钮 */
  130. .uni-btn-v{
  131. padding:10upx 0;
  132. }
  133. .uni-btn-v button{margin:20upx 0;}
  134. /* 表单 */
  135. .uni-form-item{
  136. display:flex;
  137. width:100%;
  138. padding:10upx 0;
  139. }
  140. .uni-form-item .title{
  141. padding:10upx 25upx;
  142. }
  143. .uni-label {
  144. width: 210upx;
  145. word-wrap: break-word;
  146. word-break: break-all;
  147. text-indent:20upx;
  148. }
  149. .uni-input {
  150. height: 50upx;
  151. padding: 15upx 25upx;
  152. line-height:50upx;
  153. font-size:28upx;
  154. background:#FFF;
  155. flex: 1;
  156. }
  157. radio-group, checkbox-group{
  158. width:100%;
  159. }
  160. radio-group label, checkbox-group label{
  161. padding-right:20upx;
  162. }
  163. .uni-form-item .with-fun{
  164. display:flex;
  165. flex-wrap:nowrap;
  166. background:#FFFFFF;
  167. }
  168. .uni-form-item .with-fun .uni-icon{
  169. width:40px;
  170. height:80upx;
  171. line-height:80upx;
  172. flex-shrink:0;
  173. }
  174. /* loadmore */
  175. .uni-loadmore{
  176. height:80upx;
  177. line-height:80upx;
  178. text-align:center;
  179. padding-bottom:30upx;
  180. }
  181. /*数字角标*/
  182. .uni-badge,
  183. .uni-badge-default {
  184. font-family: 'Helvetica Neue', Helvetica, sans-serif;
  185. font-size: 12px;
  186. line-height: 1;
  187. display: inline-block;
  188. padding: 3px 6px;
  189. color: #333;
  190. border-radius: 100px;
  191. background-color: rgba(0, 0, 0, .15);
  192. }
  193. .uni-badge.uni-badge-inverted {
  194. padding: 0 5px 0 0;
  195. color: #929292;
  196. background-color: transparent
  197. }
  198. .uni-badge-primary {
  199. color: #fff;
  200. background-color: #007aff
  201. }
  202. .uni-badge-blue.uni-badge-inverted,
  203. .uni-badge-primary.uni-badge-inverted {
  204. color: #007aff;
  205. background-color: transparent
  206. }
  207. .uni-badge-green,
  208. .uni-badge-success {
  209. color: #fff;
  210. background-color: #4cd964;
  211. }
  212. .uni-badge-green.uni-badge-inverted,
  213. .uni-badge-success.uni-badge-inverted {
  214. color: #4cd964;
  215. background-color: transparent
  216. }
  217. .uni-badge-warning,
  218. .uni-badge-yellow {
  219. color: #fff;
  220. background-color: #f0ad4e
  221. }
  222. .uni-badge-warning.uni-badge-inverted,
  223. .uni-badge-yellow.uni-badge-inverted {
  224. color: #f0ad4e;
  225. background-color: transparent
  226. }
  227. .uni-badge-danger,
  228. .uni-badge-red {
  229. color: #fff;
  230. background-color: #dd524d
  231. }
  232. .uni-badge-danger.uni-badge-inverted,
  233. .uni-badge-red.uni-badge-inverted {
  234. color: #dd524d;
  235. background-color: transparent
  236. }
  237. .uni-badge-purple,
  238. .uni-badge-royal {
  239. color: #fff;
  240. background-color: #8a6de9
  241. }
  242. .uni-badge-purple.uni-badge-inverted,
  243. .uni-badge-royal.uni-badge-inverted {
  244. color: #8a6de9;
  245. background-color: transparent
  246. }
  247. /*折叠面板 */
  248. .uni-collapse-content {
  249. height: 0;
  250. width: 100%;
  251. overflow: hidden;
  252. }
  253. .uni-collapse-content.uni-active {
  254. height: auto;
  255. }
  256. /*卡片视图 */
  257. .uni-card {
  258. background: #fff;
  259. border-radius: 8upx;
  260. margin:20upx 0;
  261. position: relative;
  262. }
  263. .uni-card-content {
  264. font-size: 30upx;
  265. }
  266. .uni-card-content.image-view{
  267. width: 100%;
  268. margin: 0;
  269. }
  270. .uni-card-content-inner {
  271. position: relative;
  272. padding: 30upx;
  273. }
  274. .uni-card-footer,
  275. .uni-card-header {
  276. position: relative;
  277. display: flex;
  278. min-height: 50upx;
  279. padding: 20upx 30upx;
  280. justify-content: space-between;
  281. align-items: center;
  282. }
  283. .uni-card-header {
  284. font-size: 36upx;
  285. }
  286. .uni-card-footer {
  287. color: #6d6d72;
  288. }
  289. .uni-card-footer:before,
  290. .uni-card-header:after {
  291. position: absolute;
  292. top: 0;
  293. right: 0;
  294. left: 0;
  295. height: 2upx;
  296. content: '';
  297. -webkit-transform: scaleY(.5);
  298. transform: scaleY(.5);
  299. background-color: #c8c7cc;
  300. }
  301. .uni-card-header:after {
  302. top: auto;
  303. bottom: 0;
  304. }
  305. .uni-card-media {
  306. justify-content: flex-start;
  307. }
  308. .uni-card-media-logo {
  309. height: 84upx;
  310. width: 84upx;
  311. margin-right: 20upx;
  312. }
  313. .uni-card-media-body {
  314. height: 84upx;
  315. display: flex;
  316. flex-direction: column;
  317. justify-content: space-between;
  318. align-items: flex-start;
  319. }
  320. .uni-card-media-text-top {
  321. line-height: 36upx;
  322. font-size: 34upx;
  323. }
  324. .uni-card-media-text-bottom {
  325. line-height: 30upx;
  326. font-size: 28upx;
  327. color: #8f8f94;
  328. }
  329. .uni-card-link {
  330. color: #007AFF;
  331. }
  332. /* 列表 */
  333. .uni-list {
  334. background-color: #FFFFFF;
  335. position: relative;
  336. width: 100%;
  337. display: flex;
  338. flex-direction: column;
  339. }
  340. .uni-list:after {
  341. position: absolute;
  342. z-index: 10;
  343. right: 0;
  344. bottom: 0;
  345. left: 0;
  346. /*height: 1px;*/
  347. content: '';
  348. -webkit-transform: scaleY(.5);
  349. transform: scaleY(.5);
  350. background-color: #c8c7cc;
  351. }
  352. .uni-list::before {
  353. position: absolute;
  354. z-index: 10;
  355. right: 0;
  356. top: 0;
  357. left: 0;
  358. /*height: 1px;*/
  359. content: '';
  360. -webkit-transform: scaleY(.5);
  361. transform: scaleY(.5);
  362. background-color: #c8c7cc;
  363. }
  364. .uni-list-cell {
  365. position: relative;
  366. display: flex;
  367. flex-direction: row;
  368. justify-content: space-between;
  369. align-items: center;
  370. height: 70px !important;
  371. }
  372. .uni-list-cell-hover {
  373. background-color: #eee;
  374. }
  375. .uni-list-cell-pd {
  376. padding: 22upx 30upx;
  377. }
  378. .uni-list-cell-left {
  379. font-size:28upx;
  380. padding: 0 30upx;
  381. }
  382. .uni-list-cell-db,
  383. .uni-list-cell-right {
  384. flex: 1;
  385. }
  386. .uni-list-cell::after {
  387. position: absolute;
  388. z-index: 3;
  389. right: 0;
  390. bottom: 0;
  391. left: 20upx;
  392. height: 1px;
  393. content: '';
  394. -webkit-transform: scaleY(.5);
  395. transform: scaleY(.5);
  396. background-color: #e7e6ef;
  397. }
  398. .uni-list .uni-list-cell:last-child::after {
  399. height: 0upx;
  400. }
  401. .uni-list-cell-last.uni-list-cell::after {
  402. height: 0upx;
  403. }
  404. .uni-list-cell-divider {
  405. position: relative;
  406. display: flex;
  407. color: black;
  408. background-color: #fff;
  409. padding:15upx 20upx;
  410. font-weight: 800;
  411. }
  412. .uni-list-cell-divider::before {
  413. position: absolute;
  414. right: 0;
  415. top: 0;
  416. left: 0;
  417. /*height: 1px;*/
  418. content: '';
  419. -webkit-transform: scaleY(.5);
  420. transform: scaleY(.5);
  421. background-color: #c8c7cc;
  422. }
  423. .uni-list-cell-divider::after {
  424. position: absolute;
  425. right: 0;
  426. bottom: 0;
  427. left: 0upx;
  428. /*height: 1px;*/
  429. content: '';
  430. -webkit-transform: scaleY(.5);
  431. transform: scaleY(.5);
  432. background-color: #c8c7cc;
  433. }
  434. .uni-list-cell-navigate {
  435. font-size:32upx;
  436. padding: 22upx 30upx;
  437. line-height: 48upx;
  438. position: relative;
  439. display: flex;
  440. box-sizing: border-box;
  441. width: 100%;
  442. flex: 1;
  443. justify-content: space-between;
  444. align-items: center;
  445. }
  446. .uni-list-cell-navigate {
  447. padding-right: 36upx;
  448. }
  449. .uni-navigate-badge {
  450. padding-right: 50upx;
  451. }
  452. .uni-list-cell-navigate.uni-navigate-right:after {
  453. font-family: uniicons;
  454. content: '\e583';
  455. position: absolute;
  456. right: 24upx;
  457. top: 50%;
  458. color: #bbb;
  459. -webkit-transform: translateY(-50%);
  460. transform: translateY(-50%);
  461. }
  462. .uni-list-cell-navigate.uni-navigate-bottom:after {
  463. font-family: uniicons;
  464. content: '\e581';
  465. position: absolute;
  466. right: 24upx;
  467. top: 50%;
  468. color: #bbb;
  469. -webkit-transform: translateY(-50%);
  470. transform: translateY(-50%);
  471. }
  472. .uni-list-cell-navigate.uni-navigate-bottom.uni-active::after {
  473. font-family: uniicons;
  474. content: '\e580';
  475. position: absolute;
  476. right: 24upx;
  477. top: 50%;
  478. color: #bbb;
  479. -webkit-transform: translateY(-50%);
  480. transform: translateY(-50%);
  481. }
  482. .uni-collapse.uni-list-cell {
  483. flex-direction: column;
  484. }
  485. .uni-list-cell-navigate.uni-active {
  486. background: #eee;
  487. }
  488. .uni-list.uni-collapse {
  489. box-sizing: border-box;
  490. height: 0;
  491. overflow: hidden;
  492. }
  493. .uni-collapse .uni-list-cell {
  494. padding-left: 20upx;
  495. }
  496. .uni-collapse .uni-list-cell::after {
  497. left: 52upx;
  498. }
  499. .uni-list.uni-active {
  500. height: auto;
  501. }
  502. /* 三行列表 */
  503. .uni-triplex-row {
  504. display: flex;
  505. flex: 1;
  506. width: 100%;
  507. box-sizing: border-box;
  508. flex-direction: row;
  509. padding: 22upx 30upx;
  510. }
  511. .uni-triplex-right,
  512. .uni-triplex-left {
  513. display: flex;
  514. flex-direction: column;
  515. }
  516. .uni-triplex-left {
  517. width: 84%;
  518. }
  519. .uni-triplex-left .uni-title{
  520. padding:8upx 0;
  521. }
  522. .uni-triplex-left .uni-text, .uni-triplex-left .uni-text-small{color:#999999;}
  523. .uni-triplex-right {
  524. width: 16%;
  525. text-align: right;
  526. }
  527. /* 图文列表 */
  528. .uni-media-list {
  529. padding: 25upx 12px;
  530. box-sizing: border-box;
  531. display: flex;
  532. width: 100%;
  533. flex-direction: row;
  534. align-items: center;
  535. }
  536. .uni-navigate-right.uni-media-list {
  537. padding-right: 74upx;
  538. }
  539. .uni-pull-right {
  540. flex-direction: row-reverse;
  541. }
  542. .uni-pull-right>.uni-media-list-logo {
  543. margin-right: 0upx;
  544. margin-left: 20upx;
  545. }
  546. .uni-media-list-logo {
  547. height: 85upx;
  548. width: 85upx;
  549. margin-right: 45upx;
  550. margin-left: 20upx;
  551. }
  552. .uni-media-list-logo image {
  553. height: 100%;
  554. width: 100%;
  555. }
  556. .uni-media-list-body {
  557. height: 85upx;
  558. display: flex;
  559. flex: 1;
  560. flex-direction: column;
  561. justify-content: space-between;
  562. align-items: flex-start;
  563. overflow: hidden;
  564. }
  565. .uni-media-list-text-top {
  566. width: 100%;
  567. line-height: 36upx;
  568. font-size: 32upx;
  569. display: flex;
  570. justify-content: space-between;
  571. }
  572. .uni-media-list-text-bottom {
  573. width: 90%;
  574. line-height: 30upx;
  575. font-size: 26upx;
  576. color: #8f8f94;
  577. }
  578. /* 九宫格 */
  579. .uni-grid-9 {
  580. background: #f2f2f2;
  581. width: 750upx;
  582. display: flex;
  583. flex-direction: row;
  584. flex-wrap: wrap;
  585. border-top: 2upx solid #eee;
  586. }
  587. .uni-grid-9-item {
  588. width: 250upx;
  589. height: 200upx;
  590. display: flex;
  591. flex-direction: column;
  592. align-items: center;
  593. justify-content: center;
  594. border-bottom: 2upx solid;
  595. border-right: 2upx solid;
  596. border-color: #eee;
  597. box-sizing: border-box;
  598. }
  599. .no-border-right {
  600. border-right: none;
  601. }
  602. .uni-grid-9-image {
  603. width: 100upx;
  604. height: 100upx;
  605. }
  606. .uni-grid-9-text {
  607. width: 250upx;
  608. line-height: 4upx;
  609. height: 40upx;
  610. text-align: center;
  611. font-size: 30upx;
  612. }
  613. .uni-grid-9-item-hover {
  614. background: rgba(0, 0, 0, 0.1);
  615. }
  616. /* 上传 */
  617. .uni-uploader {
  618. flex: 1;
  619. flex-direction: column;
  620. }
  621. .uni-uploader-head {
  622. display: flex;
  623. flex-direction: row;
  624. justify-content: space-between;
  625. }
  626. .uni-uploader-info {
  627. color: #B2B2B2;
  628. }
  629. .uni-uploader-body {
  630. margin-top: 16upx;
  631. }
  632. .uni-uploader__files {
  633. display: flex;
  634. flex-direction: row;
  635. flex-wrap: wrap;
  636. }
  637. .uni-uploader__file {
  638. margin: 10upx;
  639. width: 210upx;
  640. height: 210upx;
  641. }
  642. .uni-uploader__img {
  643. display: block;
  644. width: 210upx;
  645. height: 210upx;
  646. }
  647. .uni-uploader__input-box {
  648. position: relative;
  649. margin:10upx;
  650. width: 208upx;
  651. height: 208upx;
  652. border: 2upx solid #D9D9D9;
  653. }
  654. .uni-uploader__input-box:before,
  655. .uni-uploader__input-box:after {
  656. content: " ";
  657. position: absolute;
  658. top: 50%;
  659. left: 50%;
  660. -webkit-transform: translate(-50%, -50%);
  661. transform: translate(-50%, -50%);
  662. background-color: #D9D9D9;
  663. }
  664. .uni-uploader__input-box:before {
  665. width: 4upx;
  666. height: 79upx;
  667. }
  668. .uni-uploader__input-box:after {
  669. width: 79upx;
  670. height: 4upx;
  671. }
  672. .uni-uploader__input-box:active {
  673. border-color: #999999;
  674. }
  675. .uni-uploader__input-box:active:before,
  676. .uni-uploader__input-box:active:after {
  677. background-color: #999999;
  678. }
  679. .uni-uploader__input {
  680. position: absolute;
  681. z-index: 1;
  682. top: 0;
  683. left: 0;
  684. width: 100%;
  685. height: 100%;
  686. opacity: 0;
  687. }
  688. /*问题反馈*/
  689. .feedback-title {
  690. display: flex;
  691. flex-direction: row;
  692. justify-content: space-between;
  693. align-items: center;
  694. padding: 20upx;
  695. color: #8f8f94;
  696. font-size: 28upx;
  697. }
  698. .feedback-star-view.feedback-title {
  699. justify-content: flex-start;
  700. margin: 0;
  701. }
  702. .feedback-quick {
  703. position: relative;
  704. padding-right: 40upx;
  705. }
  706. .feedback-quick:after {
  707. font-family: uniicons;
  708. font-size: 40upx;
  709. content: '\e581';
  710. position: absolute;
  711. right: 0;
  712. top: 50%;
  713. color: #bbb;
  714. -webkit-transform: translateY(-50%);
  715. transform: translateY(-50%);
  716. }
  717. .feedback-body {
  718. background: #fff;
  719. }
  720. .feedback-textare {
  721. height: 200upx;
  722. font-size: 34upx;
  723. line-height: 50upx;
  724. width: 100%;
  725. box-sizing: border-box;
  726. padding: 20upx 30upx 0;
  727. }
  728. .feedback-input {
  729. font-size: 34upx;
  730. height: 50upx;
  731. min-height: 50upx;
  732. padding: 15upx 20upx;
  733. line-height: 50upx;
  734. }
  735. .feedback-uploader {
  736. padding: 22upx 20upx;
  737. }
  738. .feedback-star {
  739. font-family: uniicons;
  740. font-size: 40upx;
  741. margin-left: 6upx;
  742. }
  743. .feedback-star-view {
  744. margin-left: 20upx;
  745. }
  746. .feedback-star:after {
  747. content: '\e408';
  748. }
  749. .feedback-star.active {
  750. color: #FFB400;
  751. }
  752. .feedback-star.active:after {
  753. content: '\e438';
  754. }
  755. .feedback-submit {
  756. background: #007AFF;
  757. color: #FFFFFF;
  758. margin: 20upx;
  759. }
  760. /* input group */
  761. .uni-input-group {
  762. position: relative;
  763. padding: 0;
  764. border: 0;
  765. background-color: #fff;
  766. }
  767. .uni-input-group:before {
  768. position: absolute;
  769. top: 0;
  770. right: 0;
  771. left: 0;
  772. height: 2upx;
  773. content: '';
  774. transform: scaleY(.5);
  775. background-color: #c8c7cc;
  776. }
  777. .uni-input-group:after {
  778. position: absolute;
  779. right: 0;
  780. bottom: 0;
  781. left: 0;
  782. height: 2upx;
  783. content: '';
  784. transform: scaleY(.5);
  785. background-color: #c8c7cc;
  786. }
  787. .uni-input-row {
  788. position: relative;
  789. display: flex;
  790. flex-direction: row;
  791. font-size:28upx;
  792. padding: 22upx 30upx;
  793. justify-content: space-between;
  794. }
  795. .uni-input-group .uni-input-row:after {
  796. position: absolute;
  797. right: 0;
  798. bottom: 0;
  799. left: 30upx;
  800. height: 2upx;
  801. content: '';
  802. transform: scaleY(.5);
  803. background-color: #c8c7cc;
  804. }
  805. .uni-input-row label {
  806. line-height: 70upx;
  807. }
  808. /* textarea */
  809. .uni-textarea{
  810. width:100%;
  811. background:#FFF;
  812. }
  813. .uni-textarea textarea{
  814. width:96%;
  815. padding:18upx 2%;
  816. line-height:1.6;
  817. font-size:28upx;
  818. height:150upx;
  819. }
  820. /* tab bar */
  821. .uni-tab-bar {
  822. display: flex;
  823. flex: 1;
  824. flex-direction: column;
  825. overflow: hidden;
  826. height: 100%;
  827. }
  828. .uni-tab-bar .list {
  829. width: 750upx;
  830. height: 100%;
  831. }
  832. .uni-swiper-tab {
  833. width: 100%;
  834. white-space: nowrap;
  835. line-height: 100upx;
  836. height: 100upx;
  837. border-bottom: 1px solid #c8c7cc;
  838. }
  839. .swiper-tab-list {
  840. font-size: 30upx;
  841. width: 150upx;
  842. display: inline-block;
  843. text-align: center;
  844. color: #555;
  845. }
  846. .uni-tab-bar .active {
  847. color: #007AFF;
  848. }
  849. .uni-tab-bar .swiper-box {
  850. flex: 1;
  851. width: 100%;
  852. height: calc(100% - 100upx);
  853. }
  854. .uni-tab-bar-loading{
  855. padding:20upx 0;
  856. }
  857. /* steps */
  858. .uni-steps{padding:20upx 30upx; flex-grow: 1; display:flex; flex-wrap:wrap;}
  859. .uni-steps view{display:flex; flex-wrap:wrap; float:none;}
  860. .uni-steps .step{width:31.3%; margin:0 1%; flex-wrap:nowrap;}
  861. .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;}
  862. .uni-steps .step-content{width:100%; height:22upx; border-bottom:1px solid #F1F2F3;}
  863. .uni-steps .step-title{line-height:50upx; height:50upx; background:#FFFFFF; width:auto; overflow:hidden; padding-right:8upx;}
  864. .uni-steps .current .step-circle{background:#00B26A; color:#FFFFFF;}
  865. .uni-steps .current .step-content{border-color:#00B26A;}
  866. .uni-steps .current .step-title{color:#00B26A;}
  867. /* comment */
  868. .uni-comment{padding:5rpx 0; display: flex; flex-grow:1; flex-direction: column;}
  869. .uni-comment-list{flex-wrap:nowrap; padding:10rpx 0; margin:10rpx 0; width:100%; display: flex;}
  870. .uni-comment-face{width:70upx; height:70upx; border-radius:100%; margin-right:20upx; flex-shrink:0; overflow:hidden;}
  871. .uni-comment-face image{width:100%; border-radius:100%;}
  872. .uni-comment-body{width:100%;}
  873. .uni-comment-top{line-height:1.5em; justify-content:space-between;}
  874. .uni-comment-top text{color:#0A98D5; font-size:24upx;}
  875. .uni-comment-date{line-height:38upx; flex-direction:row; justify-content:space-between; display:flex !important; flex-grow:1;}
  876. .uni-comment-date view{color:#666666; font-size:24upx; line-height:38upx;}
  877. .uni-comment-content{line-height:1.6em; font-size:28upx; padding:8rpx 0;}
  878. .uni-comment-replay-btn{background:#FFF; font-size:24upx; line-height:28upx; padding:5rpx 20upx; border-radius:30upx; color:#333 !important; margin:0 10upx;}
  879. /* swiper msg */
  880. .uni-swiper-msg{width:100%; padding:12rpx 0; flex-wrap:nowrap; display:flex;}
  881. .uni-swiper-msg-icon{width:50upx; margin-right:20upx;}
  882. .uni-swiper-msg-icon image{width:100%; flex-shrink:0;}
  883. .uni-swiper-msg swiper{width:100%; height:50upx;}
  884. .uni-swiper-msg swiper-item{line-height:50upx;}
  885. /* product */
  886. .uni-product-list {
  887. display: flex;
  888. width: 100%;
  889. flex-wrap: wrap;
  890. flex-direction: row;
  891. }
  892. .uni-product {
  893. padding: 20upx;
  894. display: flex;
  895. flex-direction: column;
  896. }
  897. .image-view {
  898. height: 330upx;
  899. width: 330upx;
  900. margin:12upx 0;
  901. }
  902. .uni-product-image {
  903. height: 330upx;
  904. width: 330upx;
  905. }
  906. .uni-product-title {
  907. width: 300upx;
  908. word-break: break-all;
  909. display: -webkit-box;
  910. overflow: hidden;
  911. line-height:1.5;
  912. text-overflow: ellipsis;
  913. -webkit-box-orient: vertical;
  914. -webkit-line-clamp: 2;
  915. }
  916. .uni-product-price {
  917. margin-top:10upx;
  918. font-size: 28upx;
  919. line-height:1.5;
  920. position: relative;
  921. }
  922. .uni-product-price-original {
  923. color: #e80080;
  924. }
  925. .uni-product-price-favour {
  926. color: #888888;
  927. text-decoration: line-through;
  928. margin-left: 10upx;
  929. }
  930. .uni-product-tip {
  931. position: absolute;
  932. right: 10upx;
  933. background-color: #ff3333;
  934. color: #ffffff;
  935. padding: 0 10upx;
  936. border-radius: 5upx;
  937. }
  938. /* timeline */
  939. .uni-timeline {
  940. margin: 35upx 0;
  941. display: flex;
  942. flex-direction: column;
  943. position: relative;
  944. }
  945. .uni-timeline-item {
  946. display: flex;
  947. flex-direction: row;
  948. position: relative;
  949. padding-bottom: 20upx;
  950. box-sizing: border-box;
  951. overflow: hidden;
  952. }
  953. .uni-timeline-item .uni-timeline-item-keynode {
  954. width: 160upx;
  955. flex-shrink: 0;
  956. box-sizing: border-box;
  957. padding-right: 20upx;
  958. text-align: right;
  959. line-height: 65upx;
  960. }
  961. .uni-timeline-item .uni-timeline-item-divider {
  962. flex-shrink: 0;
  963. position: relative;
  964. width: 30upx;
  965. height: 30upx;
  966. top: 15upx;
  967. border-radius: 50%;
  968. background-color: #bbb;
  969. }
  970. .uni-timeline-item-divider::before,
  971. .uni-timeline-item-divider::after {
  972. position: absolute;
  973. left: 15upx;
  974. width: 1upx;
  975. height: 100vh;
  976. content: '';
  977. background: inherit;
  978. }
  979. .uni-timeline-item-divider::before {
  980. bottom: 100%;
  981. }
  982. .uni-timeline-item-divider::after {
  983. top: 100%;
  984. }
  985. .uni-timeline-last-item .uni-timeline-item-divider:after {
  986. display: none;
  987. }
  988. .uni-timeline-first-item .uni-timeline-item-divider:before {
  989. display: none;
  990. }
  991. .uni-timeline-item .uni-timeline-item-content {
  992. padding-left: 20upx;
  993. }
  994. .uni-timeline-last-item .bottom-border::after{
  995. display: none;
  996. }
  997. .uni-timeline-item-content .datetime{
  998. color: #CCCCCC;
  999. }
  1000. /* 自定义节点颜色 */
  1001. .uni-timeline-last-item .uni-timeline-item-divider{
  1002. background-color: #1AAD19;
  1003. }
  1004. /* uni-icon */
  1005. .uni-icon {
  1006. font-family: uniicons;
  1007. font-size: 24px;
  1008. font-weight: normal;
  1009. font-style: normal;
  1010. line-height: 1;
  1011. display: inline-block;
  1012. text-decoration: none;
  1013. -webkit-font-smoothing: antialiased;
  1014. }
  1015. .uni-icon.uni-active {
  1016. color: #007aff;
  1017. }
  1018. .uni-icon-contact:before {
  1019. content: '\e100';
  1020. }
  1021. .uni-icon-person:before {
  1022. content: '\e101';
  1023. }
  1024. .uni-icon-personadd:before {
  1025. content: '\e102';
  1026. }
  1027. .uni-icon-contact-filled:before {
  1028. content: '\e130';
  1029. }
  1030. .uni-icon-person-filled:before {
  1031. content: '\e131';
  1032. }
  1033. .uni-icon-personadd-filled:before {
  1034. content: '\e132';
  1035. }
  1036. .uni-icon-phone:before {
  1037. content: '\e200';
  1038. }
  1039. .uni-icon-email:before {
  1040. content: '\e201';
  1041. }
  1042. .uni-icon-chatbubble:before {
  1043. content: '\e202';
  1044. }
  1045. .uni-icon-chatboxes:before {
  1046. content: '\e203';
  1047. }
  1048. .uni-icon-phone-filled:before {
  1049. content: '\e230';
  1050. }
  1051. .uni-icon-email-filled:before {
  1052. content: '\e231';
  1053. }
  1054. .uni-icon-chatbubble-filled:before {
  1055. content: '\e232';
  1056. }
  1057. .uni-icon-chatboxes-filled:before {
  1058. content: '\e233';
  1059. }
  1060. .uni-icon-weibo:before {
  1061. content: '\e260';
  1062. }
  1063. .uni-icon-weixin:before {
  1064. content: '\e261';
  1065. }
  1066. .uni-icon-pengyouquan:before {
  1067. content: '\e262';
  1068. }
  1069. .uni-icon-chat:before {
  1070. content: '\e263';
  1071. }
  1072. .uni-icon-qq:before {
  1073. content: '\e264';
  1074. }
  1075. .uni-icon-videocam:before {
  1076. content: '\e300';
  1077. }
  1078. .uni-icon-camera:before {
  1079. content: '\e301';
  1080. }
  1081. .uni-icon-mic:before {
  1082. content: '\e302';
  1083. }
  1084. .uni-icon-location:before {
  1085. content: '\e303';
  1086. }
  1087. .uni-icon-mic-filled:before,
  1088. .uni-icon-speech:before {
  1089. content: '\e332';
  1090. }
  1091. .uni-icon-location-filled:before {
  1092. content: '\e333';
  1093. }
  1094. .uni-icon-micoff:before {
  1095. content: '\e360';
  1096. }
  1097. .uni-icon-image:before {
  1098. content: '\e363';
  1099. }
  1100. .uni-icon-map:before {
  1101. content: '\e364';
  1102. }
  1103. .uni-icon-compose:before {
  1104. content: '\e400';
  1105. }
  1106. .uni-icon-trash:before {
  1107. content: '\e401';
  1108. }
  1109. .uni-icon-upload:before {
  1110. content: '\e402';
  1111. }
  1112. .uni-icon-download:before {
  1113. content: '\e403';
  1114. }
  1115. .uni-icon-close:before {
  1116. content: '\e404';
  1117. }
  1118. .uni-icon-redo:before {
  1119. content: '\e405';
  1120. }
  1121. .uni-icon-undo:before {
  1122. content: '\e406';
  1123. }
  1124. .uni-icon-refresh:before {
  1125. content: '\e407';
  1126. }
  1127. .uni-icon-star:before {
  1128. content: '\e408';
  1129. }
  1130. .uni-icon-plus:before {
  1131. content: '\e409';
  1132. }
  1133. .uni-icon-minus:before {
  1134. content: '\e410';
  1135. }
  1136. .uni-icon-circle:before,
  1137. .uni-icon-checkbox:before {
  1138. content: '\e411';
  1139. }
  1140. .uni-icon-close-filled:before,
  1141. .uni-icon-clear:before {
  1142. content: '\e434';
  1143. }
  1144. .uni-icon-refresh-filled:before {
  1145. content: '\e437';
  1146. }
  1147. .uni-icon-star-filled:before {
  1148. content: '\e438';
  1149. }
  1150. .uni-icon-plus-filled:before {
  1151. content: '\e439';
  1152. }
  1153. .uni-icon-minus-filled:before {
  1154. content: '\e440';
  1155. }
  1156. .uni-icon-circle-filled:before {
  1157. content: '\e441';
  1158. }
  1159. .uni-icon-checkbox-filled:before {
  1160. content: '\e442';
  1161. }
  1162. .uni-icon-closeempty:before {
  1163. content: '\e460';
  1164. }
  1165. .uni-icon-refreshempty:before {
  1166. content: '\e461';
  1167. }
  1168. .uni-icon-reload:before {
  1169. content: '\e462';
  1170. }
  1171. .uni-icon-starhalf:before {
  1172. content: '\e463';
  1173. }
  1174. .uni-icon-spinner:before {
  1175. content: '\e464';
  1176. }
  1177. .uni-icon-spinner-cycle:before {
  1178. content: '\e465';
  1179. }
  1180. .uni-icon-search:before {
  1181. content: '\e466';
  1182. }
  1183. .uni-icon-plusempty:before {
  1184. content: '\e468';
  1185. }
  1186. .uni-icon-forward:before {
  1187. content: '\e470';
  1188. }
  1189. .uni-icon-back:before,
  1190. .uni-icon-left-nav:before {
  1191. content: '\e471';
  1192. }
  1193. .uni-icon-checkmarkempty:before {
  1194. content: '\e472';
  1195. }
  1196. .uni-icon-home:before {
  1197. content: '\e500';
  1198. }
  1199. .uni-icon-navigate:before {
  1200. content: '\e501';
  1201. }
  1202. .uni-icon-gear:before {
  1203. content: '\e502';
  1204. }
  1205. .uni-icon-paperplane:before {
  1206. content: '\e503';
  1207. }
  1208. .uni-icon-info:before {
  1209. content: '\e504';
  1210. }
  1211. .uni-icon-help:before {
  1212. content: '\e505';
  1213. }
  1214. .uni-icon-locked:before {
  1215. content: '\e506';
  1216. }
  1217. .uni-icon-more:before {
  1218. content: '\e507';
  1219. }
  1220. .uni-icon-flag:before {
  1221. content: '\e508';
  1222. }
  1223. .uni-icon-home-filled:before {
  1224. content: '\e530';
  1225. }
  1226. .uni-icon-gear-filled:before {
  1227. content: '\e532';
  1228. }
  1229. .uni-icon-info-filled:before {
  1230. content: '\e534';
  1231. }
  1232. .uni-icon-help-filled:before {
  1233. content: '\e535';
  1234. }
  1235. .uni-icon-more-filled:before {
  1236. content: '\e537';
  1237. }
  1238. .uni-icon-settings:before {
  1239. content: '\e560';
  1240. }
  1241. .uni-icon-list:before {
  1242. content: '\e562';
  1243. }
  1244. .uni-icon-bars:before {
  1245. content: '\e563';
  1246. }
  1247. .uni-icon-loop:before {
  1248. content: '\e565';
  1249. }
  1250. .uni-icon-paperclip:before {
  1251. content: '\e567';
  1252. }
  1253. .uni-icon-eye:before {
  1254. content: '\e568';
  1255. }
  1256. .uni-icon-arrowup:before {
  1257. content: '\e580';
  1258. }
  1259. .uni-icon-arrowdown:before {
  1260. content: '\e581';
  1261. }
  1262. .uni-icon-arrowleft:before {
  1263. content: '\e582';
  1264. }
  1265. .uni-icon-arrowright:before {
  1266. content: '\e583';
  1267. }
  1268. .uni-icon-arrowthinup:before {
  1269. content: '\e584';
  1270. }
  1271. .uni-icon-arrowthindown:before {
  1272. content: '\e585';
  1273. }
  1274. .uni-icon-arrowthinleft:before {
  1275. content: '\e586';
  1276. }
  1277. .uni-icon-arrowthinright:before {
  1278. content: '\e587';
  1279. }
  1280. .uni-icon-pulldown:before {
  1281. content: '\e588';
  1282. }
  1283. .uni-icon-scan:before {
  1284. content: "\e612";
  1285. }