/* 新闻页面样式 */
.news-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00603e;
}

.news-meta {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.news-meta span {
    margin-right: 1rem;
}

.news-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.news-content p {
    margin-bottom: 1.5rem;
}

.news-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.news-gallery {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.news-gallery h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00603e;
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 绿色主题 */
.bg-green {
    background-color: #00603e !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus {
    background-color: #00603e !important;
    border-color: #00603e !important;
}

.btn-primary:hover {
    background-color: #004d32 !important;
    border-color: #004d32 !important;
}

.text-primary {
    color: #00603e !important;
}

a {
    color: #00603e;
}

a:hover {
    color: #004d32;
}

@media (max-width: 768px) {
    .news-title {
        font-size: 1.5rem;
    }
    
    .news-content {
        font-size: 1rem;
    }
} 