/*下面是帮助中心的样式*/
body {
    background-color: #f2f3f7;
}
input::-webkit-input-placeholder {
    color: #999;
}
input::-moz-placeholder {
    color: #999;
}
input:-moz-placeholder {
    color: #999;
}
input:-ms-input-placeholder {
    color: #999;
}
/*公共头部*/
.help_center_header {
    background-color: #fff;
    padding: 15px 0;
    width: 100%;
}
.help_center_header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.help_logo a.logo_a {
    background-image: url(/static/images/logo-no-bg.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    width: 161px;
    height: 46px;
    font-size: 0;
    margin-right: 15px;
}
.help_logo a.logo_a h1 {
    font-size: 0;
}
.help_logo {
    display: flex;
    align-items: center;
}
.help_logo p {
    font-size: 22px;
    font-weight: 800;
    color: #333333;
    margin-top: 10px;
}
.help_header_right {
    display: flex;
}
.help_header_right li {
    margin: 0 20px;
}
.help_header_right li:last-child {
    margin-right: 0px;
}
.help_header_right li a {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}
.help_header_right li a:hover {
    color: #cb261c;
}
.help_header_right li a.active {
    font-weight: bold;
    color: #cb261c;
}

/*首页中间内容*/

.help_main {
    position: relative;
    min-height: 800px;
}
.help_main_bg {
    position: absolute;
    z-index: 1;
    background: linear-gradient(180deg, #fbeae5, #f2f3f7);
    height: 800px;
    top: 0px;
    left: 0px;
    width: 100%;
}
.help_main .content {
    position: relative;
    z-index: 2;
}
.help_search {
    padding: 50px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}
.help_search_input {
    width: 610px;
    height: 50px;
    background: #ffffff;
    line-height: 30px;
    padding: 10px 20px;
    border: none;
}
.help_search_btn {
    width: 60px;
    height: 50px;
    background: #cb261c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.help_search_btn img {
    width: 24px;
}

.big_box_css {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
}
.help_module_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.help_module_title p {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}
.help_module_title a {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}
.help_module_title a i {
    font-size: 12px;
    color: #666666;
}
.help_problem_classify_ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.help_problem_classify_ul li {
    background: #f2f2f2;
    border-radius: 19px;
    line-height: 38px;
    padding: 0 30px;
    margin-right: 20px;
    color: #333;
    cursor: pointer;
    margin-bottom: 10px;
}
.help_problem_classify_ul li.active {
    background: #ffecea;
    color: #cb261c;
}
.help_problem_items_ul {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 20px;
}
.help_problem_items_ul.on {
    display: flex;
}
.help_problem_items_ul li {
    padding-right: 30px;
    width: 50%;
    list-style: disc;
    color: #ccc;
}
.help_problem_items_ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 36px;
    height: 36px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.help_problem_items_ul li:hover {
    color: #cb261c;
}
.help_problem_items_ul li:hover a {
    color: #cb261c;
}

.help_tools_main ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.help_tools_main ul li {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    width: calc(25% - 15px);
    margin-right: 20px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.help_tools_main ul li a img {
    width: 28px;
    height: auto;
}
.help_tools_main ul li:nth-child(4n) {
    margin-right: 0px;
}
.help_tools_main ul li:nth-child(1),
.help_tools_main ul li:nth-child(2),
.help_tools_main ul li:nth-child(3),
.help_tools_main ul li:nth-child(4) {
    margin-top: 0px;
}
.help_tools_main ul li a > p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 16px;
    margin-top: 15px;
}
.help_tools_main ul li a {
    display: block;
    width: 100%;
}
.help_tools_explain {
    background: #000000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 100%;
    padding: 20px;
    transition: all 0.4s;
}
.help_tools_explain p {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.85;
    line-height: 24px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
}
.help_tools_main ul li:hover .help_tools_explain {
    top: 0;
    transition: all 0.4s;
}

.help_instructions_main ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.help_instructions_main ul li {
    display: flex;
    align-items: center;
    width: 33%;
    padding: 0 20px 0 36px;
    margin-top: 30px;
}
.help_instructions_main ul li:nth-child(1),
.help_instructions_main ul li:nth-child(2),
.help_instructions_main ul li:nth-child(3) {
    margin-top: 0px;
}
.help_instructions_main ul li img {
    margin-right: 20px;
    width: 54px;
    height: auto;
}
.instructions_right_text p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 36px;
}
.instructions_right_text p > a {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 36px;
}
.instructions_right_text > a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
}
.instructions_right_text a:hover {
    color: #cb261c;
}

