

/** 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: 1em;
    }
}

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

}


/** sort banner END **/

/** sort nav **/

.holder{
    height: 80px;
    margin-bottom: 2em;
}

.product_sort{
    padding-top: 1em;
    background: #FFFFFF;
    z-index: 999;
}

.sort_row li>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    font-size: 18px;
    font-weight: bolder;
    cursor: pointer;
}

.sort_row .is_active{
    color: #1e66f8;
}

.sort_row .is_active::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 50%;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width 0.15s ease;
    transition: width 0.15s ease;
    background-color: #1e66f8;
}
@media (max-width: 991px) {
    .product_sort span{
        font-size: 14px;
    }
}

/*@media (max-width: 991px) {*/
/*    ul.flex-row{*/
/*        flex-wrap: wrap;*/
/*    }*/
/*    ul.flex-row>li{*/
/*        max-width: 33.33%;*/
/*        flex-basis: 33.33%;*/
/*    }*/
/*}*/

/** sort nav END **/

/** product card **/

.product_card_row{
    display: flex;
    flex-wrap: wrap;
}

.product_card{
    flex-basis: 33.33%;
    -webkit-flex-basis:33.33%;
    max-width: 496px;
    padding: 1em ;
}

@media (max-width: 991px) {

    .product_card{
        flex-basis: 50%;
        -webkit-flex-basis:50%;
    }
}

@media (max-width: 600px) {

    .product_card{
        flex-basis: 100%;
        -webkit-flex-basis:100%;
        /*margin: 0 2em;*/

    }
}

.product_card_nav{
    padding: 16px 16px 24px;
    background-color: #f3f4f8;
    border-radius: 20px;
    height: 100%;
    transition: box-shadow 0.5s;
    max-height: 30em;
}

.product_card_nav:hover{
    box-shadow: 6px 2px 6px 0px rgba(0,0,0,0.25);
}

.product_card span{
    color: #171717;
}

.product_card .product_name{
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 1em;
    min-height: 72px;
}

@media (max-width: 991px) {
    .product_card .product_name{
        font-size: 20px;
    }
}

.product_card .product_info{
    font-size: 16px;
    line-height: 28px;
    margin-right: 70px;
}

.product_card .product_enter{
    position: absolute;
    right: 16px;
    bottom: 24px;
    background-color: rgba(23, 23, 23, 0.8);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    transition: background-color 0.5s;
    border-radius: 10px;
}



.product_card_nav:hover .product_enter{
    background-color: #1e66f8;
}

.hr{
    position: absolute;
    top: -5em;
    width: 100%;
}



/** product card END **/

/** quick link **/

.quicklink{
    position: fixed;
    top: 80%;
    left: 0;
    z-index: 3;
    background: rgba(255,255,255,.95);
    box-shadow: -2px 0 30px 2px rgba(97, 105, 119, 0.18);
    border-radius: 0 18px 18px 0;
    width: 5em;
    padding-bottom: 1em;
}

.link_botton>div{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    cursor: pointer;
}

.link_botton span{
    font-size: 12px;
    padding-top: 0.5em;
}

.path{
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

/** quick link 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: 80%;
}


@media (max-width: 991px) {

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

    .detail .sm-pic{
        display: inherit;
        max-width:500px;
    }

    .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;
    min-height: 1em;
}

.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 公共 END */

/** license申请 **/

.product_content .nav .action{
    display: flex;
    flex-direction: row;
    border: 1px solid #FFF5D6;
    background: #FFFAEB;
    padding: 1em;
}

.product_content .nav .actionNav:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #8080803d;
    margin-bottom: 1.5em;
}

.product_content .nav .actionNav:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #8080803d;
    margin-bottom: 1.5em;
}

.product_content .nav .action div:first-child{
    font-weight: bolder;
    min-width: 4em;
    max-width: 6em;
    width: 10%;
    text-align: center;
    margin-bottom: 1em;
}

.product_content .nav .action p{
    margin-bottom: 0.2rem;
}

.product_content .nav .form{
    width: 100%;
    padding: 1.5em;
}

.product_content .nav .form-item{
    display:flex;
    flex-direction: row;
    padding-bottom: 1em;
}

.product_content .nav .form-item .form-label{
    width: 12em;
    text-align: right;
    padding-right: 2em;
    padding-top: 0.4em;
}

.product_content .nav .form-item .form-inline
{
    width: 100%;
}

.product_content .nav .form-item .form-input
{
    width: 100%;
    max-width: 50em;
    height: 1.5em;
    padding:1em 0.8em;
}

.product_content .nav .form-item select{
    width: 12em;
    height: 2.3em;
    padding: 0 0.5em;
    border-radius:3px;
    background: #FFF;
    border: 1px solid rgb(118, 118, 118);

}

.product_content .nav .form-item .form-inline label{
    padding-top: 0.4em;
    margin-right: 2em;
    margin-top: -0.3em;
}
.product_content .nav .form-item .form-inline input[type="radio"]{
    vertical-align: middle;
    margin-right: 0.5em;
}

#otherdaili{
    height: 1.5em;
    padding:1em 0.5em;
    display: none;
}

.product_content .nav .form-btn .btn{
    background: #1e66f8;
    padding: 10px 20px;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
    margin-left: 1em;
    word-break: keep-all;
}

.product_content .nav .form-btn .btn:hover{
    background: #0044e7;
}




@media (max-width: 991px) {
    .product_content .nav .action{
        flex-direction: column;
    }

    .product_content .nav .action div:first-child{
        text-align: left;
    }
    .product_content .nav .action p{
        margin-bottom: 0.5rem;
    }

    .product_content .nav .form{
        padding: 2em 1em;
    }

    .product_content .nav .form-item{
        flex-direction: column;
    }

    .product_content .nav .form-item .form-label{
        text-align: left;
    }
}

/** license申请 END **/

/** 软件下载 **/

.product_content .nav .softNav ul{
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.product_content .nav .softNav li{
    background: #f8f8f6;
    border:1px solid #e6e6e6;
    padding: 2em 2em 1em 2em;
    margin-bottom: 2em;
}

@media (max-width: 600px) {
    .product_content .nav .softNav li{
        padding: 1em;
    }

    .product_content .container-xl{
        padding: 0;
    }

}

.product_content .nav .softNav .os{
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.product_content .nav .softNav .os span{
    margin-left: 0.5em;
}

.product_content .nav .softNav .softBox{
    background: #FFF;
    padding: 1em;
    margin-bottom: 1em;
}

.product_content .nav .softNav .softBox a{
    color: #1e66f8;
    margin-right: 1em;
}

.product_content .nav .softNav .softBox a:hover{
    color: #0049d7;
}

/** 软件下载 **/




/* 定制区 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 .documentNav.gap{
        padding:0;
    }
}

.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:hover{
    background: rgba(236, 236, 236, 0.5);
}

.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 .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 .searchInputNav .btn:hover{
    background: rgba(0, 0, 0, 0.8);
}

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

@media (max-width: 750px) {
    .product_content .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;
}


@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 tbody.searchStatue tr{
    display: none;
}

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

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








/* product_document */

/** product content END **/
