common.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html {
  6. -webkit-text-size-adjust: 100%;
  7. -ms-text-size-adjust: 100%;
  8. /* 解决IOS默认滑动很卡的情况 */
  9. -webkit-overflow-scrolling : touch;
  10. }
  11. body{
  12. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  13. font-size: .16rem;
  14. }
  15. /* 禁止缩放表单 */
  16. input[type="submit"], input[type="reset"], input[type="button"], input {
  17. resize: none;
  18. border: none;
  19. }
  20. ol,li,ul,dl,dt,dd{
  21. list-style:none;
  22. }
  23. img{
  24. height: auto;
  25. object-fit: cover;
  26. }
  27. em, i {
  28. font-style: normal;
  29. }
  30. textarea {
  31. resize:none;
  32. }
  33. p {
  34. word-wrap:break-word;
  35. }
  36. a{
  37. text-decoration: none;
  38. color: inherit;
  39. outline: none;
  40. -moz-outline-style: none;
  41. }
  42. a:active, a:focus {
  43. outline: none;
  44. }
  45. .textEllipsis{
  46. text-overflow: ellipsis;
  47. white-space: nowrap;
  48. overflow: hidden;
  49. }
  50. /* <-- start 头部模块 */
  51. .headerContainer{
  52. width: 100%;
  53. height: 1.18rem;
  54. background-color: #FFF;
  55. }
  56. .warnContainer{
  57. background-color: #FFF;
  58. width: 100%;
  59. height: .5rem;
  60. display: flex;
  61. align-items: center;
  62. justify-content: center;
  63. }
  64. .warnContainer .warnText{
  65. max-width: 12rem;
  66. word-break: break-all;
  67. line-height: 1.4;
  68. font-weight: bold;
  69. font-size: .18rem;
  70. color: #000000;
  71. }
  72. .computerEndHeader{
  73. border: 1px solid green;
  74. max-width: 12rem;
  75. margin: 0 auto;
  76. }
  77. /* end 头部模块 --> */
  78. /* start 年龄提示模块 --> */
  79. .maskContainer{
  80. position: fixed;
  81. width: 100vw;
  82. height: 100vh;
  83. z-index: 999;
  84. top: 0;
  85. right: 0;
  86. bottom: 0;
  87. left: 0;
  88. background-color: rgba(0, 0, 0, .5);
  89. display: none;
  90. }
  91. .ageReminderBox{
  92. width: 9rem;
  93. background-color: #FFF;
  94. height: 5rem;
  95. left: 50%;
  96. margin-left: -4.5rem;
  97. top: 30%;
  98. position: absolute;
  99. }
  100. .ageReminderBack{
  101. position: absolute;
  102. z-index: 1;
  103. height: 100%;
  104. width: 100%;
  105. top: 0;
  106. left: 0;
  107. }
  108. .ageReminderInfo{
  109. position: relative;
  110. z-index: 2;
  111. margin-left: .32rem;
  112. padding-top: 1rem;
  113. color: #fff;
  114. }
  115. .ageReminderInfo h3{
  116. line-height: 1.4;
  117. font-size: .5rem;
  118. max-width: 60%;
  119. font-weight: bold;
  120. }
  121. .ageReminderInfo .ageReminderButBox{
  122. display: flex;
  123. align-items: center;
  124. padding-top: .32rem;
  125. }
  126. .ageReminderInfo .ageReminderButBox .ageRBut{
  127. color: rgba(237, 109, 244, 1);
  128. background-color: #fff;
  129. display: flex;
  130. align-items: center;
  131. justify-content: center;
  132. height: .6rem;
  133. border-radius: .08rem;
  134. font-size: .28rem;
  135. font-weight: bold;
  136. min-width: 1.8rem;
  137. padding: 0 .24rem;
  138. margin-right: .32rem;
  139. cursor: pointer;
  140. }
  141. /* end 年龄提示模块 --> */
  142. /* <-- start 底部模块 */
  143. .footerContainer{
  144. width: 100%;
  145. height: 1.34rem;
  146. background-color: rgba(32, 32, 32, 1);
  147. }
  148. .footerConter{
  149. color: #FFF;
  150. padding-top: .24rem;
  151. display: flex;
  152. }
  153. .leftText{
  154. max-width: 2rem;
  155. margin-right: .8rem;
  156. }
  157. .leftText .ltK{
  158. font-weight: bold;
  159. font-size: .18rem;
  160. word-break: break-all;
  161. padding-bottom: .06rem;
  162. }
  163. .leftText .ltV{
  164. font-size: .14rem;
  165. color: rgba(255, 255, 255, .6);
  166. word-break: break-all;
  167. }
  168. .footerInuptBox{
  169. background: #FFF;
  170. flex: 1;
  171. height: .5rem;
  172. display: flex;
  173. justify-content: space-between;
  174. align-items: center;
  175. padding: 0 .24rem;
  176. max-width: 5rem;
  177. margin-right: 1.5rem;
  178. }
  179. .footerInuptBox .mailIcon{
  180. width: .28rem;
  181. height: .28rem;
  182. }
  183. .footerInupt{
  184. flex: 1;
  185. height: 100%;
  186. outline: none;
  187. font-size: .18rem;
  188. margin: 0 .12rem;
  189. }
  190. .footerInuptBox .arrowIcon{
  191. width: .28rem;
  192. height: .28rem;
  193. }
  194. .footerIconContainer{
  195. max-width: 4rem;
  196. }
  197. .footerIconList{
  198. overflow-x: scroll;
  199. white-space: nowrap;
  200. }
  201. .footerIconList::-webkit-scrollbar {
  202. display: none;
  203. }
  204. .footerIconItem{
  205. margin-right: .12rem;
  206. display: inline-flex;
  207. }
  208. .footerIconItem img{
  209. width: .4rem;
  210. height: .4rem;
  211. border-radius: 50%;
  212. }
  213. .footerVlsaImg{
  214. font-size: 0;
  215. }
  216. .footerVlsaImg img{
  217. height: .3rem;
  218. width: auto;
  219. }
  220. /* end 底部模块 --> */
  221. @media (max-width: 1199px) {
  222. .warnContainer{
  223. height: auto;
  224. }
  225. .warnContainer .warnText{
  226. font-size: .22rem;
  227. padding: .06rem .24rem;
  228. }
  229. .footerContainer{
  230. height: auto;
  231. }
  232. .footerConter{
  233. display: block;
  234. padding: .24rem .12rem;
  235. }
  236. .leftText{
  237. max-width: none;
  238. margin-right: 0;
  239. margin-bottom: .32rem;
  240. }
  241. .leftText .ltK{
  242. font-size: .2rem;
  243. }
  244. .leftText .ltV{
  245. font-size: .18rem;
  246. }
  247. .footerInuptBox{
  248. max-width: 6rem;
  249. margin-right: 0;
  250. height: .6rem;
  251. margin-bottom: .32rem;
  252. }
  253. .footerIconContainer{
  254. max-width: none;
  255. }
  256. .footerIconList{
  257. white-space: normal;
  258. overflow-x: hidden;
  259. display: flex;
  260. flex-wrap: wrap;
  261. margin-bottom: .12rem;
  262. }
  263. .footerIconItem{
  264. display: block;
  265. margin-right: .24rem;
  266. }
  267. }
  268. @media (max-width: 899px) {
  269. .warnContainer .warnText{
  270. font-size: .24rem;
  271. }
  272. .ageReminderBox{
  273. width: 7rem;
  274. margin-left: -3.5rem;
  275. height: 3.5rem;
  276. }
  277. .ageReminderInfo{
  278. padding-top: .6rem;
  279. }
  280. .ageReminderInfo h3{
  281. font-size: .4rem;
  282. }
  283. .ageReminderInfo .ageReminderButBox .ageRBut{
  284. font-size: .24rem;
  285. min-width: 1.4rem;
  286. }
  287. .leftText .ltK{
  288. font-size: .22rem;
  289. }
  290. .leftText .ltV{
  291. font-size: .2rem;
  292. }
  293. .footerIconItem img{
  294. width: .5rem;
  295. height: .5rem;
  296. }
  297. .footerVlsaImg img{
  298. height: .4rem;
  299. }
  300. }