/* 攻略页面样式 */
.guides-page {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    min-height: calc(100vh - 300px);
}

.guide-section {
    margin-bottom: 60px;
}

.guide-section h2 {
    color: #e4c580;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.guide-section h2 i {
    margin-right: 10px;
}

/* 新闻模块样式 */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.news-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    color: #e4c580;
    margin-bottom: 10px;
}

.news-date {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.news-excerpt {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #e4c580;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #d4b670;
}

/* 即将更新部分样式 */
.coming-soon-content {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
}

.coming-soon-icon {
    font-size: 3em;
    color: #e4c580;
    margin-bottom: 20px;
}

.coming-soon-content h3 {
    color: #e4c580;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.coming-soon-content p {
    color: #fff;
    font-size: 1.2em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .guide-section {
        margin-bottom: 40px;
    }
}

/* 查看详情按钮样式 */
.news-card .read-more {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;  /* 移除背景色 */
    color: #e4c580;         /* 使用金色 */
    text-decoration: none;
    border: 1px solid #e4c580;  /* 添加边框 */
    border-radius: 5px;
    transition: all 0.3s ease;
}

.news-card .read-more:hover {
    background-color: #e4c580;
    color: #000;            /* 悬停时文字变黑 */
}

.news-card .read-more i {
    margin-left: 5px;
    color: #e4c580;        /* 图标也使用相同的金色 */
}

.news-card .read-more:hover i {
    color: #000;           /* 悬停时图标变黑 */
}

/* 覆盖任何可能的继承样式 */
.news-card .read-more,
.news-card .read-more:link,
.news-card .read-more:visited {
    color: #e4c580;
}

.news-detail .guide-section {
    padding-top: 40px; /* 增加整个新闻区域的上边距 */
}

.news-detail h1 {
    margin-bottom: 20px; /* 标题与日期之间的间距 */
}

.news-detail .news-date {
    margin-bottom: 30px; /* 日期与正文之间的间距 */
}

.news-detail p {
    color: #e4c580; /* 使用与标题相同的金色 */
}

.news-detail a {
    color: #e4c580;
    text-decoration: none;
}

.news-detail a:hover {
    text-decoration: underline;
}

.news-detail ul li {
    color: #e4c580;
    margin-bottom: 10px;
    text-transform: none;
}

.news-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-source {
    color: #888;
}

.news-source a {
    color: #e4c580;
    text-decoration: none;
}

.news-source a:hover {
    text-decoration: underline;
} 