.product-sel {
    box-shadow: 0px 0px 20px -15px #000;
}
.product-sel-row {
    display: flex;
    padding: 10px 0;
}
.product-sel-row .wid6 {
    display: block;
    flex: 1;
    padding: 30px 0;
    text-align: center;
}
.product-sel-row .wid6 p {
    margin-top: 20px;
    color: #333;
    font-size: 16px;
}
.product-sel-row .wid6 .on {
    display: none;
}
.product-sel-row .wid6 .off {
    display: inline-block;
}
.product-sel-row .wid6:hover {
    background-color: #1947ba;
}
.product-sel-row .wid6:hover p {
    color: #fff;
}
.product-sel-row .wid6:hover .off {
    display: none;
}
.product-sel-row .wid6:hover .on {
    display: inline-block;
}
.product-sel-row .wid6.active {
    background-color: #1947ba;
}
.product-sel-row .wid6.active p {
    color: #fff;
}
.product-sel-row .wid6.active .off {
    display: none;
}
.product-sel-row .wid6.active .on {
    display: inline-block;
}
.product-lb {
    padding: 55px 0 45px;
    background-color: #f9f9f9;
}
.product-lb .product-lb-row {
    display: flex;
    flex-wrap: wrap;
}
.product-lb .wid2 {
    width: 48.5%;
    display: flex;

    padding: 50px;
    margin-right: 3%;
    margin-bottom: 3%;
    background-color: #fff;
}
.product-lb .wid2 h3 {
    padding-left: 30px;
    margin:0 0 20px 0;
    font-size: 30px;
    color: #1947ba;
    font-weight: bold;
    background-image: url(/public/image/icon_jty.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 8px;
}
.product-lb .wid2 p {
    margin-bottom: 20px;
    line-height: 1em;
    color: #666;
}
.product-lb .wid2 .wid2-text {
    width: 50%;
}
.product-lb .wid2 .wid2-text span {
    cursor: pointer;
    padding: 8px 30px;
    margin-top: 10px;
    border: 2px solid #1947ba;
    line-height: 40px;
    font-size: 14px;
    color: #1947ba;
}
.product-lb .wid2 .wid2-text img {
    margin-left: 10px;
}
.product-lb .wid2 .wid2-text .off {
    display: inline;
}
.product-lb .wid2 .wid2-text .on {
    display: none;
}
.product-lb .wid2 .wid2-img {
    width: 50%;
}
.product-lb .wid2 .wid2-img img {
    display: inline-block;
    overflow: hidden;
    transition: all 0.6s;
}
.product-lb .wid2:hover .wid2-img img {
    transform: scale(1.1);
}
.product-lb .wid2:hover .wid2-text span {
    color: #fff;
    background-color: #1947ba;
}
.product-lb .wid2:hover .wid2-text .on {
    display: inline;
}
.product-lb .wid2:hover .wid2-text .off {
    display: none;
}
.product-lb .wid2:nth-of-type(2n) {
    margin-right: 0;
}
.pdetail {
    display: none;
    align-items: center;
}
.pdetail.active {
    display: flex;
}
.pdetail .pdetail-img {
    width: 50%;
    position: relative;
}
.pdetail .pdetail-img img {
    width: 100%;
}
.pdetail .pdetail-text {
    width: 50%;
    padding-left: 8%;
}
.pdetail .pdetail-text h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 55px;
}
.pdetail .pdetail-text h3 img {
    margin-right: 20px;
    margin-bottom: 14px;
    height: 55px;
}
.pdetail .con-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pdetail .wid3 {
    width: 176px;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 30px 0;
    text-align: center;
    border: 1px solid #d7def6;
}
.pdetail .wid3 .img {
    display: inline-block;
}
.pdetail .wid3 .off {
    display: block;
}
.pdetail .wid3 .on {
    display: none;
}
.pdetail .wid3 p {
    line-height: 1em;
    margin-top: 9px;
    font-size: 18px;
}
.pdetail .wid3:hover {
    background-color: #1947ba;
}
.pdetail .wid3:hover .on {
    display: block;
}
.pdetail .wid3:hover .off {
    display: none;
}
.pdetail .wid3:hover p {
    color: #fff;
}
.pdetail .wid3.active {
    background-color: #1947ba;
}
.pdetail .wid3.active .on {
    display: block;
}
.pdetail .wid3.active .off {
    display: none;
}
.pdetail .wid3.active p {
    color: #fff;
}
.pdetail .wid3:nth-last-of-type(3n) .wid3 {
    margin-right: 0%;
}

@media only screen and (max-width:767px) {
    .product-sel-row{
        flex-wrap: wrap;
        flex: auto;
    }
    .product-sel-row .wid6 {
        display: block;
        flex: auto;
        padding: 20px 0;
        text-align: center;
        width: 33.33%;
    }
    .product-sel-row .wid6 img{
        width: 40px;
    }
    .banner-text{
        top: 30%;
        left: 10px;
    }
    .banner-text h3 {
        font-size: 22px;
        color: #f7f7f7;
        opacity: 0.3;
        margin-bottom: 2px;
        text-transform: uppercase;
    }
    .banner-text h2 {
        font-size: 20px;
        color: #fff;
    }
    .pdetail.active {
        display: block;
    }
    .pdetail .pdetail-img {
        width: 100%;
        position: relative;
    }
    .pdetail .pdetail-text {
        width: 100%;
        padding: 15px;
    }
    .pdetail .pdetail-text h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .pdetail .pdetail-text h3 img {
        margin-right: 10px;
        margin-bottom: 5px;
        height: 30px;
    }
    .pdetail .wid3 p {
        line-height: 1.65em;
        height: 1.65em;
        overflow: hidden;
        margin-top: 9px;
        font-size: 14px;
    }
    .pdetail .wid3 {
        width: 31.3%;
        margin-right: 2%;
        margin-bottom: 2%;
        padding: 15px 0;
        text-align: center;
        border: 1px solid #d7def6;
        box-sizing: border-box;
    }
    .product-lb {
        padding: 30px 0;
        background-color: #f9f9f9;
    }
    .product-lb .wid2 {
        width: 100%;
        display: block;
        align-items: center;
        padding: 15px;
        margin-right: 0;
        margin-bottom: 5%;
        background-color: #fff;
    }
    .product-lb .wid2 .wid2-text {
        width: 100%;
        text-align: center;
        padding-bottom: 10px;
    }
    .product-lb .wid2 .wid2-img {
        width: 100%;
    }
    .product-lb .wid2 h3 {
        padding-left: 15px;
        margin: 0 0 10px;
        font-size: 20px;
    }
    .product-lb .wid2 p {
        margin-bottom: 0;
        line-height: 1.65em;
        color: #666;
    }
    .product-lb .wid2 .wid2-text span {
        cursor: pointer;
        padding: 8px 25px;
        margin: 10px 0;
        border: 2px solid #1947ba;
        line-height: 35px;
        font-size: 12px;
        color: #1947ba;
    }
}
