index.html 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  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: 230px;
  27. height: 100px;
  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: rgba(48, 176, 92, 1);
  47. text-decoration: underline;
  48. text-decoration-thickness: 4px;
  49. text-underline-offset: 6px;
  50. text-decoration-color: rgba(48, 176, 92, 1);
  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: 408px;
  70. }
  71. .intro .img2 {
  72. width: 471px;
  73. }
  74. .intro .section {
  75. margin-top: 72px;
  76. display: flex;
  77. flex-wrap: wrap;
  78. }
  79. .intro .section .text {
  80. margin-top: 41px;
  81. margin-left: 176px;
  82. width: 500px;
  83. text-indent: 2em;
  84. }
  85. /* 产品特征 */
  86. .features {
  87. padding: 50px 0;
  88. background-color: rgba(10, 26, 51, 1);
  89. display: flex;
  90. flex-wrap: wrap;
  91. justify-content: center;
  92. }
  93. .features .img1 {
  94. width: 408px;
  95. }
  96. .features .text {
  97. display: flex;
  98. margin-top: 93px;
  99. }
  100. .features .item {
  101. width: 285px;
  102. height: 369px;
  103. text-align: center;
  104. background: linear-gradient(180deg, #0D609F 0%, #1B3256 100%);
  105. margin-left: 20px;
  106. position: relative;
  107. }
  108. .features .item>img {
  109. width: 93px;
  110. height: 93px;
  111. margin: 0 auto;
  112. margin-top: 50px;
  113. }
  114. .features .item .item-text1 {
  115. text-align: center;
  116. margin-top: 20px;
  117. font-size: 20px;
  118. color: #fff;
  119. font-weight: 600;
  120. }
  121. .features .item .item-text2 {
  122. text-align: left;
  123. margin-top: 16px;
  124. padding: 0 30px;
  125. color: #fff;
  126. }
  127. /* 下载 */
  128. .download {
  129. padding: 50px 0;
  130. display: flex;
  131. flex-wrap: wrap;
  132. justify-content: center;
  133. }
  134. .download .img1{
  135. width: 328px;
  136. }
  137. .download .left {
  138. margin-top: 110px;
  139. }
  140. .download .left .download-buttons {
  141. margin-top: 36px;
  142. height: auto;
  143. }
  144. .download .download-text1 {
  145. color: #0A1A33;
  146. font-size: 40px;
  147. padding-right: 10px;
  148. }
  149. .download .download-text2 {
  150. color: #0A1A33;
  151. font-size: 40px;
  152. padding-right: 10px;
  153. }
  154. .download .download-android {
  155. background-image: url('./assets/安卓按钮@2x.png');
  156. width: 280px;
  157. height: 64px;
  158. background-size: 100% 100%;
  159. margin-right: 20px;
  160. }
  161. .download .download-ios {
  162. background-image: url('./assets/苹果按钮@2x.png');
  163. width: 280px;
  164. height: 64px;
  165. background-size: 100% 100%;
  166. }
  167. .download .icon {
  168. margin-left: 160px;
  169. margin-top: 57px;
  170. }
  171. .download .icon>img {
  172. width: 353px;
  173. }
  174. /* 联系 */
  175. .contact {
  176. display: flex;
  177. flex-wrap: wrap;
  178. background-color: #151E30;
  179. padding-top: 50px;
  180. justify-content: center;
  181. }
  182. .right {
  183. margin-left: 390px;
  184. display: flex;
  185. justify-content: center;
  186. flex-wrap: wrap;
  187. width: 400px;
  188. align-items: flex-start;
  189. align-content: flex-start;
  190. font-size: 36px;
  191. color: #fff;
  192. vertical-align: middle;
  193. }
  194. .right .img1{
  195. width: 42px;
  196. height: 42px;
  197. margin-right: 12px;
  198. }
  199. .left {
  200. padding-bottom: 50px;
  201. }
  202. .contact .logo {
  203. width: 405px;
  204. }
  205. .contact .name {
  206. font-size: 26px;
  207. color: #FFFFFF;
  208. }
  209. .contact .address {
  210. font-size: 18px;
  211. color: #FFFFFF;
  212. }
  213. .contact .phone {
  214. color: #fff;
  215. font-size: 36px;
  216. }
  217. .contact .bottom {
  218. box-sizing: content-box;
  219. width: 100%;
  220. border-top: 1px solid #fff;
  221. height: 82px;
  222. line-height: 82px;
  223. text-align: center;
  224. color: #fff;
  225. }
  226. </style>
  227. </head>
  228. <body>
  229. <div class="container">
  230. <div id="head" class="head">
  231. <img class="logo" src="./assets/蒙版组 1@2x.png" />
  232. <div class="option">
  233. <a onclick="selectHeadOption(this)" class="selected" href="#head" data-index="0">首页</a>
  234. <a onclick="selectHeadOption(this)" href="#intro" data-index="1">产品介绍</a>
  235. <a onclick="selectHeadOption(this)" href="#features" data-index="2">产品特征</a>
  236. <a onclick="selectHeadOption(this)" href="#price" data-index="3">产品价格</a>
  237. <a onclick="selectHeadOption(this)" href="#download" data-index="4">下载</a>
  238. </div>
  239. </div>
  240. <div class="banner">
  241. <img src="./assets/banner@2x.png" />
  242. </div>
  243. <div class="intro" id="intro">
  244. <div style="width: 100%;text-align: center;" class="">
  245. <img class="img1" src="./assets/产品介绍@2x.png">
  246. </div>
  247. <div class="section">
  248. <img class="img2" src="./assets/产品介绍配图@2x.png">
  249. <div class="text">
  250. 教练管家跨驾校版是专注教练教学使用的APP,旨在帮助教练更好的完成教学任务,有管理学员,日常办公等功能,结合我们运管的数据资源,可以帮助教练实现互联网教学并提供个性化服务,其主要功能包括了:我的学员,绑定学员,报名统计,个人中心这几大模块。
  251. <br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;详细功能如下:<br>
  252. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1、我的学员:驾校给您分配学员后,您可以在我的学员里面查看到学员的详细信息,包括报名时间,考试成绩和学习进度和教学日志<br>
  253. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2、绑定学员:跟教练绑定的学员,学员信息,及列表<br>
  254. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3、报名统计:统计学员的报名人数,根据日,月,年来统计。<br>
  255. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4、个人中心:查看教练个人信息及修改密码等基本操作。<br>
  256. </div>
  257. </div>
  258. </div>
  259. <div class="features" id="features">
  260. <div class="" style="width: 100%;text-align: center;">
  261. <img class="img1" src="./assets/产品特性@2x.png" />
  262. </div>
  263. <div class="text">
  264. <div class="item">
  265. <img src="./assets/管理学员@2x.png" />
  266. <div class="item-text1">管理学员</div>
  267. <div class="item-text2">驾校给教练分配学员后,教练可以在我的学员里面查看到学员的详细信息,包括报名时间、考试成绩、学习进度和教学日志。
  268. </div>
  269. </div>
  270. <div class="item">
  271. <img src="./assets/绑定学员@2x.png" />
  272. <div class="item-text1">绑定学员</div>
  273. <div class="item-text2">教练可以绑定学员,并可以查看跟教练绑定的学员信息及列表</div>
  274. </div>
  275. <div class="item">
  276. <img src="./assets/报名统计@2x.png" />
  277. <div class="item-text1">报名统计</div>
  278. <div class="item-text2">根据日,月,年来统计学员的报名人数,数据清晰明了</div>
  279. </div>
  280. <div class="item">
  281. <img src="./assets/个人中心@2x.png" />
  282. <div class="item-text1">个人中心</div>
  283. <div class="item-text2">教练可以进行查看个人信息及修改密码等基本操作。</div>
  284. </div>
  285. </div>
  286. </div>
  287. <div class="banner" id="price">
  288. <img src="./assets/免费使用@2x.png" />
  289. </div>
  290. <div class="download" id="download">
  291. <div class="" style="width: 100%;text-align: center;">
  292. <img class="img1" src="./assets/下载@2x.png" />
  293. </div>
  294. <div class="left">
  295. <div>
  296. <div class="download-text1">教练管家</div>
  297. <div class="download-text2">教练教学的好助手</div>
  298. <div class="download-buttons" style="display: flex;">
  299. <a href="https://ct.zzxcx.net/apk/">
  300. <div class="download-android"></div>
  301. </a>
  302. <a href="https://itunes.apple.com/cn/app/id1214203182">
  303. <div class="download-ios"></div>
  304. </a>
  305. <!--
  306. // 跳转到应用商店:
  307. (https)|(itms-apps)://itunes.apple.com/app/id{appID}
  308. // 跳转到撰写评价:
  309. (https)|(itms-apps)://itunes.apple.com/app/id{appID}?action=write-review
  310. // 跳转到查看评价:
  311. (https)|(itms-apps)://itunes.apple.com/app/viewContentsUserReviews?id={appID}
  312. -->
  313. </div>
  314. </div>
  315. </div>
  316. <div class="icon">
  317. <img src="./assets/组 1716@2x.png" />
  318. </div>
  319. </div>
  320. <div class="contact">
  321. <div class="left">
  322. <!-- <img class="logo" src="./assets/白字logo.png" /> -->
  323. <div class="name">福建中振网络科技有限公司</div>
  324. <div class="address">地址:福建省福州市闽侯县荆溪镇永丰村杜坞43号大数据科技园D8#楼</div>
  325. </div>
  326. <div class="right">
  327. <!-- <div class="phone">电话:+86 17750216095</div> -->
  328. <div style="width: 100%;text-align: center;display: flex;align-items: center;">
  329. <img class="img1" src="./assets/电话@2x.png" />
  330. <span>0591-22857882</span>
  331. </div>
  332. </div>
  333. <a target="_blank" href="https://beian.miit.gov.cn/" class="bottom">
  334. © 2023 教练管家
  335. </a>
  336. </div>
  337. </div>
  338. <script>
  339. let dataIndex = 0
  340. function selectHeadOption(e) {
  341. document.querySelectorAll(".head .option>a").forEach((item, index) => {
  342. item.className = ""
  343. if (Number(e.dataset.index) == index) {
  344. document.querySelectorAll(".head .option>a")[index].className = 'selected'
  345. }
  346. })
  347. }
  348. </script>
  349. </body>
  350. </html>