.FAQ {
    padding-bottom: 8rem;
}

.FAQ-content {
    background-color: #fff;
    border-radius: 1rem;
    width: 100%;
    padding: 0 3.2rem;
}

.FAQ-content-for {
    padding: 3.2rem 0;
    border-bottom: 0.1rem solid #F5F5F7;
}

.FAQ-content-for:last-child {
    border-bottom: none;
}

.FAQ-content-for-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FAQ-content-for-title:hover {
    cursor: pointer;
}

.FAQ-content-for-title span {
    font-weight: 600;
    font-size: 2.4rem;
    color: #05173C;
    line-height: 2.9rem;
}

.FAQ-content-for-title img {
    width: 2.4rem;
    height: 2.4rem;
    transition: all 0.5s;
}

.FAQ-content-for-text {
    height: auto;
    font-weight: 500;
    font-size: 2rem;
    color: #666666;
    line-height: 2.4rem;
    overflow: hidden;
    padding-top: 0;
    transition: all 0.5s;
}

.FAQ .active span {
    color: #F16522;
}
.FAQ-content-for-text  p{
    display: none;
}

.FAQ .active .FAQ-content-for-text {
    /*height: 5.6rem;*/
    padding-top: 3.2rem;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 1;*/
}
.FAQ .active .FAQ-content-for-text p{
    display: block;
}

@media screen and (max-width: 768px) {
    .FAQ {
        padding-bottom: 4rem;
    }

    .FAQ-content {
        background-color: #fff;
        border-radius: 1rem;
        width: 100%;
        padding: 0 1.2rem;
    }

    .FAQ-content-for {
        padding: 1.2rem 0;
        border-bottom: 0.1rem solid #F5F5F7;
    }

    .FAQ-content-for:last-child {
        border-bottom: none;
    }

    .FAQ-content-for-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .FAQ-content-for-title:hover {
        cursor: pointer;
    }

    .FAQ-content-for-title span {
        font-weight: 600;
        font-size: 1.6rem;
        color: #05173C;
        line-height: 1.9rem;
    }

    .FAQ-content-for-title img {
        width: 1.6rem;
        height: 1.6rem;
        transition: all 0.5s;
    }

    .FAQ-content-for-text {
        height: auto;
        font-weight: 500;
        font-size: 1.2rem;
        color: #666666;
        line-height: 1.5rem;
        overflow: hidden;
        padding-top: 0;
        transition: all 0.5s;
    }

    .FAQ .active span {
        color: #F16522;
    }

    .FAQ .active .FAQ-content-for-text {
        /*height: 4.2rem;*/
        padding-top: 1.2rem;
        /*overflow: hidden;*/
        /*text-overflow: ellipsis;*/
        /*display: -webkit-box;*/
        /*-webkit-box-orient: vertical;*/
        /*-webkit-line-clamp: 2;*/
    }
}