diff --git a/static/image/draw/1.svg b/static/image/draw/1.svg
new file mode 100644
index 0000000..62314fc
--- /dev/null
+++ b/static/image/draw/1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/image/draw/2.svg b/static/image/draw/2.svg
new file mode 100644
index 0000000..df66f03
--- /dev/null
+++ b/static/image/draw/2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/image/draw/3.svg b/static/image/draw/3.svg
new file mode 100644
index 0000000..9fbbac3
--- /dev/null
+++ b/static/image/draw/3.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/image/draw/4.svg b/static/image/draw/4.svg
new file mode 100644
index 0000000..134cd0f
--- /dev/null
+++ b/static/image/draw/4.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/image/summary-bg.svg b/static/image/summary-bg.svg
new file mode 100644
index 0000000..f728874
--- /dev/null
+++ b/static/image/summary-bg.svg
@@ -0,0 +1 @@
+
diff --git a/static/script/index.js b/static/script/index.js
index 0ff219e..aabf9ee 100644
--- a/static/script/index.js
+++ b/static/script/index.js
@@ -9,6 +9,29 @@
});
})();
+// 特征选项卡
+(function(){
+ let $mod_feature = document.querySelector('.mod-feature');
+ let $nav = $mod_feature.querySelectorAll('.nav li');
+ let $panels = $mod_feature.querySelectorAll('.panels .panel');
+ let togglePanel = function(index = 0){
+ $nav.forEach(function($li){
+ $li.classList.remove('active');
+ });
+ $nav[index].classList.add('active');
+ $panels.forEach(function($panel){
+ $panel.classList.remove('active');
+ });
+ $panels[index].classList.add('active');
+ };
+ $nav.forEach(function($item,index){
+ $item.addEventListener('click',function(){
+ togglePanel(index);
+ });
+ });
+ togglePanel(0);
+})();
+
// 底部滚动
(function(){
let $gotop = document.querySelector('.mod-fixedbar .gotop');
diff --git a/static/style/index.css b/static/style/index.css
index 1c20af3..5f85ab1 100644
--- a/static/style/index.css
+++ b/static/style/index.css
@@ -353,7 +353,7 @@ header{
}
.mod-panel .panel-right .c-hd li.active a{
flex: 1.5;
- font-size: 20px;
+ font-size: 18px;
color: rgba(0,0,0,0.9);
}
.mod-panel .panel-right .c-hd li.active a::after{
@@ -533,6 +533,68 @@ header{
overflow-x: auto;
}
+.mod-feature .bd{
+ display: flex;
+ padding: 25px 0;
+}
+.mod-feature .bd ul{
+ width: 350px;
+ margin-left: 20px;
+ padding: 25px 0;
+}
+.mod-feature .bd li{
+ padding: 20px;
+ margin: 5px 0;
+ margin-left: 15px;
+ background: linear-gradient(to right, #f6f8fa 0, transparent 100%);
+ line-height: 28px;
+ border-top-left-radius: 8px;
+ border-bottom-left-radius: 8px;
+ opacity: 0.75;
+ transition: all 0.25s ease-in;
+ cursor: pointer;
+}
+.mod-feature .bd li.active{
+ opacity: 1;
+ margin-left: 0;
+}
+.mod-feature .bd li p.title{
+ font-size: 20px;
+ font-weight: bold;
+}
+.mod-feature .bd li p.desc{
+ font-size: 16px;
+ color: #999;
+}
+.mod-feature .panels{
+ flex: 1;
+ min-width: 0;
+ padding: 20px;
+ background: url('../image/summary-bg.svg') center center repeat;
+}
+.mod-feature .panel{
+ display: none;
+ position: relative;
+ height: 100%;
+ padding: 20px 0 100px;
+ text-align: center;
+ box-sizing: border-box;
+ justify-content: center;
+}
+.mod-feature .panel.active{
+ display: flex;
+}
+.mod-feature .panel .slogan{
+ position: absolute;
+ right: 0;
+ bottom: 10px;
+ padding: 15px;
+ background: #f5f5f5;
+ line-height: 30px;
+ font-size: 24px;
+ font-weight: bold;
+}
+
.mod-article .banner{
height: 120px;
padding: 20px 20px 20px 38%;
diff --git a/zh-HK.html b/zh-HK.html
index 98aadc9..0ce769c 100644
--- a/zh-HK.html
+++ b/zh-HK.html
@@ -366,6 +366,50 @@