/* SchoolBBS 自定义样式 */

body {
    background-color: #f2f2f2;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #1E9FFF;
}

.post-card {
    margin-bottom: 15px;
    transition: all 0.3s;
}

.post-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.post-title:hover {
    color: #1E9FFF;
}

.post-meta {
    color: #999;
    font-size: 13px;
    margin-top: 8px;
}

.post-content {
    line-height: 1.8;
    color: #555;
    padding: 20px;
}

.comment-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-meta {
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
}

.comment-content {
    color: #555;
    line-height: 1.6;
}

.login-box {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}