.swiper_btn {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/video_icon.png) no-repeat;
    cursor: pointer;
    box-sizing: border-box;
}
.swiper_next {
    background-position: -24px 0px;
}
.swiper_prev {
    background-position: 0 0;
}
.help_video a img {
    max-width: 100%;
}
.help_video_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}
.help_video a {
    position: relative;
}
.help_video a p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    margin-top: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.help_video a:hover p {
    color: #cb261c;
}
.help_video_main {
    position: relative;
}
.help_video_main .swiper-container {
    margin: 0 auto;
    width: calc(100% - 80px);
    position: relative;
}
.help_video_main .swiper-button-next,
.help_video_main .swiper-button-prev {
    width: 24px;
}
.help_video_main .swiper-button-next {
    right: 0px;
}
.help_video_main .swiper-button-prev {
    left: 0px;
}

.help_others_main ul {
    display: flex;
    flex-wrap: wrap;
}
.help_others_main ul li {
    width: calc(25% - 15px);
    margin-right: 20px;
    margin-top: 20px;
}
.help_others_main ul li:nth-child(4n) {
    margin-right: 0px;
}
.help_others_main ul li:nth-child(1),
.help_others_main ul li:nth-child(2),
.help_others_main ul li:nth-child(3),
.help_others_main ul li:nth-child(4) {
    margin-top: 0px;
}
.help_others_main ul li a img {
    max-width: 100%;
    height: auto;
}
.help_others_main ul li a p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    margin-top: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.help_others_main ul li a:hover p {
    color: #cb261c;
}

.help_botton_contact {
    background: #ffffff;
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
}
.help_botton_contact p {
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
}
.help_botton_contact a {
    height: 54px;
    background: #cb261c;
    border-radius: 3px;
    line-height: 54px;
    display: inline-block;
    padding: 0 40px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 35px;
}
.help_botton_contact a:hover {
    color: #fff;
}

