 /* 继承首页的孟菲斯风格变量 */
        :root {
            --primary: #FF5E5B;
            --secondary: #00CECB;
            --accent: #FFED66;
            --dark: #2D3047;
            --light: #FDFFFC;
            --pattern: #5C6BC0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* 磁带机风格导航栏 - 与首页一致 */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .tape-player {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            padding: 0 20px;
            position: relative;
        }
        
        .tape-reels {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light);
            border: 4px solid var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            animation: spin 4s linear infinite;
        }
        
        .tape-reels::before {
            content: '';
            width: 10px;
            height: 10px;
            background-color: var(--dark);
            border-radius: 50%;
        }
        
        .tape-reels.left {
            margin-right: auto;
        }
        
        .tape-reels.right {
            margin-left: auto;
        }
        
        .tape-controls {
            display: flex;
            gap: 20px;
            margin: 0 20px;
        }
        
        .tape-button {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--light);
            border: 3px solid var(--dark);
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .tape-button:hover {
            transform: scale(1.1);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            margin: 0 20px;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 文章页头部 */
        .article-header {
            margin-top: 90px;
            padding: 60px 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .article-header h1 {
            font-size: 3rem;
            color: var(--light);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--light);
            font-size: 0.9rem;
        }
        
        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="none" stroke="%23FFED66" stroke-width="2"/><rect width="50" height="50" x="50" y="50" fill="none" stroke="%23FFED66" stroke-width="2"/></svg>');
            opacity: 0.2;
        }
        
        /* 文章内容区域 */
        .article-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .article-image {
            width: 100%;
            height: 400px;
            background-color: var(--pattern);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-content {
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .article-content h2 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: var(--primary);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 20px 0;
            font-style: italic;
            color: #666;
        }
        
        /* 相关文章或产品推荐 */
        .related-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .related-section h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            color: var(--dark);
        }
        
        .related-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .related-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
        }
        
        .related-item-image {
            height: 200px;
            background-color: var(--pattern);
        }
        
        .related-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-item-info {
            padding: 15px;
        }
        
        .related-item-info h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .related-item-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }
        
        /* 页脚 - 与首页一致 */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 20px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
              .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.5rem;
            }
            
            .article-image {
                height: 300px;
            }
            
            .related-items {
                grid-template-columns: 1fr;
            }
        }