.solution-page {
    font-family: var(--font-sans);
}

/* banner模块 */
.solution-page .solution-page__hero {
    height: 350px;
    background: url('/assets/images/solution/hero-bg.png') no-repeat right
        center;
    background-size: cover;
}

.solution-page .site-container {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.solution-page .solution-page__hero-content {
    width: 100%;
    text-align: center;
    font-family: var(--font-sans);
}

.solution-page .solution-page__hero-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 6px;
}

.solution-page .solution-page__hero-desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 32px;
    color: #fff;
}

.solution-page .solution-page__hero-desc br {
    display: none;
}

.solution-page .hero-carousel__actions {
    justify-content: center;
}

.is-desktop .solution-page {
    padding-top: 69px;
}

.is-desktop .solution-page .site-container {
    padding: 0 50px;
}

@media screen and (min-width: 768px) {
    .is-desktop .solution-page .site-container {
        padding: 0 clamp(80px, 16vw, 240px);
    }

    .solution-page .solution-page__hero {
        height: 518px;
    }

    .solution-page .solution-page__hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .solution-page .solution-page__hero-desc {
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) {
    html.is-desktop .solution-page .solution-page__hero {
        height: 518px;
    }

    html.is-desktop .solution-page .site-container {
        background-color: transparent;
        max-width: 1680px;
        padding: 0 40px;
        align-items: flex-start;
    }

    html.is-desktop .solution-page .solution-page__hero-title {
        font-weight: bold;
        font-size: clamp(22px, 3vw, 52px);
        line-height: 80px;
        letter-spacing: 0.5px;
        margin-bottom: 22px;
    }

    html.is-desktop .solution-page .solution-page__hero-desc {
        font-weight: 400;
        font-size: clamp(15px, 1.8vw, 28px);
        line-height: 48px;
    }

    html.is-desktop .solution-page .solution-page__hero-desc br {
        display: block;
    }

    html.is-desktop .solution-page .solution-page__hero-content {
        text-align: left;
    }

    html.is-desktop .solution-page .hero-carousel__actions {
        justify-content: flex-start;
    }
}

/* 行业痛点 */
.solution-page .solution-page__pain {
    background: linear-gradient(137deg, #ffffff 0%, #faf7ff 100%);
}

.solution-page .pain-container {
    padding: 0 16px;
    margin: 0 auto;
}

.solution-page .pain-container .pain-item {
    --border-width: 18px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(-180deg, #e6eefc, #f3f7fb);
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: calc(var(--border-width) - 1px);
    transition: all 0.3s ease-in-out;
}
.solution-page .pain-container .pain-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0px 6px 12px 1px rgba(0, 0, 0, 0.08);
}

.solution-page .pain-container .pain-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(-180deg, #c5dcfc, #fff);
    border-radius: var(--border-width);
}

.solution-page .pain-container .pain-item--img {
    height: 120px;
}

.solution-page .pain-container img {
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.solution-page .pain-container .pain-item--title {
    font-weight: 800;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.solution-page .pain-container .pain-item--desc {
    font-size: 16px;
    color: #393e4f;
    line-height: 26px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .solution-page .pain-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .solution-page .pain-container .pain-item {
        max-width: 375px;
        flex: 1;
        margin: unset;
        min-width: 276px;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page .pain-container {
        max-width: 1680px;
        padding: 0 40px;
        margin: 0 auto;
        gap: 28px;
    }

    .solution-page .pain-container .pain-item {
        width: 375px;
        height: 439px;
        margin: unset;
        padding: 16px 0;
        min-width: 320px;
    }

    .solution-page .pain-container .pain-item--img {
        height: 183px;
        margin-bottom: 11px;
    }

    .solution-page .pain-container img {
        height: 100%;
        object-fit: contain;
    }

    .solution-page .pain-container .pain-item--title {
        font-weight: 800;
        font-size: 28px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 40px;
        text-align: center;
        margin-bottom: 17px;
    }

    .solution-page .pain-container .pain-item--desc {
        font-size: 17px;
        color: #393e4f;
        line-height: 26px;
        text-align: left;
        padding: 0 clamp(20px, 2vw, 43px);
    }
}

/* 方案架构图 */
.solution-page__structure {
    background-color: #fff;
}
.structure-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .structure-container {
        padding: 0 40px;
    }

    .structure-container img {
        padding: 0 44px;
    }
}

/* 产品展示 */
.solution-page__products {
    background: linear-gradient(43deg, #f2f9ff 0%, #ffffff 45.6%, #faf7ff 100%);
}
.products-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
}

.products-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
}

.products-row + .products-row {
    margin-top: 20px;
}

.products-row .products-text__title {
    font-weight: 800;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 32px;
    margin-bottom: 10px;
}

.products-row .products-text__desc {
    font-size: 16px;
    color: #393e4f;
    line-height: 26px;
    margin-bottom: 16px;
    text-align: left;
}

.products-row .products-row__image {
    background: linear-gradient(
        135deg,
        #d9e7fe 0%,
        #f3eeff 57.05%,
        #d8e5fb 100%
    );
    padding: 26px;
    border-radius: 16px;
    aspect-ratio: 21 / 10;
}

@media screen and (min-width: 768px) {
    .products-row {
        flex-direction: row-reverse;
        justify-content: center;
        box-shadow: none;
        padding: 0;
        text-align: left;
    }
    .products-row:nth-child(2n) {
        flex-direction: row;
    }

    .products-row + .products-row {
        margin-top: 42px;
    }

    .products-row .products-row__text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 500px;
        transform: translateY(-10px);
    }
    .products-row .products-text__title {
        font-size: clamp(20px, 1.5vw, 28px);
        margin-bottom: 15px;
        line-height: 40px;
    }
    .products-row .products-text__desc {
        font-size: clamp(14px, 1.5vw, 20px);
        color: #393e4f;
        line-height: 33px;
        margin-bottom: 23px;
    }

    .products-row .products-text__btn .site-header__cta {
        display: inline-flex;
    }

    .products-row .products-row__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .products-row .products-row__image {
        flex: 1;
    }
}

@media screen and (min-width: 1200px) {
    .products-row {
        gap: 92px;
    }
    .products-container {
        padding: 0 40px;
    }
    .products-row .products-row__image {
        max-width: 975px;
    }
}

/* 方案特色 */
.solution-page__feature {
    background-color: #fff;
}

.solution-page__feature .feature-row {
    position: relative;
    border-radius: 16px;
    padding: 20px 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.solution-page__feature .feature-row:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.solution-page__feature .feature-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-page__feature .feature-row--title {
    font-weight: 800;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 40px;
    margin-bottom: 4px;
}

.solution-page__feature .feature-row--desc {
    font-weight: 400;
    font-size: 14px;
    color: #393e4f;
    line-height: 28px;
}

.solution-page__feature .feature-row--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.solution-page__feature .feature-row--img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 768px) {
    .solution-page__feature .feature-container {
        padding: 0 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
        column-gap: 15px;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__feature .feature-container {
        row-gap: 20px;
        column-gap: 26px;
    }

    .solution-page__feature .feature-row {
        padding: 48px 0 42px 45px;
    }

    .solution-page__feature .feature-row--title {
        font-weight: 800;
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 17px;
    }

    .solution-page__feature .feature-row--desc {
        font-weight: 400;
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 17px;
    }
}

/* 领军行业客户 */
.solution-page__leader-customer {
    background: url('/assets/images/solution/leader-customer-bg.png') no-repeat
        center center;
    background-size: 100% 100%;
}

.leader-customer-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.leader-customer-row {
    max-width: 781px;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.leader-customer-row .leader-customer-row--text {
    padding-top: 20px;
}

.leader-customer-row .leader-customer-row--img {
    max-height: 296px;
    aspect-ratio: 8 / 3;
    overflow: hidden;
}

.leader-customer-row .leader-customer-row--img img {
    width: 100%;
}

.leader-customer-row .leader-customer-row--text-title {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 32px;
    justify-content: center;
    margin-bottom: 10px;
}

.leader-customer-row .leader-customer-row--text-title p {
    vertical-align: bottom;
    color: rgba(0, 0, 0, 0.85);
}

.leader-customer-row .leader-customer-row--text-title img {
    width: 36px;
    height: 36px;
    margin-right: 5px;
}

.leader-customer-row .leader-customer-row--text-title span {
    font-size: 14px;
}

.leader-customer-row .leader-customer-row--text-desc {
    font-size: 14px;
    color: #333;
    line-height: 28px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .leader-customer-container {
        padding: 0 40px;
    }

    .leader-customer-row {
        background-color: #fff;
    }
    .leader-customer-row .leader-customer-row--text {
        padding: 20px 15px;
    }
}

@media screen and (min-width: 860px) {
    .leader-customer-container {
        flex-direction: row;
    }

    .leader-customer-row .leader-customer-row--text-title {
        justify-content: flex-start;
    }
    .leader-customer-row .leader-customer-row--text-desc {
        text-align: left;
    }
}

@media screen and (min-width: 1200px) {
    .leader-customer-container {
        gap: 25px;
    }

    .leader-customer-row .leader-customer-row--text {
        padding: 30px 32px 40px 50px;
    }

    .leader-customer-row .leader-customer-row--text-title {
        font-size: clamp(22px, 1.8vw, 28px);
        margin-bottom: 19px;
        line-height: 48px;
    }
    .leader-customer-row .leader-customer-row--text-title img {
        margin-right: 14px;
    }

    .leader-customer-row .leader-customer-row--text-title span {
        font-size: 20px;
    }

    .leader-customer-row .leader-customer-row--text-desc {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
    }
}

/* 客户案例 */
.solution-page__customer {
    display: none;
}
.customer-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
    column-gap: 18px;
}

.customer-item {
    background-color: #fff;
    box-shadow: 0px 5px 12px 1px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    aspect-ratio: 245 / 84;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: clamp(12px, 1.2vw, 18px);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .customer-container {
        padding: 0 40px;
    }
}

@media screen and (min-width: 1200px) {
    .customer-container {
        grid-template-columns: repeat(6, 1fr);
        row-gap: 41px;
        column-gap: 18px;
    }
}

/* 运维伙伴 */
.solution-page__ability {
    background-color: #fff;
}
.ability-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ability-row {
    background: url('/assets/images/solution/ability-row-bg.png') no-repeat
        center center;
    background-size: 100% 100%;
    padding: 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 13px;
}

.ability-row:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.ability-row--title {
    line-height: 40px;
    position: relative;
    z-index: 9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding-left: 46px;
    margin-bottom: 6px;
}

.ability-row--title img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.ability-row--desc {
    font-size: 14px;
    color: #333333;
    line-height: 28px;
}

@media screen and (min-width: 768px) {
    .ability-container {
        padding: 0 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .ability-container {
        column-gap: 25px;
        row-gap: 20px;
    }
    .ability-row {
        padding: 23px;
    }

    .ability-row--title {
        line-height: 70px;
        padding-left: 79px;
        font-size: clamp(24px, 1.8vw, 27px);
        margin-bottom: 8px;
    }

    .ability-row--desc {
        font-size: 18px;
        line-height: 36px;
        padding: 0 0 0 79px;
    }
}

/* 常见问题（FAQ） */
.solution-page__faq {
    background: linear-gradient(
        135deg,
        #f0f6fd 0%,
        #f6faff 49.82%,
        #f0eafd 100%
    );
}
.faq-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 10px 15px;
    height: 48px;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
    border: 1px solid #eeeeee;
}

.faq-item.open {
    height: auto;
}

.faq-item + .faq-item {
    margin-top: 10px;
}

.faq-item__title {
    position: relative;
    display: flex;
    padding-right: 40px;
    cursor: pointer;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(241, 241, 241, 0.46);
}

.faq-item__title img {
    display: none;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.faq-item__title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
}

.faq-item__title::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: url('/assets/images/solution/down.svg') no-repeat center center;
    background-size: 12px 12px;
    transform: rotate(-90deg);
    transition: transform 0.3s ease-in-out;
}

.faq-item.open .faq-item__title::after {
    transform: rotate(0);
}

.faq-item__desc {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}

.faq-item__desc img {
    display: none;
}

@media screen and (min-width: 768px) {
    .faq-container {
        padding: 0 40px;
    }

    .faq-item__title img {
        display: block;
    }

    .faq-item__desc {
        margin-left: 32px;
        background-color: #f1f6fd;
        padding: 10px;
        border-radius: 8px;
    }

    .faq-item__desc img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        display: block;
    }
}
@media screen and (min-width: 1200px) {
    .faq-item {
        padding: 20px 26px;
        height: 68px;
    }

    .faq-item__title {
        border-bottom: none;
    }

    .faq-item__title img {
        width: 30px;
        height: 30px;
        display: block;
        margin-right: 13px;
    }
    .faq-item__title p {
        font-weight: 500;
        font-size: 20px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 28px;
    }

    .faq-item__desc {
        margin-left: 43px;
        padding: 8px 50px 14px 16px;
        font-weight: 400;
        font-size: 20px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 28px;
    }

    .faq-item__desc img {
        width: 30px;
        height: 30px;
    }
}

/* 相关产品 */
.solution-page__related {
    background-color: #fff;
}
.related-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
}