/*常见问题*/
.clear_float {
    clear: both;
}
.help_problem {
    margin-bottom: 40px;
}
.help_problem_leftclassify {
    width: 240px;
    margin-right: 20px;
    float: left;
    background-color: #fff;
}
.help_problem_leftclassify > p {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    padding: 20px 20px 5px 20px;
}
.help_problem_one {
    padding: 10px 0;
}
.help_problem_one > li span {
    margin-bottom: 1px;
    transition: all 0.3s;
    background-color: #fbeae5;
    line-height: 46px;
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    padding: 0 40px 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    height: 46px;
}
.help_problem_one > li span i {
    position: absolute;
    right: 20px;
    font-size: 12px;
    transition: all 0.4s;
    display: inline-block;
    top: 0px;
    cursor: pointer;
}
.help_problem_one > li span a {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.help_problem_one > li:hover span,
.help_problem_one > li.active span {
    background-color: #cb261c;
    color: #fff;
}
.help_problem_one > li:hover span a,
.help_problem_one > li.active span a {
    color: #fff;
}
.help_problem_one > li:hover span i,
.help_problem_one > li.active span i {
    color: #fff;
}
.help_problem_two {
    display: none;
}
.help_problem_one > li span i.active {
    position: absolute;
    display: inline-block;
    transition: all 0.4s;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.help_problem_two {
    padding: 0px 20px;
}
.help_problem_two a {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 46px;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.help_problem_two li.active a,
.help_problem_two li.active a {
    color: #cb261c;
}
.help_problem_right {
    width: calc(100% - 260px);
    float: right;
}
.help_problem_details {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    min-height: 550px;
}
.help_location {
    padding: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-size: 14px;
}
.help_location a {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    margin-right: 8px;
}
.help_location a:hover {
    color: #cb261c;
}
.help_location i {
    font-size: 12px;
    color: #999;
    display: inline-block;
    margin-right: 8px;
}
.help_problem_classify {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.help_problem_classify li {
    background: #f2f2f2;
    border-radius: 19px;
    line-height: 38px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin: 0px 20px 15px 0;
    cursor: pointer;
}
.help_problem_classify li a {
    padding: 0px 33px;
    display: block;
}
.help_problem_classify li.active {
    background: #ffecea;
    color: #cb261c;
}
.help_problem_itemsone {
    display: none;
    margin-left: 20px;
}
.help_problem_itemsone.on {
    display: block;
}
.help_problem_ul li {
    list-style: disc;
    color: #ccc;
}
.help_problem_ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
}
.help_problem_ul li:hover {
    color: #cb261c;
}
.help_problem_ul li:hover a {
    color: #cb261c;
}
.page_right {
    text-align: right;
    margin: 10px 0;
}

/*常见问题/操作指引详情页*/
.help_problem_title {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    line-height: 36px;
    text-align: center; /* margin-bottom: 10px;*/
    font-weight: bold;
}
.help_download {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.help_download span {
    font-weight: bold;
    font-size: 14px;
    color: #666;
}
.help_download a {
    display: inline-block;
    color: #cb261c;
    font-weight: bold;
    font-size: 14px;
}
.help_download a:hover {
    color: #cb261c;
}
.help_rich_text *,
.help_rich_text span,
.help_rich_text p {
    line-height: initial;
    color: unset;
    font-size: unset;
    font-style: unset;
    text-decoration: unset;
}
.help_rich_text img {
    max-width: 100%;
    height: auto;
}
.help_problem_solve {
    text-align: center;
    margin: 80px 0 20px 0;
}
.help_problem_solve ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.help_problem_solve ul li i {
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: 0 0;
    display: inline-block;
    margin-right: 6px;
}
.help_problem_solve ul li i.icon_solve {
    background-image: url(../images/solve.png);
}
.help_problem_solve ul li i.icon_unsolve {
    background-image: url(../images/unsolve.png);
}
.help_problem_solve ul li a {
    display: flex;
    align-items: center;
}
.help_problem_solve ul li {
    display: flex;
    align-items: center;
    padding: 10px 40px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 2px;
    line-height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-right: 10px;
    cursor: pointer;
}
.help_problem_solve ul li:last-child {
    margin-right: 0px;
}
.help_problem_solve ul li.active {
    border: 1px solid #cb261c;
    color: #cb261c;
}
.help_problem_solve ul li.active a {
    color: #cb261c;
}
.help_problem_solve ul li.active i {
    background-position: -18px 0;
}
.help_problem_solve > p {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 36px;
    margin-top: 10px;
}
.help_problem_solve > p em {
    display: inline-block;
    margin: 0 5px;
    color: #666;
}
.help_problem_recommend {
    background: #fff;
    padding: 20px;
    margin-bottom: 40px;
}
.help_problem_recommend > p {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
}
.help_problem_recommend ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 20px;
}
.help_problem_recommend ul li {
    list-style: disc;
    color: #ccc;
    width: 50%;
    padding-right: 20px;
    position: relative;
}
.help_problem_recommend li a {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
    height: 36px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding-right: 20px;
}
.help_problem_recommend li:hover {
    color: #cb261c;
}
.help_problem_recommend li:hover a {
    color: #cb261c;
}
.help_problem_recommend ul::maker {
    position: relative;
    top: 0px;
}

/*帮助中心-联系我们*/
.help_contact_banner {
    width: 100%;
    height: 300px;
    background-image: url(../images/contact_banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.help_contact_ul {
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto;
}
.help_contact_ul li {
    width: 50%;
    padding-right: 20px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
}
.help_contact {
    width: 80px;
    margin-right: 30px;
}
.help_contact span {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-image: url(../images/help_contact.png);
    display: block;
}
.help_contact span.contact_icon1 {
    background-position: 0 0;
}
.help_contact span.contact_icon2 {
    background-position: -80px 0;
}
.help_contact span.contact_icon3 {
    background-position: -160px 0;
}
.help_contact span.contact_icon4 {
    background-position: -240px 0;
}
.help_contact_text h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
    margin-bottom: 5px;
}
.help_contact_text p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
}
.help_contact_text p a {
    color: #1890ff;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.help_contact_ul li:nth-last-of-type(-n + 2) {
    margin-bottom: 0px;
}

/*搜索结果页*/
.help_result_effective {
    padding: 20px;
    min-height: 300px;
    background-color: #fff;
    margin-bottom: 20px;
}
.help_result_effective > p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 36px;
    margin-bottom: 10px;
}
.help_result_effective > p em {
    color: #cb261c;
    font-size: 16px;
    line-height: 36px;
}
.help_result_effective > p span {
    font-size: 16px;
    color: #cb261c;
    display: inline-block;
    margin: 0 5px;
    line-height: 36px;
}
.help_result_effective > ul li {
    margin-bottom: 15px;
}
.help_result_effective > ul h5,
.help_result_effective > ul h5 a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 36px;
    padding-left: 10px;
    position: relative;
}
.help_result_effective > ul h5 a {
    padding: 0px;
}
.help_result_effective > ul h5:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: #ccc;
    position: absolute;
    left: 0px;
    top: 16px;
}
.help_result_effective > ul h5 em {
    color: #cb261c;
    font-size: 14px;
    line-height: 36px;
}
.help_result_effective > ul p,
.help_result_effective > ul p a {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 24px;
}
.help_result_effective > ul p a {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}
.help_result_effective > ul p em {
    color: #cb261c;
    font-size: 14px;
    line-height: 24px;
}

