.plan-contrainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plan-panel {
    max-width: 400px;
    min-width: 200px;
    /* height: 553px; */
    box-sizing: border-box;
    padding-bottom: 30px;
    height: -webkit-fill-available;
    background: #F7F8FA;
    border-radius: 26px;
    cursor: pointer;
    overflow: hidden;
    transition: height 0.6s ease-in-out;
}

.plan-panel:hover {
    box-shadow: 0 2px 10px 0 rgba(44, 50, 83, .01), 0 4px 48px 0 rgba(44, 50, 83, .16);
}

.plan-panel>img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 26px;
    border-top-left-radius: 26px;
}

.plan-panel .static-region {
    align-items: center;
    padding: 0px 27px;
}

.plan-panel .static-region img {
    width: 46px;
    height: 46px;
}

.plan-panel .pass-region {
    align-items: self-start;
    padding: 0px 26px;
}

.plan-panel .pass-region img {
    width: 32px;
    height: 32px;
}

.plan-panel .pass-region ul {
    border-top: 1px solid #D9D9D9;
    margin-top: 16px;
    padding-top: 10px;
}

.plan-panel .pass-region ul li {
    align-items: self-start;
}

.plan-panel .pass-region ul li+li {
    margin-top: 16px;
}

.plan-panel:nth-child(1).active .pass-region ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6A40FE;
    margin-right: 8px;
    margin-top: 6px;
    display: block;
    flex: none;
}

.plan-panel:nth-child(2).active .pass-region ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F1AA2E;
    margin-right: 8px;
    margin-top: 6px;
    display: block;
    flex: none;
}

.plan-panel:nth-child(3).active .pass-region ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0296FF;
    margin-right: 8px;
    margin-top: 6px;
    display: block;
    flex: none;
}

.plan-panel:nth-child(4).active .pass-region ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #A558E6;
    margin-right: 8px;
    margin-top: 6px;
    display: block;
    flex: none;
}

.plan-panel.active {
    width: 382px !important;
}

.plan-panel.active .pass-region {
    display: flex !important;
    transition: all .09s ease-in-out;
}

.plan-panel.active .static-region {
    display: none;
}

.answer-panel {
    background: #FFFFFF;
    border-radius: 26px;
    border: 1px solid #D9D9D9;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.answer-panel>div {
    padding: 0px 30px 30px 30px;
}

.answer-panel>img {
    max-height: 100%;
    max-width: 100%;
    border-top-right-radius: 26px;
    border-top-left-radius: 26px;
}

.answer-panel>div>div>img:nth-child(1) {
    width: 86px;
    height: 86px;
    margin: -43px auto auto auto;
}

.answer-panel .answer-box {
    background: #F3F3F3;
    border-radius: 16px;
    padding: 20px;
    min-height: 150px;
    height: auto;
}

.answer-panel .answer-box ul li+li {
    margin-top: 12px;
    line-height: 18px;
}

.answer-panel .answer-box ul li>img {
    width: 14px;
    height: 10px;
}

.suggest-panel {
    height: 376px;
    padding: 45px 23px;
    border-radius: 26px;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
}

.suggest-panel>img {
    width: 102px;
    height: 102px;
}

.suggest-contrainer>div:nth-child(1) .suggest-panel {
    background: #6A40FE;
}

.suggest-contrainer>div:nth-child(2) .suggest-panel {
    background: #F1AA2E;
}

.suggest-contrainer>div:nth-child(3) .suggest-panel {
    background: #EF588C;
}

.solution-banner .row>div:nth-child(2) img {
    width: 100%;
    height: 100%;
}

.solution-banner {
    overflow: hidden;
    background: url(../images/other-banner.png) no-repeat center / cover;
}

.banner-freeTrial-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 13px 30px;
    background: linear-gradient(90deg, #7a9cff 20%, #d687ff 60%, #ff90b5 100%);
    border-radius: 100px;
}

.banner-freeTrial-btn:hover {
    background: linear-gradient(90deg, #5682FF 20%, #CF72FF 60%, #FF6095 100%);
    box-shadow: 0px 5px 5px 0px rgba(106, 64, 254, 0.2);
}

.banner-freeTrial-btn::after {
    content: '';
    width: 36px;
    height: 36px;
    display: inline-block;
    margin-left: 20px;
    background: no-repeat url(../images/index/banner-freeTrial-btn.png);
}

@media screen and (max-width: 768px) {
    .solution-banner {
        margin-top: 60px !important;
    }

    .answer-contrainer .row>div:nth-child(1),
    .plan-panel,
    .suggest-panel {
        margin-bottom: 16px;
    }

    .suggest-panel {
        max-height: 300px;
        height: auto;
        flex-direction: row;
        padding: 25px 23px;
    }

    .suggest-panel .mt46 {
        margin-top: 10px;
    }

    .suggest-panel>img {
        margin-right: 10px;
    }

    .plan-contrainer {
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
    }

    .plan-panel {
        height: auto !important;
        margin-left: 0px !important;
    }

    /* .plan-panel.active {
        height: 553px !important;
    } */

    .banner-freeTrial-btn {
        padding: 13px 13px
    }

    .solution-banner>div>div {
        flex-direction: column;
    }

    .solution-banner>div>div div:nth-child(2) {
        margin-top: 30px;
    }

}