body {
    background-color: #f0f2f5;
    font-size: 1vw;
}

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

.Page1Content {
    width: 40%;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Page1Content>h1 {
    margin-bottom: 3%;
    font-size: 2vw;
}

.Page1Content>p {
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 0.8);
}


.page2 {
    width: 100%;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    padding: 5% 0;
}

.page2>div {
    width: 80%;
}

.Sear {
    display: flex;
    padding-bottom: 3%;
    border-bottom: 1px solid #D5D5D5;
}

.Sear>input {
    width: 40%;
    height: 3vw;
    border: 1px solid #D5D5D5;
    background-color: #F5F5F5;
    padding: 1% 3%;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1vw;
}

.Sear>button {
    cursor: pointer;
    background-color: #0398DA;
    border: 0;
    color: #fff;
    font-size: 1vw;
    padding: 0 3%;
    margin-left: 5%;
}

.SearBox>p:nth-child(2) {
    font-size: 0.8vw;
    color: #888;
}

.keyword {
    color: red;
}

.NewsPagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.pagination {
    width: 30%;
    display: flex;
    justify-content: space-evenly;
}

.pagination>li {
    width: 2vw;
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #8a8a8a;
    cursor: pointer;
}

.pagination>li>a {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disabled {
    border-color: #8A8A8A !important;
    color: #8A8A8A !important;
}

.active {
    background: #0398DA;
    color: #fff !important;
}

.SearBox>.ProBox {
    margin-top: 5%;
    justify-content: left !important;
}

.SearBox>.ProBox>.Page2SlideProduct {
    margin-bottom: 0;
}

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

    .Page1 {
        height: 30vh;
    }

    .Page1Content>h1 {
        font-size: 4vw;
    }

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

    .Sear>input {
        height: 4vw;
    }

    .SearBox>p:nth-child(1) {
        font-size: 2.5vw;
    }

    .SearBox>p:nth-child(2) {
        font-size: 1.5vw;
    }
    .pagination>li{
        width: 3vw;
        height: 3vw;
    }
}

@media (max-width: 768px) {
    .Page1 {
        height: 20vh;
    }

    .Page1Content>h1 {
        font-size: 6vw;
    }

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

    .Sear>input {
        height: 6vw;
        font-size: 2vw;
    }
    .Sear>button{
        font-size: 2vw;
    }
    .SearBox>p:nth-child(1) {
        font-size: 3vw;
    }

    .SearBox>p:nth-child(2) {
        font-size: 2vw;
    }
    .pagination>li{
        width: 4vw;
        height: 4vw;
    }
}

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

    .Page1Content>h1 {
        font-size: 8vw;
    }

    .Page1Content>p {
        font-size: 4vw;
    }

    .Sear>input {
        width: 80%;
        height: 10vw;
        font-size: 3vw;
    }
    .Sear>button{
        font-size: 3vw;
    }

    .Sear>button {
        width: 20%;
    }

    .SearBox>p:nth-child(1) {
        font-size: 5vw;
    }

    .SearBox>p:nth-child(2) {
        font-size: 4vw;
    }
    .pagination{
        width: 80%;
    }
    .pagination>li{
        width: 6vw;
        height: 6vw;
    }
}