/* 福利政策页面专用样式 */
.welfare-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.welfare-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.welfare-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.welfare-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.welfare-section {
    background: white;
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.table-container {
    padding: 40px;
}

.reward-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.reward-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.reward-table th,
.reward-table td {
    padding: 20px 30px;
    text-align: center;
    border: none;
}

.reward-table th {
    font-weight: 600;
    font-size: 1.2rem;
}

.reward-table tbody tr {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.reward-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.reward-table tbody tr:hover {
    background: #e3f2fd;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.reward-table td {
    font-weight: 500;
    color: #333;
}

.reward-table .journal-type {
    font-weight: 600;
    color: #495057;
}

.reward-table .reward-amount {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.application-rules {
    padding: 40px;
    background: #f8f9fa;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.rules-list li {
    background: white;
    margin: 15px 0;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.rules-list li strong {
    color: #667eea;
}

.example-text {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-style: italic;
    color: #495057;
    margin: 15px 0;
    border-left: 4px solid #667eea;
}

@media (max-width: 768px) {
    .welfare-hero h1 {
        font-size: 2.5rem;
    }
    
    .welfare-hero p {
        font-size: 1.2rem;
    }
    
    .table-container {
        padding: 20px;
        overflow-x: auto;
    }
    
    .reward-table {
        min-width: 600px;
    }
    
    .reward-table th,
    .reward-table td {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .application-rules {
        padding: 20px;
    }
    
    .rules-list li {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .welfare-content {
        padding: 40px 0;
    }
    
    .section-title {
        padding: 20px;
        font-size: 1.5rem;
    }
    
    .reward-table th,
    .reward-table td {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
} 