/* help center */
.z-breadcrumb {
    height: 233px;
    background: url(../images/html_static/help_bg.png) no-repeat;
    background-size: cover;
    padding-top: 12px;
}

.z-breadcrumb .z-breadcrumb_home,
.z-breadcrumb .z-breadcrumb_home a {
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 18px;
}

.z-breadcrumb .z-breadcrumb_home a:hover {
    color: #F60900;
}

.z-breadcrumb .z-breadcrumb_home .z-arrow {
    margin: 0 5px;
}

.z-breadcrumb i {
    margin: 0 3px;
}

/* 
.help_wrap {
    margin-top: 120px;
} */

.joinVip-main .mobile_user_info {
    display: none;
}

.help-center {
    text-align: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 30px;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    background-color: #fff;
}

.help-center h2 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 24px;
    text-align: left;
}

.search-question .input-box {
    width: 647px;
    position: relative;
    margin: auto;
}

.search-question input {
    height: 56px;
    border-radius: 40px;
    background: rgba(43, 63, 94, 0.5);
    width: 100%;
    padding-left: 32px;
    color: #fff;
}

.search-question i {
    position: absolute;
    right: 28px;
    top: 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.search-question p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.faq-cate {
    margin-top: 32px;
    margin-bottom: 30px;
}

.faq-cate ul {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}

.faq-cate li {
    border: 1px solid #ddd;
    padding: 13px 12px;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
}

.faq-cate li:hover {
    background: #eee;
}

.faq-cate li.active {
    background: #2f333e;
    color: #fff;
}


.faq-content .item {
    margin-bottom: 20px;
    border-radius: 5px 5px 5px 5px;
}

.faq-content .item .item-title {
    background: #f6f6f6;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
}

.faq-content .item .item-title span {
    width: 100%;
    text-align: left;
}



.faq-content .item .item-title img {
    margin-right: 12px;
}

.faq-content .item .item-title.up {
    color: #333;
}

.faq-content .item .item-title.up i {
    transform: rotate(180deg);
}

.faq-content .item .item-text {
    padding: 0 24px 32px;
    background: #f6f6f6;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    display: none;
    text-align: left;
}

.faq-content .item .item-text p {
    margin-bottom: 10px;
    text-align: left;
}

.faq-content .faq-tips {
    color: #fff;
}




@media (max-width: 1024px) {
    .help-center h2 {
        font-size: 18px;
    }

    .help-center {
        padding: 20px 10px;
    }

    .faq-cate ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-cate li {
        font-size: 12px;
        padding: 10px 5px;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .search-question .input-box {
        width: 100%;
    }

    .faq-content .item .item-title {
        padding: 10px 10px;
        font-size: 14px;

    }

    .faq-content .item .item-title span {
        text-align: left;
        width: 80%;

    }
}