/* 全局样式 - 替换为自然风景背景 *//* 博客标题 - 质感字体+装饰效果 */

                              /* 副标题 - 轻量优雅风格 */
                              #blogTitle h2 {
                                font-size: 15px;
                                  font-family: "Microsoft Yahei", sans-serif;
                                    font-style: italic;
                                      color: #7f8c8d;
                                        margin: 12px 0 0 5px;
                                          letter-spacing: 1px;
                                          }

                                          /* 悬停动画（新增） */
                                          #blogTitle h1:hover {
                                            color: #3498db;
                                              transition: all 0.3s ease;
                                              }

                                              #blogTitle h1:hover::after {
                                                width: 80%;
                                                  background-color: #2c3e50;
                                                    transition: all 0.3s ease;
                                                    }

                                                    #blogTitle h2:hover {
                                                      color: #2c3e50;
                                                        transform: translateX(10px);
                                                          transition: all 0.3s ease;
                                                          }
                                                          
body {
  color: #000;
    /* 替换为自然山景背景图（可直接使用） */
      background: url("https://images.unsplash.com/photo-1501854140801-50d01698950b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80") fixed;
        background-size: cover; /* 全屏覆盖 */
          background-position: center; /* 居中显示 */
            font-family: "微软雅黑", "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
              font-size: 12px;
                min-height: 101%;
                  margin: 0;
                    padding: 0;
                    }

                    /* 其他样式保持不变（沿用之前的代码） */
                    #home {
                      margin: 0 auto;
                        width: 65%;
                          min-width: 950px;
                            background-color: rgba(255, 255, 255, 0.85); /* 略微提高透明度适配自然背景 */
                              padding: 30px;
                                margin-top: 50px;
                                  margin-bottom: 50px;
                                    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
                                    }

                                    /* 原CSS其他部分无需修改 */
                                    