diff --git a/wiki/pages/home.html b/wiki/pages/home.html
index 70741687b49173c86b2a871a4177cac1a190c94b..f940e90edcd1eed0e88bbee78264fa9402fe6cc2 100644
--- a/wiki/pages/home.html
+++ b/wiki/pages/home.html
@@ -66,18 +66,20 @@
       font-family: 'Parisienne', cursive;
       color: #fa8072;
       opacity: 0;
-      transition: opacity 2s ease-in-out;
+      transition: opacity 1s ease-in-out; /* 渐变速度加快 */
       font-size: 3rem;
+      font-style: italic;
     }
 
     #first-block p {
       font-family: 'Parisienne', cursive;
       color: #fa8072;
       opacity: 0;
-      transition: opacity 2s ease-in-out;
-      transition-delay: 2s;
+      transition: opacity 1.5s ease-in-out; /* 渐变速度加快 */
+      transition-delay: 1s; /* 保留渐变效果,但加快速度 */
       font-size: 1.8rem;
       text-align: center;
+      font-style: italic;
     }
 
     #first-block {
@@ -265,7 +267,7 @@
           firstBlockTitle.style.opacity = '1';
           setTimeout(() => {
             firstBlockContent.style.opacity = '1';
-          }, 2000);
+          }, 1000); // 渐变加快
         }, 500);
       }, 2000);
     });