

/** 1.sort banner **/
.banner{
    height: 20vw;
    min-height: 150px;
    max-height: 250px;
}

@media (max-width: 991px) {
    .banner{
        height: 200px;
    }
    .PC .gap{
        padding-top: 30px;
    }
    .PHONE .gap{
        padding: 0;
    }
}

.banner_nav{
    border-radius: 20px;
    overflow: hidden;
}

.banner_title{
    position: absolute;
    top: 0;
    left: 5em;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.banner_title h3{
    margin-bottom: 17px;
}

.banner_title h2{
    font-weight: bolder;
}

.banner_title .line{
    background-color: #1e66f8;
    display: block;
    height: 3px;
    margin-top: 17px;
    width: 5em;
}

@media (max-width: 991px) {
    .banner_title .line{
        display: none;
    }

    .banner_title{
        align-items: center;
        left:0;
    }

}


/** sort banner END **/

/** detail **/

.detail .nav{
    display: flex;

}

.detail .nav>div{
    flex: 1;
}

.detail .right{
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail .sm-pic{
    display: none;
}

.detail .big-pic{
    width: 60%;
}

.detail .sm-pic{
   width: 200px;
}

@media (max-width: 991px) {

    .detail .left{
        margin: 5em 1em 0;
    }

    .detail .sm-pic{
        display: inherit;
    }

    .detail .right{
        display: none;
    }

    .detail .left .pic{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

.detail .left>div{
    margin-bottom: 3em;
}

.detail .headword{
    font-size:24px;
    font-weight: bolder;
}

.detail .headword:before{
    content: '';
    position:absolute;
    bottom:-2em;
    background: url("/images/title_01.png");
    height:6px;
    width:100%;
    background-repeat:no-repeat;
    /*background-attachment:fixed;*/
    background-position: top left;
    background-size: contain;
    background-size: contain;
}

.detail .subtitle{
    font-size: 1rem;
    font-weight: bolder;
}

.detail .content{
    font-size: 15px;
    line-height: 2rem;
    letter-spacing: 0.1rem;
}

@media (max-width: 991px) {
    .detail .headword{
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .detail .headword:before{
        bottom: -0.5em;
    }

    .PHONE .detail .content{
        font-size: 0.8rem;
        line-height: 2rem;
        letter-spacing: 0rem;
    }

}

/** detail END **/

/** product banner **/

.product_banner .banner_row>li {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: #2d3748 3px solid;
    font-weight: bolder;
    font-size: 1rem;
    cursor: pointer;
    background: #FFFFFF;
    padding:1em;
}

.product_banner .banner_row>li.is_active{
    border-bottom: #1e66f8 3px solid;
}


.product_banner .banner_row>li:hover span{
    color: #1e66f8;
}



/** product banner END **/

/** product content **/



.product_content .nav{
    /*display: none;*/
    opacity: 0;
    visibility: hidden;
    height: 0;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

@media (max-width: 991px) {
    .product_content .nav{
        margin:1.5em 1em 0
    }
}

.product_content .nav.is_active{
    /*display: block;*/
    position: relative;
    opacity: 1;
    visibility: visible;
    height: auto;
    pointer-events: auto;
}

.product_content .title{
    margin-bottom: 2em;
    font-size: 2em;
    font-weight: bold;
}

.PHONE .product_content .title{
    margin: 2em 0;
}

.product_content .content{
    width: 100%;
}

.product_content .content>ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.product_content .content>ul>li{
    width: 33.33%;
    padding-right: 2em;
    padding-bottom: 4em;
}

@media (max-width:991px ) {
    .product_content .content>ul>li{
        width: 100%;
        padding-bottom: 2em;
    }
}

.product_content .content .headword{
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-left: 1.8em;
}

.product_content .content .headword:before{
    content: url("/images/right-icon.svg");
    height: 0.5rem;
    position: absolute;
    top: 2px;
    left: 0;
}

.product_content .content .subword p{
    line-height: 2rem;
    padding-left: 1em;
    text-indent:  -1em;
}

/* 定制区 product_content */

.product_content .product_table td span{
    font-size: 15px;
}

@media (max-width: 991px) {
    .product_content .product_table td span {
        font-size: 0.8rem;
    }
}

.product_content .product_table table{
    margin-bottom: 3em;
}


.product_content .product_table table tr{
    display: flex;
}

.product_content .product_table table tr td{
    flex: 1 ;
}

.product_content .product_table td{
    display: flex;
    align-items: center;
}

/*.product_content .documentNav{*/
/*    min-height: 500px;*/
/*}*/

.product_content .product_table table tr:first-child,
.product_content .documentNav table th
{
    background: #222222;
    color: white;
}

.product_content .product_table table tr:nth-child(2n){
    background: #f8f8f8;
}

.product_content .product_table table tr:first-child td{
    font-weight: bolder;
}


.product_content .product_table td:first-child,
.documentNav table th:first-child,
.documentNav table td:first-child
{
    padding-left: 1em;
}

.product_content .product_table td:not(:first-child){
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

@media (min-width: 991px) {
    .product_content .small{
        display: none;
    }
}

@media (max-width: 991px) {
    .product_content .big{
        display: none;
    }
}

.product_content td,
.documentNav td,
.documentNav th
{
    padding: 1em 0;
    border-bottom: #2d3748 solid 0.5px;
}



.product_content table{
    width: 100%;
}


/* onhover */

.product_content .product_table table tr:not(:first-child):hover {
    transition:all 0.5s;
    background: rgba(0, 0, 0, 0.1);
}

/* onhover END */

/* product_table END */

/* product_document */

.product_content .searchRow{
    display: flex;
}

.product_content .sub_title{
    font-size: 1.1em;
    font-weight: bold;
}

.product_content .searchTypeNav{
    min-width: 200px;
    width: 25%;
    margin-right: 2em;
}

@media (max-width: 750px) {
    .product_content .searchRow{
        display: flex;
        flex-direction:column;
    }
    .product_content .searchTypeNav{
        width:100%;
        margin-bottom: 2em;
    }
}

.product_content .searchTypeNav .sub_title{
    padding-bottom: 0.5em;
   border-bottom: rgba(0,0,0,0.5) solid 1px;
}


.product_content .searchTypeNav .searchAll{
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(255,255,255,0.5);
    color: grey;
    padding: 0 9px;
    border-radius: 6px;
    font-size: 12px;
    border: grey 1px solid;
}

.product_content .searchTypeNav .searchAll.ALL{
    background: black;
    color: #FFFFFF;
    border:black 1px solid;
}

.product_content .searchTypeNav .typeNav{
    margin-top: 1em;
}

.product_content .searchInputNav{
    flex: 1 1 auto;
}

.product_content .searchInputNav>div{
    /*background: #E6E6E6;*/
    background: rgba(230,230,230,0.3);
    padding: 1em 2em;
}

.product_content .searchBox{
    display: flex;
    margin-top: 1em;
}

.product_content .searchBox .searchInput{
    flex: 1;
    padding-left: 1em;
}

.product_content .searchRow .Btn{
    margin-left: 1em;
}



.product_content .searchTypeNav .typeNav input,
.product_content .searchTypeNav .typeNav label,
.product_content .searchTypeNav .searchAll,
.product_content .searchInputNav .btn,
.product_content .searchTypeNav .typeNav .searchType_LessMore
{
    cursor: pointer;
}

@media (max-width: 750px) {
    .product_content .searchInputNav .btn{
        padding: 5px 10px;
        margin: 0 0 0 1em;
    }
    .product_content .searchInputNav>div{
        /*background: #E6E6E6;*/
        background: rgba(230,230,230,0.3);
        padding: 1em 1em;
        margin: 0 -1em;
    }
}

.product_content .searchTypeNav .typeNav.short li:not(:nth-child(-n+3)){
    display: none;
}

.product_content .searchTypeNav .typeNav li{
    display: flex;
    align-items: center;
    margin-bottom: 0.3em;
}

.product_content .searchTypeNav .typeNav li:hover{
    background: rgba(230,230,230,0.7)
}

.product_content .searchTypeNav .typeNav input{
    margin-right: 0.5em;
}

/*.product_content .searchTypeNav .typeNav label{*/
/*    border: 1px solid black;*/
/*}*/

.product_content .searchTypeNav .typeNav .searchType_LessMore{
    background: rgba(230,230,230,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222222;
    margin-top: 10px;
    height: 1.5em;
}

.product_content .searchTypeNav .typeNav .searchType_LessMore:hover{
    background: rgba(0,0,0,0.8);
    color: #f2f2f2;
}

.product_content .searchTypeNav .typeNav.short .searchType_LessMore .long,
.product_content .searchTypeNav .typeNav.long .searchType_LessMore .short{
    display: none;
}


/* FaqNav */
.product_content .FaqNav{
    background: #fff;
    border-radius: 10px;
    border: rgba(23, 23, 23, 0.8) solid 1px;
    overflow: hidden;
}

.product_content .FaqNav li{
    position: relative;
}

.FaqNav li.on .FaqAsk{
    background: #0d6efd;
    color: #FFF;
}

.FaqNav .FaqAsk,
.FaqNav .FaqAnswer
{
    padding-left: 2em;
    padding-right: 2.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;

}


.FaqNav .FaqAsk{
    cursor: pointer;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.FaqNav p{
    margin-bottom: 0.2em;
}

.FaqNav .on .FaqAsk p{
    color: #FFF;
}

.FaqNav .FaqAsk::after{
    position: absolute;
    content: '+';
    right: 2em;
    top:1.5em;
    font-weight: bolder;
}

.FaqNav .on .FaqAsk::after{
    content: '-';
}

.FaqNav .FaqAnswer{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.2s 0.2s linear,opacity 0.2s linear;
}

.FaqNav li.on .FaqAnswer{
    max-height: 300px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.5s linear,opacity 0.5s 0.3s ease-out;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.FaqNav .FaqBlock:not(:last-child)::before{
    content: '';
    width: calc(100% - 3em - 2em);
    left: 2em;
    bottom: -1px;
    position: absolute;
    height: 1px;
    background: rgba(23, 23, 23, 0.8);
}


/* FaqNav END*/

/* FaqNav 筛选模式 */

.FaqNav .FaqList .no-child{
    display: none;
    margin:2em;
}

.FaqNav .FaqList.searchStatue .FaqBlock{
    display: none;
}

.FaqNav .FaqList.searchStatue .FaqBlock.show{
    display: inherit;
}

.FaqNav .FaqList.searchStatue .no-child.shown{
    display: block;
}


/* FaqNav 筛选模式 END*/




/* AskNav 在线提问 */

.AskNav .AskBlock{
    padding-bottom: 2em;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-right: 2em;
}

.AskNav .sub_title{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 3em;
    width: 10em;
}

.AskNav .AskList{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.AskNav .AskCode{
    display: flex;
}

.AskNav img{
    margin-left: 3em;
}




@media (max-width: 750px) {
    .AskNav .AskBlock{
        flex-direction:column;
        margin-right: 0;
    }
    .AskNav .sub_title{
        justify-content: flex-start;
    }

}

.AskNav select,
.AskNav .AskBtn,
.AskNav img
{
    height: 45px;
}


.AskNav textarea{
    width: 100%;
    height: 117px;
}

.AskNav .Btn{
    width: 10em;
}


/* AskNav 在线提问 END */



/* product_document */




/** product content END **/
