/* 全局样式 */
body {
    font-family: Montserrat, Montserrat !important;
}

.help {
    background: none;
    position: relative;
    padding-top: 48px;
}

.help_content {
    width: 1100px;
}
.mbx {
    display: flex;
    align-items: center;
    width: 1200px;
    margin: 14px auto;
    background-color: #fff;
}
.help_bj {
    width: 100%;
    height: 360px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.help_title {
    font-family: Montserrat, Montserrat;
    font-weight: bold;
    font-size: 36px;
    color: #090025;
    line-height: 36px;
    text-align: center;
    font-style: normal;
}

.search {
    width: 50%;
    border-radius: 32px;
    height: 44px;
    margin: auto;
}

.search input {
    font-family: Montserrat, Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #CAC7D3;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

input::placeholder {
    font-family: Montserrat, Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #CAC7D3;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.help_item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: auto;
    height: auto;
    align-items: flex-start;
    transition: all 0.3s ease-in-out;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #CECBE2;
    box-shadow: none;
}

.help_content {
    width: 1200px;
}

.help_questions {
    padding: 0;
    padding-bottom: 32px;
    border: 1px solid #CECBE2;
    box-shadow: none;
}

.quick_item+.quick_item {
    margin-top: 32px;
}

.question_title {
    padding: 32px 30px;
    font-size: 24px;
}

.quick_item_title {
    font-size: 20px;
}

.quick_item {
    padding: 0 30px;
}

.navigation {
    grid-template-columns: repeat(3, 1fr);
}

.help_item img {
    margin: 0;
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.help_item_name {
    font-family: Montserrat, Montserrat;
    font-weight: bold;
    font-size: 20px;
    color: #0D152E;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 12px;
}

.help_item_desc {
    font-family: Montserrat, Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #ACA8BA;
    line-height: 21px;
    text-align: left;
    font-style: normal;
    word-break: normal;
}

.help_item_btn {
    font-family: Montserrat, Montserrat;
    font-weight: 400;
    font-size: 12px;
    color: #090025;
    line-height: 21px;
    text-align: left;
    font-style: normal;
    margin-top: 40px;
}

.help_item:hover {
    box-shadow: 0px 6px 21px 0px rgba(118, 109, 173, 0.17);
    border-radius: 12px;
    border: 1px solid #CECBE2;
}

.help_item_btn:hover {
    color: #845CFF;
}

.search {
    padding: 10px 24px 10px 32px;
    justify-content: space-between;
}

.question_item:hover {
    color: #845CFF;
}

.search_btn img {
    margin: 0;
}

.question_item:hover span {
    background-color: #845CFF;
}

.search_box {
    width: 1200px;
}

.navigation {
    width: 1200px;
}

.help_questions {
    width: 1200px;
}

/* 响应式 */
@media screen and (max-width: 1200px) {
    .help_content {
        width: 100%;
    }

    .navigation {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .search_box {
        width: 100%;
    }

    .help_bj {
        height: 200px;
    }

    .help_questions {
        width: 100%;
    }

    .help_item {
        padding: 20px;
    }

    .help_item_name {
        font-size: 18px;
    }

    .help_item_desc {
        font-size: 12px;
    }

    .help_item_btn {
        font-size: 12px;
    }

    .help_title {
        font-size: 24px;
    }

    .search {
        width: 100%;
    }

    .search input {
        font-size: 12px;
    }

    .help_item img {
        width: 30px;
        height: 30px;
    }

    .help_item_btn {
        margin-top: 20px;
    }

    .help_item {
        padding: 10px;
    }

}