body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-size: 1vw;
}

.ProPage1 {
    width: 100%;
    height: 40vh;
    position: relative;
}

.ProPage1Content {
    width: 40%;
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: #fff;
}

.ProPage1Content>h1 {
    margin-bottom: 3%;
}

.ProPage1Content>p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 2vw;
}

.ProPage2 {
    width: 100%;
    display: flex;
}

.ProPage2Left {
    width: 25%;
}

.ProColumns {
    width: 100%;
    padding: 0;
    position: sticky;
    top: 10%;
}

.ProColumns>li {
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    transition: all 1s ease;
}

.ProColumns>li>a {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 15%;
    box-sizing: border-box;
    border-bottom: 1px solid #979797;
    line-height: 500%;
}

.ProLevel2 {
    width: 100%;
    box-sizing: border-box;
    background-color: #f9fbff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: all .5s ease;
    position: relative;
}

.ProLevel2>a {
    margin: 0 5% 0 20%;
    color: #8a8a8a;
    line-height: 170% !important;
    font-size: 0.8777vw;
}

.ProLevel2>a:first-child {
    margin-top: 5%;
}

.ProLevel2>a:last-child {
    margin-bottom: 5%;
}

.ProColumns a {
    line-height: 200%;
}

.ProHumber {
    /* height: 30px; */
    display: flex;
    position: relative;
    margin-right: 5%;
    cursor: pointer;
}

.ProHumber>div:first-child {
    width: 10px;
    height: 2px;
    /* border-radius: 50%; */
    background-color: #383838;
}

.ProHumber>div:last-child {
    width: 10px;
    height: 2px;
    /* border-radius: 50%; */
    background-color: #383838;
    position: absolute;
    left: 0%;
    top: 0;
    transform: rotate(90deg);
    transition: all .3s ease;
}

.ProHumberOpen>div:last-child {
    transform: rotate(0deg);
    left: 100%;
}

.ProLiOpen {
    background-color: #0398DA;
}

.ProLiOpen>a {
    color: #fff;
}

.ProLiOpen>a>.ProHumber>div {
    background-color: #fff;
}

.ProLevel2>a:hover {
    color: #000;
}

.ProPage2Right {
    width: 75%;
    box-sizing: border-box;
    padding: 5%;
    display: flex;
    flex-direction: column;
}

.ProLevel1Box {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.ProLevel1Box>div:first-child {
    /* height: 2vw; */
    display: flex;
    margin-bottom: 3%;
    align-items: center;
}

.ProLevel1Box>div:first-child>div {
    width: 10px;
    height: 100%;
    background-color: #0398DA;
    margin-right: 1%;
}

.ProLevel1Box>div:first-child>p {
    font-size: 1.5vw;
    font-weight: bold;
}

.ProLevel1Box>p {
    color: #333;
    text-indent: 2vw;
    margin-bottom: 3%;
}

.ProBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.Page2SlideProduct {
    width: calc(100%/3.1);
    height: 200px !important;
    padding: 1%;
    box-sizing: border-box;
    /* font-size: 18px; */
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    margin-bottom: 10px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    margin-right: 1%;
    transform: translateY(0) !important;
}

.Page2SlideProduct>div:nth-child(1) {
    width: 100%;
    height: 100%;
}

.Page2SlideProduct>div:nth-child(1)>img {
    height: 80%;
    object-fit: contain;
    float: right;
}

.Page2SlideProduct:hover {
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.5);
    z-index: 5;
    transform: translateY(-5px) !important;
}

.Page2SlideProduct>img {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
}

.Page2SlideProduct>div:nth-child(1)>span {
    transition: all .3s linear;

}

.Page2SlideProduct:hover>div:nth-child(1)>span {
    opacity: 0;
}

.Page2SlideProduct:hover>.Page2Mask {
    color: #fff;
    transform: translateY(0%);
    /* box-shadow: inset -10px -13px 19px 0px rgba(0, 0, 0, 0.25); */
}

