.banner{
	width: 100%;
	height: 2.2rem;
	background-size: cover!important;
	background-position: center 0!important;
	position: relative;
}
.banner::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.5);
}
.banner h1{
	color: #fff;
	position: absolute;
	z-index: 2;
	transform: translate(-50%,-50%);
	width: 80%;
	left: 50%;
	top: 50%;
	text-align: center;
	font-size: .45rem;
	font-weight: bold;
}
.list{
/*	background: #dfefff;*/
	background-color: #181818;
	padding: .5rem .3rem;
}
.list .wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.list .product{
	background-color: #fff;
	width: calc(50% - .15rem);
	margin-bottom: .3rem;
}
.list .product .pic{
	width: 100%;
	height: 3.15rem;
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f6f6;
}
.list .product .pic .img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.list .product .pic .img img {
    max-width: 2.31rem;
    max-height: 2.31rem;
}
.list .product .msg {
    padding: .2rem .2rem;
    text-align: center;
}
.list .product .msg .name {
    font-size: .32rem;
    font-weight: bold;
/*    color: #333;*/
    color: #76b900;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list .product .msg .slogan {
    color: #555;
    font-size: .28rem;
    line-height: 1.5;
    overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
}
/*分页*/
.paginations span,
.paginations a{
	display: inline-block;
    font-size: .28rem;
    padding: 0 .15rem;
    height: .5rem;
    line-height: .5rem;
    margin: 0;
    margin-right: .1rem;
/*    border: .02rem solid rgba(0,0,0,0.15);*/
    box-sizing: content-box;
    color: #000;
    background: #fff;
/*    border-radius: .2rem;*/
}
.paginations .page-numbers.current {
    background: #76b900;
    color: #fff;
/*    border-color: #00b0ec;*/
}
.paginations span.inactive, 
.paginations span.dots {
    cursor: auto;
    color: #999;
}
.paginations{
	margin-top: .3rem;
}
.paginations .next{
	margin-right: 0;
}
.paginations .pagination-wrap{
	text-align: center;
	font-size: 0;
}
.paginations a:hover,
.paginations a:focus, 
.paginations a.active{
    background-color: #6aa700;
/*    border: .02rem solid #6aa700;*/
    opacity: 0.9;
    color: #fff;
}