<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>文章未找到 - 智能家电网</title>
<meta name="description" content="抱歉，您要查看的文章不存在或已被删除。">
<meta name="keywords" content="文章未找到,家电,智能家电,资讯">
<script type="application/ld+json">
{
    "@context": "https:\/\/schema.org",
    "@type": "Article",
    "headline": "文章未找到",
    "description": "抱歉，您要查看的文章不存在或已被删除。",
    "url": "",
    "datePublished": "2025-07-01T13:27:20+08:00",
    "dateModified": "2025-07-01T13:27:20+08:00",
    "author": {
        "@type": "Person",
        "name": "简历专家"
    },
    "publisher": {
        "@type": "Organization",
        "name": "简历展示网"
    },
    "articleBody": "抱歉，您要查看的文章不存在或已被删除。",
    "wordCount": 19
}
</script><link rel="stylesheet" href="styles/page_styles.css">

<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.resume-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 30px rgba(0,0,0,0.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    min-height: 100vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}

/* 左侧个人信息栏 */
.sidebar {
    width: 350px;
    background: #667eea; /* 兼容性回退 */
    background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -moz-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: -o-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    position: relative;
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.sidebar > * {
    position: relative;
    z-index: 2;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 4px solid rgba(255,255,255,0.3);
}

.profile-info h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 300;
}

.profile-info .title {
    text-align: center;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
}

.contact-item .icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

.skills {
    margin-bottom: 30px;
}

.skills h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    font-size: 13px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.skill-bar {
    height: 6px;
    background: rgba(255,255,255,0.2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: rgba(255,255,255,0.8); /* 兼容性回退 */
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
    background: -moz-linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
    background: -o-linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: width 2s ease;
    -moz-transition: width 2s ease;
    -o-transition: width 2s ease;
    transition: width 2s ease;
}

.languages h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 8px;
}

.language-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

/* 右侧主要内容 */
.main-content {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 50px 60px;
    background: #fff;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    -webkit-align-content: start;
    -ms-flex-line-pack: start;
    align-content: start;
}

/* 个人简介占满整行 */
.main-content .section:first-child {
    grid-column: 1 / -1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .resume-container {
        max-width: 1000px;
    }
    .sidebar {
        width: 300px;
        padding: 40px 30px;
    }
    .main-content {
        padding: 40px 50px;
    }
}

@media (max-width: 992px) {
    .resume-container {
        flex-direction: column;
        max-width: 100%;
        margin: 20px;
    }
    .sidebar {
        width: 100%;
        padding: 30px;
    }
    .main-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .resume-container {
        margin: 10px;
    }
    .sidebar {
        padding: 20px;
    }
    .main-content {
        padding: 20px;
    }
    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .resume-container {
        margin: 5px;
    }
    .sidebar, .main-content {
        padding: 15px;
    }
    .section-title {
        font-size: 18px;
    }
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    color: #667eea;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.summary {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* 文章内容样式 */
.article-content {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    color: #667eea;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content h1 {
    font-size: 24px;
    border-left: 4px solid #667eea;
    padding-left: 15px;
}

.article-content h2 {
    font-size: 20px;
    border-left: 3px solid #667eea;
    padding-left: 12px;
}

.article-content h3 {
    font-size: 18px;
    border-left: 2px solid #667eea;
    padding-left: 10px;
}

/* 文章封面图片样式 */
.article-hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-hero-image:hover img {
    transform: scale(1.02);
}

/* 图片标题覆盖层 */
.image-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-title {
    color: #ffffff !important;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    margin: 0;
    max-width: 90%;
    word-wrap: break-word;
}

.article-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.article-title {
    font-size: 28px;
    font-weight: 600;
    color: #667eea !important;
    margin-bottom: 15px;
    line-height: 1.3;
    display: none; /* 隐藏原标题，因为现在显示在图片上 */
}

.article-meta {
    color: #999;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta span {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid #eee;
}

/* 相关文章区域 */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(220, 38, 38, 0.3);
}

.related-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-card:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.related-card h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-card .date {
    color: #cccccc;
    font-size: 0.8rem;
}

/* 返回按钮 */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* PDF导出区域 */
.pdf-export-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    animation: fadeInUp 0.6s ease-out;
}

.pdf-export-container {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.pdf-export-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.pdf-export-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;
}

.pdf-export-btn:hover::before {
    left: 100%;
}

