
#product{
	padding: 25px 0;
}

#productArea{
	position: relative;
	height: inherit;
    max-width: calc(1280px - 25px);
    padding: 0 12.5px;
    background: #f2f2f2;
}

.productList{
	float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
	height: inherit;
    padding: 25px 12.5px;
}

.productList img{
	width: 100%;
    border-radius: 5px;
}

.productList .button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0 25px;
    color: #fff;
    text-align: center;
    transition: .2s;
    background: #7cc1e2;
    overflow: hidden;
}

/** 修改 **/

#AD img {
    border-radius: 5px;
    overflow: hidden;
}

.slick-prev{
	position: absolute;
	top:50%;
	left: 10px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: url("../images/left.png");
	background-size:cover;
	border:0;
	font-size: 0;
	opacity: 0.25;
	transition:.3s;
}

.slick-next{
	position: absolute;
	top:50%;
	right: 10px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: url("../images/right.png");
	background-size:cover;
	border:0;
	font-size: 0;
	opacity: 0.25;
	transition:.3s;
}


