/* 基础样式和字体 */
body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面内容容器 */
.about-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

/* 标题样式 */
.about-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, #1d976c, #93f9b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 段落样式 */
.about-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

/* 强调文字 */
.about-container p strong {
    font-weight: 800;
    color: #007bff;
}

/* 内部卡片样式（用于段落分隔） */
.about-container .p-card {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #007bff;
    margin-top: 25px;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 移动端兼容性 */
@media (max-width: 768px) {
    .about-container {
        margin: 20px;
        padding: 15px;
    }

    .about-container h1 {
        font-size: 2rem;
    }

    .about-container p {
        font-size: 1rem;
        text-align: left;
    }
}

/* 优化页面底部间距，让内容更舒服 */
body {
    padding-bottom: 40px;
}