body {
    font-size: 1vw;
}

.Page1 {
    height: 40vh;
    position: relative;
}

h2 {
    font-size: 1.7vw;
}

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

.Page1Content>h1 {
    margin-bottom: 3%;
    display: flex;
    align-items: center;
}

.Page1Content>h1::after{
    content: '';
    width: 10%;
    height: 4px;
    margin-left: 5px;
    background-color: #fff;
}

.Page1Content>p {
    color: rgba(255, 255, 255, 0.8);
}

.page2 {
    width: 100%;
    /* height: 80vh; */
    padding: 5% 0;
    position: relative;
    background: url('/src/img/solution/page2.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page2>div:nth-child(1) {
    width: 25%;
    height: 70%;
    margin-right: 10%;
}

.page2>div:nth-child(1)>img {
    object-fit: contain;
}

.page2>div:nth-child(2) {
    width: 40%;
    /* word-spacing: 5px; */
    color: #0398DA;
}

.page2>div:nth-child(2)>h2 {
    margin-bottom: 5%;
}

.page2>div:nth-child(2)>p {
    text-indent: 2vw;
    color: #333333 !important;
    line-height: 200%;
}

.page3 {
    width: 100%;
    /* height: 50vh; */
    padding: 5% 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page3>h2 {
    color: #333333;
    margin-bottom: 3%;
}

.page3>div {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page3Swiper {
    width: 80%;
    padding: 0 1%;
}

/* .Page3SlideProduct {
    padding: 1%;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    border: 1px solid #e6e6e6;
    margin-bottom: 1%;
    cursor: pointer;
} */


.Page3SlideProduct {
    width: calc(100%/3.1);
    height: 200px;
    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;
}

.Page3SlideProduct>a {
    width: 100%;
    height: 100%;
}

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

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

.Page3SlideProduct:hover {
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

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


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

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



.page4 {
    width: 100%;
    /* height: 55vh; */
    padding: 10% 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("/src/img/solution/page4.png") no-repeat;
    background-size: 100% 100%;
}

.page4>* {
    width: 35%;
    text-align: center;
    color: #fff;
}

.page4>h2 {
    margin-bottom: 2%;
}

.page4>p {
    word-spacing: 3px;
}

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

@media (max-width:1000px) {

    .Page1Content {
        width: 90%;
    }

    .Page3SlideProduct {
        height: 150px;
    }

    h2 {
        font-size: 2.5vw;
    }
}

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

    .page2>div:nth-child(1) {
        display: none;
    }

    .page2>div:nth-child(2) {
        width: 80%;
    }

    .page4>* {
        width: 80%;
    }

    h2 {
        font-size: 3.5vw;
    }

    /* .Page1 {
        margin-top: 8%;
    } */
}

@media (max-width: 480px) {
    body {
        font-size: 3vw !important;
    }

    .page4>* {
        width: 80%;
    }

    h2 {
        font-size: 4.5vw;
    }
}