
    .product{
       padding-top: 50px;
    }
    .product .item{
        padding: 5px;
        margin-bottom: 30px;
    }
    .product .item .wrap_item{
        border: 1px solid #ddd;
        position: relative;
    }
    .product .item .wrap_item:before{
        position: absolute;
        top: -1px;
        bottom: -1px;
        left: 50%;
        right: 50%;
        content: '';
        pointer-events: none;
        border-top: 1px solid #3454d1;
        border-bottom: 1px solid #3454d1;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .product .item .wrap_item:hover:before{
        left: -1px;
        right: -1px;
    }
    .product .item .wrap_item:after{
        position: absolute;
        left: -1px;
        right: -1px;
        bottom: 50%;
        top: 50%;
        content: '';
        pointer-events: none;
        border-left: 1px solid #3454d1;
        border-right: 1px solid #3454d1;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .product .item .wrap_item:hover:after{
        top: -1px;
        bottom: -1px;
    }
    .product .item .wrap_item:hover{
        
    }
    .product .item .i-img{
        padding-top: 65.76%;
        position: relative;
        overflow: hidden;
    }
    .product .item .i-img img{
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
    .product .item .wrap_item:hover .i-img img{
        -webkit-transform: translate(-50%,-50%) scale(1.06);
        -moz-transform: translate(-50%,-50%) scale(1.06);
        -o-transform: translate(-50%,-50%) scale(1.06);
        -ms-transform: translate(-50%,-50%) scale(1.06);
        transform: translate(-50%,-50%) scale(1.06);
    }
    .product .item .i-title{
        padding: 20px 15px;
        position: relative;
    }
    .product .item .i-title h3 a{
        display: block;
        font-size: 15px;
        line-height: 22px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #333;
        font-weight: 700;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
    }
    .product .item .wrap_item:hover .i-title h3 a{
        color: #3454d1;
    }
    .product .item .i-title:after{
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 75px;
        height: 5px;
        background: url('../images/icon5.png') no-repeat;
    }

    .cat_style{
        margin-top: 35px;
    }
    .cat_style .cp_title{
        display: none;
        font-size: 18px;
        line-height: 28px;
        color: #fff;
        background: #3454d1;
        padding: 11px 10px;
        text-transform: uppercase;
        position: relative;
        text-align: left;
        cursor: pointer;
        z-index: 1;
        -webkit-transform: skew(-20deg);
        -moz-transform: skew(-20deg);
        -o-transform: skew(-20deg);
    }
    .cat_style .cp_title:after{
        content: '\f107';
        font-family: fontAwesome;
        font-size: 16px;
        color: #fff;
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .cat_style .cp_content > ul > li{
        padding-left: 30px;
        position: relative;
    }
    .cat_style .cp_content > ul > li:after{
        content: "";
        background: #ccc;
        height: 100%;
        left: 5px;
        margin-top: 11px;
        position: absolute;
        top: 0;
        width: 2px;
    }
    .cat_style .cp_content > ul > li:last-child:after{
        content: none;
    }
    .cat_style .cp_content > ul > li:before{
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 13px;
        height: 13px;
        background: url('../images/icon2.png') no-repeat;
    }
    .cat_style .cp_content > ul > li > a{
        display: block;
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 20px;
        font-weight: 600;
        text-transform: uppercase;
        color: #333; 
        -webkit-transition: all .4s;
           -o-transition: all .4s;
           transition: all .4s;   
    }
    .cat_style .cp_content > ul > li.active > a,
    .cat_style .cp_content > ul > li > a:hover{
        color: #3454d1;
    }
    .cat_style .cp_content > ul > li > ul{
        display: none;
        overflow-y: scroll;
        height: 150px;
        padding-left: 15px;
    }
    .cat_style .cp_content > ul > li > ul > li > a{
        display: inline-block;
        font-size: 14px;
        line-height: 20px;
        padding: 8px;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
    }
    .cat_style .cp_content > ul > li > ul > li.active > a,
    .cat_style .cp_content > ul > li > ul > li > a:hover{
        background: #3454d1;
        color: #fff;
        -webkit-transform: skew(-20deg);
        -moz-transform: skew(-20deg);
        -o-transform: skew(-20deg);
    }

    .titleMenuProduct {
        background: #c4161c;
        color: #ffffff;
        text-align: center;
        font-weight: bold;
        font-family: 'Arima Madurai', cursive;
        padding: 19px 10px;
        text-transform: uppercase;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .menuProduct{
        margin-bottom: 20px;
    }
    .menuProduct>ul>li{
        border-bottom: solid 1px #efefef;
        position: relative;
    }
    .menuProduct>ul>li>a {
        display: block;
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
        padding: 17px 0;
    }
    .menuProduct>ul>li>ul{
        display: none;
    }
    .menuProduct>ul>li>ul>li{
        border-top: solid 1px #efefef;
    }
    .menuProduct>ul>li>ul>li>a{
        font-size: 15px;
        line-height: 26px;
        padding: 11px 10px;
        display: block;
        padding-left: 30px;
        position: relative;
        font-weight: 300;
    }
    .menuProduct>ul>li>ul>li.active>a{
        font-weight: bold;
    }
    .menuProduct>ul>li>ul>li>a:before{
        content: "\f105";
        font-family: fontAwesome;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-left: 0;
    }
    .menuProduct>ul>li>.sub {
        width: 25px;
        height: 25px;
        position: absolute;
        top: 15px;
        right: 0;
        font-size: 15px;
        line-height: 25px;
        cursor: pointer;
    }
    .menuProduct>ul>li>.sub:before{
        content: "\f067";
        font-family: fontawesome;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .menuProduct>ul>li.active>.sub:before{
        content: "\f068";
    }
    .titleProduct{
        position: relative;
    }
    .titleProduct h1{
        font-size: 26px;
        line-height: 36px;
        font-weight: 600;
        text-transform: uppercase;
        padding-bottom: 5px;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }
    .titleProduct .filter{
        position: absolute;
        right: 0;
        top: -10px;
        background: 0;
    }
    .titleProduct .filter span{
        font-size: 13px;
        line-height: 20px;
        color: #333;
        display: inline-block;
        margin-right: 15px;
    }
    .titleProduct .filter select{
        width: 200px;
        height: 32px;
        border: 1px solid #ddd;
    }
    .sectionBox{
        margin-bottom: 0;
    }
    .gird_c2{
        padding: 5px;
    }
    .gird_c2 .item{
        float: left;
        width: 25%;
    }
    .gird_c2 .item .wrap_item{
        border: 1px solid #ddd;
        padding: 14px;
        position: relative;
    }
    .gird_c2 .item .wrap_item:before{
        position: absolute;
        top: -1px;
        bottom: -1px;
        left: 50%;
        right: 50%;
        content: '';
        pointer-events: none;
        border-top: 1px solid #3454d1;
        border-bottom: 1px solid #3454d1;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .gird_c2 .item .wrap_item:hover:before{
        left: -1px;
        right: -1px;
    }
    .gird_c2 .item .wrap_item:after{
        position: absolute;
        left: -1px;
        right: -1px;
        bottom: 50%;
        top: 50%;
        content: '';
        pointer-events: none;
        border-left: 1px solid #3454d1;
        border-right: 1px solid #3454d1;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .gird_c2 .item .wrap_item:hover:after{
        top: -1px;
        bottom: -1px;
    }
    .gird_c2 .item .wrap_item .i-img{
        padding-top: 100%;
        position: relative;
        overflow: hidden;
        margin-bottom: 10px;
    }
    .gird_c2 .item .wrap_item .i-img span{
        display: block;
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 28px;
        height: 35px;
    }
    .gird_c2 .item .wrap_item .i-img img{
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
    .gird_c2 .item .wrap_item:hover .i-img img{
        -webkit-transform: translate(-50%,-50%) scale(1.06);
        -moz-transform: translate(-50%,-50%) scale(1.06);
        -o-transform: translate(-50%,-50%) scale(1.06);
        -ms-transform: translate(-50%,-50%) scale(1.06);
        transform: translate(-50%,-50%) scale(1.06);
    }
    .gird_c2 .item .wrap_item .i-title h3 a{
        display: block;
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        height: 44px;
        overflow: hidden;
        text-transform: uppercase;
        text-align: center;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
    }
    .gird_c2 .item .wrap_item:hover .i-title h3 a{
        color: #3454d1;
    }
    .detail{
        background: #f5f5f5;
        padding: 15px 15px 0;
        margin-bottom: 60px;
        position: relative;
    }
    .detail .hiddenCol{
        display: none;
    }
    div#vnt-thumbnail-for{
       
    }
    div#vnt-thumbnail-for .img{
        position: relative;
        padding-top: 66.67%;
        overflow: hidden;
    }
    div#vnt-thumbnail-for .img img {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    div#vnt-thumbnail-nav{
        background: #fff;
        padding: 20px 70px;
        margin: 20px -15px 0;
    }
    div#vnt-thumbnail-nav .slick-list{
        margin: 0 -10px;
    }
    div#vnt-thumbnail-nav .item{
        padding: 0 10px;
    }
    div#vnt-thumbnail-nav .img{
        overflow: hidden;
        position: relative;
        cursor: pointer;
        padding: 100% 0 0;
        background: #f5f5f5;
    }
    div#vnt-thumbnail-nav .img:after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 3px solid #eb232b;
        opacity: 0;
    }
    div#vnt-thumbnail-nav .slick-current .img:after{
        opacity: 1;
    }
    div#vnt-thumbnail-nav .img img {
        position: absolute;
        left: 50%;
        top: 50%;
        max-width: 80%;
        max-height: 80%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    div#vnt-thumbnail-nav .slick-arrow {
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        top: 45%;
        width: 50px;
        height: 50px;
        background: #fff;
        border: 3px solid #ddd;
        border-radius: 100%;
        -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        -o-transform: translate(0,-50%);
        transform: translate(0,-50%);
        display: block;
        z-index: 0;
    }
    div#vnt-thumbnail-nav .slick-arrow:hover{
        background: #3454d1;
    }
    div#vnt-thumbnail-nav .slick-arrow:after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-family: fontAwesome;
        font-size: 26px;
        color: #ddd;
    }
    div#vnt-thumbnail-nav .slick-next:after {
        content: '\f105';
    }
    div#vnt-thumbnail-nav .slick-prev:after {
        content: '\f104';
    }
    div#vnt-thumbnail-nav .slick-next {
        right: 0;
    }
    div#vnt-thumbnail-nav .slick-prev {
        left: 0;
    }
    .detail .info{
        padding: 15px 35px;
        background: #fff;
    }
    .detail .info h1{
        font-size: 26px;
        line-height: 36px;
        font-weight: 600;
        color: #3454d1;
    }
    .detail .info p{
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        padding: 0;
        margin-bottom: 15px;
    }
    .detail .info .gird_intro{
        height: 145px;
        overflow-y: scroll;
    }
    .detail .info .gird_intro .item{
        margin-bottom: 5px;
    }
    .detail .info .gird_intro .item .fl{
        width: 145px;
        font-weight: 600;
        font-size: 13px;
        line-height: 20px;
    }
    .detail .info .gird_intro .item .fr{
        width: calc(100% - 145px);
        width: -webkit-calc(100% - 145px);
        width: -o-calc(100% - 145px);
        width: -moz-calc(100% - 145px);
        padding-left: 30px;
        position: relative;
        font-size: 13px;
        line-height: 20px;
    }
    .detail .info .gird_intro .item .fr:after{
        content: ':';
        position: absolute;
        left: 0;
        top: 0;
    }
    .detail .info .ms{
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
    }
    .detail .info .ms div{
        display: inline-block;
    }
    .detail .info .ms div:first-child{
        padding-right: 40px;
        position: relative;
    }
    .detail .info .ms div:first-child:after{
        content: '';
        position: absolute;
        right: 20px;
        top: 2px;
        width: 2px;
        height: 15px;
        background: #333;
    }
    .detail .info .ms div:last-child span{
        display: inline-block;
        padding-left: 30px;
        position: relative;
    }
    .detail .info .ms div:last-child span:after{
        content: '\f00c';
        position: absolute;
        left: 10px;
        top: 0;
        font-family: fontAwesome;
        font-size: 16px;
        color: #3454d1;
    }
    .f-share{
        margin-top: 30px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .f-share span{
        display: inline-block;
        margin-right: 10px;
        font-size: 16px;
        line-height: 24px;
    }
    .f-share .ds_share{
        margin-right: 20px;
    }
    .f-share a.lh{
        display: block;
        width: 188px;
        padding: 15px 0;
        line-height: 20px;
        color: #fff;
        height: auto;
        font-size: 11px;
        font-weight: 500;
        text-align: center;
        text-transform: uppercase;
        background: #3454d1;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
    }
    .f-share a.lh:hover{
        opacity: .7;
    }
    .f-share a.lh span{
        display: inline-block;
        position: relative;
        padding-left: 30px;
    }
    .f-share a.lh span:after{
        content: '\f095';
        position: absolute;
        left: 5px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: fontAwesome;
    }

    .tab_wrapper {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid #ddd;
        position: relative;
    }
    .tab_wrapper .tab_title{
        display: none;
        font-size: 18px;
        line-height: 28px;
        color: #fff;
        background: #3454d1;
        padding: 11px 10px;
        text-transform: uppercase;
        position: relative;
        text-align: left;
        cursor: pointer;
    }
    .tab_wrapper .tab_title:after{
        content: '\f0d7';
        font-family: fontAwesome;
        font-size: 16px;
        color: #fff;
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .tab_wrapper .tab-content{
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 30px;
    }
    ul.tab_nav {
        padding: 20px !important;
        background: #f5f5f5;
    }
    ul.tab_nav li {
        list-style: none;
        float: left;
        margin-right: 4px;
    }
    ul.tab_nav li:last-child{
        margin-right: 0;
    }
    ul.tab_nav li a {
        display: block;
        text-align: center;
        text-decoration: none;
        position: relative;
        background: #fff;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        font-size: 15px;
        line-height: 24px;
        padding: 10px 18px;
        color: #333;
        text-transform: uppercase;
        font-weight: 600;
    }
    ul.tab_nav li a.active,
    ul.tab_nav li a:hover{
        background: #3454d1;
        color: #fff;
    }
    .text-tab h2{
        font-size: 26px;
        line-height: 34px;
        color: #333;
        margin-bottom: 15px;
    }
    .text-tab ul li{
        list-style: none;
        padding-left: 25px;
        position: relative;
        margin-bottom: 15px;
        font-weight: 500;
    }
    .text-tab ul li:after{
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 100%;
        position: absolute;
        left: 0;
        top: 8px;
        background: #eb232b;
    }

    .other{

    }
    .other .title{
        font-size: 26px;
        line-height: 36px;
        color: #3454d1;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
        position: relative;
    }
     .other .title:after{
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 270px;
        height: 2px;
        background: #eb232b;
     }
    .slide_other .slick-arrow {
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        top: 50%;
        width: 50px;
        height: 50px;
        background: transparent;
        border: 3px solid #ddd;
        border-radius: 100%;
        -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        -o-transform: translate(0,-50%);
        transform: translate(0,-50%);
        display: block;
    }
    .slide_other .slick-arrow:hover{
        background: #3454d1;
    }
    .slide_other .slick-arrow:after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-family: fontAwesome;
        font-size: 26px;
        color: #ddd;
    }
    .slide_other .slick-next:after {
        content: '\f105';
    }
    .slide_other .slick-prev:after {
        content: '\f104';
    }
    .slide_other .slick-next {
        right: 0;
    }
    .slide_other .slick-prev {
        left: 0;
    }
    .slide_other{
        height: auto !important;
        overflow-y: initial !important;
        overflow-x: hidden;
        margin-bottom: 30px;
    }


    @media screen and (max-width: 1368px){
        .product{
            padding: 0 100px;
        }
        .product .item{
            margin-bottom: 10px;
        }
        .product .item .i-img{
            padding-top: 50%;
        }
        .gird_c2{
            height: 500px;
            overflow-y: scroll;
        }
    }

    @media screen and (max-width: 1024px){
        .product{
            padding: 20px 0;
           height: auto;
           overflow-y: initial;
        }
        .product .row{
            margin: 0 -5px;
        }
        .product .row .col-lg-4{
            padding: 0 5px;
        }
        .product .item{
            padding: 0;
        }
        .productC2{
            
        }
        .productC2 .row .col-lg-3{
            width: 100%;
        }
        .productC2 .row .col-lg-9{
            width: 100%;
        }
        .fstand{
            bottom: initial;
            padding-bottom: 30px;
        }
        .cat_style{
            position: relative;
            margin-bottom: 25px;
        }
        .cat_style .cp_title{
            display: block;
        }
        .cat_style .cp_content{
            display: none;
            padding-top: 20px;
            position: absolute;
            top: 50px;
            left: -10px;
            right: 0;
            z-index: 100;
            background: #fff;
            width: 100%;
        }
        .cat_style.active .cp_content{
            display: block;
        }
        .titleProduct h1{
            border-bottom: 0;
        }
        .titleProduct .filter{
            position: static;
            padding-bottom: 10px;
            margin-bottom: 25px;
            border-bottom: 1px solid #ddd;
        }
        .gird_c2{
            
        }
        .gird_c2 .item{
            width: 33.33%;
        }
        .wrapCornPostion{
            padding-left: 85px;
            padding-top: 50px;
        }
        .showCol{
            display: none;
        }
        .detail{
            padding: 0;
            margin-bottom: 25px;
        }
        .detail .hiddenCol{
            display: block;
        }
        .detail .row .col-lg-6{
            width: 100%;
        }
        .f-share{
            display: block;
        }
        .f-share span{
            display: inline-block;
            margin-bottom: 0;
            position: relative;
            top: -18px;
        }
        .f-share .ds_share{
            display: inline-block;
            margin-right: 0;
            margin-bottom: 10px;
        }
        .tab_wrapper .tab_title{
            display: block;
        }
        .tab_wrapper .tab-content{
            display: none;
            position: absolute;
            top: 71px;
            left: 20px;
            right: 20px;
            z-index: 10;
        }
        .tab_wrapper.show .tab-content{
            display: block;
        }
        ul.tab_nav{
            padding: 0 !important;
            background: 0;
        }
        ul.tab_nav li{
            float: none;
            margin-right: 0;
        }
        ul.tab_nav li a{
            text-align: left;
        }
        .tab_wrapper .subtab{
            padding: 20px; 
            background: #f5f5f5;
            margin-bottom: 25px;
        }
        .f-share a.lh {
            font-size: 10px;
            display: block;
        }
        .f-share a.lh span{
            top: 0;
        }
        .f-share a.lh span:after{
            left: 15px;
        }
        .other .title{
            font-size: 18px;
            line-height: 26px;
        }
        .other .title:after{
            width: 100px;
        }
        .detail .info{
            padding: 0;
        }
        .detail .info h1{
            font-size: 18px;
            line-height: 26px;
        }
        div#vnt-thumbnail-nav .slick-arrow{
            width: 20px;
            height: 20px;
            border: 1px solid #ddd;
        }
        div#vnt-thumbnail-nav .slick-arrow:after{
            font-size: 16px;
        }
        div#vnt-thumbnail-nav{
            padding: 20px 30px;
        }
        .product .item .i-title h3 a{
            white-space: initial;
            height: 44px;
            text-overflow: initial;
        }
    }

    @media screen and (max-width: 767px){
        .gird_c2 .item{
            width: 50%;
        }
    }

    @media screen and (max-width: 379px){
        .gird_c2 .item{
            width: 100%;
        }
    }