/* 每个作品 */
.entries-box {
	width: 32%;
	margin-right: 2%;
	float: left;
	background: #F3FAFF;
	border-radius: 11px;
	/* box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.1); */
}

.entries-box:hover {
	box-shadow: 0 4px 14px 0 #666;
}

.entries-box .entries-img {
	width: 100%;
	height: 257px;
	overflow: hidden;
	cursor: pointer;
}

.entries-box .entries-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: 0.5s;
}

.entries-box .entries-img img:hover {
	transform: scale(1.2)
}

.entries-box .entries-info {
	position: relative;
	/* display: flex;
	justify-content: space-between; */
	padding: 20px 20px 18px 20px;
}
.entries_input{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
}
.entries-box .entries-info .entries-info-title {
	margin-bottom: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.entries-box .entries-info .entries-info-title .title-content {
	color: #333333;
	font-size: 24px;
	font-weight: bold;
	width: 100%;
	line-height: 1;
}

.entries-box .entries-info .entries-info-title .title-content:hover {
	text-decoration: none;
	color: #0078ff;
}

.entries-box .entries-info .entries-info-item {
	font-size: 18px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	line-height: 1;
	color: rgba(0, 0, 0, 0.61);
}

.entries-box .entries-info .entries-info-item span {
	cursor: pointer;
}
.statistics-title{
	color: rgba(51,51,51,0.61);
}
.entries-number{
	margin-left: 5px;
	margin-right: 20px;
	color: #333333;
}
.entries-box .entries-item {
	height: 50px;
	padding: 0 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.entries-box .entries-info-author {
	margin-top: 24px;
	line-height:1 ;
}

.entries-box .entries-info-author span:nth-child(1) {
	font-weight: bold;
	margin-right: 4px;
}

.entries-box .entries-info-author span {
	font-size: 18px;
}

.statistics-vote:before,.statistics-share:before{
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: unset;
	margin-right: 5px;
}

.entries-box .entries-info .entries-info-item span.statistics-fraction:before {
	background: url(/Public/Home/forum/img/star.png) no-repeat;
	background-size: 16px 16px;
}

.entries-box .entries-info .entries-info-item span.statistics-vote:before {
	background: url(/Public/Home/forum/img/hand.png) no-repeat;
	background-size: 16px 16px;
}
.entries-box .entries-info .entries-info-item span.statistics-share{
	float: right;
	color: #333333;
}
.entries-box .entries-info .entries-info-item span.statistics-share:before {
	background: url(/Public/Home/forum/img/share_blue.png) no-repeat;
	background-size: 16px 16px;
}

.vote-btn {
	width: 99px;
	height: 28px;
	line-height: 28px;
	position: absolute;
	right: 16px;
	bottom: 15px;
	border-radius: 6px;
	background: #297EFF;
}
.entries-info  .ivu-btn-primary[disabled]{
	background: #AAAAAA;
	border: none;
	color: #FFFFFF;
	
}
@media screen and (max-width: 1200px) {
	.entries-box {
		width: 32%;
	}
	.vote-btn {
		width: 70px;
		height: 24px;
	}
}
@media screen and (max-width: 992px){
	.vote-btn {
		width: 70px;
		height: 24px;
	}
}
@media screen and (max-width: 768px) {
	.entries-box {
		width: 100%;
		margin-top: 10px !important;
	}
	.entries-box .entries-img{
		height: 196px;
	}
	/* 投票按钮 */
	.vote-btn {
		width: 70px;
		height: 24px;
	}
	/* 作品名称 */
	.entries-box .entries-info .entries-info-title .title-content{
		font-size: 20px;
	}
	.entries-box .entries-info .entries-info-item{
		font-size: 15px;
	}
	.entries-box .entries-info-author span{
		font-size: 15px;
	}
}

