<!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>
|