
.banner{
    height: 4.7rem;
    background-size: cover;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
}
.banner .banner_tit{
    font-family: Montserrat-SemiBold;
    font-weight: 600;
    font-size: 0.65rem;
    color: #FFFFFF;
    text-align: center;
}
.banner .banner_txt{
    margin-top: 0.63rem;
    font-family: Montserrat-Light;
    font-weight: 300;
    font-size: 0.3rem;
    color: #FFFFFF;
}




.product{
    background: url(../img/product_bg2.png) center top no-repeat;
    background-size: 100% auto;
    padding: 0.95rem 0;
    overflow: hidden;
}
.product .main{
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.28rem;
    row-gap: 0.53rem;
    font-size: 0.25rem;
}
.product .product_item{
    width: calc(20% - 0.224rem);
    height: 2.2rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.35rem 0.01rem rgba(0,0,0,0.1);
    border-radius: 0.1rem;
    padding: 0.5rem 0.15rem 0.32rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    border: 0.01rem solid #ffffff;
    transition: all 0.3s ease-in-out;
}
.product .product_item .product_title{
    width: 100%;
    font-family: Montserrat-Regular;
    font-weight: 400;
    font-size: 0.25rem;
    color: #000000;
    text-align: center;
    line-height: 1.4;
}
.product .product_item .product_more{
	width: 1.75rem;
	height: 0.45rem;
	border-radius: 0.05rem;
	border: 0.01rem solid #DDDDDD;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.15rem;
	font-family: "Montserrat-Regular";
	font-weight: 400;
	font-size: 0.18rem;
	color: #ADADAD;
}
.product .product_item .product_more i{
	width: 0.17rem;
	height: 0.17rem;
	border: 0.01rem solid #D5D5D5;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}
.product .product_item .product_more i::before{
	content: "";
	position: absolute;
	left: 0.09rem;
	bottom: 0.09rem;
	width: 0.05rem;
	height: 0.05rem;
	background: #D8D8D8;
	border-radius: 50%;
}
.product .product_item:hover{
    border: 0.01rem solid #D30002;
    transform: translateY(-0.14rem);
}
.product .product_item:hover .product_more{
	background: #D30001;
	color: #FFFFFF;
    border-color: #D30001;
}
.product .product_item:hover .product_more i{
	background: #fff;
	border-color: #ffffff;
}
.product .product_item:hover .product_more i::before{
	background: #D30001;
}




@media screen and (max-width: 1043px) {
    .product{
        padding: 60px 0;
    }
    .product .main{
        column-gap: 15px;
        row-gap: 30px;
    }
    .product .product_item{
        width: calc(25% - 12px);
        height: 150px;
        padding: 30px 15px 20px;
    }
    .product .product_item .product_title{
        font-size: 16px;
    }
    .product .product_item .product_more{
		width: 160px;
		height: 36px;
		font-size: 16px;
		bottom: 15px;
	}
}
@media screen and (max-width: 769px) {
    .product .product_item{
        width: calc(50% - 7.5px);
    }
    .product .product_item .product_more{
		font-size: 14px;
	}
}

