/* ============================================
   关于部分样式
   ============================================ */

.about-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1000px;
    justify-content: center;
    padding: 60px 0;
}

.about-image {
    width: 40%;
    flex-shrink: 0;
    margin-top: 88px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    width: 60%;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

/* 社交链接 */
.socials {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: var(--text-color);
}

/* 响应式 - 大屏幕 */
@media (min-width: 1400px) {
    .about-flex {
        max-width: 1200px;
        gap: 60px;
        padding: 80px 0;
    }
    
    .about-text {
        font-size: 1.15rem;
    }
}

/* 中等屏幕 */
@media (max-width: 1024px) {
    .about-flex {
        gap: 40px;
        padding: 50px 0;
    }
    
    .about-image {
        margin-top: 60px;
    }
}

/* 平板 */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        width: 100%;
        font-size: 1rem;
    }
}

/* 手机 */
@media (max-width: 480px) {
    .about-flex {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }
    
    .about-image {
        width: 100%;
        max-width: 300px;
    }
    
    .about-text {
        width: 100%;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .socials {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .socials a {
        font-size: 0.9rem;
    }
}
}
