  /* 内容页独享CSS */
        main {
            margin-top: 80px;
            padding: 40px 0;
        }
        
        .article-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 40px;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .article-header {
            padding: 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }
        
        .article-title {
            font-size: 32px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            opacity: 0.9;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .article-content {
            padding: 30px;
        }
        
        /* 文章内容样式 */
        .article-body {
            max-width: 100%;
        }
        
        .article-body h2 {
            font-size: 24px;
            color: var(--primary-color);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
            position: relative;
        }
        
        .article-body h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .article-body h3 {
            font-size: 20px;
            color: var(--secondary-color);
            margin: 25px 0 12px;
        }
        
        .article-body h4 {
            font-size: 18px;
            color: var(--dark-color);
            margin: 20px 0 10px;
        }
        
        .article-body h5 {
            font-size: 16px;
            color: var(--dark-color);
            margin: 15px 0 8px;
            font-weight: 600;
        }
        
        .article-body p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .article-body img:hover {
            transform: scale(1.02);
        }
        
        .license-image {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
        }
        
        .license-image img {
            max-width: 80%;
            border: 1px solid #ddd;
        }
        
        .license-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        
        .company-details {
            margin: 30px 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--accent-color);
        }
        
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        
        .detail-item {
            display: flex;
            border-bottom: 1px dashed #ddd;
            padding: 10px 0;
        }
        
        .detail-label {
            font-weight: 600;
            min-width: 120px;
            color: var(--dark-color);
        }
        
        .detail-value {
            flex: 1;
        }
        
        .price-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin: 30px 0;
            animation: pulse 2s infinite;
        }
        
        .price-section .price {
            font-size: 36px;
            font-weight: 700;
            margin: 10px 0;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--accent-color), #27ae60);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }
        
        /* 上一篇下一篇 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .nav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
            max-width: 45%;
        }
        
        .nav-item:hover {
            background-color: rgba(52, 152, 219, 0.1);
            transform: translateX(5px);
        }
        
        .nav-prev:hover {
            transform: translateX(-5px);
        }
        
        .nav-icon {
            font-size: 20px;
            color: var(--secondary-color);
        }
        
        .nav-text {
            flex: 1;
        }
        
        .nav-text span {
            display: block;
            font-size: 14px;
            color: #666;
        }
        
        .nav-text strong {
            color: var(--primary-color);
            display: block;
            margin-top: 5px;
            line-height: 1.4;
        }
        
        /* 相关文章 */
        .related-articles {
            margin: 50px 0 30px;
        }
        
        .section-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .related-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .related-card:nth-child(1) { animation-delay: 0.1s; }
        .related-card:nth-child(2) { animation-delay: 0.2s; }
        .related-card:nth-child(3) { animation-delay: 0.3s; }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .related-image {
            height: 180px;
            overflow: hidden;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .related-card:hover .related-image img {
            transform: scale(1.1);
        }
        
        .related-content {
            padding: 20px;
        }
        
        .related-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
            line-height: 1.4;
        }
        
        .related-content p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .related-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }
        
        /* 动画关键帧 */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .article-title {
                font-size: 26px;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-item {
                max-width: 100%;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .detail-grid {
                grid-template-columns: 1fr;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }