1
zhang
4 小时以前 6c229bdd8c538ef4990a6c54ecfc081a7e95c923
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<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 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background-color: #fff;
            padding: 30px;
            line-height: 1.8;
        }
 
        .breadcrumb {
            font-size: 14px;
            color: #999;
            margin-bottom: 20px;
        }
 
        .breadcrumb a {
            color: #999;
            text-decoration: none;
        }
 
        .update-time {
            float: right;
            color: #ccc;
            font-size: 12px;
        }
 
        h1 {
            font-size: 28px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
        }
 
        h2 {
            font-size: 20px;
            margin: 30px 0 20px;
            color: #333;
        }
 
        .content-text {
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }
 
        .feedback-section {
            margin: 40px 0;
            text-align: center;
        }
 
        .stars {
            margin: 20px 0;
        }
 
        .stars span {
            font-size: 30px;
            margin: 0 10px;
            color: #ddd;
            cursor: pointer;
        }
 
        .pagination {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
        }
 
        .pagination > div {
            cursor: pointer;
            max-width: 45%;
        }
 
        .pagination > div:hover {
            color: #0066cc;
        }
    </style>
</head>
<body>
<div class="breadcrumb">
    <a href="#">平台介绍</a> > 名词解释
    <span class="update-time">更新时间:2021-10-26 12:36:17</span>
</div>
 
<h1>名词解释</h1>
 
 
<div class="feedback-section">
    <p style="color: #999;">以上内容对您有帮助吗?</p>
    <div class="stars">
        <span>☆</span>
        <span>☆</span>
        <span>☆</span>
        <span>☆</span>
        <span>☆</span>
    </div>
</div>
 
<div class="pagination">
    <div class="prev-page">
        <div style="color: #999; font-size: 14px; margin-bottom: 10px;">上一篇</div>
        <div style="color: #333; font-size: 16px;">产品支持场景自动化</div>
    </div>
    <div class="next-page">
        <div style="color: #999; font-size: 14px; margin-bottom: 10px; text-align: right;">下一篇</div>
        <div style="color: #333; font-size: 16px; text-align: right;">开发者协议</div>
    </div>
</div>
 
<script>
    // 监听来自父页面的滚动消息
    window.addEventListener('message', function (event) {
        if (event.data.type === 'scrollTo') {
            const targetElement = document.getElementById(event.data.sectionId);
            if (targetElement) {
                targetElement.scrollIntoView({
                    behavior: 'smooth',
                    block: 'start'
                });
            }
        }
    });
</script>
</body>
</html>