.Page2Mask {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    top: 0;
    left: 0;
    position: absolute;
    padding: 5%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), #0398DA);
    transform: translateY(101%);
    transition: all .3s linear;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.Page2Mask>h3 {

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.Page2Mask>p {
    font-size: 0.7vw;
    /* margin-bottom: 5%; */
    text-indent: 2vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.Page2Mask>button {
    width: 35%;
    height: 25%;
    font-size: medium;
    border: 0;
    background-color: #fff;
    color: #2f68c7;
    cursor: pointer;
}

.Page2Mask>button>a {
    width: 100%;
    height: 100%;
    color: #0398DA;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8777vw;
}

.ProLevel1Box>button {
    width: 250px;
    height: 50px;
    transform: translateX(-50%);
    background-color: transparent;
    border: 2px solid #0398DA;
    color: #0398DA;
    letter-spacing: 5px;
    font-size: larger;
    margin: 5% 0 5% 50%;
    cursor: pointer;
    transition: all .3s ease;
}

.ProLevel1Box>button:hover {
    background-color: #0398DA;
}

.ProMore>a {
    display: block;
    width: 100%;
    height: 100%;
    color: #0398DA;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ProMore>a>div {
    width: 15%;
    height: 2px;
    transition: all .3s ease;
    background-color: #0398DA;
}

.ProLevel1Box>button:hover>a {
    color: #fff;
}

.ProLevel1Box>button:hover>a>div {
    background-color: #fff;
}

.ProItemOn {
    color: #000 !important;
}

.crumbs>a {
    color: #969696;
}

.crumbs {
    color: #969696;
}

.crumbs>a:last-child {
    color: #3b3b3b;
}

.ProContent {
    width: 100%;
}


.product-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5%;
}

.product-details .product_swiper {
    width: 41%;
    max-width: 500px;
    user-select: none;
    margin: 0 5% 0 0;
}

.product_swiper .swiper-container {
    height: auto;
}

.product-details .product_swiper .L_imgswiper {
    position: relative;
    width: 100%;
    display: block;
    height: 0;
    padding-bottom: 70%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    margin-bottom: 15px;
}

.swiper_bottom {
    position: relative;
    padding: 0 60px;
}

.swiper_bottom .swiper-button-prev,
.swiper_bottom .swiper-button-next {
    width: 41px;
    height: 100%;
    background: #f7f7f7;
    border-radius: 4px;
    margin: 0;
    top: 0;
    right: 0;
    transform: none;
    transition: all .3s ease;
}

.swiper_bottom .swiper-button-next:after,
.swiper_bottom .swiper-button-prev:after {
    font-size: 18px;
    color: #9E9E9E;
    font-weight: bold;
}

.swiper_bottom .swiper-button-next:hover:after,
.swiper_bottom .swiper-button-prev:hover:after {
    color: #fff;
}

.swiper_bottom .swiper-button-next:hover,
.swiper_bottom .swiper-button-prev:hover {
    background-color: #0398DA;
}

.L_imgswiper>img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 80%;
    object-fit: contain;
}

.L_imgsmail {
    position: relative;
    width: 100%;
    display: block;
    height: 0;
    padding-bottom: 100%;
    border: 2px solid #D8D8D8;
    cursor: pointer;
    background: #D8D8D8;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.5;
}

.L_imgsmail>img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.swiper-slide-thumb-active .L_imgsmail {
    opacity: 1;
    border-color: #0398DA;
}

.product-details .prduct_details_right {
    width: 54%;
}

h2.prod_tit {
    color: #000;
    line-height: 120%;
}

.prod_info {
    color: #333;
    line-height: 200%;
    margin: 2% 0 5%;
}

.prod_info>p {
    text-indent: 2vw;
}

.pro_fx {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 5%;
}

.pro_fx span {
    display: inline-flex;
    align-items: center;
    color: #333;
}

.pro_fx svg.icon {
    fill: #828282;
    width: 22px;
    margin-right: 10px;
}

.pro_fx p {
    position: absolute;
    left: 0;
    top: 0;
    transition: all .5s ease;
    opacity: 0;
}

.pro_fx:hover p {
    opacity: 1;
    left: 120px;
}

.pro_fx p svg:hover {
    fill: #0398DA;
}

.prod_info_slide {
    width: 100%;
    line-height: 250%;
}

.prod_info_slide .prod_info_left {
    font-size: 14px;
    text-align: left;
}

.prod_info_right {
    color: #333;
}

.prod_button:nth-child(1) .L_messbut {
    display: flex;
    width: 13vw;
    max-width: 240px;
    min-width: 180px;
    border: 1px solid #0398DA;
    align-items: center;
    justify-content: center;
    background: #0398DA;
    transition: all .5s;
    color: #fff;
    fill: #fff;
    line-height: 200%;
    padding: 10px 0;
    font-weight: 500;
    border-radius: 5px;
}

.prod_button:nth-child(2) .L_messbut {
    display: flex;
    width: 13vw;
    max-width: 240px;
    min-width: 180px;
    border: 1px solid #999;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all .5s;
    color: #333333;
    fill: #333333;
    line-height: 200%;
    padding: 10px 0;
    font-weight: 500;
    border-radius: 5px;
}

