/* ========== 关于支付FM - 页面样式 ========== */

/* --- Hero --- */
.zy-about-page .zy-about-hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c6faa 50%, #1a3a5c 100%);
    padding: 80px 0 70px;
    text-align: center;
    color: #fff;
}
.zy-about-hero .zy-about-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 3px;
}
.zy-about-hero .zy-about-desc {
    font-size: 16px;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Container --- */
.zy-about-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* --- Section --- */
.zy-about-section {
    margin-bottom: 60px;
}
.zy-about-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 2px solid #eef2f7;
    position: relative;
}
.zy-about-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #2c6faa;
}
.zy-about-section-desc {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

/* --- 子标题 --- */
.zy-about-sub-title {
    font-size: 17px;
    font-weight: 600;
    color: #2c6faa;
    margin: 30px 0 18px;
    padding-left: 12px;
    border-left: 3px solid #2c6faa;
}

/* --- 徽章标签 --- */
.zy-about-info-label .zy-badge-new {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    background: #e67e22;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1.4;
}

/* --- 企业信息项7项奇数处理 --- */
.zy-about-info-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
}

/* --- 公司简介 --- */
.zy-about-intro {
    font-size: 15px;
    color: #555;
    line-height: 2;
}
.zy-about-intro p {
    margin-bottom: 18px;
    text-indent: 2em;
}
.zy-about-intro strong {
    color: #1a3a5c;
}

/* --- 企业信息 --- */
.zy-about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    overflow: hidden;
    background: #fafbfc;
}
.zy-about-info-item {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #eef2f7;
    transition: background .2s;
}
.zy-about-info-item:hover {
    background: #eaf2fa;
}
.zy-about-info-item:nth-child(2n) {
    border-right: none;
}
.zy-about-info-item:nth-last-child(-n+2) {
    border-bottom: none;
}
.zy-about-info-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
}
.zy-about-info-label {
    font-size: 13px;
    color: #999;
    min-width: 140px;
    flex-shrink: 0;
    padding-top: 2px;
}
.zy-about-info-value {
    font-size: 14px;
    color: #1a3a5c;
    font-weight: 500;
}

/* --- 发展历程 --- */
.zy-about-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #dce6f0;
}
.zy-about-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 0;
}
.zy-about-timeline-item:last-child {
    margin-bottom: 0;
}
.zy-about-timeline-dot {
    position: absolute;
    left: -38px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #2c6faa;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #2c6faa;
}
.zy-about-timeline-year {
    display: inline-block;
    font-size: 13px;
    color: #2c6faa;
    font-weight: 700;
    background: #eaf2fa;
    padding: 3px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
}
.zy-about-timeline-content h4 {
    font-size: 17px;
    color: #1a3a5c;
    font-weight: 600;
    margin: 0 0 6px;
}
.zy-about-timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* --- 服务能力 --- */
.zy-about-services [class*="col-"] {
    margin-bottom: 20px;
}
.zy-about-service-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 28px 22px;
    height: 100%;
    transition: all .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.zy-about-service-card:hover {
    border-color: #2c6faa;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.zy-about-service-icon {
    width: 48px;
    height: 48px;
    background: #eaf2fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: #2c6faa;
}
.zy-about-service-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
    margin: 0 0 10px;
}
.zy-about-service-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* --- 资质荣誉 --- */
.zy-about-qual-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.zy-about-qual-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #eef2f7;
    transition: all .3s;
}
.zy-about-qual-item:hover {
    border-color: #2c6faa;
    background: #eaf2fa;
}
.zy-about-qual-item > i {
    font-size: 22px;
    color: #2c6faa;
    margin-top: 2px;
    flex-shrink: 0;
}
.zy-about-qual-item strong {
    display: block;
    font-size: 15px;
    color: #1a3a5c;
    margin-bottom: 4px;
}
.zy-about-qual-item span {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}
.zy-about-qual-link-wrap {
    text-align: center;
}

/* --- 联系我们 --- */
.zy-about-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.zy-about-contact-card {
    text-align: center;
    padding: 30px 16px;
    background: #fafbfc;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    transition: all .3s;
}
.zy-about-contact-card:hover {
    border-color: #2c6faa;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transform: translateY(-3px);
}
.zy-about-contact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: #eaf2fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2c6faa;
}
.zy-about-contact-card h4 {
    font-size: 15px;
    color: #1a3a5c;
    font-weight: 600;
    margin: 0 0 8px;
}
.zy-about-contact-card a {
    font-size: 13px;
    color: #2c6faa;
    text-decoration: none;
    word-break: break-all;
}
.zy-about-contact-card a:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .zy-about-hero {
        padding: 44px 0 36px;
    }
    .zy-about-hero .zy-about-title {
        font-size: 28px;
    }
    .zy-about-hero .zy-about-desc {
        font-size: 14px;
    }
    .zy-about-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .zy-about-section-title {
        font-size: 20px;
    }
    .zy-about-section {
        margin-bottom: 40px;
    }
    .zy-about-info-grid {
        grid-template-columns: 1fr;
    }
    .zy-about-info-item {
        border-right: none;
    }
    .zy-about-info-item:last-child {
        border-bottom: none;
    }
    .zy-about-info-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eef2f7;
    }
    .zy-about-info-item:last-child {
        border-bottom: none;
    }
    .zy-about-info-label {
        min-width: 100px;
    }
    .zy-about-timeline {
        padding-left: 22px;
    }
    .zy-about-timeline-dot {
        left: -30px;
        width: 12px;
        height: 12px;
    }
    .zy-about-qual-summary {
        grid-template-columns: 1fr;
    }
    .zy-about-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .zy-about-contact-grid {
        grid-template-columns: 1fr;
    }
}
