index.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. /* 主题色 */
  2. /* 内容区宽度 */
  3. /* 偏移 */
  4. /* 大标题 */
  5. /* 移动端大标题 */
  6. .index-page .content-list {
  7. position: relative;
  8. z-index: 2;
  9. margin-top: -150px;
  10. padding-bottom: 40px;
  11. }
  12. .index-page .content-list .module-inner {
  13. margin-bottom: 80px;
  14. }
  15. .index-page .content-list .btn {
  16. width: 174px;
  17. }
  18. .index-page .content-list h2 {
  19. font-size: 32px;
  20. font-family: PingFangSC-Medium;
  21. font-weight: 500;
  22. color: #000200;
  23. }
  24. .index-page .content-list .line {
  25. height: 4px;
  26. background: #226ef3;
  27. display: block;
  28. width: 30px;
  29. margin: 23px 0;
  30. }
  31. .index-page .content-list .desc {
  32. margin-bottom: 20px;
  33. }
  34. .index-page .content-list .desc p {
  35. font-size: 18px;
  36. font-family: PingFangSC-Medium;
  37. font-weight: 500;
  38. color: #9b9b9b;
  39. line-height: 25px;
  40. }
  41. .index-page .content-list .action-item {
  42. background: #ffffff;
  43. box-shadow: 0px 15px 45px 0px rgba(34, 110, 243, 0.15);
  44. border-radius: 10px;
  45. padding: 0 55px;
  46. min-height: 400px;
  47. display: flex;
  48. justify-content: space-between;
  49. align-items: center;
  50. position: relative;
  51. transition: all 0.3s;
  52. }
  53. .index-page .content-list .action-item .content {
  54. padding: 55px 0;
  55. }
  56. .index-page .content-list .action-item:hover {
  57. transform: scale(1.01) translateY(-2px);
  58. box-shadow: 0px 15px 55px 0px rgba(34, 110, 243, 0.15);
  59. }
  60. .index-page .content-list .action-item .img-box {
  61. font-size: 0;
  62. }
  63. .index-page .content-list .action-item.disapp-item img {
  64. width: 517px;
  65. height: 368px;
  66. margin-right: 52px;
  67. }
  68. .index-page .content-list .action-item.sign-item img {
  69. height: 400px;
  70. position: relative;
  71. right: -55px;
  72. }
  73. .index-page .content-list .action-item.pack-item img {
  74. height: 400px;
  75. position: relative;
  76. right: -55px;
  77. }
  78. .index-page .content-list .action-item.super-sign-item img {
  79. height: 400px;
  80. position: relative;
  81. right: -55px;
  82. }
  83. .index-page .app-wall {
  84. background: #EAF0F9;
  85. padding: 60px 0;
  86. padding-bottom: 130px;
  87. }
  88. .index-page .app-wall h3 {
  89. margin-bottom: 66px;
  90. }
  91. .index-page .app-wall h3 span {
  92. font-size: 32px;
  93. font-family: PingFangSC-Medium;
  94. font-weight: 500;
  95. }
  96. .index-page .app-wall h3 span:last-child {
  97. color: rgba(102, 102, 102, 0.5);
  98. font-size: 32px;
  99. font-family: PingFangSC-Medium;
  100. font-weight: 500;
  101. padding-left: 10px;
  102. }
  103. .index-page .app-wall .wall {
  104. display: flex;
  105. flex-wrap: wrap;
  106. }
  107. .index-page .app-wall .wall li {
  108. text-align: center;
  109. margin: 35px 26px;
  110. margin-bottom: 35px;
  111. }
  112. .index-page .app-wall .wall li:hover div {
  113. /*background: #226ef3;*/
  114. transform: scale(1.01) translateY(-2px);
  115. color: #fff;
  116. }
  117. .index-page .app-wall .wall li p {
  118. font-size: 20px;
  119. font-family: PingFangSC-Medium;
  120. font-weight: 500;
  121. color: rgba(102, 102, 102, 0.5);
  122. }
  123. .index-page .app-wall .wall li div {
  124. width: 140px;
  125. height: 140px;
  126. background: #fff;
  127. box-sizing: border-box;
  128. /*padding: 10px;*/
  129. box-shadow: 2px 2px 10px 0px rgba(34, 110, 243, 0.14);
  130. transition: all 0.3s;
  131. margin-bottom: 18px;
  132. border-radius: 36px;
  133. }
  134. .index-page .app-wall .wall li div img {
  135. object-fit: contain;
  136. width: 100%;
  137. height: 100%;
  138. border-radius: 36px;
  139. }
  140. @media screen and (max-width: 900px) {
  141. .index-page .content-list {
  142. position: relative;
  143. z-index: 2;
  144. margin-top: -70px;
  145. padding-bottom: 20px;
  146. }
  147. .index-page .content-list .module-inner {
  148. margin-bottom: 40px;
  149. }
  150. .index-page .content-list .btn {
  151. width: 82px;
  152. }
  153. .index-page .content-list h2 {
  154. font-size: 24px;
  155. font-family: PingFangSC-Medium;
  156. font-weight: 500;
  157. color: #000200;
  158. }
  159. .index-page .content-list .img-box img {
  160. display: none;
  161. }
  162. .index-page .content-list .line {
  163. height: 4px;
  164. background: #226ef3;
  165. display: block;
  166. width: 30px;
  167. margin: 12px 0;
  168. }
  169. .index-page .content-list .desc {
  170. margin-bottom: 10px;
  171. }
  172. .index-page .content-list .desc p {
  173. font-size: 12px;
  174. font-family: PingFangSC-Medium;
  175. font-weight: 500;
  176. color: #9b9b9b;
  177. line-height: 25px;
  178. }
  179. .index-page .content-list .action-item {
  180. background: #ffffff;
  181. box-shadow: 0px 15px 45px 0px rgba(34, 110, 243, 0.15);
  182. border-radius: 10px;
  183. padding: 0 55px;
  184. min-height: 200px;
  185. display: flex;
  186. justify-content: space-between;
  187. align-items: center;
  188. position: relative;
  189. }
  190. .index-page .content-list .action-item .content {
  191. padding: 25px 0;
  192. }
  193. .index-page .app-wall {
  194. background: #EAF0F9;
  195. padding: 30px 0;
  196. padding-bottom: 60px;
  197. }
  198. .index-page .app-wall h3 {
  199. margin-bottom: 33px;
  200. }
  201. .index-page .app-wall h3 span {
  202. font-size: 17px;
  203. font-family: PingFangSC-Medium;
  204. font-weight: 500;
  205. }
  206. .index-page .app-wall h3 span:last-child {
  207. color: rgba(102, 102, 102, 0.5);
  208. font-size: 17px;
  209. font-family: PingFangSC-Medium;
  210. font-weight: 500;
  211. padding-left: 10px;
  212. }
  213. .index-page .app-wall .wall {
  214. display: flex;
  215. flex-wrap: wrap;
  216. }
  217. .index-page .app-wall .wall li {
  218. text-align: center;
  219. margin: 7px;
  220. margin-bottom: 17px;
  221. }
  222. .index-page .app-wall .wall li:hover div {
  223. background: #226ef3;
  224. transform: scale(1.01) translateY(-2px);
  225. color: #fff;
  226. }
  227. .index-page .app-wall .wall li p {
  228. font-size: 12px;
  229. font-family: PingFangSC-Medium;
  230. font-weight: 500;
  231. color: rgba(102, 102, 102, 0.5);
  232. }
  233. .index-page .app-wall .wall li div {
  234. width: 70px;
  235. height: 70px;
  236. background: #fff;
  237. box-sizing: border-box;
  238. padding: 10px;
  239. box-shadow: 2px 2px 10px 0px rgba(34, 110, 243, 0.14);
  240. transition: all 0.3s;
  241. margin-bottom: 18px;
  242. }
  243. .index-page .app-wall .wall li div img {
  244. object-fit: contain;
  245. width: 100%;
  246. height: 100%;
  247. }
  248. .index-page .cmpy-info .gift-inner {
  249. background: url(../image/gift-bg.png) -16px 0 repeat;
  250. height: 100px;
  251. text-align: center;
  252. display: flex;
  253. justify-content: center;
  254. flex-direction: column;
  255. align-items: center;
  256. position: relative;
  257. margin-top: -50px;
  258. }
  259. .index-page .cmpy-info .gift-inner p {
  260. font-size: 17px;
  261. font-family: PingFangSC-Medium;
  262. font-weight: 500;
  263. color: #ffffff;
  264. margin-bottom: 15px;
  265. }
  266. .index-page .cmpy-info .gift-inner > div {
  267. display: flex;
  268. justify-content: center;
  269. }
  270. .index-page .cmpy-info .gift-inner .btn {
  271. width: 80px;
  272. margin: 0 10px;
  273. font-size: 12px;
  274. }
  275. .index-page .cmpy-info .cmpy-inner {
  276. display: block;
  277. padding-bottom: 50px;
  278. border-top: 1px solid #E6E9F6;
  279. padding-top: 40px;
  280. margin-top: 40px;
  281. }
  282. .index-page .cmpy-info .cmpy-inner .logo {
  283. margin-bottom: 20px;
  284. display: none;
  285. }
  286. .index-page .cmpy-info .cmpy-inner .logo img {
  287. width: 74px;
  288. height: 25px;
  289. }
  290. .index-page .cmpy-info .cmpy-inner .info {
  291. display: block;
  292. }
  293. .index-page .cmpy-info .cmpy-inner .info > div {
  294. margin-left: 0;
  295. margin-bottom: 25px;
  296. }
  297. .index-page .cmpy-info .cmpy-inner .info > div ul {
  298. display: flex;
  299. }
  300. .index-page .cmpy-info .cmpy-inner .info .about ul {
  301. display: block;
  302. }
  303. .index-page .cmpy-info .cmpy-inner .info p {
  304. font-size: 14px;
  305. margin-bottom: 10px;
  306. }
  307. .index-page .cmpy-info .cmpy-inner .info li {
  308. line-height: 30px;
  309. margin-right: 10px;
  310. }
  311. .index-page .cmpy-info .cmpy-inner .info li a {
  312. font-size: 12px;
  313. }
  314. .index-page .footer {
  315. height: 34px;
  316. }
  317. .index-page .footer .cert-wrap {
  318. display: none;
  319. }
  320. .index-page .footer .module-inner {
  321. height: 34px;
  322. display: flex;
  323. }
  324. .index-page .footer .module-inner p {
  325. font-size: 12px;
  326. }
  327. }