diff --git a/about.html b/about.html
index 5ecfc47..18aaabe 100644
--- a/about.html
+++ b/about.html
@@ -65,6 +65,7 @@
合作协议
关于我们
意见反馈
+ 操作指南
关于我们
diff --git a/agreement.html b/agreement.html
index e2b6876..17eda5b 100644
--- a/agreement.html
+++ b/agreement.html
@@ -65,6 +65,7 @@
合作协议
关于我们
意见反馈
+
操作指南
合作协议
diff --git a/css/base.css b/css/base.css
index caa0090..1fc5a8e 100644
--- a/css/base.css
+++ b/css/base.css
@@ -69,6 +69,7 @@ a{
button,
input,
textarea {
+ font-family: auto;
background: none;
border: 0;
outline: none; /* 取消轮廓 */
diff --git a/css/style.css b/css/style.css
index 9ccf1a5..6f8ba0a 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1289,6 +1289,32 @@
margin: 0 13px;
}
+/* 提示框 */
+.tips-box{
+ display: none;
+ min-width: 160px;
+ max-width: 240px;
+ background-color: #fff;
+ border-radius: 3px;
+ padding: 10px 10px;
+ text-align: center;
+ position: fixed;
+ top: 20%;
+ left: 50%;
+ transform: translate(-50%,-50%);
+ z-index: 999;
+}
+.tips-box>span{
+ display: block;
+ font-size: 17px;
+}
+.tips-box>p{
+ font-size: 14px;
+ line-height: 1.8;
+ margin-top: 4px;
+ opacity: .8;
+}
+
/* 响应式布局 */
@media screen and (max-width:1280px) {
@@ -1846,6 +1872,11 @@
display: inline-block;
margin-left: 0;
}
+
+ /* 提示框 */
+ .tips-box{
+ top: 50%;
+ }
}
@media screen and (max-width:414px) {
diff --git a/feedback.html b/feedback.html
index 9a9f901..490c5df 100644
--- a/feedback.html
+++ b/feedback.html
@@ -65,6 +65,7 @@
合作协议
关于我们
意见反馈
+
操作指南
意见反馈
diff --git a/js/my-site.js b/js/my-site.js
index 7d78469..95ec68a 100644
--- a/js/my-site.js
+++ b/js/my-site.js
@@ -57,16 +57,22 @@ jQuery(function($){
autoplay:false,
})
+ // 弹框事件
+ if($('.login-btn').length > 0){
+ $('.login-btn').click(function() {
+ $('.nav-bg').css('display','block');
+ $('.tips-box').css('display','block');
+ setTimeout(function() {
+ $('.nav-bg').css('display','none');
+ $('.tips-box').css('display','none');
+ call();
+ },1000)
+ })
+ }
+ // 记住密码
-
- // if(screen.width <= 768){
-
- // }else{
-
- // }
-
// 手机导航按钮
$('.head .head-btn').click(function() {
diff --git a/login.html b/login.html
index 4653715..735361e 100644
--- a/login.html
+++ b/login.html
@@ -75,7 +75,7 @@
@@ -98,5 +98,11 @@
+
+
+