/* academy.html */
.page {
	width: 100%;
}

.main {
	width: 1200px;
	position: relative;
	margin: auto;
}

h4.title {
	font-size: 36px;
	color: #222;
	text-align: center;
	padding-top: 46px;
	padding-bottom: 27px;
}

.profile {
	font-size: 16px;
	color: #666;
	text-align: center;
	line-height: 1.8;
}

.tabBtn {
	text-align: center;
	margin-top: 38px;
	margin-bottom: 62px;
}

.tabBtn .btn {
	display: inline-block;
	width: 110px;
	height: 40px;
	line-height: 40px;
	margin-right: 65px;
	margin-left: 65px;
	cursor: pointer;
}

.tabBtn .current {
	border-radius: 3px;
	border: solid 1px #c72a33;
	font-size: 16px;
	color: #c72a33;
}

.academy_tabContent .list li {
	float: left;
	margin-right: 30px;
	margin-bottom: 40px;
	width: 370px;
	height: 380px;
	background-color: #ffffff;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}

.academy_tabContent .list li:nth-of-type(3n) {
	margin-right: 0px;
}

.academy_tabContent .list li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px;
}

.academy_tabContent .list li .item img.view {
	display: block;
	max-width: 330px;
	max-height: 180px;
	margin: auto;
	margin-bottom: 20px;
}

.academy_tabContent .list li .item h4 {
	font-size: 18px;
	color: #333;
	height: 60px;
	line-height: 30px;
	margin-bottom: 5px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.academy_tabContent .list li .item p {
	margin-bottom: 20px;
	font-size: 14px;
	color: #666;
	line-height: 21px;
	height: 42px;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.academy_tabContent .list li .item .text {
	display: flex;
	font-size: 16px;
}

.academy_tabContent .list li .item .text .title {
	flex: 1;
	text-align: left;
	color: #cbabad;
}

.academy_tabContent .list li .item .text .time {
	flex: 1;
	text-align: right;
	color: #999999;
}

.academy_tabContent .list li:hover {
	box-shadow: 0px 2px 10px 0px rgba(199, 64, 64, 0.1);
}

.academy_tabContent .list li:hover .item h4 {
	color: #d73e3e;
}

.loadMore {
	width: 160px;
	height: 48px;
	line-height: 48px;
	border-radius: 3px;
	border: solid 1px #999999;
	font-size: 18px;
	color: #777777;
	cursor: pointer;
	text-align: center;
	margin: auto;
	margin-bottom: 47px;
}

ul.pagination li {
	width: 30px;
	height: 30px;
	line-height: 30px;
	float: left;
	border: 1px solid #ccc;
	margin-right: 4px !important;
	text-align: center;
	margin-bottom: 10px;
}

/* 手机设备 */
@media only screen and (max-width: 767px) {
  /* 样式 */
  .academy_tabContent .list li {
	  width: 100%;
	   margin-right: 0px;
  }
}

/* 平板设备 */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* 样式 */
}

/* 笔记本/桌面设备 */
@media only screen and (min-width: 1025px) {
  /* 样式 */
}
