/* 关于页专用样式 */
.about-home, .about {
    background: #eaf4fb;
    border-radius: 12px;
    margin: 40px 0;
    padding: 32px 0;
}
.about-home h2, .about h2 {
    color: #005fa3;
}
.about-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}
.about-hero-left {
    flex: 1 1 420px;
    min-width: 0;
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
}
.about-hero-right {
    flex: 0 0 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-logo-img {
    width: 440px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    background: #eaf4fb;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.about-btn {
    display: inline-flex;
    align-items: center;
    background: #0091dc;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    margin: 24px 0 18px 0;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: background 0.2s;
    cursor: pointer;
    gap: 10px;
    text-align: left !important;
    align-self: flex-start !important;
}
.about-title,
.about-desc,
.about-btn,
.about-tip {
    text-align: left !important;
    align-self: flex-start !important;
}
.about-btn:hover {
    background: #1976d2;
    color: #fff;
    text-decoration: none;
}
.about-btn-icon {
    font-size: 22px;
    margin-right: 8px;
    display: flex;
    align-items: center;
}
@media (max-width: 1200px) {
    .about-logo-img {
        width: 320px;
    }
    .about-hero-right {
        flex-basis: 340px;
    }
}
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .about-hero-right {
        justify-content: flex-start;
        margin-top: 0;
        flex-basis: auto;
    }
    .about-logo-img {
        width: 180px;
    }
}
