.uploader div, .uploader p, .uploader ol, .uploader ul, .uploader li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

/* ------------ */
.webuploader-container {
	position: relative;
}
.webuploader-element-invisible {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px,1px,1px,1px);
}
.webuploader-pick1 {
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: #00b7ee;
	padding: 10px 15px;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	overflow: hidden;
}

.uploader {
	margin: 0 auto;
	color: #838383;
	font-size: 12px;
	background-color: #FFF;
}

.element-invisible {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px,1px,1px,1px);
}

.uploader .placeholder {
	margin: 10px;
	text-align: center;
	color: #888;
	font-size: 14px;
	position: relative;
}
/*上传前文字提示*/
.uploader .placeholder p {
	padding-top1: 10px;
}

.uploader .placeholder .webuploader-pick {
	color: #fff;
	font-size: 18px;
	background: #00b7ee;
	border-radius: 3px;
	padding: 5px 15px;
	display: inline-block;
	margin: 0px auto 5px;
	cursor: pointer;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.uploader .placeholder .webuploader-pick-hover {
	background: #00a2d4;
}

.uploader .placeholder .flashTip {
	color: #666666;
	font-size: 12px;
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 20px;
}
.uploader .placeholder .flashTip a {
	color: #0785d1;
	text-decoration: none;
}
.uploader .placeholder .flashTip a:hover {
	text-decoration: underline;
}

.uploader .placeholder.webuploader-dnd-over {
	border-color: #999999;
}

.uploader .placeholder.webuploader-dnd-over.webuploader-dnd-denied {
	border-color: red;
}

.uploader .filelist {
	list-style: none;
	margin: 0;
	padding-bottom1: 10px;
}

.uploader .filelist:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.uploader .filelist .file-item p.log {
	position: relative;
	top: -45px;
}
/*文件列表*/
.uploader .filelist .file-item {
	background: url(./bg.png);
	border-top: 1px solid #dadada;
	padding: 10px 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: stretch!important;
	align-items: stretch!important;
	position: relative;
}
/*预览图*/
.uploader .filelist .file-preview {
	background: #fff;
	width: auto;
	height: 60px;
	border: #ccc 1px solid;
	margin-right: 5px;
	position: relative;
	z-index: 2;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;

	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;

	-webit-transition: 200ms ease-out;
	-moz-transition: 200ms ease-out;
	-o-transition: 200ms ease-out;
	-ms-transition: 200ms ease-out;
	transition: 200ms ease-out;
}
.uploader .filelist .file-preview img {
	width: auto;
	height: 100%;
}
.uploader .filelist .file-preview span {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	top: 50%;
	left: 50%;
	position: absolute;
	display: block;
}
/*文件信息*/
.uploader .filelist .file-info {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap!important;
	flex-wrap: wrap!important;
	-ms-flex-line-pack: justify!important;
	align-content: space-between!important;
}
.uploader .filelist .info-name {
	font-size: 16px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-all;
}
.uploader .filelist .info-info {
	font-size: 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.uploader .filelist .info-size {
	font-size: 14px;
	height: 18px;
	line-height: 18px;
}
/*按钮*/
.uploader .filelist .info-info p {
	width: 18px;
	height: 18px;
	text-indent: -9999px;
	overflow: hidden;
	background: url(./icons.png) no-repeat;
	margin: 0px 0px 0px 10px;
	cursor: pointer;
}

.uploader .filelist .info-info .rotateLeft {
	background-position: 0 0;
}
.uploader .filelist .info-info .rotateRight {
	background-position: -24px 0;
}
.uploader .filelist .info-info .cancel {
	background-position: -48px 0;
}
/*进度条*/
.uploader .filelist .file-probar {
	font-size: 0;
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	height: 8px;
	overflow: hidden;
	z-index: 50;
}
.uploader .filelist .file-probar span {
	display: inline-block;
	overflow: hidden;
	width: 0;
	height: 100%;
	background: #1483d8 url(./progress.png) repeat-x;

	-webit-transition: width 200ms linear;
	-moz-transition: width 200ms linear;
	-o-transition: width 200ms linear;
	-ms-transition: width 200ms linear;
	transition: width 200ms linear;

	-webkit-animation: progressmove 2s linear infinite;
	-moz-animation: progressmove 2s linear infinite;
	-o-animation: progressmove 2s linear infinite;
	-ms-animation: progressmove 2s linear infinite;
	animation: progressmove 2s linear infinite;

	-webkit-transform: translateZ(0);
}

@-webkit-keyframes progressmove {
	0% {
	   background-position: 0 0;
	}
	100% {
	   background-position: 17px 0;
	}
}
@-moz-keyframes progressmove {
	0% {
	   background-position: 0 0;
	}
	100% {
	   background-position: 17px 0;
	}
}
@keyframes progressmove {
	0% {
	   background-position: 0 0;
	}
	100% {
	   background-position: 17px 0;
	}
}

.uploader .filelist .error {
	background: #f43838;
	color: #fff;
	padding: 5px 10px;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 16px;
	width: 100%;
	z-index: 100;
}

.uploader .filelist .success {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 40px;
	width: 40px;
	z-index: 200;
	background: url(./success.png) no-repeat right bottom;
}

.uploader .statusBar {
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	padding: 10px 10px;
	vertical-align: middle;
	position: relative;
}

.uploader .statusBar .progress {
	border: 1px solid #1483d8;
	width: 100%;
	background: #fff;
	height: 20px;
	position: relative;
	display: inline-block;
	text-align: center;
	line-height: 20px;
	color: #000;
	font-size: 0;
	position: relative;
}
.uploader .statusBar .progress span.percentage {
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
	background: #1483d8;
	position: absolute;
}
.uploader .statusBar .progress span.text {
	font-size: 16px;
	color: #900;
	z-index: 10;
	top: -1px;
	position: relative;
}

.uploader .statusBar .info {
	margin-bottom: 5px;
	display: block;
	font-size: 14px;
	color: #666666;
}

.uploader .statusBar .btns {
	line-height: 30px;
	text-align: right;
	display: block;
}
.uploader .filepicker2 {
	display: inline-block;
}
.uploader .filepicker2 .webuploader-pick {
	margin-right: 10px;
}

.uploader .statusBar .btns .webuploader-pick,
.uploader .statusBar .btns .uploadBtn,
.uploader .statusBar .btns .uploadBtn.state-uploading,
.uploader .statusBar .btns .uploadBtn.state-paused {
	background: #ffffff;
	border: 1px solid #cfcfcf;
	color: #565656;
	padding: 0 18px;
	display: inline-block;
	border-radius: 3px;
	cursor: pointer;
	font-size: 14px;
}
.uploader .statusBar .btns .webuploader-pick-hover,
.uploader .statusBar .btns .uploadBtn:hover,
.uploader .statusBar .btns .uploadBtn.state-uploading:hover,
.uploader .statusBar .btns .uploadBtn.state-paused:hover {
	background: #f0f0f0;
}

.uploader .statusBar .btns .uploadBtn {
	background: #00b7ee;
	color: #fff;
	border-color: transparent;
}
.uploader .statusBar .btns .uploadBtn:hover {
	background: #00a2d4;
}

.uploader .statusBar .btns .disabled {
	pointer-events: none;
	opacity: 0.6;
}