.help_result_none {
    padding: 20px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin-bottom: 20px;
}
.help_result_none > p img {
    width: 50px;
}
.help_result_none > p span {
    display: inline-block;
    padding-left: 15px;
    font-size: 16px;
    color: #333;
    line-height: 50px;
}
.help_result_none > p span em {
    font-size: 16px;
    color: #cb261c;
    line-height: 50px;
}

/*颜色兼容新增*/
.hezuo .swiper-container .swiper-slide.active {
    border-top-color: #cb261c !important;
}
.new_service_box {
    color: #cb261c !important;
}
.new_service_box.service_hover_box {
    color: #666 !important;
}
.service_hover_box:hover {
    color: #fff !important;
}
.layui-btn {
    background-color: #cb261c;
}
.commodity h3 b {
    color: #cb261c !important;
}
.page-nub li a.on {
    background: #cb261c !important;
    color: #fff;
    border: 1px solid #cb261c !important;
}
.page-nub li a:hover {
    border: 1px solid #cb261c !important;
    color: #cb261c !important;
    z-index: 1;
}
#btn_a_link:hover {
    border: 1px solid #cb261c !important;
    color: #cb261c !important;
}
.pop-btn .confirm {
    background: #cb261c !important;
}
.layui-tab-brief > .layui-tab-title .layui-this a {
    color: #cb261c !important;
}
.layui-tab-brief > .layui-tab-more li.layui-this:after,
.layui-tab-brief > .layui-tab-title .layui-this:after {
    border-bottom: 2px solid #cb261c !important;
}
.layui-laydate .layui-this {
    background-color: #cb261c !important;
}
.layui-laydate-header i:hover,
.layui-laydate-header span:hover {
    color: #cb261c !important;
}
.layui-laydate-footer span:hover {
    color: #cb261c !important;
}

.a_notice_details {
    color: #cb261c !important;
}
.about_strength .swiper-slide {
    display: block;
}
.about_strength .swiper-slide img {
    display: block;
    width: 100%;
}
.about_strength .swiper-slide p {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 35px;
    margin: 10px 0;
}
.appliy_authorize_login ul li:first-child a {
    color: #cb261c !important;
}
.appliy_authorize_box a {
    color: #cb261c !important;
}
.subbox .item h6,
.subbox .item > p {
    display: inline-flex !important;
    word-break: keep-all !important;
}
.deal_color,
.deal_color:hover,
.deal_color:focus {
    color: #cb261c !important;
}
.layui-tab-brief > .layui-tab-title .layui-this {
    color: #cb261c !important;
}
.other-btn a {
    color: #cb261c !important;
}
.layui-tab-brief > .layui-tab-title .layui-this {
    color: #cb261c !important;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #cb261c !important;
}
.layui-tab-brief > .layui-tab-title .layui-this {
    color: #cb261c !important;
}
.payfor_agree_btn {
    font-size: 14px;
    padding: 10px 0;
    line-height: 34px;
}
.layui-laypage a:hover {
    color: #cb261c !important;
}
.combtn:hover {
    background: #cb261c !important;
}
.page-nub li a.on:hover {
    background: #cb261c !important;
    color: #fff !important;
    border: 1px solid #cb261c !important;
}
.vat_invoice_btn button {
    background-color: #cb261c !important;
    color: #fff;
    border: 1px solid #cb261c !important;
}
.appliy_logo {
    align-items: center !important;
}
.user_newsdownload a {
    color: #cb261c !important;
}
.other-apibtn,
.article_body a {
    color: #cb261c !important;
}
.vat_invoice_btn button.cancel {
    background-color: #fff !important;
    border-color: #d2d2d2 !important;
}
.coulm-list table a {
    color: #cb261c !important;
}
.statusleft a {
    color: #cb261c !important;
}
.statusleft a.payorderbtn {
    color: #fff !important;
}
.richtextbox img {
    max-width: 100%;
    height: auto;
}
.platformorder table tr th h6 a {
    color: #cb261c !important;
}

