/*表单*/
.upload-form {
	width: 800px;
	margin: 30px auto;
}

/*图片上传区*/
.select-zone {
	padding: 15px 25px;
	background: #fbfbfb;
	border: 1px solid #ccc;
}
.select-zone div {
	display: inline-block;
}
.select-btn {
	display: inline-block;
	padding: 0 15px;
	line-height: 38px;
	text-align: center;
	font-size: 14px;
	min-width: 50px;
	border-radius: 4px;
	background-color: #00a5e0;
	color: #fff;
	cursor: pointer;
}
.select-btn:hover {
	background-color: #00b4f5;
}
.img-input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
}
.drop-zone {
	width: 75%;
	border: 1px dashed #bcbcbc;
	padding: 30px;
	margin-left: 20px;
	background: #fff;
	color: #999;
	text-align: center;
}
.drop-zone.drag-hover {
	border-color: #ADD8E6;
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5)
}

/*图片预览区*/
.preview-zone {
    border: 1px solid #ccc;
    border-top: none;
    overflow: hidden;
    *zoom: 1;
}
.preview-item {
	float: left;
	margin: 10px;
}
.preview-item img {
	max-height: 200px;
}
.preview-item a {
	color: #4cb2ff;
	font-size: 13px;
	text-decoration: none;
	margin-left: 10px;
}

/*按钮区*/
.button-zone {
	margin-top: 20px;
}