.giftOne {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.4rem;
    margin-top: -0.4rem;
    padding-top: 0.4rem;
}

.giftOne_cont {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.giftOne_img {
    width: 6.1rem;
}

.giftOne_p1 img {
    width: 100%;
    object-fit: contain;
}

.giftOne_p1 {
    font-size: 18px;
    color: #2E3133;
    line-height: 36px;
    margin-bottom: 0.2rem;
    font-weight: bold;
    text-align: justify;
}

.giftOne_p2 {
    font-size: 24px;
    color: #666666;
    line-height: 33px;
}

/*  */

.product {
    position: relative;
    overflow: hidden;
    padding-bottom: 0.6rem;
}

.product .pub_title {
    margin-bottom: 0.4rem;
}

.product_cont {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.product_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.product_item {
    padding: 0 0.26rem;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3rem;
    border: 1px solid rgba(46, 49, 51, .8);
    font-size: 18px;
    color: #2E3133;
    margin-right: 0.3rem;
    cursor: pointer;
}

.product_item:last-of-type {
    margin-right: 0;
}

.product_item.on {
    background: #EECE50;
    border: 1px solid #EECE50;
}

.product_banner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product_banner img {
    width: 23%;
    margin-right: 2.6%;
}

.product_banner img:nth-of-type(4n) {
    margin-right: 0;
}

/*  */

.special {
    background-color: #F8F9FA;
    padding-bottom: 0.6rem;
    overflow: hidden;
}

.special_cont {
    width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    display: none;
}

.special_cont.on {
    display: flex;
}

.special_item {
    width: 3.8rem;
    height: 2.5rem;
    position: relative;
    transition: 0.5s;
    margin-right: 0.3rem;
    margin-bottom: 0.2rem;
}

.special_item:nth-of-type(3n) {
    margin-right: 0;
}

.special_item::after {
    content: "";
    background-color: rgba(0, 0, 0, .6);
    transition: 0.5s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.special_item:hover::after {
    background-color: rgba(245, 204, 42, .9);
}

.special_item:hover .special_hover_img {
    border: 2px solid #2E3133;
    background-color: transparent;
}

.special_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.special_hover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.special_hover_img {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #F5CC2A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.24rem;
    transition: 0.5s;
    border: 2px solid transparent;
}

.special_hover_img img {
    width: 0.3rem;
    height: 0.3rem;
    object-fit: contain;
}

.special_hover_p1 {
    font-size: 24px;
    color: white;
}

@media screen and (max-width: 800px) {
    .special_item {
	width:100%;
	margin-right: 0;
    }

    .product_cont {
        width: 90%;
    }

    .product_list {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .product_item {
        margin-right: 0;
        width: 43%;
        height: 0.5rem;
    }

    .product_item:nth-of-type(2n+1) {
        margin-right: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .giftOne_cont {
        width: 90%;
        flex-direction: column;
    }

    .giftOne_img {
        width: 100%;
        margin-bottom: 0.3rem;
    }

    .giftOne_img img {
        width: 100%;
        object-fit: contain
    }

    .product_banner img {
        width: 49%;
        margin-right: 1%;
    }

    .special_cont {
        width: 90%;
    }

    .special .special_item {
        margin-left: auto;
        margin-right: auto;
    }

    .special_hover_p1 {
        font-size: 18px;
    }


}