/* 信息页面样式 */
.info-page {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-date {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.info-content {
    line-height: 1.6;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-section h2 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
    display: inline-block;
}

.info-section h3 {
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
}

.info-section p {
    color: #495057;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.info-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.info-section li {
    color: #495057;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.info-section a {
    color: #007bff;
    text-decoration: none;
}

.info-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 更新日志特定样式 */
.changelog-entry {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 3px solid #007bff;
}

.changelog-entry h3 {
    margin-top: 0;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.changelog-entry ul {
    margin-bottom: 1.5rem;
}

.changelog-entry li {
    margin-bottom: 0.3rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-page {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .info-title {
        font-size: 1.75rem;
    }
    
    .info-section h2 {
        font-size: 1.1rem;
    }
    
    .info-section h3 {
        font-size: 0.9rem;
    }
    
    .changelog-entry {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .info-page {
        padding: 1rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .info-section h2 {
        font-size: 1rem;
    }
    
    .info-section {
        margin-bottom: 1.5rem;
    }
}

/* 打印样式 */
@media print {
    .info-page {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .info-section {
        page-break-inside: avoid;
    }
    
    .changelog-entry {
        background: #ffffff;
        border: 1px solid #dee2e6;
    }
} 