/* h1 */
.home-intro {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

/* 顶部红色装饰线，与网站导航颜色呼应 */
.home-intro::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #e3222a;
}

.home-intro__inner {
    margin: 0 auto;
    padding: 52px 0;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 70px;
}

.home-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 13px;
    color: #e3222a;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
}

/* 小标题前面的短红线 */
.home-intro__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #e3222a;
}

.home-intro h1 {
    max-width: 720px;
    margin: 0;
    color: #202020;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.16;
    letter-spacing: -0.8px;
}

.home-intro__content {
    padding-left: 34px;
    border-left: 1px solid #e7e7e7;
}

.home-intro__content p {
    margin: 0 0 24px;

    color: #606060;
    font-size: 16px;
    line-height: 1.75;
}

.home-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-intro__button {
    min-height: 46px;
    padding: 12px 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 3px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home-intro__button:hover {
    transform: translateY(-2px);
}

.home-intro__button--primary {
    color: #ffffff;
    background: #e3222a;
    border-color: #e3222a;
}

.home-intro__button--primary:hover {
    color: #ffffff;
    background: #c91920;
    border-color: #c91920;
}

.home-intro__button--secondary {
    color: #252525;
    background: #ffffff;
    border-color: #cfcfcf;
}

.home-intro__button--secondary:hover {
    color: #e3222a;
    border-color: #e3222a;
}


@media (max-width: 1040px) {
    .home-intro h1 {
        font-size: .6rem;
    }
}

/* 平板和手机端 */
@media (max-width: 768px) {
    .home-intro__inner {
        width: min(100% - 32px, 600px);
        padding: 36px 0 40px;

        grid-template-columns: 1fr;
        gap: 23px;

        text-align: center;
    }

    .home-intro__eyebrow {
        justify-content: center;
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .home-intro h1 {
        margin: 0 auto;
        letter-spacing: -0.3px;
        font-size: .44rem;
    }

    .home-intro__content {
        padding-left: 0;
        border-left: 0;
    }

    .home-intro__content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .home-intro__actions {
        justify-content: center;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .home-intro__inner {
        width: calc(100% - 28px);
        padding: 31px 0 34px;
    }

    .home-intro__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-intro__button {
        width: 100%;
    }
}

/* contact */
.bossgoo-index-contact26 {
    padding-bottom: 80px;
}

@media (max-width: 1040px) {
    .bossgoo-index-contact26 {
        padding-top: .6rem;
    }
}