diff --git a/sa-token-doc/doc.html b/sa-token-doc/doc.html
index 1428fc22..4166afaa 100644
--- a/sa-token-doc/doc.html
+++ b/sa-token-doc/doc.html
@@ -184,6 +184,12 @@
技术求助
+
+
+
如果 Sa-Token 帮助到了你,希望你可以向同事、朋友推荐了解本框架,这对我们非常重要,感谢支持!
+
加油,工程师!
+
+
diff --git a/sa-token-doc/fun/custom-annotations.md b/sa-token-doc/fun/custom-annotations.md
index c992517d..7b4c76c3 100644
--- a/sa-token-doc/fun/custom-annotations.md
+++ b/sa-token-doc/fun/custom-annotations.md
@@ -37,14 +37,14 @@ public @interface CheckAccount {
#### 1.2、第二步,创建注解处理器
-实现 `SaAnnotationAbstractHandler` 接口,指定泛型为刚才自定义的注解
+实现 `SaAnnotationHandlerInterface` 接口,指定泛型为刚才自定义的注解
``` java
/**
* 注解 CheckAccount 的处理器
*/
@Component
-public class CheckAccountHandler implements SaAnnotationAbstractHandler {
+public class CheckAccountHandler implements SaAnnotationHandlerInterface {
// 指定这个处理器要处理哪个注解
@Override
@@ -156,7 +156,7 @@ public @interface SaUserCheckLogin {
* 注解 SaUserCheckLogin 的处理器
*/
@Component
-public class SaUserCheckLoginHandler implements SaAnnotationAbstractHandler {
+public class SaUserCheckLoginHandler implements SaAnnotationHandlerInterface {
@Override
public Class getHandlerAnnotationClass() {
diff --git a/sa-token-doc/static/doc.css b/sa-token-doc/static/doc.css
index fe7b8c93..ba38387c 100644
--- a/sa-token-doc/static/doc.css
+++ b/sa-token-doc/static/doc.css
@@ -453,6 +453,9 @@ body {
.help-btn:hover{box-shadow: 0 0 20px #D1EEE1 !important;}
.xiaozhushou-intro p{line-height: 16px;}
+/* ew-wa */
+.ew-wa{ margin-top: 14px; line-height: 18px; color: #aaa; }
+
/* 按钮发光动画 */
/* .help-btn{animation: helpbtnanimation 3s infinite;}
@keyframes helpbtnanimation{
@@ -494,4 +497,4 @@ body {
}
.main-box .alert.flat.note{background-color: #E8F4FF;}
.main-box .alert.flat.tip{background-color: #F0F9EB;}
-.main-box .alert.flat.warning{background-color: #FDF6EC;}
\ No newline at end of file
+.main-box .alert.flat.warning{background-color: #FDF6EC;}