@charset "utf-8";
.about-teams{
	padding: 20px 0 30px;
	background-color: #f5f5f5;
}
.book-title h3{
	font-size: 20px;
	font-weight: bold;
	color: #333;
}
.books-list{
	margin-top: 20px;
}
.books-list li{
	float: left;
	width: 18.4%;
	margin-right: 2%;
	margin-bottom: 2%;
	border-radius: 4px;
	overflow: hidden;
	-webkit-transition: -webkit-transform .3s ease-in-out;
	transition: -webkit-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	-moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out, -o-transform .3s ease-in-out;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 1%), 0 6px 12px 0 rgb(0 0 0 / 6%);
}
.books-list li:hover {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 6%), 0 20px 40px 0 rgb(0 0 0 / 6%);
    -webkit-transform: translate3d(0,-8px,0);
       -moz-transform: translate3d(0,-8px,0);
            transform: translate3d(0,-8px,0);
}
.books-list li a{
	display: inline-block;
	width: 100%;
	height: 100%;
}
.books-list li:nth-child(5n){
	margin-right: 0;
}
.books-list-img{
	text-align: center;
	background-color: #fff;
}
.books-list-img img{
	width: 100%;
	max-width: 220px;
}
.books-list-title{
	font-size: 16px;
	font-weight: 700;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}
.books-list-text{
	margin-top: 15px;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
	color: #666;
}
.books-list-price{
	display: none;
}
.books-list-price strong{
	font-size: 16px;
	font-weight: 700;
}
.books-list-content{
	padding: 20px;
	background: #f5f5f5;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
}
@media screen and (max-width: 1200px){
	.books-list li{
		width: 23.5%;
	}
	.books-list li:nth-child(5n){
		margin-right: 2%;
	}
	.books-list li:nth-child(4n){
		margin-right: 0;
	}
}
@media screen and (max-width: 800px){
	.books-list li{
		width: 32%;
		margin-bottom: 20px;
	}
	.books-list li:nth-child(4n){
		margin-right: 2%;
	}
	.books-list li:nth-child(3n){
		margin-right: 0;
	}
}
@media screen and (max-width: 800px){
	.books-list li{
		width: 48%;
		margin-right: 4%;
	}
	.books-list li:nth-child(3n),
	.books-list li:nth-child(4n),
	.books-list li:nth-child(5n){
		margin-right: 4%;
	}
	.books-list li:nth-child(2n){
		margin-right: 0;
	}
	.about-teams{
		padding-bottom: 20px;
	}
}