ul {
	overflow: hidden;
}
.two {
	width: 80%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	column-gap: 20px;
}

.two .two-item {
	overflow: hidden;
	display: flex;
	width: 100%;
	border: 1px solid #EEEEEE;
	border-radius: 10PX;
	box-sizing: border-box;
	margin: 10px;
	align-items: center;
	min-height: 200px;
	padding: 0 10px;
	justify-content: space-between;
}

.two img {
	width: 180px;
	height: 180px;
	margin-right: 15px;
}

.two .right {
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: calc(100% - 200px);
}
 
.two .right-bottom {
	display: flex;
	justify-content: flex-end;
}

.two .right-btn {
	padding: 0px 36px;
	font-size: 16px;
	line-height: 45px;
	text-transform: capitalize;
	font-weight: 600;
	transition: 0.3s ease-in;
	border-radius: 5px;
	height: 45px;
	background-color: #000000;
	color: #FFFFFF;
	cursor: pointer;
}

.two .right p:nth-child(1) {
	overflow:hidden;
	text-overflow：ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.two .right .price {
	color: red;
}