.p_faq {
    background-color: #f7f7f5;
    padding-top: 100px;
}

.p_faq .p_faq_list_box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 80vh;
}

.p_faq .p_faq_list_box .left {
    /* 设置两列比例 */
    width: 75%;
    min-height: 700px;
    position: relative;
}

.p_faq .p_faq_list_box .left .left_item_case {
   width: 100%;
   min-height: 700px;
}

.p_faq .p_faq_list_box .left .left_item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.p_faq .p_faq_list_box .left .item-title {
    width: 860px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #e5e5e5;
    padding: 10px;
    margin-bottom: 20px;
}

.p_faq .p_faq_list_box .left .left_item .content {
    min-width: 100%;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #808180;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    padding: 10px;
}

.p_faq .p_faq_list_box .left .left_item .content span {
    font-weight: 700;
    font-size: 16px;
    color: #108CDA;
    margin-bottom: 16px;
    padding: 10px 0;
}

/* ------- */
.p_faq .p_faq_list_box .right {
    /* 设置两列比例 */
    width: 20%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.p_faq .p_faq_list_box .right .input_box {
    position: relative;
}

.p_faq .p_faq_list_box .right .input_box .i_b_input {
    width: 100%;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 2rem;
}

.p_faq .p_faq_list_box .right .input_box .i_b_input:focus {
    outline: none;
}

.p_faq .p_faq_list_box .right .input_box .i_b_btn {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 10px;
    border: none;
    background-color: #108cda;
    color: #fff;
    width: 5rem;
    border-radius: 2rem;
}

.p_faq .p_faq_list_box .right .title {
    padding: 10px 0;
    color: #108cda;
    font-weight: bold;
}

.p_faq .p_faq_list_box .right .keywords {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.p_faq .p_faq_list_box .right .keywords .keywords_item {
    border-radius: 6px 6px 6px 6px;
   border: 1px solid #EAEAEA;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    color: #808180;
    box-sizing: border-box;
    padding: 4px 12px;
}

/* ---------- */
.p_faq .pages_box {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 45%;
}

.p_faq .pages_box .pages_start,
.p_faq .pages_box .pages_item {
    margin-right: 20px;
    padding: 10px 20px;
    border: 1px #e5e5e5 solid;
    background-color: #fff;
    border-radius: 10px;
}

.p_faq .pages_box .pages_end {
    padding: 10px 20px;
    border: 1px #e5e5e5 solid;
    background-color: #fff;
    border-radius: 10px;
}

.keywords_item.active {
    background-color: #108CDA !important;
    color: #FFFFFF !important;
}

.keywords_item:hover {
    background-color: #108CDA !important;
    color: #FFFFFF !important;
}