* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #babdc1;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #334155;
}

h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #60a5fa, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-item {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 116, 139, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.article-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.4);
}

.article-content {
    flex: 1;
    padding-right: 30px;
}

.article-category {
    font-size: 0.85rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 20px;
    margin-right: 15px;
}

.article-date {
    font-size: 0.9rem;
    color: #94a3b8;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #f1f5f9;
    line-height: 1.4;
}

.article-excerpt {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.article-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 120px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.read-more-btn:hover {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.read-more-btn::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s;
}

.read-more-btn:hover::after {
    transform: translateX(3px);
}

.article-stats {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #64748b;
    text-align: right;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid #334155;
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .article-item {
        flex-direction: column;
        padding: 25px;
    }
    
    .article-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .article-actions {
        align-items: flex-start;
        width: 100%;
    }
    
    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
    
    .article-stats {
        text-align: left;
        margin-top: 15px;
    }
}
h1 {
    margin-bottom: 20px;
    margin-top: 72px; 
}
/* 导航 */
.daohang{
    text-align: left;
    margin-top: 40px;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d1d5db;
    padding: 15px 0;
}
.daohang a {
    color: #f97316;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
}

.daohang a:hover {
    color: #ff8c00;
    text-shadow: 0 0 12px rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-1px);
}

.daohang a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.daohang a:hover::after {
    opacity: 1;
}

.shijian{
    text-align: center
}
/* 文章内容 */
.article-content {
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #f1f5f9;
    padding-bottom: 10px;
    border-bottom: 1px solid #334155;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #e2e8f0;
}

.article-content blockquote {
    border-left: 4px solid #38bdf8;
    padding: 15px 20px;
    background: rgba(56, 189, 248, 0.05);
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px dotted #60a5fa;
}

.article-content a:hover {
    border-bottom: 1px solid #60a5fa;
}

/* 分页样式 */
.pagination-span {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px auto;
    padding: 10px;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.pagination-span a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 41, 59, 0.9);
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(100, 116, 139, 0.3);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}

.pagination-span a:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-span a.active {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-color: rgba(59, 130, 246, 0.6);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
}

.pagination-span span {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.6);
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .pagination-span {
        gap: 4px;
        padding: 8px;
        margin: 15px auto;
    }
    
    .pagination-span a,
    .pagination-span span {
        padding: 6px 12px;
        min-width: 36px;
        font-size: 0.9rem;
    }
}
.tupian img{
  max-width: 100% !important; /* 使用 !important 强制覆盖 */
  height: auto !important;
}