index.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>官网</title>
  8. <style type="text/css">
  9. * {
  10. box-sizing: border-box;
  11. margin: 0;
  12. padding: 0;
  13. }
  14. /* 头部区域的 */
  15. .head {
  16. height: 80px;
  17. width: 100%;
  18. position: relative;
  19. display: flex;
  20. justify-content: space-between;
  21. align-content: center;
  22. align-items: center;
  23. padding: 0 360px;
  24. }
  25. .head .logo {
  26. width: 183px;
  27. height: 54px;
  28. }
  29. .head .option {
  30. cursor: pointer;
  31. color: black;
  32. font-size: 18px;
  33. font-weight: bold;
  34. }
  35. .head .option>a {
  36. margin-right: 56px;
  37. }
  38. .head .option>a:link {
  39. color: black;
  40. text-decoration: none;
  41. }
  42. .head .option>a:visited {
  43. color: black;
  44. }
  45. #head .option .selected {
  46. color: #498EF5;
  47. text-decoration: underline;
  48. text-decoration-thickness: 4px;
  49. text-underline-offset: 6px;
  50. text-decoration-color: #498EF5;
  51. }
  52. /* banner图的 */
  53. .banner {
  54. width: 100%;
  55. }
  56. .banner>img {
  57. width: 100%;
  58. }
  59. /* 产品介绍的 */
  60. .intro {
  61. width: 100%;
  62. display: flex;
  63. justify-content: center;
  64. flex-wrap: wrap;
  65. padding-top: 50px;
  66. padding-bottom: 47px;
  67. }
  68. .intro .img1 {
  69. width: 200px;
  70. }
  71. .intro .section {
  72. margin-top: 18px;
  73. display: flex;
  74. flex-wrap: wrap;
  75. }
  76. .intro .section .text {
  77. margin-top: 120px;
  78. margin-left: 176px;
  79. width: 500px;
  80. }
  81. /* 产品特征 */
  82. .features {
  83. padding: 50px 0;
  84. background-color: #F4F6FA;
  85. display: flex;
  86. flex-wrap: wrap;
  87. justify-content: center;
  88. }
  89. .features .text {
  90. display: flex;
  91. }
  92. .features .item {
  93. width: 285px;
  94. height: 263px;
  95. background-color: #fff;
  96. margin-left: 20px;
  97. position: relative;
  98. }
  99. .features .item>img {
  100. margin-top: 60px;
  101. margin-left: 109px;
  102. width: 80px;
  103. }
  104. .features .item .item-text {
  105. text-align: center;
  106. margin-top: 10px;
  107. color: #5C6066;
  108. }
  109. /* 下载 */
  110. .download {
  111. padding: 50px 0;
  112. display: flex;
  113. flex-wrap: wrap;
  114. justify-content: center;
  115. }
  116. .download .left {
  117. margin-top: 110px;
  118. }
  119. .download .left .download-buttons {
  120. margin-top: 36px;
  121. height: auto;
  122. }
  123. .download .download-text1 {
  124. color: #0A1A33;
  125. font-size: 40px;
  126. padding-right: 10px;
  127. }
  128. .download .download-text2 {
  129. color: #0A1A33;
  130. font-size: 40px;
  131. padding-right: 10px;
  132. }
  133. .download .download-android {
  134. background-image: url('./assets/安卓按钮.png');
  135. width: 280px;
  136. height: 64px;
  137. background-size: 100% 100%;
  138. margin-right: 20px;
  139. }
  140. .download .download-ios {
  141. background-image: url('./assets/苹果按钮.png');
  142. width: 280px;
  143. height: 64px;
  144. background-size: 100% 100%;
  145. }
  146. .download .icon {
  147. margin-left: 160px;
  148. margin-top: 57px;
  149. }
  150. .download .icon>img {
  151. width: 353px;
  152. }
  153. /* 联系 */
  154. .contact {
  155. display: flex;
  156. flex-wrap: wrap;
  157. background-color: #151E30;
  158. padding-top: 50px;
  159. justify-content: center;
  160. }
  161. .right {
  162. margin-left: 390px;
  163. display: flex;
  164. justify-content: center;
  165. flex-wrap: wrap;
  166. width: 400px;
  167. padding-bottom: 50px;
  168. }
  169. .left {
  170. padding-bottom: 50px;
  171. }
  172. .contact .logo {
  173. width: 405px;
  174. }
  175. .contact .name {
  176. font-size: 26px;
  177. color: #FFFFFF;
  178. }
  179. .contact .address {
  180. font-size: 18px;
  181. color: #FFFFFF;
  182. }
  183. .contact .phone {
  184. color: #fff;
  185. font-size: 36px;
  186. }
  187. .contact .bottom {
  188. box-sizing: content-box;
  189. width: 100%;
  190. border-top: 1px solid #fff;
  191. height: 82px;
  192. line-height: 82px;
  193. text-align: center;
  194. color: #fff;
  195. }
  196. </style>
  197. </head>
  198. <body>
  199. <div class="container">
  200. <div id="head" class="head">
  201. <img class="logo" src="./assets/财仝驾考logo.png" />
  202. <div class="option">
  203. <a onclick="selectHeadOption(this)" class="selected" href="#head" data-index="0">首页</a>
  204. <a onclick="selectHeadOption(this)" href="#intro" data-index="1">产品介绍</a>
  205. <a onclick="selectHeadOption(this)" href="#features" data-index="2">产品特征</a>
  206. <a onclick="selectHeadOption(this)" href="#price" data-index="3">产品价格</a>
  207. <a onclick="selectHeadOption(this)" href="#download" data-index="4">下载</a>
  208. </div>
  209. </div>
  210. <div class="banner">
  211. <img src="./assets/官网轮播图.png" />
  212. </div>
  213. <div class="intro" id="intro">
  214. <div style="width: 100%;text-align: center;" class="">
  215. <img class="img1" src="./assets/产品介绍.png">
  216. </div>
  217. <div class="section">
  218. <img style="width: 414px;" src="./assets/产品介绍配图.png">
  219. <div class="text">
  220. 青葱学驾驾考是最佳的驾驶考试准备应用程序,帮助您为驾驶考试做准备。通过基于官方考试的练习测试题目、每道题目的详细解释、帮助识别弱点的性能跟踪以及定期更新的题目库,我们提供最全面、最实用的考试资源,帮助您轻松通过考试。
  221. </div>
  222. </div>
  223. </div>
  224. <div class="features" id="features">
  225. <div class="" style="width: 100%;text-align: center;">
  226. <img src="./assets/产品特征.png" />
  227. </div>
  228. <div class="text">
  229. <div class="item">
  230. <img src="./assets/练习.png" />
  231. <div class="item-text">基于官方考试的练习题目</div>
  232. </div>
  233. <div class="item">
  234. <img src="./assets/题库.png" />
  235. <div class="item-text">详细的题目解释</div>
  236. </div>
  237. <div class="item">
  238. <img src="./assets/性能跟踪.png" />
  239. <div class="item-text">性能跟踪帮助识别弱点</div>
  240. </div>
  241. <div class="item">
  242. <img src="./assets/更新图库.png" />
  243. <div class="item-text">定期更新的题目库</div>
  244. </div>
  245. </div>
  246. </div>
  247. <div class="banner" id="price">
  248. <img src="./assets/永久免费.png" />
  249. </div>
  250. <div class="download" id="download">
  251. <div class="" style="width: 100%;text-align: center;">
  252. <img src="./assets/下载标题.png" />
  253. </div>
  254. <div class="left">
  255. <div>
  256. <div class="download-text1">青葱学驾</div>
  257. <div class="download-text2">您的驾考好助手</div>
  258. <!-- 临时隐藏这部分 -->
  259. <div class="download-buttons" style="display: none;">
  260. <a href="https://ct.zzxcx.net/apk/ctjk1.0.5.apk">
  261. <div class="download-android"></div>
  262. </a>
  263. <a href="https://itunes.apple.com/cn/app/id1670563437">
  264. <div class="download-ios"></div>
  265. </a>
  266. <!--
  267. // 跳转到应用商店:
  268. (https)|(itms-apps)://itunes.apple.com/app/id{appID}
  269. // 跳转到撰写评价:
  270. (https)|(itms-apps)://itunes.apple.com/app/id{appID}?action=write-review
  271. // 跳转到查看评价:
  272. (https)|(itms-apps)://itunes.apple.com/app/viewContentsUserReviews?id={appID}
  273. -->
  274. </div>
  275. </div>
  276. </div>
  277. <div class="icon">
  278. <img src="./assets/下载.png" />
  279. </div>
  280. </div>
  281. <div class="contact">
  282. <div class="left">
  283. <img class="logo" src="./assets/白字logo.png" />
  284. <div class="name">厦门祖儿网络科技</div>
  285. <div class="address">厦门市集美区岩隆路33号101室之7</div>
  286. </div>
  287. <div class="right">
  288. <!-- <div class="phone">电话:+86 17750216095</div> -->
  289. <div style="width: 100%;text-align: center;">
  290. <img src="./assets/微信公众号二维码.png" />
  291. </div>
  292. <div class="" style="color: #fff;">
  293. 青葱学驾微信公众号
  294. </div>
  295. </div>
  296. <a target="_blank" href="https://beian.miit.gov.cn/" class="bottom">
  297. 闽ICP备2023001778号-1
  298. © 2024 青葱学驾
  299. </a>
  300. </div>
  301. </div>
  302. <script>
  303. let dataIndex = 0
  304. function selectHeadOption(e) {
  305. document.querySelectorAll(".head .option>a").forEach((item, index) => {
  306. item.className = ""
  307. if (Number(e.dataset.index) == index) {
  308. document.querySelectorAll(".head .option>a")[index].className = 'selected'
  309. }
  310. })
  311. }
  312. </script>
  313. </body>
  314. </html>