|
@@ -0,0 +1,441 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>教练管家官网</title>
|
|
|
+ <style type="text/css">
|
|
|
+ * {
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 头部区域的 */
|
|
|
+ .head {
|
|
|
+ height: 80px;
|
|
|
+ width: 100%;
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-content: center;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 360px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .head .logo {
|
|
|
+ width: 230px;
|
|
|
+ height: 100px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .head .option {
|
|
|
+ cursor: pointer;
|
|
|
+ color: black;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .head .option>a {
|
|
|
+ margin-right: 56px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .head .option>a:link {
|
|
|
+ color: black;
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .head .option>a:visited {
|
|
|
+ color: black;
|
|
|
+ }
|
|
|
+
|
|
|
+ #head .option .selected {
|
|
|
+
|
|
|
+ color: rgba(48, 176, 92, 1);
|
|
|
+ text-decoration: underline;
|
|
|
+ text-decoration-thickness: 4px;
|
|
|
+ text-underline-offset: 6px;
|
|
|
+ text-decoration-color: rgba(48, 176, 92, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* banner图的 */
|
|
|
+ .banner {
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .banner>img {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 产品介绍的 */
|
|
|
+ .intro {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ padding-top: 50px;
|
|
|
+ padding-bottom: 47px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro .img1 {
|
|
|
+ width: 408px;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro .img2 {
|
|
|
+ width: 471px;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro .section {
|
|
|
+ margin-top: 72px;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro .section .text {
|
|
|
+ margin-top: 41px;
|
|
|
+ margin-left: 176px;
|
|
|
+ width: 500px;
|
|
|
+ text-indent: 2em;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 产品特征 */
|
|
|
+ .features {
|
|
|
+ padding: 50px 0;
|
|
|
+ background-color: rgba(10, 26, 51, 1);
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .features .img1 {
|
|
|
+ width: 408px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .features .text {
|
|
|
+ display: flex;
|
|
|
+ margin-top: 93px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .features .item {
|
|
|
+ width: 285px;
|
|
|
+ height: 369px;
|
|
|
+ text-align: center;
|
|
|
+ background: linear-gradient(180deg, #0D609F 0%, #1B3256 100%);
|
|
|
+ margin-left: 20px;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .features .item>img {
|
|
|
+
|
|
|
+
|
|
|
+ width: 93px;
|
|
|
+ height: 93px;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 50px;
|
|
|
+
|
|
|
+ }
|
|
|
+ .features .item .item-text1 {
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 20px;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #fff;
|
|
|
+ font-weight: 600;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .features .item .item-text2 {
|
|
|
+ text-align: left;
|
|
|
+ margin-top: 16px;
|
|
|
+
|
|
|
+ padding: 0 30px;
|
|
|
+ color: #fff;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 下载 */
|
|
|
+ .download {
|
|
|
+ padding: 50px 0;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ .download .img1{
|
|
|
+ width: 328px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .left {
|
|
|
+ margin-top: 110px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .left .download-buttons {
|
|
|
+ margin-top: 36px;
|
|
|
+ height: auto;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .download-text1 {
|
|
|
+ color: #0A1A33;
|
|
|
+ font-size: 40px;
|
|
|
+ padding-right: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .download-text2 {
|
|
|
+ color: #0A1A33;
|
|
|
+ font-size: 40px;
|
|
|
+ padding-right: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .download-android {
|
|
|
+ background-image: url('./assets/安卓按钮@2x.png');
|
|
|
+ width: 280px;
|
|
|
+ height: 64px;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ margin-right: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .download-ios {
|
|
|
+ background-image: url('./assets/苹果按钮@2x.png');
|
|
|
+ width: 280px;
|
|
|
+ height: 64px;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .icon {
|
|
|
+ margin-left: 160px;
|
|
|
+ margin-top: 57px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .download .icon>img {
|
|
|
+ width: 353px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 联系 */
|
|
|
+ .contact {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ background-color: #151E30;
|
|
|
+ padding-top: 50px;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ margin-left: 390px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ width: 400px;
|
|
|
+ align-items: flex-start;
|
|
|
+ align-content: flex-start;
|
|
|
+ font-size: 36px;
|
|
|
+ color: #fff;
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+ .right .img1{
|
|
|
+ width: 42px;
|
|
|
+ height: 42px;
|
|
|
+ margin-right: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .left {
|
|
|
+ padding-bottom: 50px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .contact .logo {
|
|
|
+ width: 405px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .contact .name {
|
|
|
+ font-size: 26px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+
|
|
|
+ .contact .address {
|
|
|
+ font-size: 18px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
+
|
|
|
+ .contact .phone {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 36px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .contact .bottom {
|
|
|
+ box-sizing: content-box;
|
|
|
+ width: 100%;
|
|
|
+ border-top: 1px solid #fff;
|
|
|
+ height: 82px;
|
|
|
+ line-height: 82px;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+
|
|
|
+
|
|
|
+<body>
|
|
|
+ <div class="container">
|
|
|
+ <div id="head" class="head">
|
|
|
+ <img class="logo" src="./assets/蒙版组 1@2x.png" />
|
|
|
+ <div class="option">
|
|
|
+ <a onclick="selectHeadOption(this)" class="selected" href="#head" data-index="0">首页</a>
|
|
|
+ <a onclick="selectHeadOption(this)" href="#intro" data-index="1">产品介绍</a>
|
|
|
+ <a onclick="selectHeadOption(this)" href="#features" data-index="2">产品特征</a>
|
|
|
+ <a onclick="selectHeadOption(this)" href="#price" data-index="3">产品价格</a>
|
|
|
+ <a onclick="selectHeadOption(this)" href="#download" data-index="4">下载</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="banner">
|
|
|
+ <img src="./assets/banner@2x.png" />
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="intro" id="intro">
|
|
|
+ <div style="width: 100%;text-align: center;" class="">
|
|
|
+ <img class="img1" src="./assets/产品介绍@2x.png">
|
|
|
+ </div>
|
|
|
+ <div class="section">
|
|
|
+
|
|
|
+ <img class="img2" src="./assets/产品介绍配图@2x.png">
|
|
|
+
|
|
|
+
|
|
|
+ <div class="text">
|
|
|
+ 教练管家跨驾校版是专注教练教学使用的APP,旨在帮助教练更好的完成教学任务,有管理学员,日常办公等功能,结合我们运管的数据资源,可以帮助教练实现互联网教学并提供个性化服务,其主要功能包括了:我的学员,绑定学员,报名统计,个人中心这几大模块。
|
|
|
+ <br> 详细功能如下:<br>
|
|
|
+
|
|
|
+ 1、我的学员:驾校给您分配学员后,您可以在我的学员里面查看到学员的详细信息,包括报名时间,考试成绩和学习进度和教学日志<br>
|
|
|
+ 2、绑定学员:跟教练绑定的学员,学员信息,及列表<br>
|
|
|
+ 3、报名统计:统计学员的报名人数,根据日,月,年来统计。<br>
|
|
|
+ 4、个人中心:查看教练个人信息及修改密码等基本操作。<br>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="features" id="features">
|
|
|
+ <div class="" style="width: 100%;text-align: center;">
|
|
|
+ <img class="img1" src="./assets/产品特性@2x.png" />
|
|
|
+ </div>
|
|
|
+ <div class="text">
|
|
|
+ <div class="item">
|
|
|
+ <img src="./assets/管理学员@2x.png" />
|
|
|
+ <div class="item-text1">管理学员</div>
|
|
|
+ <div class="item-text2">驾校给教练分配学员后,教练可以在我的学员里面查看到学员的详细信息,包括报名时间、考试成绩、学习进度和教学日志。
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <img src="./assets/绑定学员@2x.png" />
|
|
|
+ <div class="item-text1">绑定学员</div>
|
|
|
+ <div class="item-text2">教练可以绑定学员,并可以查看跟教练绑定的学员信息及列表</div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <img src="./assets/报名统计@2x.png" />
|
|
|
+ <div class="item-text1">报名统计</div>
|
|
|
+ <div class="item-text2">根据日,月,年来统计学员的报名人数,数据清晰明了</div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <img src="./assets/个人中心@2x.png" />
|
|
|
+ <div class="item-text1">个人中心</div>
|
|
|
+ <div class="item-text2">教练可以进行查看个人信息及修改密码等基本操作。</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="banner" id="price">
|
|
|
+ <img src="./assets/免费使用@2x.png" />
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="download" id="download">
|
|
|
+ <div class="" style="width: 100%;text-align: center;">
|
|
|
+ <img class="img1" src="./assets/下载@2x.png" />
|
|
|
+ </div>
|
|
|
+ <div class="left">
|
|
|
+ <div>
|
|
|
+ <div class="download-text1">教练管家</div>
|
|
|
+ <div class="download-text2">教练教学的好助手</div>
|
|
|
+ <div class="download-buttons" style="display: flex;">
|
|
|
+ <a href="https://ct.zzxcx.net/apk/">
|
|
|
+ <div class="download-android"></div>
|
|
|
+ </a>
|
|
|
+ <a href="https://itunes.apple.com/cn/app/id1214203182">
|
|
|
+ <div class="download-ios"></div>
|
|
|
+ </a>
|
|
|
+ <!--
|
|
|
+ // 跳转到应用商店:
|
|
|
+(https)|(itms-apps)://itunes.apple.com/app/id{appID}
|
|
|
+
|
|
|
+// 跳转到撰写评价:
|
|
|
+ (https)|(itms-apps)://itunes.apple.com/app/id{appID}?action=write-review
|
|
|
+
|
|
|
+// 跳转到查看评价:
|
|
|
+ (https)|(itms-apps)://itunes.apple.com/app/viewContentsUserReviews?id={appID}
|
|
|
+
|
|
|
+
|
|
|
+ -->
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="icon">
|
|
|
+ <img src="./assets/组 1716@2x.png" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="contact">
|
|
|
+ <div class="left">
|
|
|
+ <!-- <img class="logo" src="./assets/白字logo.png" /> -->
|
|
|
+ <div class="name">福建中振网络科技有限公司</div>
|
|
|
+ <div class="address">地址:福建省福州市闽侯县荆溪镇永丰村杜坞43号大数据科技园D8#楼</div>
|
|
|
+ </div>
|
|
|
+ <div class="right">
|
|
|
+ <!-- <div class="phone">电话:+86 17750216095</div> -->
|
|
|
+ <div style="width: 100%;text-align: center;display: flex;align-items: center;">
|
|
|
+ <img class="img1" src="./assets/电话@2x.png" />
|
|
|
+ <span>0591-22857882</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <a target="_blank" href="https://beian.miit.gov.cn/" class="bottom">
|
|
|
+ © 2023 教练管家
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <script>
|
|
|
+ let dataIndex = 0
|
|
|
+ function selectHeadOption(e) {
|
|
|
+ document.querySelectorAll(".head .option>a").forEach((item, index) => {
|
|
|
+ item.className = ""
|
|
|
+ if (Number(e.dataset.index) == index) {
|
|
|
+ document.querySelectorAll(".head .option>a")[index].className = 'selected'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ </script>
|
|
|
+
|
|
|
+
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|