/* 保护现状页面特定样式 */
.protection-content {
    padding-top: 60px;
}

/* 英雄区域样式 */
.hero-section {
    height: 400px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* 保护概况部分 */
.status-overview {
    padding: 60px 0;
    background-color: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.overview-text p {
    color: #666;
    line-height: 1.6;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* 保护措施部分 */
.protection-measures {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.protection-measures h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.measures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.measure-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.measure-card:hover {
    transform: translateY(-5px);
}

.measure-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.measure-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.measure-card ul {
    list-style: none;
    padding: 0;
}

.measure-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.measure-card li:last-child {
    border-bottom: none;
}

/* 挑战部分 */
.challenges-section {
    padding: 60px 0;
    background-color: #fff;
}

.challenges-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.challenges-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.challenge-item {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
}

.challenge-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.challenge-item p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* 发展展望部分 */
.future-outlook {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.future-outlook h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.outlook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.outlook-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.outlook-item:hover {
    transform: translateY(-5px);
}

.outlook-image {
    height: 250px;
    overflow: hidden;
}

.outlook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.outlook-item:hover .outlook-image img {
    transform: scale(1.1);
}

.outlook-item h3 {
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0 10px;
}

.outlook-item p {
    padding: 0 20px 20px;
    text-align: center;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .overview-grid,
    .measures-grid,
    .challenges-content,
    .outlook-grid {
        grid-template-columns: 1fr;
    }

    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
} 