|
|
@@ -0,0 +1,732 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN">
|
|
|
+ <head>
|
|
|
+ <meta charset="UTF-8" />
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
+ <title>内河干散货运输船东服务小程序</title>
|
|
|
+ <style>
|
|
|
+ /* 全局样式 */
|
|
|
+ * {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ font-family: "PingFang SC", "Helvetica Neue", "Microsoft YaHei",
|
|
|
+ sans-serif;
|
|
|
+ }
|
|
|
+
|
|
|
+ body {
|
|
|
+ background-color: #f5f7fa;
|
|
|
+ color: #333;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 1.5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .container {
|
|
|
+ max-width: 414px; /* iPhone 8 Plus 宽度 */
|
|
|
+ margin: 0 auto;
|
|
|
+ background-color: #fff;
|
|
|
+ min-height: 100vh;
|
|
|
+ position: relative;
|
|
|
+ padding-bottom: 60px; /* 为底部导航留出空间 */
|
|
|
+ }
|
|
|
+
|
|
|
+ .header {
|
|
|
+ background-color: #1e88e5;
|
|
|
+ color: white;
|
|
|
+ padding: 15px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
+ position: sticky;
|
|
|
+ top: 0;
|
|
|
+ z-index: 100;
|
|
|
+ }
|
|
|
+
|
|
|
+ .content {
|
|
|
+ padding: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 底部导航栏 */
|
|
|
+ .nav-bar {
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ max-width: 414px;
|
|
|
+ display: flex;
|
|
|
+ background-color: #fff;
|
|
|
+ border-top: 1px solid #e0e0e0;
|
|
|
+ height: 60px;
|
|
|
+ z-index: 100;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-item {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ padding: 5px 0;
|
|
|
+ color: #666;
|
|
|
+ text-decoration: none;
|
|
|
+ font-size: 12px;
|
|
|
+ transition: color 0.3s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-item.active {
|
|
|
+ color: #1e88e5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-icon {
|
|
|
+ font-size: 24px;
|
|
|
+ margin-bottom: 2px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 按钮样式 */
|
|
|
+ .btn {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ padding: 15px;
|
|
|
+ border-radius: 8px;
|
|
|
+ text-align: center;
|
|
|
+ color: white;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ text-decoration: none;
|
|
|
+ transition: opacity 0.3s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn:active {
|
|
|
+ opacity: 0.8;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-green {
|
|
|
+ background-color: #4caf50;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-blue {
|
|
|
+ background-color: #1e88e5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-red {
|
|
|
+ background-color: #f44336;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-phone {
|
|
|
+ background-color: #ff9800;
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ width: auto;
|
|
|
+ padding: 8px 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-phone:before {
|
|
|
+ content: "☎️";
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 卡片样式 */
|
|
|
+ .card {
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 8px;
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
+ margin-bottom: 15px;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ .card-header {
|
|
|
+ padding: 12px 15px;
|
|
|
+ border-bottom: 1px solid #eee;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #333;
|
|
|
+ background-color: #f9f9f9;
|
|
|
+ }
|
|
|
+
|
|
|
+ .card-content {
|
|
|
+ padding: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 列表样式 */
|
|
|
+ .list-item {
|
|
|
+ padding: 12px 15px;
|
|
|
+ border-bottom: 1px solid #eee;
|
|
|
+ }
|
|
|
+
|
|
|
+ .list-item:last-child {
|
|
|
+ border-bottom: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 标签样式 */
|
|
|
+ .tag {
|
|
|
+ display: inline-block;
|
|
|
+ padding: 4px 8px;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-size: 12px;
|
|
|
+ color: white;
|
|
|
+ margin-right: 5px;
|
|
|
+ background-color: #1e88e5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tag-warning {
|
|
|
+ background-color: #ff9800;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tag-danger {
|
|
|
+ background-color: #f44336;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 搜索框 */
|
|
|
+ .search-box {
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-input {
|
|
|
+ flex: 1;
|
|
|
+ padding: 10px 15px;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ border-radius: 8px 0 0 8px;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search-btn {
|
|
|
+ background-color: #1e88e5;
|
|
|
+ color: white;
|
|
|
+ border: none;
|
|
|
+ padding: 0 15px;
|
|
|
+ border-radius: 0 8px 8px 0;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 地图模块 */
|
|
|
+ .map-container {
|
|
|
+ height: 200px;
|
|
|
+ background-color: #e0e0e0;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ border-radius: 8px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ color: #666;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .map-marker {
|
|
|
+ position: absolute;
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ background-color: #1e88e5;
|
|
|
+ border-radius: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ }
|
|
|
+
|
|
|
+ .map-marker.ship {
|
|
|
+ background-color: #4caf50;
|
|
|
+ }
|
|
|
+
|
|
|
+ .map-marker.cargo {
|
|
|
+ background-color: #f44336;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 图片容器 */
|
|
|
+ .img-container {
|
|
|
+ width: 100%;
|
|
|
+ height: 150px;
|
|
|
+ background-color: #e0e0e0;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ border-radius: 8px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ color: #666;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 分享按钮 */
|
|
|
+ .share-btn {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ padding: 10px;
|
|
|
+ background-color: #1e88e5;
|
|
|
+ color: white;
|
|
|
+ border-radius: 8px;
|
|
|
+ margin-top: 15px;
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .share-btn:before {
|
|
|
+ content: "分享";
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 表单样式 */
|
|
|
+ .form-group {
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-label {
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-input {
|
|
|
+ width: 100%;
|
|
|
+ padding: 10px;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ border-radius: 8px;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ textarea.form-input {
|
|
|
+ min-height: 100px;
|
|
|
+ resize: vertical;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-submit {
|
|
|
+ background-color: #1e88e5;
|
|
|
+ color: white;
|
|
|
+ border: none;
|
|
|
+ padding: 12px 20px;
|
|
|
+ border-radius: 8px;
|
|
|
+ cursor: pointer;
|
|
|
+ width: 100%;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 页面切换 */
|
|
|
+ .page {
|
|
|
+ margin-bottom: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-title {
|
|
|
+ background-color: #1e88e5;
|
|
|
+ color: white;
|
|
|
+ padding: 10px 15px;
|
|
|
+ border-radius: 8px 8px 0 0;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 16px;
|
|
|
+ margin-top: 20px;
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 证书有效期样式 */
|
|
|
+ .validity {
|
|
|
+ display: flex;
|
|
|
+ margin-top: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .validity-item {
|
|
|
+ flex: 1;
|
|
|
+ text-align: center;
|
|
|
+ padding: 5px;
|
|
|
+ border: 1px solid #eee;
|
|
|
+ border-radius: 4px;
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .validity-item:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .validity-label {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #666;
|
|
|
+ }
|
|
|
+
|
|
|
+ .validity-value {
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 公告样式 */
|
|
|
+ .notice-meta {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ color: #666;
|
|
|
+ font-size: 12px;
|
|
|
+ margin-top: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 数据展示 */
|
|
|
+ .data-display {
|
|
|
+ display: flex;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .data-item {
|
|
|
+ flex: 1;
|
|
|
+ text-align: center;
|
|
|
+ padding: 10px;
|
|
|
+ border: 1px solid #eee;
|
|
|
+ border-radius: 4px;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .data-item:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .data-value {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #1e88e5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .data-label {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #666;
|
|
|
+ margin-top: 5px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <div class="container">
|
|
|
+ <!-- 顶部标题 -->
|
|
|
+ <div class="header">内河干散货运输船东服务</div>
|
|
|
+
|
|
|
+ <!-- 内容区域 -->
|
|
|
+ <div class="content">
|
|
|
+ <!-- 货盘页面 -->
|
|
|
+ <div id="cargo" class="page active">
|
|
|
+ <!-- 签到、拍货物、拍单据按钮 -->
|
|
|
+ <a href="#" class="btn btn-green">签到</a>
|
|
|
+ <a href="#" class="btn btn-blue">拍货物</a>
|
|
|
+ <a href="#" class="btn btn-red">拍单据</a>
|
|
|
+
|
|
|
+ <!-- 智能服务 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">智能服务</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div class="list-item">
|
|
|
+ <span class="tag tag-warning">提醒</span>
|
|
|
+ 您的船舶年检即将到期,到期日期:2023年12月31日
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <span class="tag tag-danger">提醒</span>
|
|
|
+ 您有3本证书即将到期
|
|
|
+ <div style="margin-top: 10px">
|
|
|
+ <div style="padding: 5px 0; border-bottom: 1px dashed #eee">
|
|
|
+ <div>船舶检验证书</div>
|
|
|
+ <div style="color: #f44336">到期时间:2023年12月15日</div>
|
|
|
+ </div>
|
|
|
+ <div style="padding: 5px 0; border-bottom: 1px dashed #eee">
|
|
|
+ <div>船舶营运证</div>
|
|
|
+ <div style="color: #f44336">到期时间:2023年12月20日</div>
|
|
|
+ </div>
|
|
|
+ <div style="padding: 5px 0">
|
|
|
+ <div>船员适任证书</div>
|
|
|
+ <div style="color: #f44336">到期时间:2023年12月25日</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <span class="tag">提醒</span>
|
|
|
+ 您有2个船员资质可升级
|
|
|
+ <div style="margin-top: 10px">
|
|
|
+ <div style="padding: 5px 0; border-bottom: 1px dashed #eee">
|
|
|
+ <div>三副</div>
|
|
|
+ <div style="color: #1e88e5">可升级为:二副</div>
|
|
|
+ </div>
|
|
|
+ <div style="padding: 5px 0">
|
|
|
+ <div>机工</div>
|
|
|
+ <div style="color: #1e88e5">可升级为:三管轮</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item" style="text-align: center">
|
|
|
+ 船舶年检证书办理与资质请联系朱经理
|
|
|
+ <a href="tel:13800138000" class="btn btn-phone">拨打电话</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 搜查附近货盘 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">搜查附近货盘</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div class="search-box">
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ class="search-input"
|
|
|
+ placeholder="输入关键词搜索"
|
|
|
+ />
|
|
|
+ <button class="search-btn">搜索</button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="map-container">
|
|
|
+ <div>地图区域 - 显示船舶与货盘</div>
|
|
|
+ <div class="map-marker ship" style="top: 40%; left: 45%"></div>
|
|
|
+ <div class="map-marker cargo" style="top: 30%; left: 60%"></div>
|
|
|
+ <div class="map-marker cargo" style="top: 50%; left: 30%"></div>
|
|
|
+ <div class="map-marker cargo" style="top: 60%; left: 55%"></div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 货盘列表 -->
|
|
|
+ <div class="list-item">
|
|
|
+ <div>
|
|
|
+ <strong>煤炭</strong>
|
|
|
+ | 南京港 → 芜湖港 | 3000吨
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-top: 5px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div style="color: #666">距离: 约50公里</div>
|
|
|
+ <a href="tel:13900139001" class="btn btn-phone">拨打电话</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <div>
|
|
|
+ <strong>砂石</strong>
|
|
|
+ | 马鞍山港 → 安庆港 | 5000吨
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-top: 5px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div style="color: #666">距离: 约80公里</div>
|
|
|
+ <a href="tel:13900139002" class="btn btn-phone">拨打电话</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <div>
|
|
|
+ <strong>水泥</strong>
|
|
|
+ | 芜湖港 → 九江港 | 2000吨
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-top: 5px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div style="color: #666">距离: 约120公里</div>
|
|
|
+ <a href="tel:13900139003" class="btn btn-phone">拨打电话</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="certificate" class="page">
|
|
|
+ <!-- 证书页面内容 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">证书管理</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>船舶检验证书</strong></div>
|
|
|
+ <div style="color: #f44336">到期时间:2023年12月15日</div>
|
|
|
+ <div class="validity">
|
|
|
+ <div class="validity-item">
|
|
|
+ <div class="validity-label">签发日期</div>
|
|
|
+ <div class="validity-value">2022-12-15</div>
|
|
|
+ </div>
|
|
|
+ <div class="validity-item">
|
|
|
+ <div class="validity-label">有效期</div>
|
|
|
+ <div class="validity-value">12个月</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>船舶营运证</strong></div>
|
|
|
+ <div style="color: #f44336">到期时间:2023年12月20日</div>
|
|
|
+ <div class="validity">
|
|
|
+ <div class="validity-item">
|
|
|
+ <div class="validity-label">签发日期</div>
|
|
|
+ <div class="validity-value">2022-12-20</div>
|
|
|
+ </div>
|
|
|
+ <div class="validity-item">
|
|
|
+ <div class="validity-label">有效期</div>
|
|
|
+ <div class="validity-value">12个月</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="maritime" class="page">
|
|
|
+ <!-- 海事页面内容 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">海事信息</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>最新海事通告</strong></div>
|
|
|
+ <div style="margin-top: 10px; line-height: 1.6;">
|
|
|
+ 关于长江中游航道维护工程的通知,预计2023年12月10日至2024年1月15日期间,在芜湖至安庆段进行航道疏浚工程,请过往船舶注意避让。
|
|
|
+ </div>
|
|
|
+ <div class="notice-meta">
|
|
|
+ <span>发布时间: 2023-11-20</span>
|
|
|
+ <span>来源: 长江海事局</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="inspection" class="page">
|
|
|
+ <!-- 年检页面内容 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">年检信息</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>年检提醒</strong></div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ 您的船舶年检即将到期,到期日期:2023年12月31日
|
|
|
+ </div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <a href="#" class="btn btn-blue">预约年检</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>年检机构</strong></div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <div>长江船舶检验局芜湖分局</div>
|
|
|
+ <div>地址:芜湖市弋江区滨江大道26号</div>
|
|
|
+ <div>电话:0553-12345678</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="shipyard" class="page">
|
|
|
+ <!-- 船厂页面内容 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">推荐船厂</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>芜湖江东船厂</strong></div>
|
|
|
+ <div style="margin-top: 5px;">专业提供内河船舶维修、保养服务</div>
|
|
|
+ <div style="margin-top: 5px; color: #666;">距离您当前位置:约15公里</div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <a href="tel:13900139005" class="btn btn-phone">拨打电话</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="list-item">
|
|
|
+ <div><strong>安庆市港口船厂</strong></div>
|
|
|
+ <div style="margin-top: 5px;">提供船舶维修、改造及年检前检修服务</div>
|
|
|
+ <div style="margin-top: 5px; color: #666;">距离您当前位置:约60公里</div>
|
|
|
+ <div style="margin-top: 10px;">
|
|
|
+ <a href="tel:13900139006" class="btn btn-phone">拨打电话</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="school" class="page">
|
|
|
+ <!-- 学校介绍 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">学校介绍</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div style="font-weight: bold; font-size: 16px; margin-bottom: 5px;">
|
|
|
+ 长江航运技术学校
|
|
|
+ </div>
|
|
|
+ <div class="img-container">学校照片</div>
|
|
|
+ <div style="line-height: 1.6; margin: 15px 0;">
|
|
|
+ 长江航运技术学校创建于1990年,是一所专注于培养内河航运专业人才的职业学校。学校拥有一支经验丰富的教师队伍,配备了先进的航运模拟设备和实训基地。多年以来,已为长江流域输送了上万名专业航运人才,毕业生就业率达到95%以上。学校开设有船舶驾驶、轮机管理、船舶电气等多个专业,并提供各类船员资质培训和证书考取服务,是内河船员培训的重要基地。
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="margin-top: 15px; margin-bottom: 15px;">
|
|
|
+ <div style="font-weight: bold; margin-bottom: 10px;">学校运营数据</div>
|
|
|
+ <div class="data-display">
|
|
|
+ <div class="data-item">
|
|
|
+ <div class="data-value">2000</div>
|
|
|
+ <div class="data-label">场地规模(㎡)</div>
|
|
|
+ </div>
|
|
|
+ <div class="data-item">
|
|
|
+ <div class="data-value">500</div>
|
|
|
+ <div class="data-label">年结业人数</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 培训公告 -->
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">培训公告</div>
|
|
|
+ <div class="card-content">
|
|
|
+ <div style="font-weight: bold; font-size: 16px; margin-bottom: 10px;">
|
|
|
+ 海员培训课程将在2025年3月10-15日期间在新蔡学员举办
|
|
|
+ </div>
|
|
|
+ <div style="color: #666; font-size: 12px; margin-bottom: 10px;">
|
|
|
+ 作者:汇很多 | 发布时间:2023-11-25
|
|
|
+ </div>
|
|
|
+ <div class="img-container">培训现场照片</div>
|
|
|
+ <div style="line-height: 1.6; margin: 15px 0;">
|
|
|
+ 为提升内河船员专业技能,我校将于2025年3月10日至15日在新蔡校区举办为期6天的海员专业培训课程。本次培训内容包括船舶驾驶技能提升、船舶安全管理、应急处置能力训练等多个方面,由资深航运专家授课。培训结束后将颁发专业培训证书,可作为船员升级资质的重要依据。名额有限,请有意向的船员提前报名预留位置。培训期间提供食宿,费用优惠。此次培训旨在提高内河船员整体素质,增强航行安全意识,欢迎广大船员积极参与。
|
|
|
+ </div>
|
|
|
+ <a href="#" class="share-btn">分享培训信息</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 底部导航栏 -->
|
|
|
+ <div class="nav-bar">
|
|
|
+ <a href="#" class="nav-item active" onclick="showPage('cargo')">
|
|
|
+ <div class="nav-icon">📦</div>
|
|
|
+ <div>货盘</div>
|
|
|
+ </a>
|
|
|
+ <a href="#" class="nav-item" onclick="showPage('certificate')">
|
|
|
+ <div class="nav-icon">📄</div>
|
|
|
+ <div>证书</div>
|
|
|
+ </a>
|
|
|
+ <a href="#" class="nav-item" onclick="showPage('maritime')">
|
|
|
+ <div class="nav-icon">🚢</div>
|
|
|
+ <div>海事</div>
|
|
|
+ </a>
|
|
|
+ <a href="#" class="nav-item" onclick="showPage('inspection')">
|
|
|
+ <div class="nav-icon">🔍</div>
|
|
|
+ <div>年检</div>
|
|
|
+ </a>
|
|
|
+ <a href="#" class="nav-item" onclick="showPage('shipyard')">
|
|
|
+ <div class="nav-icon">⚓</div>
|
|
|
+ <div>船厂</div>
|
|
|
+ </a>
|
|
|
+ <a href="#" class="nav-item" onclick="showPage('school')">
|
|
|
+ <div class="nav-icon">🎓</div>
|
|
|
+ <div>学校</div>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <script>
|
|
|
+ // 页面切换功能
|
|
|
+ function showPage(pageId) {
|
|
|
+ // 隐藏所有页面
|
|
|
+ document.querySelectorAll('.page').forEach(page => {
|
|
|
+ page.classList.remove('active');
|
|
|
+ });
|
|
|
+
|
|
|
+ // 显示选中的页面
|
|
|
+ const selectedPage = document.getElementById(pageId);
|
|
|
+ if (selectedPage) {
|
|
|
+ selectedPage.classList.add('active');
|
|
|
+ }
|
|
|
+
|
|
|
+ // 更新导航栏选中状态
|
|
|
+ document.querySelectorAll('.nav-item').forEach(item => {
|
|
|
+ item.classList.remove('active');
|
|
|
+ });
|
|
|
+
|
|
|
+ // 设置当前导航项为激活状态
|
|
|
+ if (event && event.currentTarget) {
|
|
|
+ event.currentTarget.classList.add('active');
|
|
|
+ } else {
|
|
|
+ // 如果没有事件对象,通过页面ID查找对应的导航项
|
|
|
+ const navItem = document.querySelector(`.nav-item[onclick="showPage('${pageId}')"]`);
|
|
|
+ if (navItem) {
|
|
|
+ navItem.classList.add('active');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ </body>
|
|
|
+</html>
|