.related-item {
    border-radius: 12px;
    border: 2px solid #c9d3fc;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    max-height: 416px;
}

.related-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.related-item + .related-item {
    margin-top: 20px;
}

.related-item .related-item__img {
    position: relative;
    flex-shrink: 1;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.related-item .related-item__img img {
    width: 100%;
    height: 100%;
}

.related-item .related-item__text {
    flex: 1;
    padding: 20px 0;
}

.related-item .related-item__title {
    width: 100%;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 42px;
    font-weight: 800;
}

.related-item .related-item__desc {
    padding: 0 10px 10px;
    font-size: 16px;
    text-align: left;
}

.related-item .related-item__btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.related-item .related-item__btn .site-header__cta {
    display: inline-flex;
}

@media screen and (min-width: 500px) {
    .related-item {
        display: flex;
        flex-direction: row;
        text-align: left;
    }

    .related-item .related-item__img {
        flex-shrink: 0;
        max-width: 186px;
    }

    .related-item .related-item__img img {
        width: auto;
        height: 100%;
    }

    .related-item .related-item__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 10px 0;
    }

    .related-item .related-item__btn,
    .related-item .related-item__title {
        padding-left: 10px;
    }
}

@media screen and (min-width: 768px) {
    .related-container {
        padding: 0 40px;
    }

    .related-item .related-item__btn,
    .related-item .related-item__title {
        padding-left: 20px;
    }

    .related-item .related-item__desc {
        padding: 0 20px 10px;
    }
}

