/* 最新更新页面样式 - dailynew.css */
/* 创建时间：2024-12-19 */

/* 面包屑导航样式 */
.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 10px 15px;
    margin: 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* 主容器样式 */
.update-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.update-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f4f8;
}

.update-header h1 {
    color: #2c5aa0;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.page-description {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.update-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    color: #888;
    margin-top: 15px;
}

.update-meta time {
    font-style: italic;
}

.update-count {
    background: #e8f4f8;
    color: #2c5aa0;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.update-section {
    margin-bottom: 40px;
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
}

.section-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title h2 {
    color: #2c5aa0;
    margin: 0;
    font-size: 1.5em;
}

.more-link {
    margin-left: auto;
    color: #5a9fd4;
    text-decoration: none;
    font-size: 0.9em;
}

.more-link:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

.item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-list li {
    background: #fff;
    margin-bottom: 12px;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #5a9fd4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.item-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-left-color: #2c5aa0;
}

.item-title {
    display: block;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.item-title:hover {
    color: #1e4080;
}

.item-meta {
    color: #888;
    font-size: 0.9em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-author {
    color: #5a9fd4;
}

.item-time {
    font-size: 0.85em;
}

.empty-message {
    text-align: center;
    color: #999;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 6px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .update-container {
        margin: 10px;
        padding: 15px;
    }
    
    .update-header h1 {
        font-size: 1.8em;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .more-link {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
} 