down.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. #app {
  2. font-family:Avenir,Helvetica,Arial,sans-serif;
  3. -webkit-font-smoothing:antialiased;
  4. -moz-osx-font-smoothing:grayscale;
  5. color:#2c3e50;
  6. }
  7. .container{
  8. padding:0;
  9. }
  10. *,body,figure {
  11. padding:0;
  12. margin:0
  13. }
  14. ol,ul {
  15. list-style-type:none
  16. }
  17. .inner-image {
  18. display:block;
  19. -o-object-fit:cover;
  20. object-fit:cover;
  21. width:inherit;
  22. height:inherit
  23. }
  24. @media screen and (min-width:320px) {
  25. html {
  26. font-size:14px
  27. }
  28. }@media screen and (min-width:360px) {
  29. html {
  30. font-size:16px
  31. }
  32. }@media screen and (min-width:400px) {
  33. html {
  34. font-size:18px
  35. }
  36. }@media screen and (min-width:440px) {
  37. html {
  38. font-size:20px
  39. }
  40. }@media screen and (min-width:480px) {
  41. html {
  42. font-size:22px
  43. }
  44. }@media screen and (min-width:640px) {
  45. html {
  46. font-size:28px
  47. }
  48. }
  49. .base-info {
  50. padding: 1.25rem 1.45rem;
  51. margin: 0 auto;
  52. display: -webkit-box;
  53. display: -ms-flexbox;
  54. display: flex;
  55. -webkit-box-orient: horizontal;
  56. -webkit-box-direction: normal;
  57. -ms-flex-direction: row;
  58. flex-direction: row;
  59. }
  60. .base-info .base-info-l {
  61. border-radius: .8rem;
  62. overflow: hidden;
  63. width: 6.5rem;
  64. height: 6.5rem;
  65. -webkit-box-sizing: border-box;
  66. box-sizing: border-box;
  67. -ms-flex-negative: 0;
  68. flex-shrink: 0;
  69. }
  70. .base-info .base-info-l>img {
  71. width: 100%;
  72. height: 100%;
  73. }
  74. .base-info .base-info-r {
  75. position: relative;
  76. margin-left: 1.2rem;
  77. flex: 1;
  78. }
  79. .base-info .base-info-r .title {
  80. font-weight: 700;
  81. height: 4.5rem;
  82. }
  83. .base-info .base-info-r .category, .base-info .base-info-r .title {
  84. word-break: break-all;
  85. display: -webkit-box;
  86. -webkit-line-clamp: 1;
  87. -webkit-box-orient: vertical;
  88. overflow: hidden;
  89. font-size: 1.1rem;
  90. }
  91. .base-info .base-info-r .category {
  92. color: #999;
  93. font-size: 1rem;
  94. }
  95. .base-info .base-info-r .install-btn {
  96. display: inline-block;
  97. height: 1.6rem;
  98. padding: 0 10px;
  99. border-radius: .8rem;
  100. background-color:#0477f9;
  101. border: 1px solid #0477f9;
  102. text-align: center;
  103. color: #fff;
  104. font-size: .85rem;
  105. line-height: 1.6rem;
  106. position:relative;
  107. }
  108. .base-info .base-info-r .loading {
  109. height: 18px;
  110. margin-right: 4px;
  111. vertical-align: -3px;
  112. }
  113. .base-info .base-info-r .install-btn:hover {
  114. text-decoration: none;
  115. }
  116. .base-info .base-info-r .clr {
  117. clear: both;height: 1.6rem;
  118. }
  119. .base-info .base-info-r .arouse {
  120. display: inline-block;
  121. float: right;
  122. height: 30px;
  123. line-height: 30px;
  124. border-radius: 15px;
  125. text-align: center;
  126. font-size: 12px;
  127. color: rgba(6,122,254,1);
  128. }
  129. .base-info .base-info-r .arouse b {
  130. display: inline-block;
  131. vertical-align: middle;
  132. width: 20px;
  133. height: 20px;
  134. line-height: 20px;
  135. margin: -2px 5px 0 0;
  136. text-align: center;
  137. background: rgba(6,122,254,1);
  138. color: #fff;
  139. border-radius: 100%;
  140. }
  141. .rate-info {
  142. /*padding-bottom: 1.25rem;*/
  143. margin: 0 1.45rem;
  144. display: -webkit-box;
  145. display: -ms-flexbox;
  146. display: flex;
  147. -webkit-box-orient: horizontal;
  148. -webkit-box-direction: normal;
  149. -ms-flex-direction: row;
  150. flex-direction: row;
  151. -webkit-box-pack: justify;
  152. -ms-flex-pack: justify;
  153. justify-content: space-between;
  154. }
  155. .rate-info .rate>strong {
  156. font-size: 1rem;
  157. font-weight: 700;
  158. color: #888;
  159. }
  160. .rate-info .rate>img {
  161. width: 5rem;
  162. margin-left: 5px;
  163. }
  164. .rate-info .rate>p {
  165. color: #d8d8d8;
  166. font-size: .75rem;
  167. }
  168. .rate-info .classification>strong {
  169. color: #8e8f92;
  170. font-size: 1rem;
  171. }
  172. .rate-info .classification>p {
  173. color: #d8d8d8;
  174. font-size: .75rem;
  175. }
  176. .comment-info {
  177. border-top: 1px solid #eee;
  178. padding: 1.25rem 0;
  179. margin: 0 1.45rem;
  180. }
  181. .comment-info .comment-info-title {
  182. margin-bottom: .85rem;
  183. font-size: 1.25rem;
  184. font-weight: bolder;
  185. }
  186. .comment-info .comment-info-content {
  187. display: -webkit-box;
  188. display: -ms-flexbox;
  189. display: flex;
  190. -webkit-box-orient: horizontal;
  191. -webkit-box-direction: normal;
  192. -ms-flex-direction: row;
  193. flex-direction: row;
  194. }
  195. .comment-info .comment-info-content .comment-info-l>strong {
  196. font-size: 3.75rem;
  197. line-height: 2.6875rem;
  198. color: #4a4a4e;
  199. font-weight: 700;
  200. }
  201. .comment-info .comment-info-content .comment-info-l>p {
  202. width: 5.6875rem;
  203. text-align: center;
  204. color: #7b7b7b;
  205. margin-top: .625rem;
  206. }
  207. .comment-info .comment-info-content .comment-info-r {
  208. margin-left: 2rem;
  209. -webkit-box-flex: 1;
  210. -ms-flex-positive: 1;
  211. flex-grow: 1;
  212. }
  213. .comment-info .comment-info-content .comment-info-r .comment-star-list>li {
  214. margin-top: .3rem;
  215. line-height: 0;
  216. display: -webkit-box;
  217. display: -ms-flexbox;
  218. display: flex;
  219. -webkit-box-orient: horizontal;
  220. -webkit-box-direction: normal;
  221. -ms-flex-direction: row;
  222. flex-direction: row;
  223. -webkit-box-align: center;
  224. -ms-flex-align: center;
  225. align-items: center;
  226. }
  227. .comment-info .comment-info-content .comment-info-r .comment-star-list .comment-star {
  228. position: relative;
  229. width: 2.875rem;
  230. height: .4375rem;
  231. }
  232. .comment-info .comment-info-content .comment-info-r .comment-star-list .comment-star>img {
  233. display: block;
  234. width: 100%;
  235. height: 100%;
  236. }
  237. .comment-info .comment-info-content .comment-info-r .comment-star-list .comment-star>div {
  238. position: absolute;
  239. left: 0;
  240. top: 0;
  241. height: 100%;
  242. background: #fff;
  243. }
  244. .comment-info .comment-info-content .comment-info-r .comment-star-list .comment-progress {
  245. position: relative;
  246. margin-left: .5rem;
  247. -webkit-box-flex: 1;
  248. -ms-flex-positive: 1;
  249. flex-grow: 1;
  250. height: .125rem;
  251. background: #e9e9ec;
  252. border-radius: .125rem;
  253. }
  254. .comment-info .comment-info-content .comment-info-r .comment-star-list .comment-progress>div {
  255. position: absolute;
  256. left: 0;
  257. width: 0;
  258. height: .125rem;
  259. background: #4a4a4e;
  260. border-radius: .125rem;
  261. width: 90%;
  262. }
  263. .app-info {
  264. border-top: 1px solid #eee;
  265. padding: 1.25rem 0;
  266. margin: 0 1.45rem;
  267. }
  268. .app-info .app-title {
  269. margin-bottom: .5rem;
  270. font-size: 1.25rem;
  271. font-weight: bolder;
  272. }
  273. .app-info .app-info-con {
  274. position: relative;
  275. font-size: .875rem;
  276. }
  277. .information-info{
  278. border-top: 1px solid #eee;
  279. padding: 1.25rem 0;
  280. margin: 0 1.45rem;
  281. }
  282. .information-info .app-title {
  283. margin-bottom: .5rem;
  284. font-size: 1.25rem;
  285. font-weight: bolder;
  286. }
  287. .information-info .information-list {
  288. padding: 0;
  289. }
  290. .information-info .information-list>li {
  291. font-size: .75rem;
  292. display: -webkit-box;
  293. display: -ms-flexbox;
  294. display: flex;
  295. -webkit-box-orient: horizontal;
  296. -webkit-box-direction: normal;
  297. -ms-flex-direction: row;
  298. flex-direction: row;
  299. -webkit-box-align: center;
  300. -ms-flex-align: center;
  301. align-items: center;
  302. line-height: 3.5;
  303. border-bottom: 1px solid #f2f2f2;
  304. }
  305. .information-info .information-list>li .l {
  306. color: #737379;
  307. }
  308. .information-info .information-list>li .r {
  309. margin-left: 1.5rem;
  310. -webkit-box-flex: 1;
  311. -ms-flex: 1;
  312. flex: 1;
  313. text-align: right;
  314. line-height: 1rem;
  315. }
  316. .disclaimer {
  317. padding: 10px;
  318. color: rgba(153, 153, 153, 1);
  319. background: rgba(249, 249, 249, 1);
  320. }
  321. .base-info .base-info-r .install-btn .text{position: relative;z-index: 2;}
  322. .base-info .base-info-r .install-btn.active{background-color: #ccc;}
  323. .base-info .base-info-r .install-btn.active .progress{text-align: center;display: block;position: absolute;background-color: #0c85da;border-radius: .8rem;height: 100%;left: 0;top: 0;max-width:100%;width:0;}
  324. .base-info .base-info-r .install-btn.disabled{background-color: #ccc;color: #fff}
  325. .android-install{position: fixed;box-sizing:border-box;bottom: 0;background-color: #fff;border-top: 1px solid #ccc;padding:10px 30px;width: 100%;}
  326. .android-install__btn{position:relative;background-color: #0c85da;overflow:hidden;color: #fff;padding: 10px;width: 100%;display: block;text-align: center;border-radius: 30px;}
  327. .android-install__btn .text{position: relative;z-index: 2;}
  328. .android-install__btn.active{background-color: #ccc;}
  329. .android-install__btn.active .progress{text-align: center;display: block;position: absolute;background-color: #0c85da;height: 100%;left: 0;top: 0;}
  330. .android-install__btn.disabled{background-color: #ccc;color: #fff}
  331. .no_safar {width: 100%;height: 100%;z-index: 600;}
  332. .no_safar .tip_img {z-index: 500;position: fixed;left: 1.2rem; top: .1rem;}
  333. .no_safar .tip_img img {width: 21rem;}
  334. .no_safar .model {position: fixed;left: 0;top: 0;width: 100%;height: 100%;background-color: #000000;opacity: 0.7;filter: alpha(opacity=70);z-index: 499;}
  335. .pc-platform{text-align: center;padding:20px 30px;}
  336. .pc-platform .pc-platform__logo{margin-bottom: 30px;}
  337. .pc-platform .pc-platform__code{}
  338. .pc-platform .pc-platform__code .code-title{font-weight: bold}
  339. .weixin-tip {
  340. margin: 0;
  341. padding: 0;
  342. position: fixed;
  343. left: 0;
  344. top: 0;
  345. bottom: 0;
  346. background: rgba(0,0,0,.8);
  347. filter: alpha(opacity=80);
  348. height: 100%;
  349. width: 100%;
  350. z-index: 100;
  351. }
  352. .weixin-tip p {
  353. text-align: center;
  354. margin-top: 0%;
  355. padding: 10%;
  356. height: 100%;
  357. }
  358. .weixin-tip img {
  359. max-width: 100%;
  360. }
  361. /*
  362. * 微信遮罩
  363. */
  364. .wechat-mask {
  365. z-index: 2;
  366. position: relative;
  367. display: block;
  368. }
  369. .wechat-mask .mask-bg {
  370. position: fixed;
  371. top: 0;
  372. right: 0;
  373. bottom: 0;
  374. left: 0;
  375. background: rgba(0, 0, 0, .2);
  376. }
  377. .wechat-mask .mask-pop {
  378. position: fixed;
  379. top: 50%;
  380. left: 50%;
  381. width: 80%;
  382. max-width: 300px;
  383. transform: translate(-50%, -50%);
  384. background: #fff;
  385. border-radius: 20px;
  386. overflow: hidden;
  387. }
  388. .wechat-mask .mask-colsed {
  389. z-index: 2;
  390. position: absolute;
  391. right: 15px;
  392. top: 15px;
  393. width: 20px;
  394. }
  395. .wechat-mask .mask-colsed img {
  396. display: block;
  397. width: 100%;
  398. }
  399. .wechat-mask .copy-url-img {
  400. display: block;
  401. width: 100%;
  402. }
  403. .wechat-mask .copy-url {
  404. position: relative;
  405. margin: 20px 30px;
  406. height: 36px;
  407. line-height: 36px;
  408. background: #F1F6F9;
  409. border-radius: 18px;
  410. overflow: hidden;
  411. }
  412. .wechat-mask button, .wechat-mask input {
  413. border: none;
  414. background: none;
  415. outline: 0;
  416. }
  417. .wechat-mask .copy-url input {
  418. padding-left: 20px;
  419. color: #9A9A99;
  420. }
  421. .wechat-mask .copy-url button {
  422. position: absolute;
  423. right: 0;
  424. top: 0;
  425. padding: 0 15px;
  426. height: 36px;
  427. line-height: 36px;
  428. background: linear-gradient(90deg, rgba(34, 125, 249, 1), rgba(0, 203, 250, 1));
  429. color: #fff;
  430. border-radius: 0 18px 18px 0;
  431. }
  432. /* 轮播图 */
  433. .app-slider {
  434. margin-top: .3rem;
  435. padding-left: 1.4rem;
  436. padding-right: 1.4rem;
  437. }
  438. .app-slider .swiper-slide {
  439. margin-right: .2rem;
  440. padding-bottom: .75em;
  441. width: calc(100% - 1rem)
  442. }
  443. .app-slider .swiper-slide img {
  444. display: block;
  445. height: 100%;
  446. width: 100%;
  447. border-radius: 1rem
  448. }