.sp1 {
    width: 100%;
    position: relative;
}

.sp1>img {
    width: 100%;
    object-fit: contain;
}

.sp1Content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #fff;
    font-size: 2rem;
}


.spage2 {
    width: 100%;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    padding: 5% 0;
    /* background-color: #f1f3f5; */
}

.spage2>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;
    animation: searchValue 2s forwards;
}

@keyframes searchValue {
    0% {
        width: 0px;
    }

    100% {
        width: 40%;
    }
}

.Sear>button {
    cursor: pointer;
    background-color: #1869c3;
    border: 0;
    color: #fff;
    font-size: 1vw;
    padding: 0 3%;
    margin-left: 5%;
}
.SearBox>p:nth-child(1){
    margin-top: 10px;
}

.SearBox>p:nth-child(2) {
    margin-bottom: 20px;
    font-size: 0.8vw;
    color: #888;
}

.keyword {
    color: red;
}

.SearBox>.ProBox {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5%;
    justify-content: left !important;
}

.prp1Right>div {
    width: calc(100%/5 - 3%);
    margin: 0 3% 3% 0;
    /* cursor: pointer; */
    background-color: #fff;
    border-radius: 5px;
}

.prp1Right>div>a {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.prp1Right>div>a>div {
    width: 100%;
    height: 90%;
    margin-bottom: 5%;
    position: relative;
}

.prp1Right>div>a>div>img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all .6s ease;
}

.prp1Right>div>a>p {
    margin: 0;
    color: #646363;
    transition: all .6s ease;
    text-align: center;
}

/* .prp1Right>div>a>div::after {
    content: '';
    width: 0;
    height: 4px;
    background-color: #d60000;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: left;
    transition: all .6s ease;
} */

.prp1Right>div:hover>a>div::after {
    width: 100%;
}

.prp1Right>div:hover>a>div>img {
    transform: scale(1.1);
}

.prp1Right>div:hover>a>p {
    color: #1b59c2;
    font-weight: bold;
}


.prp1Right>div>a>p {
    margin: 5% 0;
}

@media (max-width: 1200px) {

    .Sear>input {
        height: 4vw;
    }

    .SearBox>p:nth-child(1) {
        font-size: 2.5vw;
    }

    .SearBox>p:nth-child(2) {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {
    .sp1 {
        height: 40vh;
    }

    .sp1>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .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;
    }

}

@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;
    }


    @keyframes searchValue {
        0% {
            width: 0px;
        }

        100% {
            width: 80%;
        }
    }

    .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;
    }

    .prp1Right>div {
        width: 100%;
        margin: 0 0 3% 0;
    }
}