        /* 动画关键帧 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                transform: translateX(-30px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes underlineExpand {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* 核心样式变量 */
        :root {
            --primary-color: #ffb600;
            --primary-dark: #e6a400;
            --dark-color: #1a1a1a;
            --border-color: #e0e0e0;
            --light-color: #f8f9fa;
        }
        
        /* 页面整体动画 */
        .body-inner {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* 横幅样式 - 与其他页面一致 */
        .banner-area {
            position: relative;
            height: 300px;
            background-size: cover;
            background-position: center;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100%);
        }
        
        /* 横幅内容容器 */
        .banner-container {
            width: 100%;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: left;
            padding: 0 15px;
        }
        
        /* 修改标题样式 - 添加黄色下划线 */
        .banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            animation: slideInLeft 0.8s ease-out 0.3s both;
            opacity: 0;
        }
        
        /* 黄色下划线 */
        .banner-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
            animation: underlineExpand 0.6s ease-out 1.1s forwards;
        }
        
        .banner-description {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease-out 0.5s both;
            opacity: 0;
        }
        
        /* 面包屑导航 */
        .news-detail-page .breadcrumb-container {
            padding: 15px 0 !important;
            position: relative !important;
            margin: 0 0 20px 0 !important;
            border: none !important;
            background: none !important;
            animation: fadeInUp 0.6s ease-out 0.4s both;
            opacity: 0;
        }
        
        /* 面包屑下方分隔线 */
        .news-detail-page .breadcrumb-container::after {
            content: "" !important;
            position: absolute !important;
            left: 0 !important;
            bottom: 0 !important;
            width: 100% !important;
            height: 1px !important;
            background-color: #e5e5e5 !important;
            border: none !important;
        }
        
        .news-detail-page .breadcrumb {
            margin-bottom: 0 !important;
            background-color: transparent !important;
            padding: 0 !important;
            list-style: none !important;
        }
        
        .news-detail-page .breadcrumb-item + .breadcrumb-item::before {
            content: "/" !important;
            color: #999 !important;
            padding: 0 8px !important;
        }
        
        .news-detail-page .breadcrumb-item a {
            color: #666 !important;
            text-decoration: none !important;
        }
        
        .news-detail-page .breadcrumb-item a:hover {
            color: #ffb600 !important;
        }
        
        .news-detail-page .breadcrumb-item.active {
            color: #333 !important;
            font-weight: 500 !important;
        }
        
        /* 主内容区域 */
        .news-detail-page .main-container {
            padding: 30px 0 !important;
        }
        
        /* 文章内容区域动画 */
        .news-detail-page .post-content {
            background-color: #fff !important;
            padding: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            animation: fadeInUp 0.6s ease-out 0.6s both;
            opacity: 0;
        }
        
        /* 文章标题居中动画 */
        .news-detail-page .entry-header .entry-title {
            font-size: 28px !important;
            font-weight: 700 !important;
            margin-bottom: 15px !important;
            color: #303030 !important;
            text-align: center !important;
            animation: fadeInUp 0.6s ease-out 0.7s both;
            opacity: 0;
        }
        
        /* 文章元信息（分类、时间、浏览量）居中动画 */
        .news-detail-page .post-meta {
            font-size: 14px !important;
            color: #666 !important;
            padding-bottom: 15px !important;
            border-bottom: 1px solid #eee !important;
            margin-bottom: 15px !important;
            text-align: center !important;
            animation: fadeInUp 0.6s ease-out 0.8s both;
            opacity: 0;
        }
        
        .news-detail-page .post-meta span {
            margin-right: 15px !important;
            display: inline-block !important;
        }
        
        .news-detail-page .post-meta span:last-child {
            margin-right: 0 !important;
        }
        
        /* 文章内容动画 */
        .news-detail-page .entry-content {
            padding: 0 !important;
            font-size: 16px !important;
            line-height: 1.8 !important;
            animation: fadeInUp 0.6s ease-out 0.9s both;
            opacity: 0;
        }
        
        /* 上下篇文章样式动画 */
        .news-detail-page .bc-related-post {
            display: flex !important;
            justify-content: space-between !important;
            padding-top: 15px !important;
            border-top: 1px solid #eee !important;
            margin-top: 15px !important;
            animation: fadeInUp 0.6s ease-out 1.0s both;
            opacity: 0;
        }
        
        .news-detail-page .previous-post, 
        .news-detail-page .next-post {
            color: #666 !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
        
        .news-detail-page .previous-post:hover, 
        .news-detail-page .next-post:hover {
            color: #ffb600 !important;
            text-decoration: none !important;
        }
        
        /* 热门新闻模块动画 */
        .news-detail-page .widget.recent-posts {
            background-color: #ffffff !important;
            padding: 0 !important;
            margin: 0 !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            width: 100% !important;
            animation: fadeInUp 0.6s ease-out 0.7s both;
            opacity: 0;
        }
        
        /* 热门新闻标题样式 */
        .news-detail-page .widget.recent-posts .widget-title {
            margin-bottom: 15px !important;
            font-size: 18px !important;
            font-weight: 600 !important;
            color: #ffffff !important;
            background-color: #ffb600 !important;
            padding: 8px 12px !important;
            margin: 0 0 15px 0 !important;
            border: none !important;
            display: block !important;
            width: 100% !important;
            line-height: 1.4 !important;
            box-sizing: border-box !important;
            text-align: center !important;
        }
        
        .news-detail-page .widget.recent-posts ul {
            padding-left: 0 !important;
            margin: 0 !important;
        }
        
        /* 热门新闻列表项动画 */
        .news-detail-page .widget.recent-posts ul li {
            border-bottom: 1px solid #eee !important;
            padding-bottom: 8px !important;
            margin-bottom: 8px !important;
            transition: background-color 0.3s ease !important;
            display: flex !important;
            align-items: center !important;
            padding: 5px 8px !important;
            animation: fadeInUp 0.5s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        /* 为每个热门新闻项设置延迟动画 */
        .news-detail-page .widget.recent-posts ul li:nth-child(1) { animation-delay: 0.8s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(2) { animation-delay: 0.9s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(3) { animation-delay: 1.0s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(4) { animation-delay: 1.1s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(5) { animation-delay: 1.2s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(6) { animation-delay: 1.3s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(7) { animation-delay: 1.4s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(8) { animation-delay: 1.5s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(9) { animation-delay: 1.6s; }
        .news-detail-page .widget.recent-posts ul li:nth-child(10) { animation-delay: 1.7s; }
        
        .news-detail-page .widget.recent-posts ul li:hover {
            background-color: #fff9e6 !important;
            padding-left: 8px !important;
        }
        
        .news-detail-page .widget.recent-posts ul li:last-child {
            border: 0 !important;
            padding-bottom: 0 !important;
            margin-bottom: 0 !important;
        }
        
        /* 图片比例3:2 */
        .news-detail-page .widget.recent-posts .posts-thumb img {
            margin-right: 10px !important;
            width: 90px !important;
            height: 60px !important;
            object-fit: cover !important;
            border-radius: 0 !important;
            transition: transform 0.3s ease;
        }
        
        .news-detail-page .widget.recent-posts ul li:hover .posts-thumb img {
            transform: scale(1.05);
        }
        
        .news-detail-page .widget.recent-posts .post-info {
            flex: 1 !important;
            padding: 0 !important;
        }
        
        .news-detail-page .widget.recent-posts .post-info .entry-title {
            font-size: 13px !important;
            font-weight: 600 !important;
            line-height: 1.4 !important;
            margin: 0 !important;
        }
        
        .news-detail-page .widget.recent-posts .post-info .entry-title a {
            color: #303030 !important;
            display: inline-block !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
        
        .news-detail-page .widget.recent-posts .post-info .entry-title a:hover {
            color: #ffb600 !important;
        }
        
        .news-detail-page .widget.recent-posts .post-date {
            font-weight: 400 !important;
            color: #999 !important;
            text-transform: capitalize !important;
            font-size: 12px !important;
            margin-top: 3px !important;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .banner-area {
                height: 150px;
            }
            
            .banner-title {
                font-size: 1.8rem;
                padding-bottom: 12px;
            }
            
            .banner-title::after {
                height: 3px;
            }
            
            .banner-description {
                font-size: 0.9rem;
            }
            
            .news-detail-page .entry-header .entry-title {
                font-size: 24px !important;
            }
        }
        
        @media (max-width: 992px) {
            .banner-area {
                height: 140px;
            }
            
            .banner-title {
                font-size: 1.6rem;
            }
            
            .news-detail-page .bc-related-post {
                flex-direction: column !important;
                gap: 10px !important;
            }
        }
        
        @media (max-width: 768px) {
            .banner-area {
                height: 130px;
            }
            
            .banner-title {
                font-size: 1.4rem;
                padding-bottom: 10px;
            }
            
            .banner-title::after {
                height: 2px;
            }
            
            .news-detail-page .widget.recent-posts .posts-thumb img {
                width: 70px !important;
                height: 47px !important;
            }
            
            .news-detail-page .entry-header .entry-title {
                font-size: 20px !important;
            }
        }
        
        @media (max-width: 576px) {
            .banner-area {
                height: 120px;
            }
            
            .banner-title {
                font-size: 1.2rem;
                margin-bottom: 5px;
                padding-bottom: 8px;
            }
            
            .news-detail-page .entry-header .entry-title {
                font-size: 18px !important;
            }
            
            .news-detail-page .post-meta {
                font-size: 12px !important;
            }
            
            .news-detail-page .post-meta span {
                margin-right: 10px !important;
            }
        }