/* 内容列表组件样式 */
.content-list-container {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 10px;
}

.content-list-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-list-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.content-list-more {
    color: var(--primary-color);
    font-size: 14px;
}

.content-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.content-item {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}

.content-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #e6e6e6;
}

.content-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(30, 159, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.content-info {
    flex: 1;
}

.content-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-meta {
    font-size: 12px;
    color: #999;
}

.content-date {
    margin-left: 10px;
}

/* 内容详情页样式 */
.content-detail-container {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.content-detail-header {
    margin-bottom: 20px;
    text-align: center;
}

.content-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.content-detail-meta {
    color: #999;
    font-size: 14px;
}

.content-detail-category {
    margin: 0 10px;
}

.content-detail-body {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.content-detail-body p {
    margin-bottom: 15px;
}

.content-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .content-list {
        grid-template-columns: 1fr;
    }
    
    .content-detail-container {
        padding: 20px;
    }
    
    .content-detail-title {
        font-size: 20px;
    }
}