@media screen and (min-width: 1000px) {
    .related-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }

    .related-item + .related-item {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {
    .related-item .related-item__img {
        max-width: 48%;
        /* max-width: unset; */
        flex-shrink: 1;
    }

    .related-item .related-item__text {
        flex: 1;
        color: #333333;
    }

    .related-item .related-item__title {
        font-weight: 800;
        font-size: clamp(18px, 1.8vw, 28px);
        line-height: 1.43;
        margin-bottom: 14px;
    }

    .related-item .related-item__desc {
        font-weight: 500;
        font-size: clamp(14px, 1.2vw, 18px);
        line-height: 1.67;
        margin-bottom: 21px;
        padding-bottom: 0;
    }
}

/* 学习资料 */
.solution-page__resource {
    background: linear-gradient(
        138deg,
        #ffffff 0%,
        #eff0f7 10.59%,
        #f2f3fa 100%
    );
}
.resource-container {
    max-width: 1680px;
    padding: 0 16px;
    margin: 0 auto;
}

.resource-item:nth-child(1) {
    --resource-color: #573ca1;
    --resource-light-color: #e4dff7;
    --resource-flag-image: url('/assets/images/solution/resource-flag-1.png');
    --resource-icon-image: url('/assets/images/solution/resource-icon-1.png');
}

.resource-item:nth-child(2) {
    --resource-color: #1469a5;
    --resource-light-color: #caeff7;
    --resource-flag-image: url('/assets/images/solution/resource-flag-2.png');
    --resource-icon-image: url('/assets/images/solution/resource-icon-2.png');
}

.resource-item:nth-child(3) {
    --resource-color: #1653d5;
    --resource-light-color: #cee1ff;
    --resource-flag-image: url('/assets/images/solution/resource-flag-3.png');
    --resource-icon-image: url('/assets/images/solution/resource-icon-3.png');
}

.resource-container .resource-item {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--resource-light-color) 0%,
        #ffffff 40%
    );
    padding: 15px 15px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.resource-item + .resource-item {
    margin-top: 20px;
}