.prod_button {
    position: relative;
    display: flex;
    gap: 2vw;
    margin-right: 50px;
}

.prod_button a span {
    display: block;
    margin: 0 10px;
}

.prod_button:nth-child(1) .L_messbut:hover {
    background: transparent;
    border-color: #0398DA;
    color: #0398DA;
    fill: #0398DA;
}

.prod_button:nth-child(2) .L_messbut:hover {
    background: #0398DA;
    border-color: #0398DA;
    color: #fff;
    fill: #fff;
}

.ProDetailButtonBox {
    width: 100%;
    display: flex;
}

.contact {
    width: 100%;
    margin-bottom: 3%;
}

.contact>p {
    /* font-family: none; */
    margin-left: 2%;
    margin-bottom: 3%;
}

.contact>p::before {
    content: '*';
    color: red;
    margin-right: 10px;
}

.contact>div:nth-child(3) {
    width: 100%;
}

.contact>div:nth-child(3)>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3%;
}

.contact>div:nth-child(3)>div>input {
    width: 48%;
    height: 60px;
    background-color: #f7f7f7;
    padding: 2%;
    box-sizing: border-box;
    border: 0;
    outline: none;
    margin-bottom: 2%;
    color: #000;
    font-size: 0.8777vw;
}

.contact>div:nth-child(3)>div>input::placeholder {
    color: #B1B1B1;
}

.contact>div:nth-child(3)>div>input:focus {
    border: 2px solid #0398DA;
}

.contact>div:nth-child(3)>div>textarea {
    width: 100%;
    height: 200px;
    background-color: #f7f7f7;
    padding: 2%;
    margin-bottom: 2%;
    border: 0;
    outline: none;
    color: #000;
    font-size: 0.8777vw;
}

.p_code_img {
    width: 40%;
    height: 60px;
    object-fit: contain;
}

.contact>div:nth-child(3)>div>textarea::placeholder {
    color: #B1B1B1;
}

.contact>div:nth-child(3)>div>textarea:focus {
    border: 2px solid #0398DA;
    border-radius: 5px;
}

.contact>div:nth-child(3)>button {
    width: 100%;
    /* height: 50px; */
    background-color: #0398DA;
    color: #fff;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease;

    font-size: 1vw;
    padding: 10px 0;
    line-height: 200%;
    font-weight: 500;
}

.contact>div:nth-child(3)>button:hover {
    border: 1px solid #0398DA;
    background-color: transparent;
    color: #0398DA;
}

.ProTitle {
    height: 35px;
    display: flex;
    margin-bottom: 20px;
}

.ProTitle>div {
    width: 10px;
    height: 100%;
    background-color: #0398DA;
    margin-right: 1%;
}

.ProTitle>p {
    font-size: 25px;
    font-weight: bold;
}

.RecommendedProducts {
    position: relative;
}

.RecommendedProducts>div:nth-child(2) {
    width: 100%;
    display: flex;
    align-items: center;
}

.RecommendedProducts>div:nth-child(2)>.mySwiper3 {
    padding: 5% 0;
}

.mySwiper3 {
    width: 90%;
}

.Page2Detail {
    transform: translateY(0) !important;
    transition: all .3s ease;
}

.Page2Detail:hover {
    transform: translateY(-10px) !important;
}

.ProductSwiperBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
}

.Page2Prev {
    width: 0;
    height: 0;
    border-right: 25px solid #0398DA;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    cursor: pointer;
}

.Page2Next {
    width: 0;
    height: 0;
    border-left: 25px solid #0398DA;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    cursor: pointer;
}

.ProOverBox {
    width: 100%;
}

.ProOverContent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.ProOverImg {
    width: calc(100%/3.3) !important;
    margin-bottom: 2%;
}



.ProOverTitle {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 2%;
    margin-top: 2%;
}

.ProOverTitle>p {
    font-weight: bold;
}

.ProOverTitle>div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 1%;
    background-color: #0056b7;
}

.ProOverTabBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ProTabTitle {
    width: 50%;
    display: flex;
    position: relative;
}

.ProTabTitle>li {
    flex: 1;
    border: 1px solid #f3f3f3;
    line-height: 400%;
}

.ProTabTitle>li>input {
    display: none;
}

.ProTabTitle>li>label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8B8B8B;
    font-weight: bold;
    cursor: pointer;
}

.ProOverview {
    margin-bottom: 10%;
}

.ProTabTitle>li>input:checked+label {
    background-color: #f3f3f3;
    color: #000;
}

.ProTabCont {
    display: none;
    background-color: #f3f3f3;
    padding: 5%;
    box-sizing: border-box;
}

