/* 保税服务页 */
.baoshui-history {
    box-sizing: border-box;
    position: relative;
    margin-top: 42px;
    padding: 20px 0 76px;
    overflow: hidden;
    background: #fff;
}

.baoshui-history:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #0e3c72;
}

.baoshui-wrap {
    position: relative;
    overflow: visible;
}

.baoshui-layout {
    display: grid;
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
}

.baoshui-metrics {
    display: flex;
    flex-direction: column;
    gap: 27px;
    padding: 48px 0 20px;
}

.baoshui-metric {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 34px;
    color: #101010;
    background: linear-gradient(180deg, #f7f7f7 0%, #d7d7d7 100%);
    border: 5px solid #f8f8f8;
    border-radius: 28px;
    box-shadow: 0 14px 22px rgba(35, 35, 35, .22), inset 0 1px 4px rgba(0, 0, 0, .2);
    font-size: clamp(14px, 1.35vw, 18px);
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    clip-path: polygon(0 50%, 5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%);
    filter: drop-shadow(0 12px 8px rgba(35, 35, 35, .12));
}

.baoshui-metric span,
.baoshui-copy span {
    color: #f20e16;
}

.baoshui-content {
    min-width: 0;
    margin: 0;
    color: #818181;
}

.baoshui-heading h2 {
    margin: 0 0 26px;
    color: #0a70b9;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 600;
    letter-spacing: .04em;
    text-align: center;
}

.baoshui-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(88px, 1fr));
    gap: clamp(12px, 2vw, 30px);
    margin-bottom: 28px;
}

.baoshui-feature {
    box-sizing: border-box;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    max-width: 142px;
    margin: 0 auto;
    width: 100%;
    color: #0874bd;
    background: linear-gradient(145deg, #fff 12%, #f2f4f5 100%);
    border: 4px solid #f4f5f5;
    border-radius: 50%;
    box-shadow: 0 12px 20px rgba(0, 0, 0, .18), inset 0 1px 1px #fff;
    font-size: clamp(27px, 3.4vw, 46px);
    line-height: 1;
    white-space: nowrap;
}

.baoshui-lead {
    margin: 0 auto 24px;
    color: #8a8a8a;
    font-size: clamp(15px, 1.55vw, 20px);
    line-height: 1.8;
    text-align: center;
}

.baoshui-copy {
    position: relative;
    padding: 0 20px 0 10px;
}

.baoshui-copy:after {
    content: "";
    position: absolute;
    right: -4px;
    top: 4px;
    width: 14px;
    height: 110px;
    background: repeating-linear-gradient(180deg, transparent 0 18px, rgba(68, 185, 230, .55) 18px 36px, transparent 36px 54px);
    opacity: .7;
}

.baoshui-copy p {
    margin: 0 0 24px;
    color: #858585;
    font-size: clamp(14px, 1.35vw, 18px);
    line-height: 1.75;
    text-align: left;
}

.baoshui-editor-content {
    padding: 22px 0 0 10px;
    border-top: 1px solid #e6e6e6;
    color: #858585;
    font-size: 16px;
    line-height: 1.8;
}

.baoshui-editor-content p {
    margin: 0 0 16px;
}

.baoshui-editor-content img {
    max-width: 100%;
    height: auto;
}

.baoshui-page-en .baoshui-feature {
    font-size: 16px;
    font-weight: 600;
    white-space: normal;
}

.baoshui-page-en .baoshui-metric {
    padding-right: 25px;
    padding-left: 25px;
    font-size: 15px;
}

@media screen and (max-width: 960px) {
    .baoshui-history {
        margin-top: 20px;
        padding-top: 10px;
    }

    .baoshui-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .baoshui-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
        padding: 12px 0 0;
    }

    .baoshui-metric {
        min-height: 54px;
        padding: 9px 22px;
        font-size: 14px;
    }

    .baoshui-metric:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        width: 100%;
        justify-self: center;
    }

    .baoshui-content {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .baoshui-history {
        padding-bottom: 48px;
    }

    .baoshui-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .baoshui-metric,
    .baoshui-metric:last-child {
        grid-column: auto;
        max-width: none;
        min-height: 44px;
        padding: 8px 24px;
        font-size: 13px;
    }

    .baoshui-heading h2 {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .baoshui-features {
        gap: 8px;
        margin-bottom: 18px;
    }

    .baoshui-feature {
        border-width: 3px;
        font-size: clamp(20px, 7vw, 32px);
    }

    .baoshui-lead {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.65;
    }

    .baoshui-copy {
        padding: 0;
    }

    .baoshui-copy:after {
        display: none;
    }

    .baoshui-copy p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.8;
    }

    .baoshui-editor-content {
        padding-left: 0;
        font-size: 14px;
        line-height: 1.8;
    }
}
