1
zhang
17 小时以前 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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;
        }
 
        ul.feature-list {
            list-style: none;
            padding-left: 20px;
        }
 
        ul.feature-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            line-height: 1.8;
            color: #666;
        }
 
        ul.feature-list li:before {
            content: "■";
            position: absolute;
            left: 0;
            color: #333;
        }
 
        .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-12-15 10:30:00</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>