.about_textlong_stiky {
    position: sticky;
    top: 0;
}

.about_textlong_adv_title {
    font-size: 1.8rem;
    font-weight: 500;
    color: inherit;
    margin-bottom: 1rem;
}

.about_textlong_adv_item_title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--theme-skit-color);
    border-bottom: 1px solid rgb(214, 214, 214);
}

.about_textlong_adv_item_desc {
    font-size: 1rem;
    font-weight: 500;
    color: var(--theme-skit-color);
    padding: 0.5rem 0;
}

.about_textlong_img {
    border-radius: 2rem;
    overflow: hidden;
}

.about_textlong_img img {
    width: 100%;
}

.about_textlong_text_wrap {
    position: relative;
    overflow: hidden;
}

.about_textlong_text_title {
    font-size: 1.8rem;
    font-weight: 500;
    color: inherit;
    margin-bottom: 1rem;
}

.about_textlong_text {
    font-size: 1.2rem;
    color: inherit;
    margin-bottom: 2rem;
}

.about_textlong_more {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: end;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    color: var(--theme-skit-color);
    background: -webkit-linear-gradient(90deg, #fff 0%, #fff 20%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, #fff 0%, #fff 20%, rgba(255, 255, 255, 0) 100%);
    cursor: pointer;
}

@media all and (max-width: 991px) {
    .about_textlong_text_wrap {
        max-height: 300px;
    }

    .about_textlong_text_wrap.active {
        max-height: none;
    }

    .about_textlong_text_wrap.active .about_textlong_more {
        display: none !important;
    }
}

@media all and (max-width: 767px) {
    .about_textlong_adv_title {
        font-size: 1.5rem;
    }

    .about_textlong_text_title {
        font-size: 1.5rem;
    }
}