.resource-container .resource-item::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 6px;
    width: 6%;
    aspect-ratio: 4 / 5;
    background: var(--resource-flag-image) no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.7;
}

.resource-item--title {
    position: relative;
    font-size: 18px;
    color: var(--resource-color);
    font-weight: 800;
    z-index: 9;
    padding-left: 60px;
    margin-bottom: 15px;
    line-height: 50px;
}

.resource-item--title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--resource-icon-image) no-repeat center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.resource-item--desc {
    position: relative;
    padding: 15px 0 8px;
    font-size: 16px;
    color: #393e4f;
    line-height: 26px;
    border-top: 2px solid var(--resource-light-color);
    z-index: 9;
}

.resource-item--links {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    z-index: 9;
    line-height: 32px;
}

.resource-item--links a {
    position: relative;
    font-size: 16px;
    padding-left: 20px;
    cursor: pointer;
}

.resource-item--links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('/assets/images/home/scene/arrow-right.png') no-repeat
        center center;
    background-size: cover;
    width: 16px;
    height: 13px;
}

.resource-item--btn {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    z-index: 9;
    line-height: 36px;
    background: #ffffff;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid var(--resource-color);
    margin-top: auto;
    cursor: pointer;
    color: var(--resource-color);
    font-weight: 500;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .resource-container {
        padding: 0 40px;
    }
}

