.new-product-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom:1px solid #EBE9E7;
    margin-top:30px;
    padding-bottom:2px;
}
.new-product-title>div:last-child{
    font-size: 16px;
    font-weight: 300;
    color: #666666;
}
.new-product-title>div:last-child span{
    color:#5491DD;
}
.new-product-title>div:first-child{
    font-size: 20px;
    font-weight: 400;
    color: #5491DD;
    position: relative;
    padding-left: 21px;
    background: url("img/new-product-head.png") no-repeat center;
    background-size: 15px 15px;
    background-position-x: left;
}
.new-product-title>div:first-child:after{
    content:'';
    width: 100%;
    display: block;
    position: absolute;
    height: 3px;
    background: #5491DD;
    bottom:-3px;
    left: 0;
}
.new-product-list{
    padding-top:20px;
}
.new-product-list>a{
    display: flex;
    align-items: center;
    background: #F5F5F5;
    height: 130px;
    padding-left: 40px;
    margin-bottom:20px;
}
.new-product-list>a img{
    max-width: 100%;
    max-height: 100%;
}
.new-product-list>a .new-product-img{
    width: 175px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new-product-right{
    width: 100%;
    display: flex;
    align-items: center;
}
.new-product-right>div:first-child{
    width: 625px;
}
.new-product-name{
    font-size: 16px;
    font-weight: 300;
    color: #333333;
}
.new-product-no{
    font-size: 16px;
    font-weight: 300;
    color: #5391DC;
    display: inline-block;
    border-bottom:1px solid #5391DC;
    padding-bottom:2px;
    margin-bottom:6px;
}
.new-product-desc{
    font-size: 16px;
    font-weight: 300;
    color: #666666;
}
.new-product-right ul{
    margin:0;
    padding:0;
    list-style: none;
    font-size: 14px;
    font-weight: 300;
    color: #808080;
}
.new-product-right ul li{
    padding-left: 22px;
    background: url("img/v.png") no-repeat center;
    background-position-x: left;
    background-size: 16px 11px;
    margin-bottom:6px;
}
.new-product-right ul li:last-child{
    margin-bottom:0;
}
.product-center{
    padding-top:36px;
    padding-bottom:100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product-left-menu{
    /*width: 323px;*/
    /*width: 275px;*/
    width: 222px;
    box-shadow: 2px 3px 13px 0px rgba(130,130,130,0.13);
}
.product-center-title{
    height: 68px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    font-size: 30px;
    font-weight: 500;
    color: #FFFFFF;
    background: #376092;
    position: relative;
}
.product-center-title span{
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    display: none;
}

.product-center-title .product-mid {
    /*font-size: 30px;*/
    /*font-weight: 400;*/
    /*margin:0 6px;*/
    margin-right: 3px;
    width: 20px;
    height: 37px;
    display: none;
    background: linear-gradient(to bottom right, transparent 0%, transparent calc(50% - 1px), #ffffff 50%, transparent calc(50% + 1px), transparent 100% );
}
.category-title{
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 22px;
    font-size: 16px;
    font-weight: 300;
    color: #808080;
    cursor: pointer;
    border-top:1px solid #DBDBDB;
    box-sizing: border-box;
    background: url("img/arrow-down.png") no-repeat center;
    background-size: 17px 10px;
    background-position-x: calc(100% - 22px);
    transition: 0.2s;
}
.category-title.on{
    color:#376092;
    background: url("img/arrow-top.png") no-repeat center;
    background-size: 13px 9px;
    background-position-x: calc(100% - 24px);
}
.product-left-menu ul{
    margin:0;
    padding:0;
    list-style: none;
    display: none;
}
.product-left-menu ul a{
    font-size: 16px;
    font-weight: 300;
    color: #808080;
    display: flex;
    align-items: center;
    padding-left: 42px;
    padding-right: 20px;
    height: 50px;
}
.product-left-menu ul li{
    border-top:1px solid #DBDBDB;
}
.product-left-menu ul a:hover,.product-left-menu ul a.on{
    transition: 0.2s;
    background:#DDEAF9;
    color:#376092;
}
.product-right-box{
    /*width: 841px;*/
    /*width: 900px;*/
    width: 960px;
}
.product-center-name{
    font-size: 28px;
    font-weight: 300;
    color: #666666;
    padding-bottom:12px;
    border-bottom:1px solid #DBDBDB;
    margin-bottom:20px;
}
.product-center-name>span{
    position: relative;
}
.product-center-name>span:after{
    content:'';
    display: block;
    position: absolute;
    bottom:-20px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #376092;
}
.product-center-img-box{
    background: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330px;
    min-width: 330px;
    height: 212px;
    overflow: hidden;
    margin-right: 10px;
}
.product-center-img-box img{
    max-width: 100%;
    max-height: 100%;
}
.product-desc{
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    line-height: 30px;
}
.product-introduce{
    display: flex;
    justify-content: space-between;
    margin-bottom:40px;
}
.product-desc p{
    margin:0;
}
.product-tab{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom:20px;
}
.product-tab>a{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    border: 1px solid #DBDBDB;
    height: 43px;
    border-bottom:none;
    box-sizing: border-box;
    cursor: pointer;
    padding:0 10px;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #666666;
}
.product-tab>a.on{
    color:white;
    background: #376092;
    border-color:#376092;
    position: relative;
}
.product-tab>a.on:after{
    position: absolute;
    right: -6px;
    content:'';
    display: block;
    width: 5px;
    height: 40px;
    background: linear-gradient(to right,#dedede,white);
    border-radius: 0 5px 0 0;
    bottom:-1px;
}
.product-center-table{
    display: table;
    width: 100%;
    border:1px solid #DBDBDB;
}
.product-center-table>div{
    display: table-row;
}
.product-center-table>div>div{
    display: table-cell;
    border-right: 1px solid #DBDBDB;
    border-bottom:1px solid #DBDBDB;

    font-size: 12px;
    font-weight: 300;
    color: #666666;
    vertical-align: middle;
    text-align: center;
    /*height: 92px;*/
    height: 62px;
    padding:0 5px;
    position: relative;
}
.product-center-table>div>div:last-child{
    border-right: none;
}
.product-center-table>div:last-child>div{
    border-bottom:none;
}
.product-center-table>div.product-center-head>div{
    height: 68px;
    white-space: nowrap;
    background: #F5F5F5;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
}
.pdf-book{
    display: inline-block;
    cursor: pointer;
    background: url("img/pdf.png") no-repeat;
    width: 30px;
    height: 33px;
    background-size: contain;
}
.btn-3d{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 22px;
    background: #5492DE!important;
    border-radius: 11px;
    color:white!important;;
    font-weight: 300;
    margin:0 auto;
    cursor: pointer;
    margin-bottom:2px;
}
.cart-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 22px;
    background: #376092!important;;
    border-radius: 11px;
    color:white!important;;
    font-weight: 300;
    margin:0 auto;
    cursor: pointer;
}
.cart-btn:hover,.btn-3d:hover{
    opacity: 0.8;
}
.orderBy{
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 12px;
    cursor: pointer;
    margin-left:2px;
    height: 9px;
    width: 9px;
}
.orderBy:after{
    content: '';
    background: url(img/timeNormal.png);
    background-size: cover;
    width: 9px;
    height: 12px;
    display: inline-flex;
    position: absolute;
    /*margin-top:-4px;*/
}
.orderBy.asc:after{
    background: url(img/timeAsc.png);
    background-size: cover;
}
.orderBy.desc:after{
    background: url(img/timeDesc.png);
    background-size: cover;
}
.mobile-modal{
    display: none;
    position: fixed;
    z-index: 2;
    transition: 0.2s;
}
.mleft-menu{
    position: fixed;
    z-index: 222;
    left: 0;
    background: url("img/menu_handle_expand.png") no-repeat;
    width: 24px;
    height: 56px;
    filter: drop-shadow(0px 3px 4px rgba(213, 217, 224, .6));
    transition: 0.2s;
    display: none;
}
.product-center-title .icon-remove{
    display: none;
}
.fixedTableBox{
    position: relative;
}
.leftFixed,.rightFixed{
    position: absolute;
    z-index: 22;
}
.table-box{
    display: none;
}
.lay-table-box{
    display: none;
}
.layui-table-header .layui-table th{
    font-weight: bold;
}
@media screen and (max-width: 768px){
    .new-product-list>a .new-product-img{
        height: 180px;
    }
    .new-product-list>a img{
        max-height: 100%;
        width: initial;
        min-width: initial;
        max-width: initial;
    }
    .new-product-list>a{
        flex-direction: column;
        height: auto;
        padding-left: 0;
        padding-bottom:12px;
    }
    .new-product-right{
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
    .new-product-right>div:first-child{
        width: auto;
        margin-bottom:15px;
    }
    .new-product-name,.new-product-no,.new-product-desc{
        font-size: 14px;
    }
    .mobile-modal{
        left: 0;
        right: 0;
        top: 0;
        bottom:0;
        background-color: rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        display: block;
    }
    .mobile-modal.show{
        opacity: 1;
        visibility: visible;
    }
    .product-left-menu{
        position: fixed;
        left: 0;
        z-index: 22;
        background-color: white;
        top:55px;
        /*display: none;*/
        height: calc(100vh - 55px);
        overflow-y: auto;
        transition: 0.2s;
        transform: translateX(-323px);
        width: 323px;
    }
    .product-left-menu.show{
        transform: translateX(0);
    }
    .product-left-menu>div .category-title,.product-left-menu ul li{
        border-top:none;
        border-bottom:1px solid #DBDBDB;
    }

    .product-center-title .icon-remove{
        display: initial;
        position: absolute;
        right: 15px;
    }
    .mleft-menu{
        display: block;
        transition: 0.2s;
        transform: translateX(-24px);
    }
    .mleft-menu.show{
        transform: translateX(0);
    }
    .product-center-name{
        font-size: 18px;
    }
    .product-center-name>span:after{
        height: 3px;
        bottom:-15px;
    }
    .product-introduce{
        flex-direction: column;
        margin-bottom:20px;
    }
    .product-right-box{
        width: 100%;
    }
    .product-desc{
        width: 100%;
    }
    .product-center-img-box{
        margin-right: 0;
        margin-bottom:15px;
        width: 100%;
    }
    .product-tab{
        overflow: auto;
        height: 45px;
        scrollbar-width: none;
    }

    .product-tab::-webkit-scrollbar {
        display: none;
    }
    .product-tab>a{
        font-size: 16px;
        min-width: 120px;
    }
    .table-box{
        overflow: auto;
        display: block;
    }
    .product-center-title{
        font-size: 24px;
    }
    .lay-table{
        display: none;
    }
    .product-center-title span{
        display: initial;
    }
    .product-center-title .product-mid{
        display: block;
    }
}