    .section5 {
        padding: 0;
        padding-bottom: 120px;
    }

    .Box5 {
        margin-top: 75px;
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
    }

    .item5 {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        border-radius: 8px;
        border: #fff0 solid 3px;
        padding: 20px;
    }

    .item5:hover {
        border: 3px solid var(--color);
    }

    .item5:nth-child(1),
    .item5:nth-child(2),
    .item5:nth-child(3) {
        display: flex;
    }

    .item5 h1 {
        font-size: 16px;
        color: #333;
        text-align: center;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .item5 p {
        font-size: 14px;
        margin: 30px 0 15px;
        line-height: 2;
        text-align: center;
        color: #767676;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }

    .item5 span {
        width: 36px;
        height: 4px;
        border-radius: 1px;
        background: var(--color);
    }

    @media (max-width: 1200px) {
        .section5 {
            padding-bottom: 90px;
        }
    }

    @media (max-width: 720px) {
        .section5 {
            padding-bottom: 60px;
        }

        .Box5 {
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
        }
    }


    @media (max-width: 380px) {}