@charset "gb2312";
/* CSS Document */
.page-ctrl-download {
	width: 100%;
}
.page-ctrl-download .list {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	background-color: #F5F5F5;
}
.page-ctrl-download .list:nth-child(3n) {
	margin-right: 0%;
}
.page-ctrl-download .img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.page-ctrl-download .img i {
	width: 100%;
	height: 100%;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.page-ctrl-download .title {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0px 20px;
	border-bottom: 1px solid #DDD;
	line-height: 49px;
	font-size: 16px;
	color: #333;
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.page-ctrl-download .note {
	width: 100%;
	height: 40px;
	padding: 0px 20px;
	line-height: 40px;
	font-size: 14px;
	color: #999;
}
.page-ctrl-download .note span {
	float: right;
}
.page-ctrl-download .note span:first-child {
	float: left;
}
.page-ctrl-download .btn {
	width: 100%;
	height: 60px;
	padding: 0px 20px 20px 20px;
}
.page-ctrl-download .btn a {
	display: block;
	float: right;
	width: 49%;
	height: 40px;
	padding: 0px 10px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	background-color: #FFAA00;
	color: #FFF;
	border-radius: 5px;
}
.page-ctrl-download .btn a:first-child {
	float: left;
}
.page-ctrl-download .btn a:hover {
	background-color: #0088FF;
}