.wpsafe li i.ion6 {
    background-position: right -586px;
}
.wpsafe li.nocert_li i.ion6 {
    background-position: left -586px;
}
.layui-btn-primary {
    background-color: #fff !important;
}
.set_next_btn:hover {
    color: #fff;
}
.layui-btn-primary:hover {
    border-color: #cb261c !important;
}
.custom_richtext img {
    max-width: 100%;
    height: auto;
}
.blog-getstarted-enter button {
    background-color: #cb261c !important;
}
.blog-getstarted-enter input {
    border: 1px solid #cb261c !important;
}

/*样式修改*/
.lang ul li:last-child a {
    border: none;
}
.new-headtop {
    background-color: #f2f3f7;
    border-bottom: 1px solid #e6e8ec;
}
.help_search_input {
    border-radius: 0px;
}
.help_problem_classify_ul li {
    margin-bottom: 20px;
}
.help_problem {
    margin-bottom: 20px;
}
.help_tools_explain p {
    opacity: 1;
}
.help_search {
    padding: 30px 0;
}
.help_problem_classify li.active a {
    color: #cb261c;
}
.help_problem_recommend li a {
    color: #666;
}
.help_result_effective > ul p a {
    color: #666;
}
.help_result_effective > ul h5,
.help_result_effective > ul h5 a {
    font-size: 14px;
    font-weight: 600;
}
.help_result_effective > p {
    font-weight: 600;
}
.help_module_title p {
    font-weight: 600;
}

/*优化*/
.help_botton_contact，.foot，.link_partners，.banquan {
    z-index: 5;
    position: relative;
}

/* 一级类目页 */
.level_page > h5 {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
}
.level_page_items {
    margin-bottom: 40px;
}
.level_page_items > p {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-bottom: 4px;
}
.level_page_items > a {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    display: inline-block;
    padding-left: 30px;
    line-height: 36px;
}
.level_page_items > a:hover {
    color: #cb261c;
}
.level_page_items ul {
    margin-left: 30px;
}
.level_page_items ul li {
    list-style: disc;
    color: #cccccc;
}
.level_page_items ul li a {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
}
.level_page_items ul li:hover,
.level_page_items ul li:hover a {
    color: #cb261c;
}

.help_center_default {
    background-color: #fff;
    padding: 10px 20px;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
}
.help_center_default ul {
    width: 33.3%;
    padding-right: 30px;
    margin-bottom: 30px;
}
.help_center_default ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}
.help_center_default ul li:first-child {
    margin-bottom: 5px;
}
.help_center_default ul li:first-child a {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}
.help_center_default ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
}
.help_center_default ul li a:hover {
    color: #cb261c;
}

.help_problem_time {
    text-align: center;
}
.help_problem_time span {
    display: inline-block;
    margin: 0 10px;
    color: #666;
    font-size: 12px;
    line-height: 20px;
}
.help_problem_time span > em {
    font-style: inherit;
    font-size: 12px;
    color: #666;
}
.help_problem_time span > a {
    font-size: 12px;
    color: #666;
    margin: 0 8px;
}
.help_problem_time span > a:first-child {
    margin-left: 0px;
}
.help_problem_time span > a:hover {
    color: #cb261c;
}