.pdf-export-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.pdf-export-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.pdf-icon {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

.pdf-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pdf-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.pdf-export-btn:hover .pdf-arrow {
    transform: translateX(4px);
}

.pdf-description {
    margin-top: 12px;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 文章页面布局 */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 20px;
}

/* 侧边栏样式 */
.article-sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.sidebar-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #0a0a0a 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.sidebar-title {
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-article {
    transition: all 0.3s ease;
}

.sidebar-article a {
    display: block;
    padding: 12px 15px;
    background: rgba(220, 38, 38, 0.05);
    color: #cccccc;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-article a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.sidebar-article:hover a::before {
    left: 100%;
}

.sidebar-article:hover a {
    background: rgba(220, 38, 38, 0.1);
    color: #ffffff;
    transform: translateX(5px);
    border-color: #dc2626;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.2);
}

.sidebar-article-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-article-date {
    display: block;
    font-size: 0.8rem;
    color: #999999;
    font-style: italic;
}

.sidebar-article:hover .sidebar-article-date {
    color: #dc2626;
}

.sidebar-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.05);
    color: #cccccc;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-link:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

/* 响应式设计 - 兼容性优化 */
@media screen and (max-width: 1200px) {
    .resume-container {
        max-width: 100%;
        margin: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    
    .sidebar {
        width: 300px;
        padding: 30px 25px;
    }
    
    .main-content {
        padding: 30px 25px;
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .resume-container {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
    }
    
    .sidebar {
        width: 100%;
        padding: 25px 20px;
        position: relative;
    }
    
    .main-content {
        width: 100%;
        padding: 25px 20px;
        display: block;
        -ms-grid-columns: none;
        grid-template-columns: none;
    }
    
    .section {
        margin-bottom: 25px;
    }
    
    .items-grid {
        display: block;
        -ms-grid-columns: none;
        grid-template-columns: none;
    }
    
    .experience-item,
    .education-item,
    .project-item {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    .resume-container {
        margin: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    
    .sidebar {
        padding: 20px 15px;
    }
    
    .profile-photo img {
        width: 120px;
        height: 120px;
    }
    
    .profile-info h1 {
        font-size: 22px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .article-content {
        font-size: 14px;
    }
    
    .article-content h1 {
        font-size: 20px;
    }
    
    .article-content h2 {
        font-size: 18px;
    }
    
    .article-content h3 {
        font-size: 16px;
    }
    
    .article-hero-image {
        height: 200px;
        margin: 15px 0;
    }
    
    .image-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .sidebar {
        padding: 15px 10px;
    }
    
    .main-content {
        padding: 15px 10px;
    }
    
    .profile-photo img {
        width: 100px;
        height: 100px;
    }
    
    .profile-info h1 {
        font-size: 20px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .skill-item {
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .article-hero-image {
        height: 180px;
    }
    
    .image-title {
        font-size: 18px;
        padding: 1rem;
    }
}

/* 打印样式 */
@media print {
    .resume-container {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        max-width: none;
        display: block;
    }
    
    .sidebar {
        width: 100%;
        background: #f8f9fa !important;
        color: #333 !important;
        page-break-inside: avoid;
    }
    
    .main-content {
        width: 100%;
        display: block;
    }
}
    
    .nav {
        display: none;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        margin-top: 30px;
    }
}


        /* 友情链接样式 */
        .friendlinks-footer {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 2px solid rgba(220, 38, 38, 0.3);
        }
        
        .friendlinks-footer .friendlinks-title {
            color: #dc2626;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
        }
        
        .friendlinks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            justify-items: center;
        }
        
        .friendlink {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
            color: #cccccc;
            text-decoration: none;
            border-radius: 20px;
            border: 1px solid rgba(220, 38, 38, 0.3);
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-align: center;
            backdrop-filter: blur(5px);
        }
        
        .friendlink:hover {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
            border-color: #dc2626;
        }
        
        /* 侧边栏友情链接样式 */
        .friendlinks-sidebar {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #0a0a0a 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            border: 2px solid rgba(220, 38, 38, 0.3);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
        }
        
        .friendlinks-sidebar .friendlinks-title {
            color: #dc2626;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
        }
        
        .friendlinks-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .friendlink-item {
            transition: all 0.3s ease;
        }
        
        .friendlink-item a {
            display: block;
            padding: 12px 15px;
            background: rgba(220, 38, 38, 0.05);
            color: #cccccc;
            text-decoration: none;
            border-radius: 10px;
            border: 1px solid rgba(220, 38, 38, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .friendlink-item a::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .friendlink-item:hover a::before {
            left: 100%;
        }
        
        .friendlink-item:hover a {
            background: rgba(220, 38, 38, 0.1);
            color: #ffffff;
            transform: translateX(5px);
            border-color: #dc2626;
            box-shadow: 0 3px 10px rgba(220, 38, 38, 0.2);
        }
        
        .link-name {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 3px;
        }
        
        .link-category {
            display: block;
            font-size: 0.8rem;
            color: #999999;
            font-style: italic;
        }
        
        .friendlink-item:hover .link-category {
            color: #dc2626;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .friendlinks-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 10px;
            }
            
            .friendlink {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            
            .friendlinks-sidebar {
                padding: 20px;
                margin: 20px 0;
            }
            
            .friendlinks-sidebar .friendlinks-title {
                font-size: 1.1rem;
            }
        }
        </style>
</head>
<body>
    <div class="resume-container">
        <!-- 左侧个人信息栏 -->
        <div class="sidebar">
            <div class="profile-photo">
                📄
            </div>
            
            <div class="profile-info">
                <h1>文章详情</h1>
                <div class="title">专业内容分享</div>
            </div>
            
            <div class="contact-info">
                <h3>导航菜单</h3>
                <div class="contact-item">
                    <span class="icon">🏠</span>
                    <a href="index.php" style="color: white; text-decoration: none;">返回首页</a>
                </div>
                <div class="contact-item">
                    <span class="icon">📚</span>
                    <span>文章阅读</span>
                </div>
                <div class="contact-item">
                    <span class="icon">📄</span>
                    <a href="/pdf/%E6%96%87%E7%AB%A0%E6%9C%AA%E6%89%BE%E5%88%B0-74190.pdf" style="color: white; text-decoration: none;">导出PDF</a>
                </div>
            </div>
            
            <div class="skills">
                <h3>文章信息</h3>
                <div class="skill-item">
                    <div class="skill-name">
                        <span>发布时间</span>
                    </div>
                    <div style="color: rgba(255,255,255,0.8); font-size: 12px; margin-top: 5px;">
                                            </div>
                </div>
                <div class="skill-item">
                    <div class="skill-name">
                        <span>阅读量</span>
                    </div>
                    <div style="color: rgba(255,255,255,0.8); font-size: 12px; margin-top: 5px;">
                        5741 次
                    </div>
                </div>
            </div>
            
            <div class="languages">
                <h3>相关推荐</h3>
                            </div>
        </div>
        
        <!-- 右侧主要内容 -->
        <div class="main-content">
            <!-- 文章内容 -->
            <div class="section">
                <h2 class="section-title">文章未找到PHP</h2>

                <div class="pdf-export-section">
                    <div class="pdf-export-container">
                        <a href="/pdf/%E6%96%87%E7%AB%A0%E6%9C%AA%E6%89%BE%E5%88%B0-74190.pdf" class="pdf-export-btn">
                            <span class="pdf-icon">📄</span>
                            <span class="pdf-text">导出PDF</span>
                            <span class="pdf-arrow">→</span>
                        </a>
                        <p class="pdf-description">点击生成PDF文档，支持打印和下载</p>
                    </div>
                </div>
               
 <div class="article-content">
                    <div class="recommend-reading" style="margin: 20px 0; padding: 15px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 4px solid #dc143c; border-radius: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);"><h4 style="margin: 0 0 10px 0; color: #dc143c; font-size: 16px; font-weight: bold;">📖 推荐阅读</h4><ul style="margin: 0; padding: 0; list-style: none;"><li style="margin: 8px 0; padding: 8px 12px; background: rgba(255,255,255,0.8); border-radius: 3px; transition: all 0.3s ease;"><a href="/p/?id=459573" style="color: #333; text-decoration: none; font-size: 14px; display: block;" onmouseover="this.style.color='#dc143c'" onmouseout="this.style.color='#333'">• 张德成：匠心独运的行业先锋与跨界创新者</a></li><li style="margin: 8px 0; padding: 8px 12px; background: rgba(255,255,255,0.8); border-radius: 3px; transition: all 0.3s ease;"><a href="/p/?id=478406" style="color: #333; text-decoration: none; font-size: 14px; display: block;" onmouseover="this.style.color='#dc143c'" onmouseout="this.style.color='#333'">• 梁文安：跨领域创新者的成长之路</a></li><li style="margin: 8px 0; padding: 8px 12px; background: rgba(255,255,255,0.8); border-radius: 3px; transition: all 0.3s ease;"><a href="/p/?id=933417" style="color: #333; text-decoration: none; font-size: 14px; display: block;" onmouseover="this.style.color='#dc143c'" onmouseout="this.style.color='#333'">• 赖辉：跨界创新者的成长之路</a></li></ul></div><p>抱歉，您要查看的文章不存在或已被删除。</p><div class="recommend-reading" style="margin: 20px 0; padding: 15px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 4px solid #dc143c; border-radius: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);"><h4 style="margin: 0 0 10px 0; color: #dc143c; font-size: 16px; font-weight: bold;">📖 推荐阅读</h4><ul style="margin: 0; padding: 0; list-style: none;"><li style="margin: 8px 0; padding: 8px 12px; background: rgba(255,255,255,0.8); border-radius: 3px; transition: all 0.3s ease;"><a href="/p/?id=522487" style="color: #333; text-decoration: none; font-size: 14px; display: block;" onmouseover="this.style.color='#dc143c'" onmouseout="this.style.color='#333'">• 侯永：多领域跨界精英的成长之路</a></li><li style="margin: 8px 0; padding: 8px 12px; background: rgba(255,255,255,0.8); border-radius: 3px; transition: all 0.3s ease;"><a href="/p/?id=644254" style="color: #333; text-decoration: none; font-size: 14px; display: block;" onmouseover="this.style.color='#dc143c'" onmouseout="this.style.color='#333'">• 康燕：传统与现代交织的养生智慧</a></li><li style="margin: 8px 0; padding: 8px 12px; background: rgba(255,255,255,0.8); border-radius: 3px; transition: all 0.3s ease;"><a href="/p/?id=249500" style="color: #333; text-decoration: none; font-size: 14px; display: block;" onmouseover="this.style.color='#dc143c'" onmouseout="this.style.color='#333'">• 蔡欣：跨领域创新者与人文科技践行者的成长之路</a></li></ul></div>                </div>
            </div>
            
                        
            <!-- 评论区域 -->
            <div class="comments-section" style="margin-top: 40px; padding: 20px; background: rgba(255, 255, 255, 0.05); border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1);">
                <h4 style="margin-bottom: 15px; color: #fff;">网友评论 (0)</h4><p style="color: #999; text-align: center; padding: 20px;">暂无评论，快来抢沙发吧！</p>                
                <!-- 评论表单 -->
                <div class="comment-form" style="margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);">
                    <h4 style="margin-bottom: 15px; color: #fff;">发表评论</h4>
                    <form id="commentForm" style="display: flex; flex-direction: column; gap: 15px;">
                        <div style="display: flex; gap: 15px;">
                            <input type="text" id="commentName" placeholder="您的昵称" required 
                                   style="flex: 1; padding: 10px; border: 1px solid #555; border-radius: 4px; font-size: 14px; background: rgba(255,255,255,0.1); color: #fff;">
                            <input type="email" id="commentEmail" placeholder="邮箱地址（选填）" 
                                   style="flex: 1; padding: 10px; border: 1px solid #555; border-radius: 4px; font-size: 14px; background: rgba(255,255,255,0.1); color: #fff;">
                        </div>
                        <textarea id="commentContent" placeholder="请输入您的评论内容..." required 
                                  style="min-height: 100px; padding: 10px; border: 1px solid #555; border-radius: 4px; font-size: 14px; resize: vertical; background: rgba(255,255,255,0.1); color: #fff;"></textarea>
                        <button type="submit" 
                                style="align-self: flex-start; padding: 10px 20px; background: #dc2626; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: background 0.3s;">
                            发表评论
                        </button>
                    </form>
                </div>
            </div>
        </div>
        
        <!-- 侧边栏 -->
        <aside class="sidebar">
            <div class="profile-photo">
                <img src="https://picsum.photos/150/150?random=1" alt="个人照片">
            </div>
            
            <div class="profile-info">
                <h1>张三</h1>
                <p>高级软件工程师</p>
            </div>
            
            <div class="contact-info">
                <div class="contact-item">
                    <span class="icon">📧</span>
                    <span>zhangsan@example.com</span>
                </div>
                <div class="contact-item">
                    <span class="icon">📱</span>
                    <span>138-0000-0000</span>
                </div>
                <div class="contact-item">
                    <span class="icon">📍</span>
                    <span>北京市朝阳区</span>
                </div>
                <div class="contact-item">
                    <span class="icon">🌐</span>
                    <span>github.com/zhangsan</span>
                </div>
            </div>
            
            <div class="skills">
                <h3>技能专长</h3>
                <div class="skill-item">
                    <span class="skill-name">JavaScript</span>
                    <div class="skill-bar">
                        <div class="skill-progress" style="width: 90%"></div>
                    </div>
                </div>
                <div class="skill-item">
                    <span class="skill-name">Python</span>
                    <div class="skill-bar">
                        <div class="skill-progress" style="width: 85%"></div>
                    </div>
                </div>
                <div class="skill-item">
                    <span class="skill-name">React</span>
                    <div class="skill-bar">
                        <div class="skill-progress" style="width: 80%"></div>
                    </div>
                </div>
                <div class="skill-item">
                    <span class="skill-name">Node.js</span>
                    <div class="skill-bar">
                        <div class="skill-progress" style="width: 75%"></div>
                    </div>
                </div>
            </div>
            
            <div class="languages">
                <h3>语言能力</h3>
                <div class="language-item">
                    <span>中文</span>
                    <span>母语</span>
                </div>
                <div class="language-item">
                    <span>英语</span>
                    <span>流利</span>
                </div>
                <div class="language-item">
                    <span>日语</span>
                    <span>基础</span>
                </div>
            </div>
        </aside>
    </div>

    <script>
        // URL伪静态显示处理
        document.addEventListener('DOMContentLoaded', function() {
            // 检查当前URL是否已经是.php格式，如果不是则修改显示
            const currentUrl = window.location.href;
            const currentPath = window.location.pathname;
            
            // 如果URL不包含.php后缀，则添加.php后缀显示
            // 支持 /任意字符数字混合/标题 的格式
            const pathPattern = /^\/[a-zA-Z0-9]+\/.+/;
            if (pathPattern.test(currentPath) && !currentPath.endsWith('.php')) {
                const newPath = currentPath + '.php';
                const newUrl = window.location.protocol + '//' + window.location.host + newPath + window.location.search;
                
                // 使用replaceState修改地址栏显示，不刷新页面
                window.history.replaceState({}, document.title, newUrl);
            }
        });
        
        // 平滑滚动
        document.addEventListener('DOMContentLoaded', function() {
            // 图片懒加载
            const images = document.querySelectorAll('img');
            const imageObserver = new IntersectionObserver((entries, observer) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        const img = entry.target;
                        img.style.opacity = '0';
                        img.style.transition = 'opacity 0.5s ease';
                        img.onload = () => {
                            img.style.opacity = '1';
                        };
                        observer.unobserve(img);
                    }
                });
            });
            
            images.forEach(img => {
                imageObserver.observe(img);
            });
            
            // 相关文章卡片动画
            const cards = document.querySelectorAll('.related-card');
            cards.forEach((card, index) => {
                card.style.animationDelay = `${index * 0.1}s`;
                card.style.animation = 'fadeInUp 0.6s ease-out forwards';
            });
            
            // 评论表单处理
            const commentForm = document.getElementById('commentForm');
            if (commentForm) {
                commentForm.addEventListener('submit', function(e) {
                    e.preventDefault();
                    
                    const name = document.getElementById('commentName').value;
                    const email = document.getElementById('commentEmail').value;
                    const content = document.getElementById('commentContent').value;
                    
                    if (!name.trim() || !content.trim()) {
                        alert('请填写昵称和评论内容');
                        return;
                    }
                    
                    // 这里可以添加AJAX提交评论的逻辑
                    // 目前只是简单的提示
                    alert('感谢您的评论！评论已提交，等待审核。');
                    
                    // 清空表单
                    document.getElementById('commentName').value = '';
                    document.getElementById('commentEmail').value = '';
                    document.getElementById('commentContent').value = '';
                });
                
                // 按钮悬停效果
                const submitBtn = commentForm.querySelector('button[type="submit"]');
                submitBtn.addEventListener('mouseenter', function() {
                    this.style.background = '#b91c1c';
                });
                submitBtn.addEventListener('mouseleave', function() {
                    this.style.background = '#dc2626';
                });
            }
        });
    </script>

    
<script>
// 百度时间因子
document.addEventListener('DOMContentLoaded', function() {
    var timeElement = document.createElement('meta');
    timeElement.name = 'last-modified';
    timeElement.content = '2025年07月01日 13:27';
    document.head.appendChild(timeElement);
});
</script>
    
<script>
// 页面风格处理
document.addEventListener("DOMContentLoaded", function() {
    const currentStyle = "red-white";
    
    // 应用当前风格的body类名
    if (currentStyle !== "default") {
        document.body.className += " page-style-" + currentStyle;
    }
    
    // 如果是PDF风格，调整一些特殊元素
    if (currentStyle === "pdf") {
        // 调整图片显示
        const images = document.querySelectorAll("img");
        images.forEach(function(img) {
            img.style.maxWidth = "100%";
            img.style.height = "auto";
            img.style.border = "1px solid #ddd";
            img.style.padding = "5px";
            img.style.backgroundColor = "#fff";
        });
        
        // 调整链接样式
        const links = document.querySelectorAll("a");
        links.forEach(function(link) {
            if (!link.closest(".nav")) {
                link.style.color = "#0066cc";
                link.style.textDecoration = "underline";
            }
        });
    }
    
    // 如果是Word风格，调整一些特殊元素
    if (currentStyle === "word") {
        // 调整表格样式
        const tables = document.querySelectorAll("table");
        tables.forEach(function(table) {
            table.style.border = "1px solid #ddd";
            table.style.borderCollapse = "collapse";
            table.style.width = "100%";
        });
        
        const cells = document.querySelectorAll("td, th");
        cells.forEach(function(cell) {
            cell.style.border = "1px solid #ddd";
            cell.style.padding = "8px";
        });
        
        // 调整标题样式
        const headings = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
        headings.forEach(function(heading) {
            heading.style.color = "#2f5597";
            heading.style.fontWeight = "600";
        });
    }
    
    // 如果是家电资讯新闻风格，添加特殊效果
    if (currentStyle === "red-white") {
        // 添加动态背景效果
        const body = document.body;
        const techPattern = document.createElement("div");
        techPattern.style.cssText = 
            "position: fixed;" +
            "top: 0;" +
            "left: 0;" +
            "width: 100%;" +
            "height: 100%;" +
            "pointer-events: none;" +
            "z-index: -1;" +
            "background: radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.03) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);" +
            "animation: techFloat 20s ease-in-out infinite;";
        body.appendChild(techPattern);
        
        // 添加CSS动画
        const style = document.createElement("style");
        style.textContent = 
            "@keyframes techFloat {" +
            "0%, 100% { transform: translateY(0px) rotate(0deg); }" +
            "33% { transform: translateY(-10px) rotate(1deg); }" +
            "66% { transform: translateY(5px) rotate(-1deg); }" +
            "}" +
            ".page-style-red-white .news-card:nth-child(odd) {" +
            "animation: slideInLeft 0.6s ease-out;" +
            "}" +
            ".page-style-red-white .news-card:nth-child(even) {" +
            "animation: slideInRight 0.6s ease-out;" +
            "}" +
            "@keyframes slideInLeft {" +
            "from { transform: translateX(-50px); opacity: 0; }" +
            "to { transform: translateX(0); opacity: 1; }" +
            "}" +
            "@keyframes slideInRight {" +
            "from { transform: translateX(50px); opacity: 0; }" +
            "to { transform: translateX(0); opacity: 1; }" +
            "}";
        document.head.appendChild(style);
        
        // 添加滚动视差效果
        window.addEventListener("scroll", function() {
            const scrolled = window.pageYOffset;
            const parallax = document.querySelectorAll(".page-style-red-white .hero");
            parallax.forEach(function(element) {
                const speed = 0.5;
                element.style.transform = `translateY(${scrolled * speed}px)`;
            });
        });
        
        // 添加鼠标跟随效果
        document.addEventListener("mousemove", function(e) {
            const cursor = document.querySelector(".tech-cursor");
            if (!cursor) {
                const newCursor = document.createElement("div");
                newCursor.className = "tech-cursor";
                newCursor.style.cssText = 
                    "position: fixed;" +
                    "width: 20px;" +
                    "height: 20px;" +
                    "background: radial-gradient(circle, rgba(52, 152, 219, 0.3), transparent);" +
                    "border-radius: 50%;" +
                    "pointer-events: none;" +
                    "z-index: 9999;" +
                    "transition: all 0.1s ease;";
                document.body.appendChild(newCursor);
            }
            
            const techCursor = document.querySelector(".tech-cursor");
            if (techCursor) {
                techCursor.style.left = e.clientX - 10 + "px";
                techCursor.style.top = e.clientY - 10 + "px";
            }
        });
    }
});
</script></body>
</html>
