/* 新闻列表样式 */
.blog-widget-text {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.blog-widget-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-widget-text h5 {
    margin-bottom: 15px;
}

.blog-widget-text h5 a {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-widget-text h5 a:hover {
    color: #007bff;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 14px;
    color: #666;
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
    color: #007bff;
}

.blog-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more-link {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.read-more-link i {
    margin-left: 5px;
    font-size: 12px;
}

/* 右侧边栏相关新闻样式 */
.news-item-text {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.news-item-text:last-child {
    border-bottom: none;
}

.news-item-text .news-title {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.news-item-text .news-title:hover {
    color: #007bff;
}

.news-date {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.news-date i {
    margin-right: 5px;
    color: #007bff;
}

/* 下载列表专用样式 */
.blog-list-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    border: 1px solid #eee;
}

.blog-list-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-list-item h5 {
    margin-bottom: 15px;
}

.blog-list-item h5 a {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-list-item h5 a:hover {
    color: #007bff;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 14px;
    color: #666;
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-date i {
    color: #007bff;
}

.blog-author i {
    color: #fd7e14;
}

.blog-size i {
    color: #28a745;
}

.blog-visits i {
    color: #6f42c1;
}

.blog-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more-link {
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.read-more-link:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.read-more-link i {
    margin-left: 5px;
    font-size: 12px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .blog-list-container {
        padding: 15px;
    }
    
    .blog-list-item {
        padding: 15px 0;
    }
    
    .blog-list-item h5 a {
        font-size: 18px;
    }
    
    .blog-meta span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .blog-size {
        margin-right: 0;
    }
}