/**允许复制 **/

#documentNav a,
#documentNav td
{
    user-select:text;
}


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

@media (max-width: 991px) {
    .banner{
        height: 200px;
    }

    .gap{
        padding-top: 30px;
    }

    /*.PC .gap{*/
    /*    padding-top: 30px;*/
    /*}*/
    /*.PHONE .gap{*/
    /*    padding: 1em;*/
    /*}*/
}

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

.banner_title{
    position: absolute;
    top: 0;
    padding: 0 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;
    }

}

.ban{
    margin: 2em 1em 3em;
}

.ban a{
    text-decoration: underline;
    font-weight: bolder;
}

.ban a:hover{
    color:#1e66f8
}


/** sort banner 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("/public/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 .documentRow{
    display: flex;
}

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

@media (max-width: 750px) {
    .product_content .documentFilterNav{
        width: 100% !important;
    }

}


.FilterWidthNav{
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.FilterWidthNav .FilterLine {
    width: 5px;
    right: -0.5em;
    top: 5em;
    position: absolute;
    z-index: 11;
    cursor: col-resize;
    color: rgba(0,0,0,0.1);
}

.FilterWidthNav .FilterLine:hover{
    color: rgb(0,0,0);
}


.product_content #documentNav{
    flex: 1 1 auto;
}


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

    .FilterWidthNav{
        display: none;
    }
}

.product_content .Filter-root{
    padding-top: 1em;
}

.product_content .documentRow button{
    display: flex;
    align-content:center;
    min-height: 1em;
    min-width: 1em;
    font-size: 1em;
    line-height: 1.5;
    padding: 0;
    border: none;
    background: transparent;
}

.documentFilter_bottom{
    pointer-events:none;
    cursor: none;
}

.product_content .documentFilter_label{
    display: flex;
    padding-left: 0.5em;
    line-height: 1.5;
    align-items: center;
}

.documentFilter_open>div .fa-caret-right{
    transform: rotate(90deg);
}

.product_content .Filter-child{
    margin-left: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}
.product_content .documentFilter_open>.Filter-child{
    max-height: 7000px;

    transition: max-height 3s ease;
}

.product_content .Filter-root input{
    margin-right: 0.5em;
    width: 0.7em;
    height: 0.7em;
}

.product_content .Filter-root li{
    margin-top: 0.3em;
}

.product_content .Filter-root li>div{
    display: flex;
    align-items: center;
}

.product_content .Filter-root label{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


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

.product_content #documentNav table  tr.hidden {
    display: none;
}

.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: 750px) {
    .product_content .product_table td:first-child,
    #documentNav table th:first-child,
    #documentNav table td:first-child
    {
        max-width: 18em;
    }

}

@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;
    user-select:text;
}



.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;
}

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

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




.product_content .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  .searchAll.ALL{
    background: black;
    color: #FFFFFF;
    border:black 1px solid;
}

.product_content .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 .searchInputNav .btn{
    background: rgba(23, 23, 23, 0.8);
    padding: 10px 20px;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
    margin-left: 1em;
    word-break: keep-all;
}

.product_content input,
.product_content label,
.product_content .searchAll,
.product_content .btn,
.product_content .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 .typeNav{
        padding-left: 1em;
    }
    .product_content .searchBox .searchInput{
        margin-left: 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;
}

.product_content #documentNav table td:first-child a:hover{
    text-decoration: underline;
}

@media (min-width: 750px) {
    .product_content #documentNav table th:not(:first-child), .product_content #documentNav table td:not(:first-child){
        text-align: center;
    }
}

@media (max-width: 750px) {
    .product_content #documentNav table thead{
        display: none;
    }

    .product_content #documentNav table tr {
        display: block;
        margin-top: 4em;
    }
    .product_content #documentNav table td {
        border-bottom: 1px solid #ddd;
        display: block;
        position: relative;
        text-align: right;
        min-height: 53px;
        padding-left: 8em;
    }

    .product_content #documentNav table td::before{
        position: absolute;
        left: 10px;
        content: attr(data-label);
    }

    .product_content #documentNav table td:first-child a{
        font-weight: bold;
    }
    .product_content #documentNav table td:first-child a:hover{
        text-decoration: underline;
    }
}


.product_content #documentNav tbody.searchStatue tr{
    display: none;
}

.product_content #documentNav tbody.searchStatue tr.show{
    display: table-row;
}

.product_content #documentNav tbody.searchStatue tr.show.hidden{
    display: none;
}

@media (max-width: 750px) {
    .product_content #documentNav tbody.searchStatue tr.show{
        display: block;
    }

    .product_content #documentNav tbody.searchStatue tr.show.hidden{
        display: none;
    }
}

#loadMoreBtn{
    display: inline-block;
    font-weight: 400;
    text-align: center;
    background: #1e66f8;
    color: #FFF;
    padding: 10px 20px;
    margin-top: 1em;
    justify-content: center;
    align-items: center;
    word-break: keep-all;
    width: 100%;
    cursor: pointer;
}


.tooltip {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 5px;
    z-index: 1000;
    transform:translateX(6em)
    /* 可根据需要调整样式 */
}

@media (max-width: 750px) {
    .tooltip {
        opacity: 0;
        visibility: hidden;
        transform:translateX(-4em);
        transform:translateY(-2em);
    }
}

.sort-symbol-gray {
    color: gray;
}

.sort-symbol-white {
    color: white;
}

#sortableHeader{
    cursor: pointer;
}

/* product_document */

/** product content END **/
