.about-page {
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: #2f2f2f;
}

.about-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: url(https://mstatic.ofpay.com/marketing/upload/e3fe7830661f4b018cc804b852db2c89.png) no-repeat center center;
    background-size: 100% 100%;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 24px 64px;
}

.about-hero-title {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.5px;
}

.about-hero-sub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.about-hero-btn {
    background: url(https://mstatic.ofpay.com/marketing/upload/9712ea36411743a1807291691d285d24.png) no-repeat center center;
    background-size: 100% 100%;
    width: 160px;
    height: 48px;
    margin: 30px auto 0;
    border: none;
    cursor: pointer;
    display: block;
}

.about-section {
    padding: 0 0 2px;
}

.about-card {
    background: #fff;
    padding: 28px 42px 30px;
    box-sizing: border-box;
}

.about-card h2 {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    text-align: center;
}

.about-card h3 {
    margin: 15px 0 0;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    color: #333;
}

.about-card .about-desc {
    color: #333;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    margin-top: 22px;
    line-height: 1.8;
    text-indent: 2em;
}

/* 公司介绍 · 数据条（与截图一致） */
.about-intro-number {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 28px 8px 8px;
    border-radius: 4px;
}

.about-intro-stat {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.about-intro-stat-main {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.about-intro-stat-value {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #0148a4;
    letter-spacing: -0.02em;
}

.about-intro-stat-suffix {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1;
}

.about-intro-stat-desc {
    margin: 10px 0 0;
    padding: 0 4px;
    font-size: 13px;
    line-height: 1.5;
    color: #999;
    text-align: center;
}

.about-intro-images {
    margin-top: 22px;
    display: flex;
    gap: 14px;
}

.about-intro-images img {
    width: calc(50% - 7px);
    height: 190px;
    object-fit: cover;
}

/* 荣誉资质网格布局 - 一排四个，上图下文案 */
.about-honor-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.about-honor-item {
    text-align: center;
}

.about-honor-item img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 8px;
    box-sizing: border-box;
}

.about-honor-item p {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    text-align: center;
}

.about-testimonials {
    margin-top: 18px;
    background: #1f1570;
    padding: 40px 48px 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.about-testimonial-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    color: #fff;
}

.about-testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-top: 2px;
    background: radial-gradient(circle at 35% 28%, #f0dca9 24%, #d6b97a 38%, #85774e 100%);
}

.about-testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.about-testimonial-name {
    margin: 22px 0 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.4px;
}

/* 复用 footerComponent 渲染结构样式 */
.index-footer-part {
    width: 100%;
    min-width: 1200px;
    background: #2f3033;
    padding: 40px 0 34px;
}

.index-footer-main {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footer-company h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 500;
}

.footer-company p {
    margin: 6px 0;
    font-size: 12px;
    color: #d1d1d1;
}

.footer-socials {
    margin: 14px 0;
}

.footer-socials a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #8b8b8b;
    border-radius: 50%;
    color: #ddd;
    text-decoration: none;
    margin-right: 8px;
    font-size: 12px;
}

.footer-links {
    margin-top: 18px !important;
}

.footer-nav-col {
    width: 180px;
}

.footer-nav-col h5 {
    margin: 0 0 18px;
    font-size: 13px;
    color: #d8d8d8;
    font-weight: 500;
}

.footer-nav-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #d1d1d1;
    text-decoration: none;
}
