/* ==========================================================================
   success.css —— 成功案例页面专属样式
   公共样式见 common.css
   ========================================================================== */

/* ---------- 1. 案例卡片 ---------- */
.case-card {
    background: #fff;
    border: 1px solid var(--bd-border);
    border-radius: var(--bd-radius);
    padding: 26px 24px;
    height: 100%;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
    border-color: var(--bd-primary-l);
}

.case-card h4 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 14px;
    font-family: var(--bd-font);
    font-weight: 700;
}

.case-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--bd-muted);
    margin-bottom: 14px;
}

.case-date svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.case-card p {
    font-size: 13px;
    color: var(--bd-text-sub);
    line-height: 1.8;
    margin-bottom: 18px;
    flex: 1;
}

.case-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--bd-primary);
    transition: letter-spacing .25s ease;
}

.case-link:hover {
    color: var(--bd-primary-d);
    letter-spacing: .5px;
}

/* ---------- 2. 分页 ---------- */
.pagination-wrap {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}

.pagination-wrap .pagination {
    gap: 6px;
}

.pagination-wrap .page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bd-border);
    border-radius: 5px !important;
    color: var(--bd-text);
    font-size: 14px;
    background: #fff;
    padding: 0;
    transition: all .25s ease;
}

.pagination-wrap .page-link:hover {
    border-color: var(--bd-primary);
    color: var(--bd-primary);
    background: #fff;
}

.pagination-wrap .page-item.active .page-link {
    background: var(--bd-primary);
    border-color: var(--bd-primary);
    color: #fff;
}

.pagination-wrap .page-item.disabled .page-link {
    border: 0;
    background: transparent;
    color: var(--bd-muted);
}

/* ---------- 3. 引言横幅 ---------- */
.quote-banner {
    /*padding: 0 0 60px;*/
}

.quote-banner .row {
    border-radius: 12px;
    overflow: hidden;
}

.quote-left {
    background: var(--bd-primary);
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-mark {
    font-size: 80px;
    color: rgba(255, 255, 255, .25);
    font-family: var(--bd-font-serif);
    line-height: .6;
    margin-bottom: 16px;
}

.quote-left p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    font-family: var(--bd-font-serif);
}

.quote-img {
    position: relative;
    min-height: 260px;
}

.quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

@media (max-width: 767.98px) {
    .quote-left {
        padding: 35px 28px;
    }
    .quote-left p {
        font-size: 17px;
    }
}

/* ---------- 4. Our Approach 5步 ---------- */
.approach-item {
    text-align: center;
    position: relative;
}

.approach-icon {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bd-primary-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.approach-icon svg {
    width: 32px;
    height: 32px;
}

.approach-icon .num {
    position: absolute;
    top: 50%;
    left: -35px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bd-primary-l);
    color: var(--bd-primary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.approach-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
    font-family: var(--bd-font);
    font-weight: 700;
}

.approach-item p {
    font-size: 12px;
    color: var(--bd-text-sub);
    line-height: 1.7;
}

/* 步骤间虚线（PC端） */
@media (min-width: 992px) {
    .approach-box>.col:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 36px;
        left: calc(50% + 44px);
        right: calc(-50% + 44px);
        border-top: 2px dashed var(--bd-primary-l);
    }
}

@media (max-width: 991px) {
    .approach-box>.col{
        margin-bottom: 20px;
    }
}
