/* 公告详情页专用样式 */
.article-header {
    border-bottom: 1px solid #eaeaec;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.article-title {
    font-size: 24px;
    font-weight: bold;
    color: #ce7809;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-time {
    text-align: right;
    color: #777;
    font-size: 14px;
    padding-bottom: 10px;
}

.article-content {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.feedback-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.feedback-card {
    flex: 1;
    min-width: 200px;
    background: #fef9f0;
    border: 1px solid #f0e4d4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}

.feedback-card:hover {
    transform: translateY(-3px);
    border-color: #ba231a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feedback-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.feedback-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #ba231a;
    margin-bottom: 10px;
}

.feedback-card .price {
    font-size: 22px;
    font-weight: bold;
    color: #ce7809;
    margin: 10px 0;
}

.feedback-card .desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.reward-list {
    background: #f5f5f5;
    border-left: 4px solid #ba231a;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.reward-list p {
    margin: 8px 0;
    text-indent: 0 !important;
}

.reward-list strong {
    color: #ba231a;
}

.guild-note {
    background: #fff7ef;
    border: 1px solid #f0e4d4;
    padding: 12px 18px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 12px;
    color: #888;
}

.test-notice {
    background: linear-gradient(90deg, #fef3e6 0%, #fff9ef 100%);
    border-left: 4px solid #ce7809;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.test-notice p {
    margin: 5px 0;
    text-indent: 0 !important;
}

.article-signature {
    text-align: right;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaec;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .article-title { font-size: 20px; }
    .feedback-grid { flex-direction: column; gap: 12px; }
    .feedback-card { min-width: auto; }
    .article-content { font-size: 13px; }
}