.mobile-logo {
	margin: 0 0 20px;
	font-size: 32px;
	text-align: center;
	font-weight: bold;
	display: none;
}

.item {
	position: relative;
	background-color: #fff;
	padding: 25px 30px 25px 28px;
	border-radius: 2px;
	box-shadow: 0 0 5px rgba(0,0,0,.07);
	min-height: 85px;
	margin-bottom: 20px;
}

.item .item-header {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}

.item .item-header .item-user-avatar {
	float: left;
	margin: 0 10px 0 0;
}

.item .item-header .item-title {
	font-size: 16px;
	min-height: 24px;
	display: block;
	margin-right: 120px;
}

.item .item-header .item-time {
	color: #ababab;
	display: block;
	position: relative;
	margin-bottom: 3px;
}

.item .item-header .item-price {
	font-weight: 700;
}

.item .item-price {
	font-size: 16px;
	position: absolute;
	right: 30px;
	top: 25px;
	width: 120px;
	text-align: right;
}

.item .item-body {
	margin-top: 20px;
}

.item .item-body p:last-child {
	margin-bottom: 0;
}

.item .item-footer {
	margin-top: 20px;
}

#new-item-images {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	box-sizing: border-box;
	max-width: 880px;
}

#new-item-images li {
	float: left;
	width: 20%;
	box-sizing: border-box;
	padding: 0 10px;
	margin-bottom: 20px;
	position: relative;
}

#new-item-images li img {
	max-width: 100%;
	border: 1px solid #d5d8de;
}

@media (max-width: 768px) {
	.mobile-logo {
		display: block;
	}
	
	#new-item-images li {
		float: none;
		width: 100%;
		padding: 0;
		text-align: center;
	}
}

@media (max-width: 460px) {
	.item {
		padding: 15px;
	}

	.item .item-header .item-title {
		font-size: 14px;
		margin-right: 0;
	}

	.item .item-header .item-price {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
	}
}