.ProTabCont>table>tbody>tr>td,
.ProTabCont>table>tbody>tr>th {
    width: auto;
    border: 1px solid #000;
    text-align: center;
    line-height: 200%;
}

.ProTabCont>table {
    width: 100% !important;
    border-collapse: collapse;
}

.ProTabCont>h3 {
    line-height: 250%;
}

.ProTabCont>p {
    line-height: 200%;
}

.ProTabCont img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width:2200px) {
    .Page2SlideProduct {
        height: 250px !important;
    }
}

@media (max-width:1200px) {
    body {
        font-size: 1.5vw;
    }

    .product-details .product_swiper {
        width: 100%;
        max-width: 400px;
        margin: 0 0 30px;
    }

    .product-details .prduct_details_right {
        width: 100%;
        padding: 5%;
        box-sizing: border-box;
    }

    .pro_banner {
        height: 250px;
        margin-top: 70px;
    }

    .pro_banner h2 {
        bottom: 50%;
        text-align: center;
        font-size: 32px;
        transform: translate(-50%, 50%);
    }

    .ProLevel1Box>div:first-child>p {
        font-size: 2.3vw;
    }

    .Page2Mask>p {
        font-size: 1.2vw;
    }

    .Page2Mask>button {
        width: 50%;
        font-size: 1.2vw;
    }

    .product-details {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 5%;
        flex-direction: column-reverse;
    }

    .ProLevel2>a {
        font-size: 1.2vw;
    }

    .Page2Mask>p {
        font-size: 1vw;
    }

    .Page2Mask>button {
        font-size: 1.2vw;
    }

    .Page2Mask>button {
        height: 20%;
    }

    .contact>div:nth-child(3)>div>textarea {
        font-size: 1.2vw;
    }

    .contact>div:nth-child(3)>div>input {
        font-size: 1.2vw;
    }

    .contact>div:nth-child(3)>button {
        font-size: 1.3vw;
    }
}

@media (max-width:768px) {
    body {
        font-size: 2vw;
    }

    .ProLevel1Box>div:first-child>p {
        font-size: 3.3vw;
    }

    .ProPage1Content {
        width: 90%;
    }

    .ProPage2Left {
        display: none;
    }

    .Page2SlideProduct {
        width: calc(100% / 2.1);
    }

    .ProPage1Content>h1 {
        font-size: 5vw;
        margin-bottom: 1%;
    }

    .Page2Mask>p {
        font-size: 2vw;
    }

    .Page2Mask>button {
        width: 50%;
        font-size: 2vw;
    }

    .ProPage2Right {
        width: 100%;
    }

    .ProOverBox>img {
        width: calc(100% / 2.1);
    }

    .Page2Mask>button>a {
        font-size: 2vw;
    }

    .contact>div:nth-child(3)>div>textarea {
        font-size: 2vw;
    }

    .contact>div:nth-child(3)>div>input {
        font-size: 2vw;
    }

    .contact>div:nth-child(3)>button {
        font-size: 2vw;
    }
}

@media only screen and (max-width:480px) {
    body {
        font-size: 3vw;
    }

    .ProLevel1Box>div:first-child>p {
        font-size: 5vw;
    }

    .Page2SlideProduct {
        width: 100%;
    }

    .Page2Mask>p {
        font-size: 3vw;
    }

    .Page2Mask>button {
        font-size: 4vw;
    }

    .ProLevel1Box>p {
        margin-bottom: 5%;
    }

    .ProOverBox>img {
        width: 100%;
    }

    .prod_button {
        width: 40%;
        margin-right: 20px;
    }

    .prod_button>a {
        width: 100%;
    }

    .ProDetailButtonBox {
        justify-content: space-between;
    }

    .prod_button:nth-child(1) .L_messbut {
        width: 100%;

        max-width: auto;
        min-width: auto;
    }

    .prod_button:nth-child(2) .L_messbut {
        width: 100%;

        max-width: auto;
        min-width: auto;
    }

    .prod_info>p {
        text-indent: 6vw;
    }

    .ProLevel1Box>button {
        width: 100%;
        transform: translateX(0);
        margin: 5% 0 5% 0;
    }

    .ProTabTitle {
        width: 100%;
    }

    .Page2Mask>button>a {
        font-size: 3.5vw;
    }

    .contact>div:nth-child(3)>button {
        font-size: 2.5vw;
    }

    .contact>div:nth-child(3)>div>textarea {
        font-size: 2.5vw;
    }

    .contact>div:nth-child(3)>div>input {
        font-size: 2.5vw;
    }
}