jquery-weui.css 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  1. /**
  2. * jQuery WeUI V1.0.1
  3. * By 言川
  4. * http://lihongxun945.github.io/jquery-weui/
  5. */
  6. .preloader {
  7. width: 20px;
  8. height: 20px;
  9. -webkit-transform-origin: 50%;
  10. transform-origin: 50%;
  11. -webkit-animation: preloader-spin 1s steps(12, end) infinite;
  12. animation: preloader-spin 1s steps(12, end) infinite;
  13. }
  14. .preloader:after {
  15. display: block;
  16. width: 100%;
  17. height: 100%;
  18. content: "";
  19. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  20. background-repeat: no-repeat;
  21. background-position: 50%;
  22. background-size: 100%;
  23. }
  24. @-webkit-keyframes preloader-spin {
  25. 100% {
  26. -webkit-transform: rotate(360deg);
  27. transform: rotate(360deg);
  28. }
  29. }
  30. @keyframes preloader-spin {
  31. 100% {
  32. -webkit-transform: rotate(360deg);
  33. transform: rotate(360deg);
  34. }
  35. }
  36. /*
  37. .hairline(@position, @color) when (@position = top) {
  38. border-top: 1px solid @color;
  39. }
  40. .hairline(@position, @color) when (@position = left) {
  41. border-left: 1px solid @color;
  42. }
  43. .hairline(@position, @color) when (@position = bottom) {
  44. border-bottom: 1px solid @color;
  45. }
  46. .hairline(@position, @color) when (@position = right) {
  47. border-right: 1px solid @color;
  48. }
  49. // For right and bottom
  50. .hairline-remove(@position) when not (@position = left) and not (@position = top) {
  51. border-left: 0;
  52. border-bottom: 0;
  53. }
  54. // For left and top
  55. .hairline-remove(@position) when not (@position = right) and not (@position = bottom) {
  56. border-right: 0;
  57. border-top: 0;
  58. }
  59. // For right and bottom
  60. .hairline-color(@position, @color) when not (@position = left) and not (@position = top) {
  61. border-right-color: @color;
  62. border-bottom-color: @color;
  63. }
  64. // For left and top
  65. .hairline-color(@position, @color) when not (@position = right) and not (@position = bottom) {
  66. border-left-color: @color;
  67. border-top-color: @color;
  68. }
  69. */
  70. label > * {
  71. pointer-events: none;
  72. }
  73. html {
  74. font-size: 20px;
  75. }
  76. body {
  77. font-size: 16px;
  78. }
  79. @media only screen and (min-width: 400px) {
  80. html {
  81. font-size: 21.33333333px !important;
  82. }
  83. }
  84. @media only screen and (min-width: 414px) {
  85. html {
  86. font-size: 22.08px !important;
  87. }
  88. }
  89. @media only screen and (min-width: 480px) {
  90. html {
  91. font-size: 25.6px !important;
  92. }
  93. }
  94. .weui_navbar {
  95. z-index: 10;
  96. }
  97. .weui-popup-overlay,
  98. .weui-popup-container {
  99. z-index: 1000;
  100. }
  101. .weui-mask {
  102. z-index: 1000;
  103. }
  104. /* === Grid === */
  105. .weui-row {
  106. display: -webkit-box;
  107. display: -ms-flexbox;
  108. display: -webkit-flex;
  109. display: flex;
  110. -webkit-box-pack: justify;
  111. -ms-flex-pack: justify;
  112. -webkit-justify-content: space-between;
  113. justify-content: space-between;
  114. -webkit-box-lines: multiple;
  115. -moz-box-lines: multiple;
  116. -webkit-flex-wrap: wrap;
  117. -ms-flex-wrap: wrap;
  118. flex-wrap: wrap;
  119. -webkit-box-align: start;
  120. -ms-flex-align: start;
  121. -webkit-align-items: flex-start;
  122. align-items: flex-start;
  123. }
  124. .weui-row > [class*="col-"] {
  125. box-sizing: border-box;
  126. }
  127. .weui-row .col-auto {
  128. width: 100%;
  129. }
  130. .weui-row .weui-col-100 {
  131. width: 100%;
  132. width: calc((100% - 15px*0) / 1);
  133. }
  134. .weui-row.weui-no-gutter .weui-col-100 {
  135. width: 100%;
  136. }
  137. .weui-row .weui-col-95 {
  138. width: 95%;
  139. width: calc((100% - 15px*0.05263157894736836) / 1.0526315789473684);
  140. }
  141. .weui-row.weui-no-gutter .weui-col-95 {
  142. width: 95%;
  143. }
  144. .weui-row .weui-col-90 {
  145. width: 90%;
  146. width: calc((100% - 15px*0.11111111111111116) / 1.1111111111111112);
  147. }
  148. .weui-row.weui-no-gutter .weui-col-90 {
  149. width: 90%;
  150. }
  151. .weui-row .weui-col-85 {
  152. width: 85%;
  153. width: calc((100% - 15px*0.17647058823529416) / 1.1764705882352942);
  154. }
  155. .weui-row.weui-no-gutter .weui-col-85 {
  156. width: 85%;
  157. }
  158. .weui-row .weui-col-80 {
  159. width: 80%;
  160. width: calc((100% - 15px*0.25) / 1.25);
  161. }
  162. .weui-row.weui-no-gutter .weui-col-80 {
  163. width: 80%;
  164. }
  165. .weui-row .weui-col-75 {
  166. width: 75%;
  167. width: calc((100% - 15px*0.33333333333333326) / 1.3333333333333333);
  168. }
  169. .weui-row.weui-no-gutter .weui-col-75 {
  170. width: 75%;
  171. }
  172. .weui-row .weui-col-66 {
  173. width: 66.66666666666666%;
  174. width: calc((100% - 15px*0.5000000000000002) / 1.5000000000000002);
  175. }
  176. .weui-row.weui-no-gutter .weui-col-66 {
  177. width: 66.66666666666666%;
  178. }
  179. .weui-row .weui-col-60 {
  180. width: 60%;
  181. width: calc((100% - 15px*0.6666666666666667) / 1.6666666666666667);
  182. }
  183. .weui-row.weui-no-gutter .weui-col-60 {
  184. width: 60%;
  185. }
  186. .weui-row .weui-col-50 {
  187. width: 50%;
  188. width: calc((100% - 15px*1) / 2);
  189. }
  190. .weui-row.weui-no-gutter .weui-col-50 {
  191. width: 50%;
  192. }
  193. .weui-row .weui-col-40 {
  194. width: 40%;
  195. width: calc((100% - 15px*1.5) / 2.5);
  196. }
  197. .weui-row.weui-no-gutter .weui-col-40 {
  198. width: 40%;
  199. }
  200. .weui-row .weui-col-33 {
  201. width: 33.333333333333336%;
  202. width: calc((100% - 15px*2) / 3);
  203. }
  204. .weui-row.weui-no-gutter .weui-col-33 {
  205. width: 33.333333333333336%;
  206. }
  207. .weui-row .weui-col-25 {
  208. width: 25%;
  209. width: calc((100% - 15px*3) / 4);
  210. }
  211. .weui-row.weui-no-gutter .weui-col-25 {
  212. width: 25%;
  213. }
  214. .weui-row .weui-col-20 {
  215. width: 20%;
  216. width: calc((100% - 15px*4) / 5);
  217. }
  218. .weui-row.weui-no-gutter .weui-col-20 {
  219. width: 20%;
  220. }
  221. .weui-row .weui-col-15 {
  222. width: 15%;
  223. width: calc((100% - 15px*5.666666666666667) / 6.666666666666667);
  224. }
  225. .weui-row.weui-no-gutter .weui-col-15 {
  226. width: 15%;
  227. }
  228. .weui-row .weui-col-10 {
  229. width: 10%;
  230. width: calc((100% - 15px*9) / 10);
  231. }
  232. .weui-row.weui-no-gutter .weui-col-10 {
  233. width: 10%;
  234. }
  235. .weui-row .weui-col-5 {
  236. width: 5%;
  237. width: calc((100% - 15px*19) / 20);
  238. }
  239. .weui-row.weui-no-gutter .weui-col-5 {
  240. width: 5%;
  241. }
  242. .weui-row .weui-col-auto:nth-last-child(1),
  243. .weui-row .weui-col-auto:nth-last-child(1) ~ .weui-col-auto {
  244. width: 100%;
  245. width: calc((100% - 15px*0) / 1);
  246. }
  247. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(1),
  248. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(1) ~ .weui-col-auto {
  249. width: 100%;
  250. }
  251. .weui-row .weui-col-auto:nth-last-child(2),
  252. .weui-row .weui-col-auto:nth-last-child(2) ~ .weui-col-auto {
  253. width: 50%;
  254. width: calc((100% - 15px*1) / 2);
  255. }
  256. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(2),
  257. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(2) ~ .weui-col-auto {
  258. width: 50%;
  259. }
  260. .weui-row .weui-col-auto:nth-last-child(3),
  261. .weui-row .weui-col-auto:nth-last-child(3) ~ .weui-col-auto {
  262. width: 33.33333333%;
  263. width: calc((100% - 15px*2) / 3);
  264. }
  265. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(3),
  266. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(3) ~ .weui-col-auto {
  267. width: 33.33333333%;
  268. }
  269. .weui-row .weui-col-auto:nth-last-child(4),
  270. .weui-row .weui-col-auto:nth-last-child(4) ~ .weui-col-auto {
  271. width: 25%;
  272. width: calc((100% - 15px*3) / 4);
  273. }
  274. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(4),
  275. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(4) ~ .weui-col-auto {
  276. width: 25%;
  277. }
  278. .weui-row .weui-col-auto:nth-last-child(5),
  279. .weui-row .weui-col-auto:nth-last-child(5) ~ .weui-col-auto {
  280. width: 20%;
  281. width: calc((100% - 15px*4) / 5);
  282. }
  283. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(5),
  284. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(5) ~ .weui-col-auto {
  285. width: 20%;
  286. }
  287. .weui-row .weui-col-auto:nth-last-child(6),
  288. .weui-row .weui-col-auto:nth-last-child(6) ~ .weui-col-auto {
  289. width: 16.66666667%;
  290. width: calc((100% - 15px*5) / 6);
  291. }
  292. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(6),
  293. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(6) ~ .weui-col-auto {
  294. width: 16.66666667%;
  295. }
  296. .weui-row .weui-col-auto:nth-last-child(7),
  297. .weui-row .weui-col-auto:nth-last-child(7) ~ .weui-col-auto {
  298. width: 14.28571429%;
  299. width: calc((100% - 15px*6) / 7);
  300. }
  301. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(7),
  302. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(7) ~ .weui-col-auto {
  303. width: 14.28571429%;
  304. }
  305. .weui-row .weui-col-auto:nth-last-child(8),
  306. .weui-row .weui-col-auto:nth-last-child(8) ~ .weui-col-auto {
  307. width: 12.5%;
  308. width: calc((100% - 15px*7) / 8);
  309. }
  310. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(8),
  311. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(8) ~ .weui-col-auto {
  312. width: 12.5%;
  313. }
  314. .weui-row .weui-col-auto:nth-last-child(9),
  315. .weui-row .weui-col-auto:nth-last-child(9) ~ .weui-col-auto {
  316. width: 11.11111111%;
  317. width: calc((100% - 15px*8) / 9);
  318. }
  319. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(9),
  320. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(9) ~ .weui-col-auto {
  321. width: 11.11111111%;
  322. }
  323. .weui-row .weui-col-auto:nth-last-child(10),
  324. .weui-row .weui-col-auto:nth-last-child(10) ~ .weui-col-auto {
  325. width: 10%;
  326. width: calc((100% - 15px*9) / 10);
  327. }
  328. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(10),
  329. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(10) ~ .weui-col-auto {
  330. width: 10%;
  331. }
  332. .weui-row .weui-col-auto:nth-last-child(11),
  333. .weui-row .weui-col-auto:nth-last-child(11) ~ .weui-col-auto {
  334. width: 9.09090909%;
  335. width: calc((100% - 15px*10) / 11);
  336. }
  337. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(11),
  338. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(11) ~ .weui-col-auto {
  339. width: 9.09090909%;
  340. }
  341. .weui-row .weui-col-auto:nth-last-child(12),
  342. .weui-row .weui-col-auto:nth-last-child(12) ~ .weui-col-auto {
  343. width: 8.33333333%;
  344. width: calc((100% - 15px*11) / 12);
  345. }
  346. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(12),
  347. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(12) ~ .weui-col-auto {
  348. width: 8.33333333%;
  349. }
  350. .weui-row .weui-col-auto:nth-last-child(13),
  351. .weui-row .weui-col-auto:nth-last-child(13) ~ .weui-col-auto {
  352. width: 7.69230769%;
  353. width: calc((100% - 15px*12) / 13);
  354. }
  355. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(13),
  356. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(13) ~ .weui-col-auto {
  357. width: 7.69230769%;
  358. }
  359. .weui-row .weui-col-auto:nth-last-child(14),
  360. .weui-row .weui-col-auto:nth-last-child(14) ~ .weui-col-auto {
  361. width: 7.14285714%;
  362. width: calc((100% - 15px*13) / 14);
  363. }
  364. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(14),
  365. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(14) ~ .weui-col-auto {
  366. width: 7.14285714%;
  367. }
  368. .weui-row .weui-col-auto:nth-last-child(15),
  369. .weui-row .weui-col-auto:nth-last-child(15) ~ .weui-col-auto {
  370. width: 6.66666667%;
  371. width: calc((100% - 15px*14) / 15);
  372. }
  373. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(15),
  374. .weui-row.weui-no-gutter .weui-col-auto:nth-last-child(15) ~ .weui-col-auto {
  375. width: 6.66666667%;
  376. }
  377. @media all and (min-width: 768px) {
  378. .row .tablet-100 {
  379. width: 100%;
  380. width: calc((100% - 15px*0) / 1);
  381. }
  382. .row.no-gutter .tablet-100 {
  383. width: 100%;
  384. }
  385. .row .tablet-95 {
  386. width: 95%;
  387. width: calc((100% - 15px*0.05263157894736836) / 1.0526315789473684);
  388. }
  389. .row.no-gutter .tablet-95 {
  390. width: 95%;
  391. }
  392. .row .tablet-90 {
  393. width: 90%;
  394. width: calc((100% - 15px*0.11111111111111116) / 1.1111111111111112);
  395. }
  396. .row.no-gutter .tablet-90 {
  397. width: 90%;
  398. }
  399. .row .tablet-85 {
  400. width: 85%;
  401. width: calc((100% - 15px*0.17647058823529416) / 1.1764705882352942);
  402. }
  403. .row.no-gutter .tablet-85 {
  404. width: 85%;
  405. }
  406. .row .tablet-80 {
  407. width: 80%;
  408. width: calc((100% - 15px*0.25) / 1.25);
  409. }
  410. .row.no-gutter .tablet-80 {
  411. width: 80%;
  412. }
  413. .row .tablet-75 {
  414. width: 75%;
  415. width: calc((100% - 15px*0.33333333333333326) / 1.3333333333333333);
  416. }
  417. .row.no-gutter .tablet-75 {
  418. width: 75%;
  419. }
  420. .row .tablet-66 {
  421. width: 66.66666666666666%;
  422. width: calc((100% - 15px*0.5000000000000002) / 1.5000000000000002);
  423. }
  424. .row.no-gutter .tablet-66 {
  425. width: 66.66666666666666%;
  426. }
  427. .row .tablet-60 {
  428. width: 60%;
  429. width: calc((100% - 15px*0.6666666666666667) / 1.6666666666666667);
  430. }
  431. .row.no-gutter .tablet-60 {
  432. width: 60%;
  433. }
  434. .row .tablet-50 {
  435. width: 50%;
  436. width: calc((100% - 15px*1) / 2);
  437. }
  438. .row.no-gutter .tablet-50 {
  439. width: 50%;
  440. }
  441. .row .tablet-40 {
  442. width: 40%;
  443. width: calc((100% - 15px*1.5) / 2.5);
  444. }
  445. .row.no-gutter .tablet-40 {
  446. width: 40%;
  447. }
  448. .row .tablet-33 {
  449. width: 33.333333333333336%;
  450. width: calc((100% - 15px*2) / 3);
  451. }
  452. .row.no-gutter .tablet-33 {
  453. width: 33.333333333333336%;
  454. }
  455. .row .tablet-25 {
  456. width: 25%;
  457. width: calc((100% - 15px*3) / 4);
  458. }
  459. .row.no-gutter .tablet-25 {
  460. width: 25%;
  461. }
  462. .row .tablet-20 {
  463. width: 20%;
  464. width: calc((100% - 15px*4) / 5);
  465. }
  466. .row.no-gutter .tablet-20 {
  467. width: 20%;
  468. }
  469. .row .tablet-15 {
  470. width: 15%;
  471. width: calc((100% - 15px*5.666666666666667) / 6.666666666666667);
  472. }
  473. .row.no-gutter .tablet-15 {
  474. width: 15%;
  475. }
  476. .row .tablet-10 {
  477. width: 10%;
  478. width: calc((100% - 15px*9) / 10);
  479. }
  480. .row.no-gutter .tablet-10 {
  481. width: 10%;
  482. }
  483. .row .tablet-5 {
  484. width: 5%;
  485. width: calc((100% - 15px*19) / 20);
  486. }
  487. .row.no-gutter .tablet-5 {
  488. width: 5%;
  489. }
  490. .row .tablet-auto:nth-last-child(1),
  491. .row .tablet-auto:nth-last-child(1) ~ .col-auto {
  492. width: 100%;
  493. width: calc((100% - 15px*0) / 1);
  494. }
  495. .row.no-gutter .tablet-auto:nth-last-child(1),
  496. .row.no-gutter .tablet-auto:nth-last-child(1) ~ .tablet-auto {
  497. width: 100%;
  498. }
  499. .row .tablet-auto:nth-last-child(2),
  500. .row .tablet-auto:nth-last-child(2) ~ .col-auto {
  501. width: 50%;
  502. width: calc((100% - 15px*1) / 2);
  503. }
  504. .row.no-gutter .tablet-auto:nth-last-child(2),
  505. .row.no-gutter .tablet-auto:nth-last-child(2) ~ .tablet-auto {
  506. width: 50%;
  507. }
  508. .row .tablet-auto:nth-last-child(3),
  509. .row .tablet-auto:nth-last-child(3) ~ .col-auto {
  510. width: 33.33333333%;
  511. width: calc((100% - 15px*2) / 3);
  512. }
  513. .row.no-gutter .tablet-auto:nth-last-child(3),
  514. .row.no-gutter .tablet-auto:nth-last-child(3) ~ .tablet-auto {
  515. width: 33.33333333%;
  516. }
  517. .row .tablet-auto:nth-last-child(4),
  518. .row .tablet-auto:nth-last-child(4) ~ .col-auto {
  519. width: 25%;
  520. width: calc((100% - 15px*3) / 4);
  521. }
  522. .row.no-gutter .tablet-auto:nth-last-child(4),
  523. .row.no-gutter .tablet-auto:nth-last-child(4) ~ .tablet-auto {
  524. width: 25%;
  525. }
  526. .row .tablet-auto:nth-last-child(5),
  527. .row .tablet-auto:nth-last-child(5) ~ .col-auto {
  528. width: 20%;
  529. width: calc((100% - 15px*4) / 5);
  530. }
  531. .row.no-gutter .tablet-auto:nth-last-child(5),
  532. .row.no-gutter .tablet-auto:nth-last-child(5) ~ .tablet-auto {
  533. width: 20%;
  534. }
  535. .row .tablet-auto:nth-last-child(6),
  536. .row .tablet-auto:nth-last-child(6) ~ .col-auto {
  537. width: 16.66666667%;
  538. width: calc((100% - 15px*5) / 6);
  539. }
  540. .row.no-gutter .tablet-auto:nth-last-child(6),
  541. .row.no-gutter .tablet-auto:nth-last-child(6) ~ .tablet-auto {
  542. width: 16.66666667%;
  543. }
  544. .row .tablet-auto:nth-last-child(7),
  545. .row .tablet-auto:nth-last-child(7) ~ .col-auto {
  546. width: 14.28571429%;
  547. width: calc((100% - 15px*6) / 7);
  548. }
  549. .row.no-gutter .tablet-auto:nth-last-child(7),
  550. .row.no-gutter .tablet-auto:nth-last-child(7) ~ .tablet-auto {
  551. width: 14.28571429%;
  552. }
  553. .row .tablet-auto:nth-last-child(8),
  554. .row .tablet-auto:nth-last-child(8) ~ .col-auto {
  555. width: 12.5%;
  556. width: calc((100% - 15px*7) / 8);
  557. }
  558. .row.no-gutter .tablet-auto:nth-last-child(8),
  559. .row.no-gutter .tablet-auto:nth-last-child(8) ~ .tablet-auto {
  560. width: 12.5%;
  561. }
  562. .row .tablet-auto:nth-last-child(9),
  563. .row .tablet-auto:nth-last-child(9) ~ .col-auto {
  564. width: 11.11111111%;
  565. width: calc((100% - 15px*8) / 9);
  566. }
  567. .row.no-gutter .tablet-auto:nth-last-child(9),
  568. .row.no-gutter .tablet-auto:nth-last-child(9) ~ .tablet-auto {
  569. width: 11.11111111%;
  570. }
  571. .row .tablet-auto:nth-last-child(10),
  572. .row .tablet-auto:nth-last-child(10) ~ .col-auto {
  573. width: 10%;
  574. width: calc((100% - 15px*9) / 10);
  575. }
  576. .row.no-gutter .tablet-auto:nth-last-child(10),
  577. .row.no-gutter .tablet-auto:nth-last-child(10) ~ .tablet-auto {
  578. width: 10%;
  579. }
  580. .row .tablet-auto:nth-last-child(11),
  581. .row .tablet-auto:nth-last-child(11) ~ .col-auto {
  582. width: 9.09090909%;
  583. width: calc((100% - 15px*10) / 11);
  584. }
  585. .row.no-gutter .tablet-auto:nth-last-child(11),
  586. .row.no-gutter .tablet-auto:nth-last-child(11) ~ .tablet-auto {
  587. width: 9.09090909%;
  588. }
  589. .row .tablet-auto:nth-last-child(12),
  590. .row .tablet-auto:nth-last-child(12) ~ .col-auto {
  591. width: 8.33333333%;
  592. width: calc((100% - 15px*11) / 12);
  593. }
  594. .row.no-gutter .tablet-auto:nth-last-child(12),
  595. .row.no-gutter .tablet-auto:nth-last-child(12) ~ .tablet-auto {
  596. width: 8.33333333%;
  597. }
  598. .row .tablet-auto:nth-last-child(13),
  599. .row .tablet-auto:nth-last-child(13) ~ .col-auto {
  600. width: 7.69230769%;
  601. width: calc((100% - 15px*12) / 13);
  602. }
  603. .row.no-gutter .tablet-auto:nth-last-child(13),
  604. .row.no-gutter .tablet-auto:nth-last-child(13) ~ .tablet-auto {
  605. width: 7.69230769%;
  606. }
  607. .row .tablet-auto:nth-last-child(14),
  608. .row .tablet-auto:nth-last-child(14) ~ .col-auto {
  609. width: 7.14285714%;
  610. width: calc((100% - 15px*13) / 14);
  611. }
  612. .row.no-gutter .tablet-auto:nth-last-child(14),
  613. .row.no-gutter .tablet-auto:nth-last-child(14) ~ .tablet-auto {
  614. width: 7.14285714%;
  615. }
  616. .row .tablet-auto:nth-last-child(15),
  617. .row .tablet-auto:nth-last-child(15) ~ .col-auto {
  618. width: 6.66666667%;
  619. width: calc((100% - 15px*14) / 15);
  620. }
  621. .row.no-gutter .tablet-auto:nth-last-child(15),
  622. .row.no-gutter .tablet-auto:nth-last-child(15) ~ .tablet-auto {
  623. width: 6.66666667%;
  624. }
  625. }
  626. .weui-cell__hd img {
  627. display: block;
  628. margin-right: 5px;
  629. }
  630. .weui-dialog,
  631. .weui-toast {
  632. -webkit-transition-duration: .2s;
  633. transition-duration: .2s;
  634. opacity: 0;
  635. -webkit-transform: scale(0.9) translate(-50%, -50%);
  636. transform: scale(0.9) translate(-50%, -50%);
  637. -webkit-transform-origin: 0 0;
  638. transform-origin: 0 0;
  639. visibility: hidden;
  640. margin: 0;
  641. top: 45%;
  642. z-index: 2000;
  643. }
  644. .weui-dialog .weui-dialog__btn.default,
  645. .weui-toast .weui-dialog__btn.default {
  646. color: #5f646e;
  647. }
  648. .weui-dialog .weui-dialog__btn + .weui-dialog__btn,
  649. .weui-toast .weui-dialog__btn + .weui-dialog__btn {
  650. position: relative;
  651. }
  652. .weui-dialog .weui-dialog__btn + .weui-dialog__btn:after,
  653. .weui-toast .weui-dialog__btn + .weui-dialog__btn:after {
  654. content: " ";
  655. position: absolute;
  656. left: 0;
  657. top: 0;
  658. width: 1px;
  659. height: 100%;
  660. border-left: 1px solid #D5D5D6;
  661. color: #D5D5D6;
  662. -webkit-transform-origin: 0 0;
  663. transform-origin: 0 0;
  664. -webkit-transform: scaleX(0.5);
  665. transform: scaleX(0.5);
  666. }
  667. .weui-dialog.weui-dialog--visible,
  668. .weui-toast.weui-dialog--visible,
  669. .weui-dialog.weui-toast--visible,
  670. .weui-toast.weui-toast--visible {
  671. opacity: 1;
  672. visibility: visible;
  673. -webkit-transform: scale(1) translate(-50%, -50%);
  674. transform: scale(1) translate(-50%, -50%);
  675. }
  676. .weui-toast_forbidden {
  677. color: #F76260;
  678. }
  679. .weui-toast_cancel .weui-icon-toast:before {
  680. content: "\EA0D";
  681. }
  682. .weui-toast_forbidden .weui-icon-toast:before {
  683. content: "\EA0B";
  684. color: #F76260;
  685. }
  686. .weui-toast_text {
  687. min-height: 1em;
  688. width: auto;
  689. height: 45px;
  690. border-radius: 25px;
  691. margin-left: 0;
  692. -webkit-transform: scale(0.9) translate3d(-50%, 0, 0);
  693. transform: scale(0.9) translate3d(-50%, 0, 0);
  694. -webkit-transform-origin: left;
  695. transform-origin: left;
  696. }
  697. .weui-toast_text.weui-toast--visible {
  698. -webkit-transform: scale(1) translate3d(-50%, 0, 0);
  699. transform: scale(1) translate3d(-50%, 0, 0);
  700. }
  701. .weui-toast_text .weui-icon-toast {
  702. display: none;
  703. }
  704. .weui-toast_text .weui-toast_content {
  705. margin: 10px 15px;
  706. }
  707. .weui-mask {
  708. opacity: 0;
  709. -webkit-transition-duration: .3s;
  710. transition-duration: .3s;
  711. visibility: hidden;
  712. }
  713. .weui-mask.weui-mask--visible {
  714. opacity: 1;
  715. visibility: visible;
  716. }
  717. .weui-prompt-input {
  718. padding: 4px 6px;
  719. border: 1px solid #ccc;
  720. box-sizing: border-box;
  721. height: 2em;
  722. width: 80%;
  723. margin-top: 10px;
  724. }
  725. .weui-pull-to-refresh {
  726. margin-top: -50px;
  727. -webkit-transition: -webkit-transform .4s;
  728. transition: -webkit-transform .4s;
  729. transition: transform .4s;
  730. transition: transform .4s, -webkit-transform .4s;
  731. }
  732. .weui-pull-to-refresh.refreshing {
  733. -webkit-transform: translate3d(0, 50px, 0);
  734. transform: translate3d(0, 50px, 0);
  735. }
  736. .weui-pull-to-refresh.touching {
  737. -webkit-transition-duration: 0s;
  738. transition-duration: 0s;
  739. }
  740. .weui-pull-to-refresh__layer {
  741. height: 30px;
  742. line-height: 30px;
  743. padding: 10px;
  744. text-align: center;
  745. }
  746. .weui-pull-to-refresh__layer .down {
  747. display: inline-block;
  748. }
  749. .weui-pull-to-refresh__layer .up,
  750. .weui-pull-to-refresh__layer .refresh {
  751. display: none;
  752. }
  753. .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow {
  754. display: inline-block;
  755. z-index: 10;
  756. width: 20px;
  757. height: 20px;
  758. margin-right: 4px;
  759. vertical-align: -4px;
  760. background: no-repeat center;
  761. background-size: 13px 20px;
  762. -webkit-transition-duration: 300ms;
  763. transition-duration: 300ms;
  764. -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
  765. transform: rotate(0deg) translate3d(0, 0, 0);
  766. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2026%2040'%3E%3Cpolygon%20points%3D'9%2C22%209%2C0%2017%2C0%2017%2C22%2026%2C22%2013.5%2C40%200%2C22'%20fill%3D'%238c8c8c'%2F%3E%3C%2Fsvg%3E");
  767. }
  768. .weui-pull-to-refresh__layer .weui-pull-to-refresh__preloader {
  769. display: none;
  770. vertical-align: -4px;
  771. margin-right: 4px;
  772. width: 20px;
  773. height: 20px;
  774. -webkit-transform-origin: 50%;
  775. transform-origin: 50%;
  776. -webkit-animation: preloader-spin 1s steps(12, end) infinite;
  777. animation: preloader-spin 1s steps(12, end) infinite;
  778. }
  779. .weui-pull-to-refresh__layer .weui-pull-to-refresh__preloader:after {
  780. display: block;
  781. width: 100%;
  782. height: 100%;
  783. content: "";
  784. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  785. background-repeat: no-repeat;
  786. background-position: 50%;
  787. background-size: 100%;
  788. }
  789. .pull-up .weui-pull-to-refresh__layer .down,
  790. .refreshing .weui-pull-to-refresh__layer .down {
  791. display: none;
  792. }
  793. .pull-up .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow {
  794. display: inline-block;
  795. -webkit-transform: rotate(180deg) translate3d(0, 0, 0);
  796. transform: rotate(180deg) translate3d(0, 0, 0);
  797. }
  798. .pull-up .weui-pull-to-refresh__layer .up {
  799. display: inline-block;
  800. }
  801. .pull-down .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow {
  802. display: inline-block;
  803. }
  804. .pull-down .weui-pull-to-refresh__layer .down {
  805. display: inline-block;
  806. }
  807. .refreshing .weui-pull-to-refresh__layer .weui-pull-to-refresh__arrow {
  808. display: none;
  809. }
  810. .refreshing .weui-pull-to-refresh__layer .weui-pull-to-refresh__preloader {
  811. display: inline-block;
  812. }
  813. .refreshing .weui-pull-to-refresh__layer .refresh {
  814. display: inline-block;
  815. }
  816. @keyframes preloader-spin {
  817. 100% {
  818. -webkit-transform: rotate(360deg);
  819. transform: rotate(360deg);
  820. }
  821. }
  822. .weui-tab__bd-item.weui-pull-to-refresh {
  823. position: absolute;
  824. top: 50px;
  825. }
  826. .weui-tabbar__item {
  827. position: relative;
  828. }
  829. .weui-tabbar__item.weui-bar__item--on .weui-tabbar__label {
  830. color: #04BE02;
  831. }
  832. .weui-navbar__item {
  833. color: #888;
  834. }
  835. .weui-navbar__item.weui-bar__item--on {
  836. color: #666;
  837. background-color: #f1f1f1;
  838. }
  839. .weui-tab__bd {
  840. box-sizing: border-box;
  841. height: 100%;
  842. }
  843. .weui-tab__bd .weui-tab__bd-item {
  844. display: none;
  845. height: 100%;
  846. overflow: auto;
  847. }
  848. .weui-tab__bd .weui-tab__bd-item.weui-tab__bd-item--active {
  849. display: block;
  850. }
  851. .weui-navbar + .weui-tab__bd {
  852. padding-top: 50px;
  853. }
  854. .toolbar {
  855. position: relative;
  856. width: 100%;
  857. font-size: .85rem;
  858. line-height: 1.5;
  859. color: #3d4145;
  860. background: #f7f7f8;
  861. }
  862. .toolbar:before {
  863. content: '';
  864. position: absolute;
  865. left: 0;
  866. top: 0;
  867. bottom: auto;
  868. right: auto;
  869. height: 1px;
  870. width: 100%;
  871. background-color: #d9d9d9;
  872. display: block;
  873. z-index: 15;
  874. -webkit-transform-origin: 50% 0%;
  875. transform-origin: 50% 0%;
  876. }
  877. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  878. .toolbar:before {
  879. -webkit-transform: scaleY(0.5);
  880. transform: scaleY(0.5);
  881. }
  882. }
  883. @media only screen and (-webkit-min-device-pixel-ratio: 3) {
  884. .toolbar:before {
  885. -webkit-transform: scaleY(0.33);
  886. transform: scaleY(0.33);
  887. }
  888. }
  889. .toolbar .toolbar-inner {
  890. height: 2.2rem;
  891. display: -webkit-box;
  892. display: -ms-flexbox;
  893. display: -webkit-flex;
  894. display: flex;
  895. text-align: center;
  896. }
  897. .toolbar .title {
  898. position: absolute;
  899. display: block;
  900. width: 100%;
  901. padding: 0;
  902. font-size: .85rem;
  903. font-weight: normal;
  904. line-height: 2.2rem;
  905. color: #3d4145;
  906. text-align: center;
  907. white-space: nowrap;
  908. }
  909. .toolbar .picker-button {
  910. position: absolute;
  911. right: 0;
  912. box-sizing: border-box;
  913. height: 2.2rem;
  914. line-height: 2.2rem;
  915. color: #04BE02;
  916. z-index: 1;
  917. padding: 0 .5rem;
  918. }
  919. /* === Columns Picker === */
  920. .weui-picker-modal {
  921. width: 100%;
  922. position: absolute;
  923. bottom: 0;
  924. text-align: center;
  925. border-radius: 0;
  926. opacity: 0.6;
  927. color: #3d4145;
  928. -webkit-transition-duration: .3s;
  929. transition-duration: .3s;
  930. height: 13rem;
  931. background: #EFEFF4;
  932. -webkit-transform: translate3d(0, 100%, 0);
  933. transform: translate3d(0, 100%, 0);
  934. -webkit-transition-property: opacity, -webkit-transform;
  935. transition-property: opacity, -webkit-transform;
  936. transition-property: transform, opacity;
  937. transition-property: transform, opacity, -webkit-transform;
  938. }
  939. .weui-picker-modal.picker-modal-inline {
  940. height: 10.8rem;
  941. opacity: 1;
  942. position: static;
  943. -webkit-transform: translate3d(0, 0, 0);
  944. transform: translate3d(0, 0, 0);
  945. }
  946. .weui-picker-modal.picker-modal-inline .toolbar {
  947. display: none;
  948. }
  949. .weui-picker-modal.picker-columns-single .picker-items-col {
  950. width: 100%;
  951. }
  952. .weui-picker-modal.weui-picker-modal-visible {
  953. opacity: 1;
  954. -webkit-transform: translate3d(0, 0, 0);
  955. transform: translate3d(0, 0, 0);
  956. }
  957. .weui-picker-modal .picker-modal-inner {
  958. position: relative;
  959. height: 10.8rem;
  960. }
  961. .weui-picker-modal .picker-columns {
  962. width: 100%;
  963. height: 13rem;
  964. z-index: 11500;
  965. }
  966. .weui-picker-modal .picker-columns.picker-modal-inline,
  967. .popover .weui-picker-modal .picker-columns {
  968. height: 10rem;
  969. }
  970. @media (orientation: landscape) and (max-height: 415px) {
  971. .weui-picker-modal .picker-columns:not(.picker-modal-inline) {
  972. height: 10rem;
  973. }
  974. }
  975. .weui-picker-modal .popover.popover-picker-columns {
  976. width: 14rem;
  977. }
  978. .weui-picker-modal .picker-items {
  979. display: -webkit-box;
  980. display: -ms-flexbox;
  981. display: -webkit-flex;
  982. display: flex;
  983. -webkit-box-pack: center;
  984. -ms-flex-pack: center;
  985. -webkit-justify-content: center;
  986. justify-content: center;
  987. width: 100%;
  988. padding: 0;
  989. text-align: right;
  990. font-size: 1rem;
  991. font-weight: normal;
  992. -webkit-mask-box-image: -webkit-linear-gradient(bottom, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent);
  993. -webkit-mask-box-image: linear-gradient(to top, transparent, transparent 5%, white 20%, white 80%, transparent 95%, transparent);
  994. }
  995. .weui-picker-modal .bar + .picker-items {
  996. height: 10.8rem;
  997. }
  998. .weui-picker-modal .picker-items-col {
  999. overflow: hidden;
  1000. position: relative;
  1001. max-height: 100%;
  1002. }
  1003. .weui-picker-modal .picker-items-col.picker-items-col-left {
  1004. text-align: left;
  1005. }
  1006. .weui-picker-modal .picker-items-col.picker-items-col-center {
  1007. text-align: center;
  1008. }
  1009. .weui-picker-modal .picker-items-col.picker-items-col-right {
  1010. text-align: right;
  1011. }
  1012. .weui-picker-modal .picker-items-col.picker-items-col-divider {
  1013. color: #3d4145;
  1014. display: -webkit-box;
  1015. display: -ms-flexbox;
  1016. display: -webkit-flex;
  1017. display: flex;
  1018. -webkit-box-align: center;
  1019. -ms-flex-align: center;
  1020. -webkit-align-items: center;
  1021. align-items: center;
  1022. }
  1023. .weui-picker-modal .picker-items-col-wrapper {
  1024. -webkit-transition: 300ms;
  1025. transition: 300ms;
  1026. -webkit-transition-timing-function: ease-out;
  1027. transition-timing-function: ease-out;
  1028. }
  1029. .weui-picker-modal .picker-item {
  1030. height: 32px;
  1031. line-height: 32px;
  1032. padding: 0 10px;
  1033. white-space: nowrap;
  1034. position: relative;
  1035. overflow: hidden;
  1036. text-overflow: ellipsis;
  1037. color: #9b9b9b;
  1038. left: 0;
  1039. top: 0;
  1040. width: 100%;
  1041. box-sizing: border-box;
  1042. -webkit-transition: 300ms;
  1043. transition: 300ms;
  1044. }
  1045. .picker-items-col-absolute .weui-picker-modal .picker-item {
  1046. position: absolute;
  1047. }
  1048. .weui-picker-modal .picker-item.picker-item-far {
  1049. pointer-events: none;
  1050. }
  1051. .weui-picker-modal .picker-item.picker-selected {
  1052. color: #3d4145;
  1053. -webkit-transform: translate3d(0, 0, 0);
  1054. transform: translate3d(0, 0, 0);
  1055. -webkit-transform: rotateX(0deg);
  1056. transform: rotateX(0deg);
  1057. }
  1058. .weui-picker-modal .picker-center-highlight {
  1059. height: 32px;
  1060. box-sizing: border-box;
  1061. position: absolute;
  1062. left: 0;
  1063. width: 100%;
  1064. top: 50%;
  1065. margin-top: -16px;
  1066. pointer-events: none;
  1067. }
  1068. .weui-picker-modal .picker-center-highlight:before {
  1069. content: '';
  1070. position: absolute;
  1071. left: 0;
  1072. top: 0;
  1073. bottom: auto;
  1074. right: auto;
  1075. height: 1px;
  1076. width: 100%;
  1077. background-color: #D9D9D9;
  1078. display: block;
  1079. z-index: 15;
  1080. -webkit-transform-origin: 50% 0%;
  1081. transform-origin: 50% 0%;
  1082. }
  1083. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  1084. .weui-picker-modal .picker-center-highlight:before {
  1085. -webkit-transform: scaleY(0.5);
  1086. transform: scaleY(0.5);
  1087. }
  1088. }
  1089. @media only screen and (-webkit-min-device-pixel-ratio: 3) {
  1090. .weui-picker-modal .picker-center-highlight:before {
  1091. -webkit-transform: scaleY(0.33);
  1092. transform: scaleY(0.33);
  1093. }
  1094. }
  1095. .weui-picker-modal .picker-center-highlight:after {
  1096. content: '';
  1097. position: absolute;
  1098. left: 0;
  1099. bottom: 0;
  1100. right: auto;
  1101. top: auto;
  1102. height: 1px;
  1103. width: 100%;
  1104. background-color: #D9D9D9;
  1105. display: block;
  1106. z-index: 15;
  1107. -webkit-transform-origin: 50% 100%;
  1108. transform-origin: 50% 100%;
  1109. }
  1110. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  1111. .weui-picker-modal .picker-center-highlight:after {
  1112. -webkit-transform: scaleY(0.5);
  1113. transform: scaleY(0.5);
  1114. }
  1115. }
  1116. @media only screen and (-webkit-min-device-pixel-ratio: 3) {
  1117. .weui-picker-modal .picker-center-highlight:after {
  1118. -webkit-transform: scaleY(0.33);
  1119. transform: scaleY(0.33);
  1120. }
  1121. }
  1122. .weui-picker-modal .picker-3d .picker-items {
  1123. overflow: hidden;
  1124. -webkit-perspective: 1200px;
  1125. perspective: 1200px;
  1126. }
  1127. .weui-picker-modal .picker-3d .picker-items-col,
  1128. .weui-picker-modal .picker-3d .picker-items-col-wrapper,
  1129. .weui-picker-modal .picker-3d .picker-item {
  1130. -webkit-transform-style: preserve-3d;
  1131. transform-style: preserve-3d;
  1132. }
  1133. .weui-picker-modal .picker-3d .picker-items-col {
  1134. overflow: visible;
  1135. }
  1136. .weui-picker-modal .picker-3d .picker-item {
  1137. -webkit-transform-origin: center center -110px;
  1138. transform-origin: center center -110px;
  1139. -webkit-backface-visibility: hidden;
  1140. backface-visibility: hidden;
  1141. -webkit-transition-timing-function: ease-out;
  1142. transition-timing-function: ease-out;
  1143. }
  1144. .weui-picker-overlay,
  1145. .weui-picker-container {
  1146. position: fixed;
  1147. bottom: 0;
  1148. left: 0;
  1149. right: 0;
  1150. height: 0;
  1151. width: 100%;
  1152. z-index: 1000;
  1153. }
  1154. .city-picker .picker-items-col {
  1155. -webkit-box-flex: 1;
  1156. -webkit-flex: 1;
  1157. -ms-flex: 1;
  1158. flex: 1;
  1159. max-width: 7rem;
  1160. }
  1161. .weui-picker-container .weui-cells {
  1162. margin: 0;
  1163. text-align: left;
  1164. }
  1165. .datetime-picker .picker-item {
  1166. text-overflow: initial;
  1167. }
  1168. .weui-select-modal {
  1169. height: auto;
  1170. }
  1171. .weui-select-modal .weui-cells {
  1172. margin: 0;
  1173. text-align: left;
  1174. overflow-y: auto;
  1175. overflow-x: hidden;
  1176. max-height: 16rem;
  1177. }
  1178. .weui-select-modal .weui-cells:after {
  1179. display: none;
  1180. }
  1181. /* === Calendar === */
  1182. .weui-picker-calendar {
  1183. background: #fff;
  1184. height: 15rem;
  1185. width: 100%;
  1186. overflow: hidden;
  1187. }
  1188. .weui-picker-calendar .picker-modal-inner {
  1189. overflow: hidden;
  1190. height: 12.8rem;
  1191. }
  1192. .picker-calendar-week-days {
  1193. height: .9rem;
  1194. background: #f7f7f8;
  1195. display: -webkit-box;
  1196. display: -ms-flexbox;
  1197. display: -webkit-flex;
  1198. display: flex;
  1199. font-size: 11px;
  1200. box-sizing: border-box;
  1201. position: relative;
  1202. }
  1203. .picker-calendar-week-days:after {
  1204. content: '';
  1205. position: absolute;
  1206. left: 0;
  1207. bottom: 0;
  1208. right: auto;
  1209. top: auto;
  1210. height: 1px;
  1211. width: 100%;
  1212. background-color: #c4c4c4;
  1213. display: block;
  1214. z-index: 15;
  1215. -webkit-transform-origin: 50% 100%;
  1216. transform-origin: 50% 100%;
  1217. }
  1218. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  1219. .picker-calendar-week-days:after {
  1220. -webkit-transform: scaleY(0.5);
  1221. transform: scaleY(0.5);
  1222. }
  1223. }
  1224. @media only screen and (-webkit-min-device-pixel-ratio: 3) {
  1225. .picker-calendar-week-days:after {
  1226. -webkit-transform: scaleY(0.33);
  1227. transform: scaleY(0.33);
  1228. }
  1229. }
  1230. .picker-calendar-week-days .picker-calendar-week-day {
  1231. -webkit-flex-shrink: 1;
  1232. -ms-flex: 0 1 auto;
  1233. -webkit-flex-shrink: 1;
  1234. -ms-flex-negative: 1;
  1235. flex-shrink: 1;
  1236. width: 14.28571429%;
  1237. width: calc(100% / 7);
  1238. line-height: 17px;
  1239. text-align: center;
  1240. }
  1241. .picker-calendar-week-days + .picker-calendar-months {
  1242. height: 11.9rem;
  1243. }
  1244. .picker-calendar-months {
  1245. width: 100%;
  1246. height: 100%;
  1247. overflow: hidden;
  1248. position: relative;
  1249. }
  1250. .picker-calendar-months-wrapper {
  1251. position: relative;
  1252. width: 100%;
  1253. height: 100%;
  1254. -webkit-transition: 300ms;
  1255. transition: 300ms;
  1256. }
  1257. .picker-calendar-month {
  1258. display: -webkit-box;
  1259. display: -ms-flexbox;
  1260. display: -webkit-flex;
  1261. display: flex;
  1262. -webkit-box-orient: vertical;
  1263. -ms-flex-direction: column;
  1264. -webkit-flex-direction: column;
  1265. flex-direction: column;
  1266. width: 100%;
  1267. height: 100%;
  1268. position: absolute;
  1269. left: 0;
  1270. top: 0;
  1271. }
  1272. .picker-calendar-row {
  1273. height: 16.66666667%;
  1274. height: calc(100% / 6);
  1275. display: -webkit-box;
  1276. display: -ms-flexbox;
  1277. display: -webkit-flex;
  1278. display: flex;
  1279. -webkit-flex-shrink: 1;
  1280. -ms-flex: 0 1 auto;
  1281. -webkit-flex-shrink: 1;
  1282. -ms-flex-negative: 1;
  1283. flex-shrink: 1;
  1284. width: 100%;
  1285. position: relative;
  1286. }
  1287. .picker-calendar-row:after {
  1288. content: '';
  1289. position: absolute;
  1290. left: 0;
  1291. bottom: 0;
  1292. right: auto;
  1293. top: auto;
  1294. height: 1px;
  1295. width: 100%;
  1296. background-color: #ccc;
  1297. display: block;
  1298. z-index: 15;
  1299. -webkit-transform-origin: 50% 100%;
  1300. transform-origin: 50% 100%;
  1301. }
  1302. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  1303. .picker-calendar-row:after {
  1304. -webkit-transform: scaleY(0.5);
  1305. transform: scaleY(0.5);
  1306. }
  1307. }
  1308. @media only screen and (-webkit-min-device-pixel-ratio: 3) {
  1309. .picker-calendar-row:after {
  1310. -webkit-transform: scaleY(0.33);
  1311. transform: scaleY(0.33);
  1312. }
  1313. }
  1314. .weui-picker-modal .picker-calendar-row:last-child:after {
  1315. display: none;
  1316. }
  1317. .picker-calendar-day {
  1318. -webkit-flex-shrink: 1;
  1319. -ms-flex: 0 1 auto;
  1320. -webkit-flex-shrink: 1;
  1321. -ms-flex-negative: 1;
  1322. flex-shrink: 1;
  1323. display: -webkit-box;
  1324. display: -ms-flexbox;
  1325. display: -webkit-flex;
  1326. display: flex;
  1327. -webkit-box-pack: center;
  1328. -ms-flex-pack: center;
  1329. -webkit-justify-content: center;
  1330. justify-content: center;
  1331. -webkit-box-align: center;
  1332. -ms-flex-align: center;
  1333. -webkit-align-items: center;
  1334. align-items: center;
  1335. box-sizing: border-box;
  1336. width: 14.28571429%;
  1337. width: calc(100% / 7);
  1338. text-align: center;
  1339. color: #3d4145;
  1340. font-size: 15px;
  1341. cursor: pointer;
  1342. }
  1343. .picker-calendar-day.picker-calendar-day-prev,
  1344. .picker-calendar-day.picker-calendar-day-next {
  1345. color: #ccc;
  1346. }
  1347. .picker-calendar-day.picker-calendar-day-disabled {
  1348. color: #d4d4d4;
  1349. cursor: auto;
  1350. }
  1351. .picker-calendar-day.picker-calendar-day-today span {
  1352. background: #e3e3e3;
  1353. }
  1354. .picker-calendar-day.picker-calendar-day-selected span {
  1355. background: #04BE02;
  1356. color: #fff;
  1357. }
  1358. .picker-calendar-day span {
  1359. display: inline-block;
  1360. border-radius: 100%;
  1361. width: 30px;
  1362. height: 30px;
  1363. line-height: 30px;
  1364. }
  1365. .picker-calendar-month-picker,
  1366. .picker-calendar-year-picker {
  1367. display: -webkit-box;
  1368. display: -ms-flexbox;
  1369. display: -webkit-flex;
  1370. display: flex;
  1371. -webkit-box-align: center;
  1372. -ms-flex-align: center;
  1373. -webkit-align-items: center;
  1374. align-items: center;
  1375. -webkit-box-pack: justify;
  1376. -ms-flex-pack: justify;
  1377. -webkit-justify-content: space-between;
  1378. justify-content: space-between;
  1379. width: 50%;
  1380. max-width: 200px;
  1381. -webkit-flex-shrink: 10;
  1382. -ms-flex: 0 10 auto;
  1383. -webkit-flex-shrink: 10;
  1384. -ms-flex-negative: 10;
  1385. flex-shrink: 10;
  1386. }
  1387. .picker-calendar-month-picker a.icon-only,
  1388. .picker-calendar-year-picker a.icon-only {
  1389. min-width: 36px;
  1390. }
  1391. .picker-calendar-month-picker span,
  1392. .picker-calendar-year-picker span {
  1393. -webkit-flex-shrink: 1;
  1394. -ms-flex: 0 1 auto;
  1395. -webkit-flex-shrink: 1;
  1396. -ms-flex-negative: 1;
  1397. flex-shrink: 1;
  1398. position: relative;
  1399. overflow: hidden;
  1400. text-overflow: ellipsis;
  1401. }
  1402. .popover .picker-calendar .picker-calendar-week-days,
  1403. .picker-calendar.picker-modal-inline .picker-calendar-week-days {
  1404. background: none;
  1405. }
  1406. .popover .picker-calendar .toolbar:before,
  1407. .picker-calendar.picker-modal-inline .toolbar:before,
  1408. .popover .picker-calendar .picker-calendar-week-days:before,
  1409. .picker-calendar.picker-modal-inline .picker-calendar-week-days:before {
  1410. display: none;
  1411. }
  1412. .popover .picker-calendar .toolbar:after,
  1413. .picker-calendar.picker-modal-inline .toolbar:after,
  1414. .popover .picker-calendar .picker-calendar-week-days:after,
  1415. .picker-calendar.picker-modal-inline .picker-calendar-week-days:after {
  1416. display: none;
  1417. }
  1418. .popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months:before,
  1419. .picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months:before,
  1420. .popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months:before,
  1421. .picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months:before {
  1422. content: '';
  1423. position: absolute;
  1424. left: 0;
  1425. top: 0;
  1426. bottom: auto;
  1427. right: auto;
  1428. height: 1px;
  1429. width: 100%;
  1430. background-color: #c4c4c4;
  1431. display: block;
  1432. z-index: 15;
  1433. -webkit-transform-origin: 50% 0%;
  1434. transform-origin: 50% 0%;
  1435. }
  1436. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  1437. .popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months:before,
  1438. .picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months:before,
  1439. .popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months:before,
  1440. .picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months:before {
  1441. -webkit-transform: scaleY(0.5);
  1442. transform: scaleY(0.5);
  1443. }
  1444. }
  1445. @media only screen and (-webkit-min-device-pixel-ratio: 3) {
  1446. .popover .picker-calendar .toolbar ~ .picker-modal-inner .picker-calendar-months:before,
  1447. .picker-calendar.picker-modal-inline .toolbar ~ .picker-modal-inner .picker-calendar-months:before,
  1448. .popover .picker-calendar .picker-calendar-week-days ~ .picker-calendar-months:before,
  1449. .picker-calendar.picker-modal-inline .picker-calendar-week-days ~ .picker-calendar-months:before {
  1450. -webkit-transform: scaleY(0.33);
  1451. transform: scaleY(0.33);
  1452. }
  1453. }
  1454. .picker-calendar-month-picker,
  1455. .picker-calendar-year-picker {
  1456. display: block;
  1457. line-height: 2.2rem;
  1458. -webkit-box-flex: 1;
  1459. -webkit-flex: 1;
  1460. -ms-flex: 1;
  1461. flex: 1;
  1462. }
  1463. .picker-calendar-month-picker a.icon-only,
  1464. .picker-calendar-year-picker a.icon-only {
  1465. float: left;
  1466. width: 25%;
  1467. height: 2.2rem;
  1468. line-height: 2rem;
  1469. }
  1470. .picker-calendar-month-picker .current-month-value,
  1471. .picker-calendar-year-picker .current-month-value,
  1472. .picker-calendar-month-picker .current-year-value,
  1473. .picker-calendar-year-picker .current-year-value {
  1474. float: left;
  1475. width: 50%;
  1476. height: 2.2rem;
  1477. }
  1478. i.icon {
  1479. display: inline-block;
  1480. vertical-align: middle;
  1481. background-size: 100% auto;
  1482. background-position: center;
  1483. background-repeat: no-repeat;
  1484. font-style: normal;
  1485. position: relative;
  1486. }
  1487. i.icon.icon-next,
  1488. i.icon.icon-prev {
  1489. width: 0.75rem;
  1490. height: 0.75rem;
  1491. }
  1492. i.icon.icon-next {
  1493. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%2304BE02'%20d%3D'M1%2C1.6l11.8%2C5.8L1%2C13.4V1.6%20M0%2C0v15l15-7.6L0%2C0L0%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  1494. }
  1495. i.icon.icon-prev {
  1496. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2015%2015'%3E%3Cg%3E%3Cpath%20fill%3D'%2304BE02'%20d%3D'M14%2C1.6v11.8L2.2%2C7.6L14%2C1.6%20M15%2C0L0%2C7.6L15%2C15V0L15%2C0z'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  1497. }
  1498. /**
  1499. * Swiper 3.3.1
  1500. * Most modern mobile touch slider and framework with hardware accelerated transitions
  1501. *
  1502. * http://www.idangero.us/swiper/
  1503. *
  1504. * Copyright 2016, Vladimir Kharlampidi
  1505. * The iDangero.us
  1506. * http://www.idangero.us/
  1507. *
  1508. * Licensed under MIT
  1509. *
  1510. * Released on: February 7, 2016
  1511. */
  1512. .swiper-container {
  1513. margin: 0 auto;
  1514. position: relative;
  1515. overflow: hidden;
  1516. /* Fix of Webkit flickering */
  1517. z-index: 1;
  1518. }
  1519. .swiper-container-no-flexbox .swiper-slide {
  1520. float: left;
  1521. }
  1522. .swiper-container-vertical > .swiper-wrapper {
  1523. -webkit-box-orient: vertical;
  1524. -ms-flex-direction: column;
  1525. -webkit-flex-direction: column;
  1526. flex-direction: column;
  1527. }
  1528. .swiper-wrapper {
  1529. position: relative;
  1530. width: 100%;
  1531. height: 100%;
  1532. z-index: 1;
  1533. display: -webkit-box;
  1534. display: -ms-flexbox;
  1535. display: -webkit-flex;
  1536. display: flex;
  1537. -webkit-transition-property: -webkit-transform;
  1538. transition-property: -webkit-transform;
  1539. transition-property: transform;
  1540. transition-property: transform, -webkit-transform;
  1541. box-sizing: content-box;
  1542. }
  1543. .swiper-container-android .swiper-slide,
  1544. .swiper-wrapper {
  1545. -webkit-transform: translate3d(0px, 0, 0);
  1546. transform: translate3d(0px, 0, 0);
  1547. }
  1548. .swiper-container-multirow > .swiper-wrapper {
  1549. -webkit-box-lines: multiple;
  1550. -moz-box-lines: multiple;
  1551. -ms-flex-wrap: wrap;
  1552. -webkit-flex-wrap: wrap;
  1553. flex-wrap: wrap;
  1554. }
  1555. .swiper-container-free-mode > .swiper-wrapper {
  1556. -webkit-transition-timing-function: ease-out;
  1557. transition-timing-function: ease-out;
  1558. margin: 0 auto;
  1559. }
  1560. .swiper-slide {
  1561. -webkit-flex-shrink: 0;
  1562. -ms-flex: 0 0 auto;
  1563. -webkit-flex-shrink: 0;
  1564. -ms-flex-negative: 0;
  1565. flex-shrink: 0;
  1566. width: 100%;
  1567. height: 100%;
  1568. position: relative;
  1569. }
  1570. /* Auto Height */
  1571. .swiper-container-autoheight,
  1572. .swiper-container-autoheight .swiper-slide {
  1573. height: auto;
  1574. }
  1575. .swiper-container-autoheight .swiper-wrapper {
  1576. -webkit-box-align: start;
  1577. -ms-flex-align: start;
  1578. -webkit-align-items: flex-start;
  1579. align-items: flex-start;
  1580. -webkit-transition-property: -webkit-transform, height;
  1581. -webkit-transition-property: height, -webkit-transform;
  1582. transition-property: height, -webkit-transform;
  1583. transition-property: transform, height;
  1584. transition-property: transform, height, -webkit-transform;
  1585. }
  1586. /* a11y */
  1587. .swiper-container .swiper-notification {
  1588. position: absolute;
  1589. left: 0;
  1590. top: 0;
  1591. pointer-events: none;
  1592. opacity: 0;
  1593. z-index: -1000;
  1594. }
  1595. /* IE10 Windows Phone 8 Fixes */
  1596. .swiper-wp8-horizontal {
  1597. -ms-touch-action: pan-y;
  1598. touch-action: pan-y;
  1599. }
  1600. .swiper-wp8-vertical {
  1601. -ms-touch-action: pan-x;
  1602. touch-action: pan-x;
  1603. }
  1604. /* Arrows */
  1605. .swiper-button-prev,
  1606. .swiper-button-next {
  1607. position: absolute;
  1608. top: 50%;
  1609. width: 27px;
  1610. height: 44px;
  1611. margin-top: -22px;
  1612. z-index: 10;
  1613. cursor: pointer;
  1614. background-size: 27px 44px;
  1615. background-position: center;
  1616. background-repeat: no-repeat;
  1617. }
  1618. .swiper-button-prev.swiper-button-disabled,
  1619. .swiper-button-next.swiper-button-disabled {
  1620. opacity: 0.35;
  1621. cursor: auto;
  1622. pointer-events: none;
  1623. }
  1624. .swiper-button-prev,
  1625. .swiper-container-rtl .swiper-button-next {
  1626. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  1627. left: 10px;
  1628. right: auto;
  1629. }
  1630. .swiper-button-prev.swiper-button-black,
  1631. .swiper-container-rtl .swiper-button-next.swiper-button-black {
  1632. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  1633. }
  1634. .swiper-button-prev.swiper-button-white,
  1635. .swiper-container-rtl .swiper-button-next.swiper-button-white {
  1636. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  1637. }
  1638. .swiper-button-next,
  1639. .swiper-container-rtl .swiper-button-prev {
  1640. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  1641. right: 10px;
  1642. left: auto;
  1643. }
  1644. .swiper-button-next.swiper-button-black,
  1645. .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  1646. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  1647. }
  1648. .swiper-button-next.swiper-button-white,
  1649. .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  1650. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
  1651. }
  1652. /* Pagination Styles */
  1653. .swiper-pagination {
  1654. position: absolute;
  1655. text-align: center;
  1656. -webkit-transition: 300ms;
  1657. transition: 300ms;
  1658. -webkit-transform: translate3d(0, 0, 0);
  1659. transform: translate3d(0, 0, 0);
  1660. z-index: 10;
  1661. }
  1662. .swiper-pagination.swiper-pagination-hidden {
  1663. opacity: 0;
  1664. }
  1665. /* Common Styles */
  1666. .swiper-pagination-fraction,
  1667. .swiper-pagination-custom,
  1668. .swiper-container-horizontal > .swiper-pagination-bullets {
  1669. bottom: 10px;
  1670. left: 0;
  1671. width: 100%;
  1672. }
  1673. /* Bullets */
  1674. .swiper-pagination-bullet {
  1675. width: 8px;
  1676. height: 8px;
  1677. display: inline-block;
  1678. border-radius: 100%;
  1679. background: #000;
  1680. opacity: 0.2;
  1681. }
  1682. button.swiper-pagination-bullet {
  1683. border: none;
  1684. margin: 0;
  1685. padding: 0;
  1686. box-shadow: none;
  1687. -moz-appearance: none;
  1688. -ms-appearance: none;
  1689. -webkit-appearance: none;
  1690. appearance: none;
  1691. }
  1692. .swiper-pagination-clickable .swiper-pagination-bullet {
  1693. cursor: pointer;
  1694. }
  1695. .swiper-pagination-white .swiper-pagination-bullet {
  1696. background: #fff;
  1697. }
  1698. .swiper-pagination-bullet-active {
  1699. opacity: 1;
  1700. background: #04BE02;
  1701. }
  1702. .swiper-pagination-white .swiper-pagination-bullet-active {
  1703. background: #fff;
  1704. }
  1705. .swiper-pagination-black .swiper-pagination-bullet-active {
  1706. background: #000;
  1707. }
  1708. .swiper-container-vertical > .swiper-pagination-bullets {
  1709. right: 10px;
  1710. top: 50%;
  1711. -webkit-transform: translate3d(0px, -50%, 0);
  1712. transform: translate3d(0px, -50%, 0);
  1713. }
  1714. .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  1715. margin: 5px 0;
  1716. display: block;
  1717. }
  1718. .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  1719. margin: 0 5px;
  1720. }
  1721. /* Progress */
  1722. .swiper-pagination-progress {
  1723. background: rgba(0, 0, 0, 0.25);
  1724. position: absolute;
  1725. }
  1726. .swiper-pagination-progress .swiper-pagination-progressbar {
  1727. background: #007aff;
  1728. position: absolute;
  1729. left: 0;
  1730. top: 0;
  1731. width: 100%;
  1732. height: 100%;
  1733. -webkit-transform: scale(0);
  1734. transform: scale(0);
  1735. -webkit-transform-origin: left top;
  1736. transform-origin: left top;
  1737. }
  1738. .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  1739. -webkit-transform-origin: right top;
  1740. transform-origin: right top;
  1741. }
  1742. .swiper-container-horizontal > .swiper-pagination-progress {
  1743. width: 100%;
  1744. height: 4px;
  1745. left: 0;
  1746. top: 0;
  1747. }
  1748. .swiper-container-vertical > .swiper-pagination-progress {
  1749. width: 4px;
  1750. height: 100%;
  1751. left: 0;
  1752. top: 0;
  1753. }
  1754. .swiper-pagination-progress.swiper-pagination-white {
  1755. background: rgba(255, 255, 255, 0.5);
  1756. }
  1757. .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  1758. background: #fff;
  1759. }
  1760. .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  1761. background: #000;
  1762. }
  1763. /* 3D Container */
  1764. .swiper-container-3d {
  1765. -webkit-perspective: 1200px;
  1766. -o-perspective: 1200px;
  1767. perspective: 1200px;
  1768. }
  1769. .swiper-container-3d .swiper-wrapper,
  1770. .swiper-container-3d .swiper-slide,
  1771. .swiper-container-3d .swiper-slide-shadow-left,
  1772. .swiper-container-3d .swiper-slide-shadow-right,
  1773. .swiper-container-3d .swiper-slide-shadow-top,
  1774. .swiper-container-3d .swiper-slide-shadow-bottom,
  1775. .swiper-container-3d .swiper-cube-shadow {
  1776. -webkit-transform-style: preserve-3d;
  1777. transform-style: preserve-3d;
  1778. }
  1779. .swiper-container-3d .swiper-slide-shadow-left,
  1780. .swiper-container-3d .swiper-slide-shadow-right,
  1781. .swiper-container-3d .swiper-slide-shadow-top,
  1782. .swiper-container-3d .swiper-slide-shadow-bottom {
  1783. position: absolute;
  1784. left: 0;
  1785. top: 0;
  1786. width: 100%;
  1787. height: 100%;
  1788. pointer-events: none;
  1789. z-index: 10;
  1790. }
  1791. .swiper-container-3d .swiper-slide-shadow-left {
  1792. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  1793. /* Safari 4+, Chrome */
  1794. background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1795. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  1796. /* Firefox 3.6-15 */
  1797. /* Opera 11.10-12.00 */
  1798. background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1799. /* Firefox 16+, IE10, Opera 12.50+ */
  1800. }
  1801. .swiper-container-3d .swiper-slide-shadow-right {
  1802. background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  1803. /* Safari 4+, Chrome */
  1804. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1805. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  1806. /* Firefox 3.6-15 */
  1807. /* Opera 11.10-12.00 */
  1808. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1809. /* Firefox 16+, IE10, Opera 12.50+ */
  1810. }
  1811. .swiper-container-3d .swiper-slide-shadow-top {
  1812. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  1813. /* Safari 4+, Chrome */
  1814. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1815. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  1816. /* Firefox 3.6-15 */
  1817. /* Opera 11.10-12.00 */
  1818. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1819. /* Firefox 16+, IE10, Opera 12.50+ */
  1820. }
  1821. .swiper-container-3d .swiper-slide-shadow-bottom {
  1822. background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  1823. /* Safari 4+, Chrome */
  1824. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1825. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  1826. /* Firefox 3.6-15 */
  1827. /* Opera 11.10-12.00 */
  1828. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  1829. /* Firefox 16+, IE10, Opera 12.50+ */
  1830. }
  1831. /* Coverflow */
  1832. .swiper-container-coverflow .swiper-wrapper,
  1833. .swiper-container-flip .swiper-wrapper {
  1834. /* Windows 8 IE 10 fix */
  1835. -ms-perspective: 1200px;
  1836. }
  1837. /* Cube + Flip */
  1838. .swiper-container-cube,
  1839. .swiper-container-flip {
  1840. overflow: visible;
  1841. }
  1842. .swiper-container-cube .swiper-slide,
  1843. .swiper-container-flip .swiper-slide {
  1844. pointer-events: none;
  1845. -webkit-backface-visibility: hidden;
  1846. backface-visibility: hidden;
  1847. z-index: 1;
  1848. }
  1849. .swiper-container-cube .swiper-slide .swiper-slide,
  1850. .swiper-container-flip .swiper-slide .swiper-slide {
  1851. pointer-events: none;
  1852. }
  1853. .swiper-container-cube .swiper-slide-active,
  1854. .swiper-container-flip .swiper-slide-active,
  1855. .swiper-container-cube .swiper-slide-active .swiper-slide-active,
  1856. .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  1857. pointer-events: auto;
  1858. }
  1859. .swiper-container-cube .swiper-slide-shadow-top,
  1860. .swiper-container-flip .swiper-slide-shadow-top,
  1861. .swiper-container-cube .swiper-slide-shadow-bottom,
  1862. .swiper-container-flip .swiper-slide-shadow-bottom,
  1863. .swiper-container-cube .swiper-slide-shadow-left,
  1864. .swiper-container-flip .swiper-slide-shadow-left,
  1865. .swiper-container-cube .swiper-slide-shadow-right,
  1866. .swiper-container-flip .swiper-slide-shadow-right {
  1867. z-index: 0;
  1868. -webkit-backface-visibility: hidden;
  1869. backface-visibility: hidden;
  1870. }
  1871. /* Cube */
  1872. .swiper-container-cube .swiper-slide {
  1873. visibility: hidden;
  1874. -webkit-transform-origin: 0 0;
  1875. transform-origin: 0 0;
  1876. width: 100%;
  1877. height: 100%;
  1878. }
  1879. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  1880. -webkit-transform-origin: 100% 0;
  1881. transform-origin: 100% 0;
  1882. }
  1883. .swiper-container-cube .swiper-slide-active,
  1884. .swiper-container-cube .swiper-slide-next,
  1885. .swiper-container-cube .swiper-slide-prev,
  1886. .swiper-container-cube .swiper-slide-next + .swiper-slide {
  1887. pointer-events: auto;
  1888. visibility: visible;
  1889. }
  1890. .swiper-container-cube .swiper-cube-shadow {
  1891. position: absolute;
  1892. left: 0;
  1893. bottom: 0px;
  1894. width: 100%;
  1895. height: 100%;
  1896. background: #000;
  1897. opacity: 0.6;
  1898. -webkit-filter: blur(50px);
  1899. filter: blur(50px);
  1900. z-index: 0;
  1901. }
  1902. /* Fade */
  1903. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  1904. -webkit-transition-timing-function: ease-out;
  1905. transition-timing-function: ease-out;
  1906. }
  1907. .swiper-container-fade .swiper-slide {
  1908. pointer-events: none;
  1909. -webkit-transition-property: opacity;
  1910. transition-property: opacity;
  1911. }
  1912. .swiper-container-fade .swiper-slide .swiper-slide {
  1913. pointer-events: none;
  1914. }
  1915. .swiper-container-fade .swiper-slide-active,
  1916. .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  1917. pointer-events: auto;
  1918. }
  1919. /* Scrollbar */
  1920. .swiper-scrollbar {
  1921. border-radius: 10px;
  1922. position: relative;
  1923. -ms-touch-action: none;
  1924. background: rgba(0, 0, 0, 0.1);
  1925. }
  1926. .swiper-container-horizontal > .swiper-scrollbar {
  1927. position: absolute;
  1928. left: 1%;
  1929. bottom: 3px;
  1930. z-index: 50;
  1931. height: 5px;
  1932. width: 98%;
  1933. }
  1934. .swiper-container-vertical > .swiper-scrollbar {
  1935. position: absolute;
  1936. right: 3px;
  1937. top: 1%;
  1938. z-index: 50;
  1939. width: 5px;
  1940. height: 98%;
  1941. }
  1942. .swiper-scrollbar-drag {
  1943. height: 100%;
  1944. width: 100%;
  1945. position: relative;
  1946. background: rgba(0, 0, 0, 0.5);
  1947. border-radius: 10px;
  1948. left: 0;
  1949. top: 0;
  1950. }
  1951. .swiper-scrollbar-cursor-drag {
  1952. cursor: move;
  1953. }
  1954. /* Preloader */
  1955. .swiper-lazy-preloader {
  1956. width: 42px;
  1957. height: 42px;
  1958. position: absolute;
  1959. left: 50%;
  1960. top: 50%;
  1961. margin-left: -21px;
  1962. margin-top: -21px;
  1963. z-index: 10;
  1964. -webkit-transform-origin: 50%;
  1965. transform-origin: 50%;
  1966. -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  1967. animation: swiper-preloader-spin 1s steps(12, end) infinite;
  1968. }
  1969. .swiper-lazy-preloader:after {
  1970. display: block;
  1971. content: "";
  1972. width: 100%;
  1973. height: 100%;
  1974. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  1975. background-position: 50%;
  1976. background-size: 100%;
  1977. background-repeat: no-repeat;
  1978. }
  1979. .swiper-lazy-preloader-white:after {
  1980. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  1981. }
  1982. @-webkit-keyframes swiper-preloader-spin {
  1983. 100% {
  1984. -webkit-transform: rotate(360deg);
  1985. }
  1986. }
  1987. @keyframes swiper-preloader-spin {
  1988. 100% {
  1989. -webkit-transform: rotate(360deg);
  1990. transform: rotate(360deg);
  1991. }
  1992. }
  1993. .weui-actionsheet {
  1994. z-index: 10000;
  1995. }
  1996. .weui-actionsheet .weui-actionsheet__title {
  1997. padding: 8px 0;
  1998. text-align: center;
  1999. font-size: 16px;
  2000. color: #999;
  2001. background-color: #f4f4f4;
  2002. position: relative;
  2003. }
  2004. .weui-actionsheet .weui-actionsheet__title:after {
  2005. content: " ";
  2006. position: absolute;
  2007. left: 0;
  2008. bottom: 0;
  2009. width: 100%;
  2010. height: 1px;
  2011. border-top: 1px solid #d9d9d9;
  2012. color: #d9d9d9;
  2013. -webkit-transform-origin: 0 100%;
  2014. transform-origin: 0 100%;
  2015. -webkit-transform: scaleY(0.5);
  2016. transform: scaleY(0.5);
  2017. }
  2018. .weui-popup__overlay,
  2019. .weui-popup__container {
  2020. position: fixed;
  2021. bottom: 0;
  2022. left: 0;
  2023. right: 0;
  2024. height: 0;
  2025. width: 100%;
  2026. height: 100%;
  2027. z-index: 10;
  2028. }
  2029. .weui-popup__overlay {
  2030. background-color: rgba(0, 0, 0, 0.6);
  2031. opacity: 0;
  2032. -webkit-transition: opacity .3s;
  2033. transition: opacity .3s;
  2034. }
  2035. .weui-popup__container {
  2036. display: none;
  2037. }
  2038. .weui-popup__container.weui-popup__container--visible {
  2039. display: block;
  2040. }
  2041. .weui-popup__container .weui-cells {
  2042. margin: 0;
  2043. text-align: left;
  2044. }
  2045. .weui-popup__modal {
  2046. width: 100%;
  2047. position: absolute;
  2048. z-index: 100;
  2049. bottom: 0;
  2050. border-radius: 0;
  2051. opacity: 0.6;
  2052. color: #3d4145;
  2053. -webkit-transition-duration: .3s;
  2054. transition-duration: .3s;
  2055. height: 100%;
  2056. background: #EFEFF4;
  2057. -webkit-transform: translate3d(0, 100%, 0);
  2058. transform: translate3d(0, 100%, 0);
  2059. -webkit-transition-property: opacity, -webkit-transform;
  2060. transition-property: opacity, -webkit-transform;
  2061. transition-property: transform, opacity;
  2062. transition-property: transform, opacity, -webkit-transform;
  2063. overflow-x: hidden;
  2064. overflow-y: auto;
  2065. }
  2066. .popup-bottom .weui-popup__modal {
  2067. height: auto;
  2068. }
  2069. .weui-popup__modal .toolbar {
  2070. position: absolute;
  2071. left: 0;
  2072. top: 0;
  2073. right: 0;
  2074. z-index: 1;
  2075. }
  2076. .weui-popup__modal .modal-content {
  2077. height: 100%;
  2078. padding-top: 2.2rem;
  2079. overflow: auto;
  2080. box-sizing: border-box;
  2081. }
  2082. .weui-popup__container--visible .weui-popup-overlay {
  2083. opacity: 1;
  2084. }
  2085. .weui-popup__container--visible .weui-popup__modal {
  2086. opacity: 1;
  2087. -webkit-transform: translate3d(0, 0, 0);
  2088. transform: translate3d(0, 0, 0);
  2089. }
  2090. .weui-notification {
  2091. position: fixed;
  2092. width: 100%;
  2093. min-height: 3.4rem;
  2094. top: -2rem;
  2095. padding-top: 2rem;
  2096. left: 0;
  2097. right: 0;
  2098. z-index: 9999;
  2099. background-color: rgba(0, 0, 0, 0.85);
  2100. color: white;
  2101. font-size: .65rem;
  2102. -webkit-transform: translate3d(0, -100%, 0);
  2103. transform: translate3d(0, -100%, 0);
  2104. -webkit-transition: .4s;
  2105. transition: .4s;
  2106. }
  2107. .weui-notification.weui-notification--in {
  2108. -webkit-transform: translate3d(0, 0, 0);
  2109. transform: translate3d(0, 0, 0);
  2110. }
  2111. .weui-notification.weui-notification--touching {
  2112. -webkit-transition-duration: 0s;
  2113. transition-duration: 0s;
  2114. }
  2115. .weui-notification .weui-notification__inner {
  2116. padding: .4rem .6rem 1rem .6rem;
  2117. display: -webkit-box;
  2118. display: -ms-flexbox;
  2119. display: -webkit-flex;
  2120. display: flex;
  2121. -webkit-box-align: start;
  2122. -ms-flex-align: start;
  2123. -webkit-align-items: flex-start;
  2124. align-items: flex-start;
  2125. }
  2126. .weui-notification .weui-notification__content {
  2127. width: 100%;
  2128. margin: 0rem .4rem;
  2129. }
  2130. .weui-notification .weui-notification__title {
  2131. font-weight: bold;
  2132. }
  2133. .weui-notification .weui-notification__text {
  2134. line-height: 1;
  2135. }
  2136. .weui-notification .weui-notification__media {
  2137. height: 1rem;
  2138. width: 1rem;
  2139. }
  2140. .weui-notification .weui-notification__media img {
  2141. width: 100%;
  2142. }
  2143. .weui-notification .weui-notification__handle-bar {
  2144. position: absolute;
  2145. bottom: .2rem;
  2146. left: 50%;
  2147. -webkit-transform: translate3d(-50%, 0, 0);
  2148. transform: translate3d(-50%, 0, 0);
  2149. width: 2rem;
  2150. height: .3rem;
  2151. border-radius: .15rem;
  2152. background: white;
  2153. opacity: .5;
  2154. }
  2155. .weui-photo-browser-modal {
  2156. position: fixed;
  2157. top: 0;
  2158. left: 0;
  2159. right: 0;
  2160. bottom: 0;
  2161. background: black;
  2162. display: none;
  2163. opacity: 0;
  2164. -webkit-transition: opacity .3s;
  2165. transition: opacity .3s;
  2166. }
  2167. .weui-photo-browser-modal.weui-photo-browser-modal-visible {
  2168. opacity: 1;
  2169. }
  2170. .weui-photo-browser-modal .swiper-container {
  2171. height: 100%;
  2172. -webkit-transform: scale(0.2);
  2173. transform: scale(0.2);
  2174. -webkit-transition: -webkit-transform .5s;
  2175. transition: -webkit-transform .5s;
  2176. transition: transform .5s;
  2177. transition: transform .5s, -webkit-transform .5s;
  2178. }
  2179. .weui-photo-browser-modal .swiper-container .swiper-pagination-bullet {
  2180. background: white;
  2181. visibility: hidden;
  2182. }
  2183. .weui-photo-browser-modal .swiper-container.swiper-container-visible {
  2184. -webkit-transform: scale(1);
  2185. transform: scale(1);
  2186. }
  2187. .weui-photo-browser-modal .swiper-container.swiper-container-visible .swiper-pagination-bullet {
  2188. visibility: visible;
  2189. -webkit-transition-property: visibility;
  2190. transition-property: visibility;
  2191. -webkit-transition-delay: .5s;
  2192. transition-delay: .5s;
  2193. }
  2194. .weui-photo-browser-modal .swiper-container .swiper-pagination {
  2195. bottom: 10px;
  2196. left: 0;
  2197. width: 100%;
  2198. }
  2199. .weui-photo-browser-modal .photo-container {
  2200. height: 100%;
  2201. display: -webkit-box;
  2202. display: -webkit-flex;
  2203. display: -ms-flexbox;
  2204. display: flex;
  2205. -webkit-box-align: center;
  2206. -webkit-align-items: center;
  2207. -ms-flex-align: center;
  2208. align-items: center;
  2209. overflow: hidden;
  2210. }
  2211. .weui-photo-browser-modal .photo-container img {
  2212. max-width: 100%;
  2213. margin-top: -30px;
  2214. }
  2215. .weui-photo-browser-modal .caption {
  2216. position: absolute;
  2217. bottom: 40px;
  2218. left: 0;
  2219. right: 0;
  2220. color: white;
  2221. text-align: center;
  2222. padding: 0 12px;
  2223. min-height: 3rem;
  2224. font-size: 14px;
  2225. z-index: 10;
  2226. -webkit-transition: opacity .3s;
  2227. transition: opacity .3s;
  2228. -webkit-transition-delay: .5s;
  2229. transition-delay: .5s;
  2230. opacity: 0;
  2231. }
  2232. .weui-photo-browser-modal .caption .caption-item {
  2233. display: none;
  2234. opacity: 0;
  2235. -webkit-transition: opacity .15s;
  2236. transition: opacity .15s;
  2237. }
  2238. .weui-photo-browser-modal .caption .caption-item.active {
  2239. display: block;
  2240. opacity: 1;
  2241. }
  2242. .weui-photo-browser-modal .swiper-container-visible .caption {
  2243. opacity: 1;
  2244. }
  2245. .color-primary {
  2246. color: #04BE02;
  2247. }
  2248. .color-danger,
  2249. .color-error {
  2250. color: #f6383a;
  2251. }
  2252. .color-warning {
  2253. color: #f60;
  2254. }
  2255. .color-success {
  2256. color: #4cd964;
  2257. }
  2258. .bg-primary,
  2259. .bg-success,
  2260. .bg-danger,
  2261. .bg-error,
  2262. .bg-warning {
  2263. color: white;
  2264. }
  2265. .bg-primary {
  2266. background-color: #04BE02;
  2267. }
  2268. .bg-danger,
  2269. .bg-error {
  2270. background-color: #f6383a;
  2271. }
  2272. .bg-warning {
  2273. background-color: #f60;
  2274. }
  2275. .bg-success {
  2276. background-color: #4cd964;
  2277. }
  2278. .weui-toptips {
  2279. z-index: 100;
  2280. opacity: 0;
  2281. -webkit-transition: opacity .3s;
  2282. transition: opacity .3s;
  2283. }
  2284. .weui-toptips.weui-toptips_visible {
  2285. opacity: 1;
  2286. }
  2287. .weui-icon_toast {
  2288. font-size: 55px;
  2289. color: white;
  2290. margin-bottom: 6px;
  2291. }
  2292. .weui-toast--forbidden .weui-icon_toast {
  2293. color: #f6383a;
  2294. }
  2295. .weui-toast--text {
  2296. min-height: initial;
  2297. font-size: 18px;
  2298. padding: 8px 16px;
  2299. width: auto;
  2300. top: 40%;
  2301. }
  2302. .weui-toast--text .weui-icon_toast {
  2303. display: none;
  2304. }