browserDetail.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. @media screen and (max-width: 750px) {
  2. html {
  3. font-size: calc(100vw / 7.5);
  4. }
  5. }
  6. @media screen and (min-width: 750px) {
  7. html {
  8. font-size: calc(450px / 7.5);
  9. }
  10. }
  11. html, body, div, ul, li, p {
  12. padding: 0;
  13. margin: 0;
  14. }
  15. ul, li {
  16. list-style: none;
  17. }
  18. input{
  19. background:none;
  20. outline:none;
  21. border:0px;
  22. }
  23. .container{
  24. min-height: 99vh;
  25. padding-top: 0.01rem;
  26. background: #F5F7FA;
  27. }
  28. .download-wrap{
  29. padding-top: 2.74rem;
  30. padding-bottom: 0.3rem;
  31. height: calc(99vh - 2.94rem);
  32. overflow-y: scroll;
  33. }
  34. .header-wrap{
  35. width: 100%;
  36. position: fixed;
  37. top: 0;
  38. left: 0;
  39. z-index: 999;
  40. padding-top: 0.18rem;
  41. background: #FFFFFF;
  42. overflow: hidden;
  43. }
  44. .search-wrap{
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. margin: 0 auto;
  49. margin-bottom: 0.18rem;
  50. width: 7.14rem;
  51. height: 0.66rem;
  52. background: #CCCDD4;
  53. border-radius: 0.2rem;
  54. opacity: 0.4;
  55. }
  56. .search-icon{
  57. width: 0.28rem;
  58. height: 0.28rem;
  59. margin-left: 0.24rem;
  60. }
  61. .ipt{
  62. width: 2rem;
  63. margin-left: 0.1rem;
  64. font-size: 0.32rem;
  65. font-weight: 500;
  66. color: rgba(0, 0, 0, 0.85);
  67. }
  68. .title-wrap{
  69. display: flex;
  70. align-items: center;
  71. height: 0.88rem;
  72. border-top: 0.01rem solid rgba(238,238,238,1);
  73. }
  74. .left-arrow{
  75. width: 0.48rem;
  76. height: 0.48rem;
  77. margin-left: 0.44rem;
  78. }
  79. .title{
  80. flex: 1;
  81. text-align: center;
  82. margin-right: 0.44rem;
  83. font-size: 0.36rem;
  84. font-weight: 500;
  85. color: rgba(51, 51, 51, 0.85);
  86. }
  87. .tag-wrap{
  88. /* width: 100%; */
  89. height: 0.8rem;
  90. display: flex;
  91. align-items: center;
  92. padding-left: 0.58rem;
  93. overflow-x: auto;
  94. box-shadow: 0 0.04rem 0.08rem 0 rgba(0, 0, 0, 0.05);
  95. border-radius: 0 0 0.2rem 0.2rem;
  96. }
  97. .tag-item{
  98. min-width: 0.6rem;
  99. padding-bottom: 0.06rem;
  100. margin-right: 0.84rem;
  101. font-size: 0.28rem;
  102. font-weight: 500;
  103. color: rgba(0, 0, 0, 0.85);
  104. }
  105. .active{
  106. border-bottom: 0.06rem solid #3B7FFF;
  107. }
  108. .download-item{
  109. display: flex;
  110. justify-content: space-between;
  111. align-items: center;
  112. width: 6.5rem;
  113. height: 1.4rem;
  114. border-radius: 0.32rem;
  115. margin: 0.36rem 0.3rem;
  116. padding: 0 0.2rem;
  117. background: #FFFFFF;
  118. }
  119. .main-wrap{
  120. display: flex;
  121. }
  122. .app-icon{
  123. align-self: flex-start;
  124. width: 1.2rem;
  125. height: 1.2rem;
  126. margin-top: -0.46rem;
  127. border-radius: 0.32rem;
  128. border: 0.02rem solid #EBEBEB;
  129. /* background-color: #666666; */
  130. }
  131. .app-wrap{
  132. margin-left: 0.2rem;
  133. }
  134. .app-title{
  135. width: 3.6rem;
  136. font-size: 0.32rem;
  137. font-weight: 500;
  138. color: #333333;
  139. white-space:nowrap;
  140. overflow:hidden;
  141. text-overflow:ellipsis;
  142. }
  143. .app-description{
  144. width: 3.6rem;
  145. font-size: 0.26rem;
  146. color: #666666;
  147. white-space:nowrap;
  148. overflow:hidden;
  149. text-overflow:ellipsis;
  150. }
  151. .btn-wrap{
  152. position: relative;
  153. width: 1.2rem;
  154. height: 0.54rem;
  155. line-height: 0.54rem;
  156. text-align: center;
  157. background: linear-gradient(180deg, #6DB6FF 0%, #3B7FFF 100%);
  158. border-radius: 0.16rem;
  159. font-size: 0.24rem;
  160. color: #FFFFFF;
  161. overflow: hidden;
  162. }
  163. .btn-active{
  164. width: 1.16rem;
  165. height: 0.5rem;
  166. background: #FFFFFF;
  167. border: 0.04rem solid #3B7FFF;
  168. color: rgba(59, 127, 255, 1);
  169. }
  170. .progress{
  171. position: absolute;
  172. left: -1.2rem;
  173. width: 1.2rem;
  174. height: 0.54rem;
  175. background: rgba(59, 127, 255, 0.3);
  176. }
  177. .none-wrap{
  178. position: fixed;
  179. top: 50%;
  180. left: 50%;
  181. transform: translate(-50%, -50%);
  182. }
  183. .none-img{
  184. width: 4.82rem;
  185. height: 2.6rem;
  186. }
  187. .none-text{
  188. text-align: center;
  189. margin-top: 0.4rem;
  190. font-size: 0.26rem;
  191. color: #BBBBBB;
  192. }
  193. .loading{
  194. font-size: 0.26rem;
  195. color: #BBBBBB;
  196. text-align: center;
  197. }
  198. #toast-container>.toast-error {
  199. background-image: none !important;
  200. border-radius: 0.2rem;
  201. }
  202. .toast-error {
  203. background-color: rgba(0, 0, 0, 0.8);
  204. border-radius: 0.2rem;
  205. }
  206. #toast-container>div {
  207. font-size: 14px;
  208. min-width: 80px !important;
  209. padding: 12px !important;
  210. box-shadow: none;
  211. border-radius: 0.2rem;
  212. }
  213. .toast-center-center {
  214. position: fixed;
  215. width: 220px;
  216. top: 50%;
  217. left: 50%;
  218. text-align: center;
  219. transform: translate(-50%, -50%);
  220. color: #FFFFFF;
  221. border-radius: 0.2rem;
  222. }
  223. @media (max-width: 480px) and (min-width: 241px) {
  224. #toast-container>div {
  225. min-width: 88px !important;
  226. width: auto;
  227. }
  228. }