app.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. body {
  6. /* min-height: 100vh; */
  7. /* color: var(--color-text);
  8. background: var(--color-background); */
  9. color: #EAEAEA;
  10. background: #000;
  11. transition: color 0.5s, background-color 0.5s;
  12. line-height: 1.6;
  13. font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
  14. Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  15. font-size: 15px;
  16. text-rendering: optimizeLegibility;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. /* display: grid;
  20. grid-template-columns: 1fr 1fr; */
  21. /* padding: 0 2rem; */
  22. }
  23. ul li {
  24. list-style: none;
  25. }
  26. .quanpinghei {
  27. background: #000;
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. width: 100VW;
  32. height: 100vh;
  33. z-index: 9999999;
  34. }
  35. .firstPage {
  36. text-align: center;
  37. display: none;
  38. }
  39. .firstPageText {
  40. background: #CE5C2A;
  41. border-color: #CE5C2A;
  42. color: #fff;
  43. cursor: default;
  44. font-size: 11px;
  45. padding: 4px 10px;
  46. border-radius: 2px;
  47. color: #FFE0D2;
  48. margin: 10px 3px;
  49. text-decoration: none;
  50. }
  51. /* 账户信息 */
  52. .account {
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. /* height: .88rem; */
  57. height: 44px;
  58. margin: 0 .32rem;
  59. }
  60. .accountLeft {
  61. display: flex;
  62. justify-content: center;
  63. align-items: center;
  64. height: 100%;
  65. }
  66. .logo {
  67. width: 44px;
  68. height: 20.74px;
  69. }
  70. body{
  71. font-family: PingFangSC-Regular, sans-serif;;
  72. text-rendering: optimizeLegibility;
  73. -webkit-font-smoothing: antialiased;
  74. -moz-osx-font-smoothing: grayscale;
  75. }
  76. .LoginBoxChild {
  77. width: 6.02rem;
  78. height: 7.2rem;
  79. background: #25252A;
  80. position: fixed;
  81. top: 50%;
  82. left: 50%;
  83. margin-left: -3.01rem;
  84. margin-top: -3.6rem;
  85. border-radius: 0.24rem;
  86. }
  87. .LoginBoxChildTop {
  88. width: 4.66rem;
  89. height: 0.8rem;
  90. font-weight: bold;
  91. font-size: 0.64rem;
  92. color: #DFDFDF;
  93. text-align: center;
  94. margin: 1rem auto 0;
  95. }
  96. .LoginBoxChildMiddle {
  97. width: 4.66rem;
  98. height: 0.96rem;
  99. font-size: 0.3rem;
  100. color: #DFDFDF;
  101. margin: 0.34rem auto 0;
  102. text-align: center;
  103. }
  104. .LoginBoxChildBottom {
  105. width: 4.66rem;
  106. height: 1rem;
  107. background: #CF5731;
  108. font-size: 0.34rem;
  109. color: #DFDFDF;
  110. border-radius: 0.5rem;
  111. margin: 1rem auto 0;
  112. text-align: center;
  113. line-height: 1rem;
  114. }
  115. .LoginBoxChildBottomClose {
  116. width: 100%;
  117. height: 0.6rem;
  118. display: flex;
  119. display: -moz-flex;
  120. display: -o-flex;
  121. display: -webkit-flex;
  122. display: -ms-flex;
  123. justify-content: center;
  124. align-items: center;
  125. margin-top: 0.8rem;
  126. }
  127. .LoginBoxChildBottomClose img {
  128. width: 0.6rem;
  129. height: 0.6rem;
  130. }
  131. .AlertBox {
  132. width: 100%;
  133. height: 100%;
  134. position: fixed;
  135. background: rgba(0, 0, 0, 0.8);
  136. z-index: 10;
  137. display: none;
  138. }
  139. .AlertBoxChild {
  140. width: 6.7rem;
  141. height: 1rem;
  142. background: rgba(30,30,30,0.75);
  143. position: fixed;
  144. top: 50%;
  145. left: 50%;
  146. margin-left: -3.35rem;
  147. margin-top: -0.5rem;
  148. border-radius:0.28rem;
  149. }
  150. .AlertBoxChilds {
  151. width: 6rem;
  152. height: 1rem;
  153. display: flex;
  154. display: -moz-flex;
  155. display: -o-flex;
  156. display: -webkit-flex;
  157. display: -ms-flex;
  158. justify-content: center;
  159. align-items: center;
  160. color: #fff;
  161. font-size: 0.26rem;
  162. margin: 0 auto;
  163. }
  164. .zhedang {
  165. width: 100%;
  166. height: 100%;
  167. position: fixed;
  168. background-color: #151618;
  169. z-index: 199;
  170. }
  171. .box {
  172. width: 100%;
  173. height: 1.2rem;
  174. display: none;
  175. }
  176. .page {
  177. width: 100%;
  178. }
  179. .box1Child{
  180. width:100%;
  181. height:1.2rem;
  182. display: flex;
  183. display: -moz-flex;
  184. display: -o-flex;
  185. display: -webkit-flex;
  186. display: -ms-flex;
  187. justify-content: center;
  188. align-items: center;
  189. }
  190. .footer {
  191. }
  192. .footerTitle {
  193. padding: .1rem .26rem;
  194. color: #E4E4E4;
  195. font-size: .38rem;
  196. border-bottom: 1px solid #1E1E1E;
  197. border-top: 1px solid #1E1E1E;
  198. }
  199. .footerText {
  200. padding: 0 .26rem;
  201. margin-top: .2rem;
  202. color: #E4E4E4;
  203. font-size: .24rem;
  204. }
  205. /* 切换语言 */
  206. .languageWrap {
  207. margin-top: .2rem;
  208. width: 100%;
  209. height: 1rem;
  210. overflow: hidden;
  211. }
  212. .language {
  213. height: 1rem;
  214. width: 100%;
  215. background-color: #212121;
  216. display: flex;
  217. justify-content: space-between;
  218. align-items: center;
  219. }
  220. .language img {
  221. width: .4rem;
  222. height: .4rem;
  223. margin-right: .3rem;
  224. }
  225. .language p {
  226. margin-left: .3rem;
  227. }
  228. .languageText {
  229. color: #fff;
  230. height: 1rem;
  231. line-height: 1rem;
  232. border-bottom: 1px solid #1E1E1E;
  233. padding-left: .3rem;
  234. }
  235. .mine {
  236. z-index: 999999;
  237. position: fixed;
  238. right: 0;
  239. top: 0;
  240. background-color: rgba(0,0,0,.8);
  241. width: 0;
  242. height: 100%;
  243. overflow: hidden;
  244. /* display: none; */
  245. }
  246. .mineView {
  247. width: 60%;
  248. height: 100%;
  249. background-color: #262626;
  250. float: right;
  251. position: relative;
  252. }
  253. .closeMineImg {
  254. width: .48rem;
  255. height: .48rem;
  256. margin-top: .3rem;
  257. margin-left: .3rem;
  258. }
  259. .userLogin {
  260. display: flex;
  261. justify-content: space-between;
  262. align-items: center;
  263. margin: .8rem;
  264. }
  265. .userBtn {
  266. width: 1.2rem;
  267. text-align: center;
  268. }
  269. .userBtn img {
  270. width: 1rem;
  271. height: 1rem;
  272. margin-top: .24rem;
  273. }
  274. .userBtn p {
  275. margin-top: .3rem;
  276. }
  277. .userContent {
  278. margin-left: .32rem;
  279. margin-top: 1.2rem;
  280. display: flex;
  281. /* justify-content: center; */
  282. align-items: center;
  283. }
  284. .userImgA {
  285. width: .8rem;
  286. height: .8rem;
  287. }
  288. .userName {
  289. margin-left: .22rem;
  290. /* display: none; */
  291. }
  292. .myCollection {
  293. margin-top: .8rem;
  294. margin-left: .32rem;
  295. display: flex;
  296. align-items: center;
  297. height: 1.2rem
  298. }
  299. .myCollectionImg {
  300. width: .44rem;
  301. height: .4rem;
  302. }
  303. .myCollectionTxt {
  304. margin-left: .28rem;
  305. }
  306. .mineLanguage {
  307. margin-top: .6rem;
  308. margin-left: .4rem;
  309. }
  310. .languageType {
  311. margin-top: .24rem;
  312. background-color: #222;
  313. border-radius: .08rem;
  314. display: flex;
  315. justify-content: center;
  316. align-items: center;
  317. }
  318. .languageType div {
  319. color: #fff;
  320. width: 1.84rem;
  321. height: .72rem;
  322. text-align: center;
  323. line-height: .72rem;
  324. border-radius: .08rem;
  325. }
  326. .isSelectLanguage {
  327. background-color: #CE5C2A;
  328. }
  329. .loginOut {
  330. position: absolute;
  331. bottom: 2.3rem;
  332. left: .66rem;
  333. width: 3.2rem;
  334. height: 1rem;
  335. line-height: 1rem;
  336. border: 1px solid #CE5C2A;
  337. border-radius: .16rem;
  338. color: #CE5C2A;
  339. text-align: center;
  340. }