.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.header h1 {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.create-btn {
    padding: 10px 20px;
    background-color: #409eff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.create-btn:hover {
    background-color: #66b1ff;
}

.article-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

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

.article-item {
    padding: 20px;
    border: 1px solid #e4e7ed;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
}

.article-item:hover {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-color: #c6e2ff;
    transform: translateY(-2px);
}

.article-item h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #303133;
}

.article-link {
    color: #303133;
    text-decoration: none;
    transition: color 0.3s;
}

.article-link:hover {
    color: #409eff;
}

.article-date {
    font-size: 14px;
    color: #909399;
    margin-bottom: 10px;
}

.update-btn {
    padding: 6px 12px;
    background-color: #67c23a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.update-btn:hover {
    background-color: #85ce61;
}


.article-title {
    font-size: 20px;
    font-weight: 600;
    color: #303133;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-meta {
    font-size: 14px;
    color: #909399;
}