.products-series{
	position: relative;
	display: block;
	padding-bottom: 45px;
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.dui-sidenav{
	position: fixed;
	padding: 24px 32px;
    background: #fff;
}
.products-series ul{
	list-style: none;
}
.sidenav-menu li{
	padding: 12px 0;
	cursor: pointer;
}
.sidenav-menu li a{
	font-size: 18px;
    line-height: 24px;
    color: #979797;
    padding-bottom: 3px;
}
.sidenav-menu li a:hover,
.sidenav-menu li.active a{
	color: #373737;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #ce2d35;
}
.sidenav-menu li a:focus{
	text-decoration: none;
}
.products-list{
	box-sizing: border-box;
    flex-shrink: 0;
    overflow: hidden;
}
.products-list h2{
	font-size: 24px;
	line-height: 1.25;
	font-weight: 600;
	color: #333;
	margin-top: 35px;
	margin-bottom: 20px;
	opacity: 0.9;
}
.products-list .grid{
	list-style: none;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
.products-list .cell{
	position: relative;
	padding: 5px;
	overflow: hidden;
}
.products-list .product-item{
	position: relative;
	background: #f7f7f7;
    transition: all .3s ease;
}
.products-list .product-item a{
	padding: 0;
    width: 100%;
    overflow: hidden;
    display: block;
}
.products-list .product-item a figure{
	margin: 0 auto;
    width: 100%;
    height: 33.33vh;
    background-size: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -ms-transition: transform 1.5s cubic-bezier(0,1,0.5,1);
    -webkit-transition: transform 1.5s cubic-bezier(0,1,0.5,1);
    transition: transform 1.5s cubic-bezier(0,1,0.5,1);
    z-index: 233;
}
.products-list .product-item a:hover figure{
	transform: scale(1.1);
}
.products-list .product-item .data{
	position: absolute;
	bottom: 25px;
	display: block;
	width: 100%;
	text-align: center;
	color: #333;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.25;
	z-index: 23;
	opacity: 0.9;
}

.product-item a>div{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 24;
	background: #000;
	opacity: 0.3;
	display: none;
}
.product-item a img{
	width: 39px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 55;
}
.products-list .product-item a:hover .icocl{
	display: block;
}
.products-list .product-item a:hover img{
	opacity: 1;
}

/* 产品 更多 */
.products-list .more{
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.btnactive{
	display: block;
	width: 85px;
    padding: 5px 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 15px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    color: #ccc;
    transition: all .36s ease;
}
.btnactive:hover,.btnactive:focus{
	background-color: #ce2d35;
	color: #fff;
	border-color: #fff;
	text-decoration: none;
}
.products-list.down{
	height: 34vh;
	opacity: 1;
	transition: all .36s ease;
}
.products-list.up{
	height: 0;
	transition: all .36s ease;
}