.content.help-page {
    border-top: 4px solid #0b51c1;
    height: 150px;
}
.search-help {
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
    align-content: flex-start;
}
.search-title-help {
    white-space: nowrap;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
    font-weight: bold;
    line-height: 50px;
}
.searcher-wrap{
    position: relative;
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50%;
    text-align: center;
    background: rgb(17, 100, 207);
    background: -moz-linear-gradient(-25deg, rgba(11,81,193,1) 32%, rgba(33,150,243,1) 100%);
    background: -webkit-linear-gradient(-25deg, rgba(11,81,193,1) 32%,rgba(33,150,243,1) 100%);
    background: linear-gradient(155deg, rgba(11,81,193,1) 32%,rgba(33,150,243,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b51c1', endColorstr='#2196f3',GradientType=1 );
}
.help-page .search-doc {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #9f9f9f;
    border: 1px solid #ccc;
}
.search-doc .txt {
    width: calc(100% - 70px);
    height: 50px;
    border-radius: 5px;
    font-size: 16px;
    color: #666;
    border: 0;
    /* position: absolute; */
    padding: 0 1rem;
    float: left;
    /* left: 130px; */
    outline: medium;
}
.search-doc .hxui-btn {
    position: absolute;
    right: 8px;
    top: 8px;
}
.help-page .scene-wrap {
    padding-top: 20px;
}
.help-page .banner-wrap {
    height: 160px;
}
.doc-content {
    float: right;
    width: calc(100% - 310px);
}
.doc-content-wrap {
    margin: 20px auto;
}
.doc-nav {
    width: 280px;
    border-right: 1px solid #ccc;
    float: left;
}
/* 方案2：解决滑动左侧目录，覆盖底部区域的问题，20230905，HaiyuKing ，注释position: fixed;*/
.doc-nav.fixed {
    top: 0;
    position: fixed;
    z-index: 100;
}
.hxui-list-item-content {
    width: 160px;
    font-weight: 600;
    font-size: 14px;
}
.hxui-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
}
.hxui-list a {
    color: inherit;
    text-decoration: none;
}
.hxui-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 16px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: background-color .3s cubic-bezier(.4,0,.2,1);
    transition: background-color .3s cubic-bezier(.4,0,.2,1);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}
.hxui-list-item-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    font-size: 20px;
    line-height: 24px;
    color: #8296ab;
}
.hxui-collapse-item-open .hxui-list-item-icon {
    color: #0b51c1;
}
.hxui-collapse-item-header .hxui-collapse-item-arrow,
.hxui-collapse-item-header.hxui-collapse-item-arrow {
    will-change: transform;
    transform: rotate(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hxui-collapse-item-body {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    will-change: height;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hxui-collapse-item-body .hxui-list-item {
    padding-left: 72px;
    font-size: 14px;
}
.hxui-collapse-item-body .hxui-list-item:hover {
    color: #2a64ce;
}
.hxui-collapse-item-body .hxui-list-item.active {
    color: #2a64ce;
    border-right: 4px solid #2a64ce;
}
.hxui-collapse-item-open > .hxui-collapse-item-header .hxui-collapse-item-arrow,
.hxui-collapse-item-open > .hxui-collapse-item-header.hxui-collapse-item-arrow {
    transform: rotate(180deg);
}
.hxui-collapse-item-open > .hxui-collapse-item-body {
    height: auto;
}
.doc-content-wrap .doc-content {
    flex: 1;
}


/*内容*/
h1.doc-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #0b51c1;
    padding: 20px 0 20px 0;
    margin-bottom: 0;
}
@media (min-width: 480px) {
    h1.doc-title {
        font-size: 28px;
        line-height: 36px;
        padding: 20px 0 25px 0;
        margin-bottom: 0;
    }
}
@media (min-width: 840px) {
    h1.doc-title {
        font-size: 34px;
        line-height: 40px;
        padding: 20px 0 30px 0;
        margin-bottom: 0;
    }
}
.doc-step-extra img {
    width: 80%;
}
.doc-title-p {
    font-size: .8rem;
    color: #0d1c28;
    line-height: 1.4rem;
    margin-bottom: 1.9rem;
}
.doc-title-h2 {
    font-size: 1.2rem;
}

.doc-step {
    padding-left: 2.35rem;
    position: relative;
    list-style: none;
}
.doc-step>li {
    margin-bottom: 1.9rem;
    position: relative;
}
/*.doc-step>li:nth-last-child(1) {*/
/*    margin-bottom: 0;*/
/*}*/
.doc-step .doc-step-num {
    width: 1.6rem;
    height: 1.6rem;
    background: #4293f4;
    line-height: 1.6rem;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    left: -2.35rem;
    top: -.1rem;
    color: #fff;
    font-weight: 600;
}
.doc-step .doc-step-content {
    font-size: .8rem;
    color: #0d1c28;
    line-height: 1.4rem;
}
.doc-step .doc-step-extra {
    margin-top: .85rem;
}
.doc-step a {
    color: #4293f4;
}
.doc-step a:hover {
    text-decoration: underline;
    color: #3784c2;
}
.doc-step img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
.doc-img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
/* 20231214,调整样式 */
.doc-chapter p{
	line-height: 24px;
}
/* 20231214,调整样式 */
.doc-chapter p span{
	line-height: 24px;
}

.index .doc-content {
    display: none;
}
.index .doc-nav {
    width: 100%;
    border: none;
}
.index .hxui-collapse-item {
    width: 280px;
    float: left;
    padding-bottom: 20px;
}
/* 20241210，haiyuking，解决条目等于8的时候换行问题 */
.index .hxui-collapse-item-body {
    /* height: auto; */
    height: 260px;
}
.index .hxui-collapse-item-arrow {
    color: #fff;
}
.index .hxui-list-item-icon {
    font-size: 40px;
    width: 40px;
    color: #8296ab !important;
}
.index .hxui-list-item {
    min-height: 32px;
}
.index .hxui-collapse-item:hover {
    background: #f4f4f4;
}
.index .hxui-collapse-item:hover .hxui-list-item-icon {
    color: #0b51c1 !important;
}