section{
	background: #F8F8F8;
}
.lyzx-con{
	padding-bottom: 20px;
}
.lyzx-con .left{
	width: 100%;
	margin-bottom: 30px;
}
.lyzx-con .right{
	width: 100%;
}
.article-list li{
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.07), -2px -2px 4px 0 rgba(0, 0, 0, 0.07);
	border-radius: 5px;
	padding: 0.267rem 0.267rem;
	margin-bottom: 0.4rem;
	background-color: var(--white);
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease-in-out;
}
.article-list li:hover {
  border-bottom-color: var(--primary);
}
.article-list li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.article-list li .txt-wrap{
	padding-right: 15px;
}
.article-list li .txt-wrap .title{
	color: var(--dark);
	font-size: 0.373rem;
	font-weight: 500;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.article-list li .txt-wrap .time{
	font-size: 0.32rem;
	color: #B9B9B9;
	margin-top: 10px;
	display: flex;
	align-items: center;
}
.article-list li .txt-wrap .time i{
	margin-right: 5px;
}
.article-list li .img-wrap{
	flex: 0 0 120px;
	width: 120px;
}
.article-list li .img-wrap img{
	border-radius: 5px;
}

.hotsell{
	background-color: var(--white);
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 20px;
}
.hotsell>.title{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.hotsell .hot-list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 10px;
}
.hotsell .hot-list li {
    /* padding: 10px 10px 0; */
    background-color: var(--white);
    /* box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.06), -2px -2px 4px 0 rgba(0, 0, 0, 0.06); */
    border-radius: 5px;
}
.hotsell .hot-list li .img-wrap img{
	border-radius: 5px;
}
.hotsell .hot-list li .txt-wrap{
	text-align: center;
	padding: 0.133rem 0;
}
.hotsell .hot-list li .txt-wrap ._name {
   font-size: 0.427rem;
}
.hotsell .hot-list li .txt-wrap ._price {
    font-size: 0.48rem;
    font-weight: bold;
    color: var(--red);
	margin-top: 2px;
}

.poster .swiper-container{
	border-radius: 5px;
}
.poster img{
	width: 100%;
	height: 100%;
}


@media (min-width: 992px){
	.lyzx-con{
		display: flex;
		padding-bottom: 40px;
	}
	.lyzx-con .left{
		width: calc(100% - 282px);
		padding-right: 15px;
	}
	.lyzx-con .right{
		width: 282px;
	}
	.article-list li{
		padding: 20px 30px;
		margin-bottom: 20px;
	}
	.article-list li .txt-wrap .title{
		font-size: 20px;
	}
	.article-list li .txt-wrap .desc{
		font-size: 16px;
		margin: 20px 0;
		color: var(--gray-light);
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.article-list li .txt-wrap .time{
		font-size: 16px;
	}
	.article-list li .img-wrap{
		flex: 0 0 240px;
		width: 240px;
	}
	
	.hotsell{
		padding: 10px;
	}
	.hotsell .hot-list li .txt-wrap {
	    padding: 5px 0;
	}
	.hotsell .hot-list li .txt-wrap ._name {
	    font-size: 16px;
	}
	.hotsell .hot-list li .txt-wrap ._price {
	    font-size: 18px;
	}
	
}