.hi_pro_one {
    width: 95vw;
    margin: auto;
}

.hi_pro_one_banner {
    width: 100%;
    height: 2vh;
    background-color: #007aff;
}

.hi_pro_one_type {
    width: 100%;
    height: 10vh;
    background-color: #fff;
    box-shadow: 0 1px 6px #0000001a;
}

.hi_pro_one_type ul {
    display: flex;
    width: 100%;
    height: 10vh;
    align-items: center;
}

.hi_pro_one_type ul li {
    width: auto;
    margin-right: .5rem;
    padding: 10px 20px;
    border-radius: .5rem;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.hi_pro_one_type_text span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .35rem;
    font-weight: 500;
}

@media screen and (max-width:1000px) {
    .hi_pro_one {
        width: 100vw;
    }

    .pace {
        width: 100vw;
    }

    .hi_pro_one_lis {
        display: flex;
        justify-content: center;
    }
}


.hi_pro_two {
    width: 95vw;
    height: auto;
    margin: auto;
    background-color: #FFF;
    padding: 1.25rem 0;
    display: none;
}

.hi_pro_two_content ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.hi_pro_two_content ul li {
    width: 22%;
    height: 50vh;
    background-color: #fbfbfb;
    transition: all 0.3s ease-out;
    margin-right: .75rem;
    margin-top: .5rem;
}


.hi_pro_two_content ul li:hover {
    background-color: #eaf8ff;
}

.hi_pro_two_des {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 50vh;
    padding: .25rem .5rem;
    
    overflow: hidden;
}

.hi_pro_two_labels {
    display: flex;
    position: absolute;
    top: .25rem;
    left: .25rem;
}

.hi_pro_two_labels span {
    font-size: .35rem;
    color: #a557eb;
    padding: .1rem .2rem;
    border-radius: .075rem;
    background-color: #e9e0ff;
}


.hi_pro_two_content .hi_pro_two_img {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hi_pro_two_content .hi_pro_two_img img {
    width: 80%;
    padding: .5rem;
}

.hi_pro_two_title {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hi_pro_two_title h4 {
    font-size: .35rem;
    font-weight: 700;
    color: #17191d;
}

.hi_pro_two_content ul li:hover .hi_pro_two_title h4 {
    color: #007aff;
    transition: all 0.3s ease-out;
}

.hi_pro_two_title p {
    font-size: .35rem;
    font-weight: 300;
    color: #17191d;
    line-height: 1.3;
    margin: .375rem 0;
}

.hi_pro_two_title .price {
    font-size: .35rem;
    font-weight: 300;
    color: #363950;
}

.hi_pro_two_title .button_tags {
    display: flex;
    font-size: .35rem;
    font-weight: 300;
    margin-top: .75rem;
}

.hi_pro_two_title .button_tags span {
    text-align: center;
    color: #fff;
    padding: .05rem .2rem;
    border-radius: .825rem;
    background-color: #39cc64;
}

.hi_pro_two_button {
    display: flex;
    position: absolute;
    right: 0;
    bottom: -0.25rem;
    opacity: 0;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.hi_pro_two_content ul li:hover .hi_pro_two_button {
    animation: top 0.5s ease-out forwards;
}


@keyframes top {
    0% {
        bottom: -0.25rem;
        opacity: 0;
    }

    100% {
        bottom: .25rem;
        opacity: 1;
    }
}



.hi_pro_two_button span {
    font-size: .35rem;
    color: #fff;
    background-color: #1a87ff;
    padding: .1rem .2rem;
    border-radius: .075rem;
}


@media screen and (max-width:1000px) {
    .hi_pro_two {
        width: 100vw;
        height: auto;
        margin: auto;
        background-color: #FFF;
        padding: 1.25rem 0;
        display: none;
    }

    .hi_pro_two_des {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        height: auto;
        padding: .25rem .5rem;
        
        overflow: hidden;
    }

    .hi_pro_two_content ul li {
        width: 100%;
        height: auto;
        background-color: #fbfbfb;
        transition: all 0.3s ease-out;
        margin-right: auto;
        margin-top: .5rem;
        padding: .5rem;
    }
}