|
|
| (未显示同一用户的1个中间版本) |
| 第1行: |
第1行: |
| <html lang="zh-CN"><head>
| |
| <meta charset="UTF-8">
| |
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| |
|
| |
|
| <style>
| |
| /* ========== 禁止修改区:与主页面完全一致 ========== */
| |
| * { margin: 0; padding: 0; box-sizing: border-box; }
| |
| body {
| |
| background: #eef2f7;
| |
| padding: 20px;
| |
| font-family: "Microsoft YaHei", sans-serif;
| |
| display: flex;
| |
| flex-direction: column;
| |
| align-items: center; /* 垂直居中 */
| |
| justify-content: center; /* 水平居中(新增) */
| |
| }
| |
| .container {
| |
| position: relative;
| |
| width: 90%;
| |
| max-width: 900px;
| |
| margin-bottom: 10px; /* 多图间距保留 */
| |
| }
| |
| .image {
| |
| width: 100%;
| |
| display: block;
| |
| }
| |
|
| |
| /* ========== 标记点:主页面同款 ========== */
| |
| .marker {
| |
| position: absolute;
| |
| width: 0.7vw;
| |
| height: 0.7vw;
| |
| min-width: 4px;
| |
| min-height: 4px;
| |
| border-radius: 50%;
| |
| background: rgba(255, 0, 0, 1);
| |
| color: white;
| |
| font-weight: bold;
| |
| font-size: 0.6vw;
| |
| display: flex;
| |
| align-items: center;
| |
| justify-content: center;
| |
| transform: translate(-50%, -50%);
| |
| z-index: 10;
| |
| transition: transform 0.2s;
| |
| }
| |
|
| |
| /* ========== 文本框:主页面同款 ========== */
| |
| .text-note {
| |
| position: absolute;
| |
| transform: translate(0, -50%);
| |
| background: rgba(255, 255, 255, 0.9);
| |
| border: 1px solid rgba(255, 0, 0, 0.9);
| |
| padding: 0.6vw 1vw;
| |
| font-size: 1vw;
| |
| min-font-size: 12px;
| |
| border-radius: 2px;
| |
| font-weight: bold;
| |
| text-align: left;
| |
| color: #000;
| |
| }
| |
| </style>
| |
| </head>
| |
|
| |
| <body>
| |
| <!-- 需要编辑①:图片 URL -->
| |
| <div class="container" style="position: relative;">
| |
| <img class="image" src="http://10.20.9.176:8080/images/b/b0/%E4%BB%BB%E5%8A%A1%E5%AF%BC%E8%88%AA-%E8%BD%A6%E6%A3%80%E5%99%A8%E6%9B%B4%E6%8D%A2.png">
| |
|
| |
| <div class="marker" style="top:43.22%; left:68.17%;">1</div>
| |
| <div class="marker" style="top:43.08%; left:63.41%;">2</div>
| |
| <div class="text-note" style="top:43.81%; left:22.03%;">①确认故障车检器<br>②断电操作</div>
| |
| </div>
| |
|
| |
| <div class="container" style="position: relative;">
| |
| <img class="image" src="http://10.20.9.176:8080/images/d/df/%E4%BB%BB%E5%8A%A1%E5%AF%BC%E8%88%AA-%E8%BD%A6%E6%A3%80%E5%99%A8.png">
| |
|
| |
| <div class="marker" style="top:46.12%; left:37.78%;">1</div>
| |
| <div class="marker" style="top:47.22%; left:83.56%;">2</div>
| |
| <div class="text-note" style="top:74.32%; left:47.48%;">①往上拔出故障车检器<br>②车检器与底座分离</div>
| |
| </div>
| |
|
| |
| <div class="container" style="position: relative;">
| |
| <img class="image" src="http://10.20.9.176:8080/images/9/95/%E4%BB%BB%E5%8A%A1%E5%AF%BC%E8%88%AA-%E8%BD%A6%E6%A3%80%E5%99%A82.png">
| |
|
| |
| <div class="marker" style="top:55.24%; left:17.27%;">1</div>
| |
| <div class="text-note" style="top:89.19%; left:3.72%;">更换新车检器<br>①按照原来的车检器拨码进行调整<br>注意:通电况下,若有调整拨码开关,需要按复位按键生效</div>
| |
| </div>
| |
|
| |
|
| |
| </body>
| |
| </html>
| |