        /* 作品详情页专用样式 - */
        .detail-container {
            max-width: 100%;
            margin: 0 auto;
            padding: var(--spacing-4);
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }
        
        /* 艺术背景装饰 */
        .artistic-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        /* 渐变背景 */
        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(37, 99, 235, 0.03) 0%,
                rgba(59, 130, 246, 0.05) 25%,
                rgba(96, 165, 250, 0.03) 50%,
                rgba(147, 197, 253, 0.04) 75%,
                rgba(191, 219, 254, 0.02) 100%
            );
            animation: gradientShift 20s ease-in-out infinite;
        }
        
        
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-2);
            padding: var(--spacing-3) var(--spacing-4);
            background: rgba(37, 99, 235, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--primary-blue);
            text-decoration: none;
            border-radius: var(--radius-xl);
            font-weight: 600;
            margin-bottom: var(--spacing-6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .back-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }
        
        .back-btn:hover::before {
            left: 100%;
        }
        
        .back-btn:hover {
            background: rgba(37, 99, 235, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
        }
        
        .detail-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .detail-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }
        
        
        .detail-info {
            padding: var(--spacing-8);
            position: relative;
            z-index: 1;
        }
        
        .detail-title {
            font-size: var(--font-size-2xl);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--spacing-6);
            line-height: 1.3;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite;
        }
        
        .detail-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            border-radius: var(--radius-full);
            animation: underlineGlow 2s ease-in-out infinite;
        }
        
        .detail-meta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--spacing-3);
            margin-bottom: var(--spacing-6);
            padding: var(--spacing-4);
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .detail-source,
        .detail-time {
            display: flex;
            align-items: center;
            gap: var(--spacing-3);
            font-size: var(--font-size-sm);
            color: var(--text-secondary);
            font-weight: 500;
            padding: var(--spacing-2) var(--spacing-4);
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
        }
        
        .detail-source:hover,
        .detail-time:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-1px);
        }
        
        .detail-source svg,
        .detail-time svg {
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .detail-source:hover svg,
        .detail-time:hover svg {
            transform: scale(1.1);
        }
        
        .detail-divider {
            width: 100%;
            height: 2px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(37, 99, 235, 0.2) 25%,
                rgba(59, 130, 246, 0.4) 50%,
                rgba(37, 99, 235, 0.2) 75%,
                transparent 100%
            );
            margin: var(--spacing-6) 0;
            position: relative;
            overflow: hidden;
        }
        
        .detail-divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            animation: shimmer 3s ease-in-out infinite;
        }
        
        .detail-description {
            font-size: var(--font-size-lg);
            line-height: 1.6;
            color: var(--text-primary);
            margin-bottom: var(--spacing-6);
            min-height: 200px;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            padding: var(--spacing-6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-style: italic;
        }
        
        .detail-description:empty::before {
            content: "内容区域待填写...";
        }
        
        
        @media (max-width: 768px) {
            .detail-container {
                padding: var(--spacing-3);
            }
            
            .detail-title {
                font-size: var(--font-size-xl);
            }
            
            .detail-meta {
                align-items: center;
                gap: var(--spacing-2);
            }
            
            .detail-source,
            .detail-time {
                font-size: var(--font-size-xs);
            }
            
            .detail-description {
                min-height: 150px;
                padding: var(--spacing-4);
            }
            
        }
        
        /* 世界最先进的动画效果 */
        @keyframes gradientShift {
            0%, 100% {
                background: linear-gradient(
                    135deg,
                    rgba(37, 99, 235, 0.03) 0%,
                    rgba(59, 130, 246, 0.05) 25%,
                    rgba(96, 165, 250, 0.03) 50%,
                    rgba(147, 197, 253, 0.04) 75%,
                    rgba(191, 219, 254, 0.02) 100%
                );
            }
            50% {
                background: linear-gradient(
                    135deg,
                    rgba(59, 130, 246, 0.05) 0%,
                    rgba(96, 165, 250, 0.03) 25%,
                    rgba(147, 197, 253, 0.04) 50%,
                    rgba(191, 219, 254, 0.02) 75%,
                    rgba(37, 99, 235, 0.03) 100%
                );
            }
        }
        
        
        @keyframes titleGlow {
            0%, 100% {
                filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.6));
            }
        }
        
        @keyframes underlineGlow {
            0%, 100% {
                box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
            }
            50% {
                box-shadow: 0 0 15px rgba(37, 99, 235, 0.8);
            }
        }
        
        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* 响应式优化 */
        @media (max-width: 768px) {
            .detail-container {
                padding: var(--spacing-3);
            }
            
            .detail-info {
                padding: var(--spacing-6);
            }
            
            .detail-title {
                font-size: var(--font-size-xl);
            }
            
        }
        
        
        
         /* 现代化底部导航栏 */
        .detail-nav-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--spacing-4);
            margin-top: var(--spacing-8);
            padding: var(--spacing-4) var(--spacing-6);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-2xl);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .detail-nav-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: navShimmer 4s ease-in-out infinite;
        }
        
        .nav-btn {
            display: flex;
            align-items: center;
            gap: var(--spacing-2);
            padding: var(--spacing-3) var(--spacing-5);
            background: rgba(37, 99, 235, 0.1);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: var(--primary-blue);
            text-decoration: none;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: var(--font-size-base);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 120px;
            justify-content: center;
        }
        
        .nav-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .nav-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .nav-btn:hover {
            background: rgba(37, 99, 235, 0.2);
            border-color: rgba(37, 99, 235, 0.4);
            transform: translateY(-3px);
            box-shadow: 
                0 10px 30px rgba(37, 99, 235, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }
        
        .nav-btn:active {
            transform: translateY(-1px);
        }
        
        .nav-btn svg {
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .nav-btn span {
            position: relative;
            z-index: 1;
        }
        
        .nav-btn-prev:hover svg {
            transform: translateX(-3px);
        }
        
        .nav-btn-next:hover svg {
            transform: translateX(3px);
        }
        
        .nav-btn-home:hover svg {
            transform: scale(1.1);
        }
        
        .nav-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        @keyframes navShimmer {
            0%, 100% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
        }
        
        /* 响应式优化 - 底部导航栏 */
        @media (max-width: 768px) {
            .detail-nav-bar {
                flex-direction: column;
                gap: var(--spacing-3);
                padding: var(--spacing-4);
            }
            
            .nav-btn {
                width: 100%;
                min-width: auto;
            }