@media screen and (min-width: 1000px) {
    .resource-container {
        display: flex;
        gap: 10px;
    }

    .resource-item {
        flex: 1;
    }

    .resource-item + .resource-item {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {
    .resource-container {
        gap: 26px;
    }

    .resource-container .resource-item {
        padding: 22px 38px;
    }

    .resource-container .resource-item::after {
        width: 14%;
    }

    .resource-item--title {
        line-height: 66px;
        font-weight: 800;
        font-size: clamp(22px, 1.8vw, 28px);
        padding-left: 86px;
        margin-bottom: 16px;
    }

    .resource-item--title::after {
        width: 66px;
        height: 66px;
    }

    .resource-item--desc {
        font-weight: 500;
        font-size: clamp(14px, 1.4vw, 20px);
        color: #333333;
        line-height: 30px;
        padding: 16px 6px;
        min-height: 124px;
    }

    .resource-item--links {
        margin-bottom: 22px;
    }

    .resource-item--links a {
        font-weight: 500;
        font-size: clamp(14px, 1.4vw, 20px);
        color: #333333;
        line-height: 30px;
        padding-left: 26px;
    }

    .resource-item--links a::after {
        left: 6px;
    }

    .resource-item--btn {
        line-height: 52px;
        font-weight: 800;
        font-size: clamp(16px, 1.4vw, 22px);
    }
}
