.uploadWarp
{
    moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}
.webuploader-pick {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #00b7ee;
  padding: 10px 15px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
}
.webuploader-pick-hover {
  background: #00a2d4;
}

.webuploader-pick-disable {
  opacity: 0.6;
  pointer-events:none;
} 
 
.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px,1px,1px,1px);
}

 
.uploadWarp{position: relative;}
.uploadWarp .queueList { 
    border: 2px dashed #ccc;
    border-radius: 8px;
    position: relative;
    padding:20px;
    min-height: 154px;
}
.small.uploadWarp .queueList
{
  border:1px solid #ccc;
  height:112px;
  min-height: 112px;
}
.uploadWarp .alert{
        position: absolute;top:5px;right:5px;
        padding:5px;
        line-height: 20px;
        padding-right: 10px;
}   
.uploadWarp .alert-dismissable .close, .uploadWarp .alert-dismissible .close
{
    right: -5px;
}
.uploadWarp .queueList.filled {
    padding: 17px;
    margin: 0;
}
.small.uploadWarp .queueList{padding:0;}
.uploadWarp .queueList.webuploader-dnd-over {
    border: 2px dashed #999999;
}

.uploadWarp p {margin: 0;}

.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px,1px,1px,1px);
}

.uploadWarp .placeholder { 
    padding: 40px 0;
    text-align: center; 
    color: #cccccc;
    font-size: 12px;
    position: relative;
}
.small.uploadWarp .placeholder
{
    padding: 0;
}

.uploadWarp .placeholder .webuploader-pick {
    font-size: 18px;
    background: #00b7ee;
    border-radius: 3px;
    line-height: 44px;
    padding: 0 30px;
    *width: 120px;
    color: #fff;
    display: inline-block;
    margin: 0 auto 5px auto;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small.uploadWarp .placeholder .webuploader-pick{
    font-size: 12px;
    line-height: 1.6em;
    padding:5px;
    background:#fff;
    color:#555;
    border:0 none; 
    margin-top: 40px;
    box-shadow: 0 0 0;
}
.small.uploadWarp .placeholder p{
  display: none
}
.uploadWarp .placeholder .webuploader-pick-hover {
    background: #00a2d4;
}

.uploadWarp .placeholder .flashTip {
    color: #666666;
    font-size: 12px;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
}
.uploadWarp .placeholder .flashTip a {
    color: #0785d1;
    text-decoration: none;
}
.uploadWarp .placeholder .flashTip a:hover {
    text-decoration: underline;
}

.uploadWarp .filelist {
    list-style: none;
    margin: 0;
    padding: 0;/* 
    margin-bottom: -8px; */
}

.uploadWarp .filelist:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    clear: both;
}

.uploadWarp .filelist li,.smallFilePicker,.smallFilePicker .webuploader-pick {
    width: 108px;
    height: 108px; 
    text-align: center;
    margin: 0 8px 8px 0;
    position: relative;
    display: inline;
    float: left;
    overflow: hidden;
    font-size: 12px;
}
.smallFilePicker .webuploader-pick{
    background:#fff;
    color:#00b7ee;
    border:1px solid #ddd; 
    overflow: hidden; 
}
.smallFilePicker .webuploader-pick i.iconfont
{
    font-size: 45px;
    line-height: 50px;
    top:15px;
}
.smallFilePicker .webuploader-pick span
{
    display: block;
    position: relative;
    top:10px;
}
.oneFilePicker{
    position: absolute;
    z-index: 1
}
.oneFilePicker .webuploader-pick{
    background:none;
    width:110px;height:110px;
    position: absolute; 
    color:#00b7ee;
    border:1px solid #ddd;
    line-height: 90px;
    overflow: hidden;
    font-size: 60px;
}
.small .oneFilePicker .webuploader-pick,.small.uploadWarp .filelist li.thumbnail
{
  border:0 none;
}
.uploadWarp .filelist li p.log {
    position: relative;
    top: -45px;
}

.uploadWarp .filelist li p.title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow : ellipsis;
    top: 5px;
    text-indent: 5px;
    text-align: left;
}

.uploadWarp .filelist li p.progress {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 8px;
    overflow: hidden;
    z-index: 50;
    margin: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: 0 0 0;
}
.uploadWarp .filelist li p.progress span {
    display: none;
    overflow: hidden;
    width: 0;
    height: 100%;
    background: #1483d8 url(../../img/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;
    }
}

.uploadWarp .filelist li p.imgWrap {
    position: relative;
    z-index: 2;
    line-height: 110px;
    vertical-align: middle;
    overflow: hidden;
    width: 110px;
    height: 110px;

    -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;
}

.uploadWarp .filelist li img {
    margin: auto;  
    position: absolute;  
    top: 0; left: 0; bottom: 0; right: 0;  
    /* max-width:100px; 
    max-height: 100px; */
}

.uploadWarp .filelist li p.error {
    background: #f43838;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 28px;
    line-height: 28px;
    width: 100%;
    z-index: 100;
}

.uploadWarp .filelist li .success {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 100%;
    z-index: 200;
    background: url(../../img/success.png) no-repeat right bottom;
}

.uploadWarp .filelist div.file-panel {
    position: absolute;
    height: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#80000000', endColorstr='#80000000')\0;
    background: rgba( 0, 0, 0, 0.5 );
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 300;
}

.uploadWarp .filelist div.file-panel span {
    width: 24px;
    height: 24px;
    display: inline;
    float: right;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../../img/icons.png) no-repeat;
    margin: 5px 1px 1px;
    cursor: pointer;
}

.uploadWarp .filelist div.file-panel span.rotateLeft {
    background-position: 0 -24px;
}
.uploadWarp .filelist div.file-panel span.rotateLeft:hover {
    background-position: 0 0;
}

.uploadWarp .filelist div.file-panel span.rotateRight {
    background-position: -24px -24px;
}
.uploadWarp .filelist div.file-panel span.rotateRight:hover {
    background-position: -24px 0;
}

.uploadWarp .filelist div.file-panel span.cancel {
    background-position: -48px -24px;
}
.uploadWarp .filelist div.file-panel span.cancel:hover {
    background-position: -48px 0;
}

.uploadWarp .statusBar {
    height: 63px; 
    padding: 0 20px;
    line-height: 63px;
    vertical-align: middle;
    right:0px;top:0;
    position: absolute;
}

.uploadWarp .statusBar .progress {
    border: 1px solid #1483d8;
    width: 198px;
    background: #fff;
    height: 18px;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    color: #6dbfff;
    position: relative;
    margin: 0 10px 0 0;
}
.uploadWarp .statusBar .progress span.percentage {
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #1483d8;
    position: absolute;
}
.uploadWarp .statusBar .progress span.text {
    position: relative;
    z-index: 10;
}

.uploadWarp .statusBar .info {
    display: inline-block;
    font-size: 14px;
    color: #666666;
}

.uploadWarp .statusBar .btns {
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 40px;
}

#filePicker2 {
    display: inline-block;
    float: left;
}

.uploadWarp .statusBar .btns .webuploader-pick,
.uploadWarp .statusBar .btns .uploadBtn,
.uploadWarp .statusBar .btns .uploadBtn.state-uploading,
.uploadWarp .statusBar .btns .uploadBtn.state-paused {
    background: #ffffff;
    border: 1px solid #cfcfcf;
    color: #565656;
    padding: 0 18px;
    display: inline-block;
    border-radius: 3px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    float: left;
}
.uploadWarp .statusBar .btns .webuploader-pick-hover,
.uploadWarp .statusBar .btns .uploadBtn:hover,
.uploadWarp .statusBar .btns .uploadBtn.state-uploading:hover,
.uploadWarp .statusBar .btns .uploadBtn.state-paused:hover {
    background: #f0f0f0;
}

.uploadWarp .statusBar .btns .uploadBtn {
    background: #00b7ee;
    color: #fff;
    border-color: transparent;
}
.uploadWarp .statusBar .btns .uploadBtn:hover {
    background: #00a2d4;
}

.uploadWarp .statusBar .btns .uploadBtn.disabled {
    pointer-events: none;
    opacity: 0.6;
}
.uploadWarp .filelist li.thumbnail
{
    position: relative;
    display: table-cell;
    vertical-align: middle;
    line-height: 100px;
    text-align: center;  
    cursor: move;
}
.thumbnail.del
{
    border:1px solid #f00;
    filter:alpha(opacity=50);
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.thumbnail .info
{
    position: absolute;
    background: rgba(0,0,0,0.6);
    bottom: 0;
    left:0;
    width: 100px;
    color:#fff;
    margin:4px;
    line-height: 20px;
    display: none
}
.thumbnail:hover .info
{
    display: block;
}
.thumbnail .uping{
    border-radius: 80px;
    width:70px;
    height:70px;
    left:15px;
    top:15px;
    line-height: 70px;
    display: block;
}

 
.webuploader-container {
	position: relative;  
}
.uploadWarp.upload-mini .webuploader-container { 
    height:100%;
    width:100%;
}
.uploadWarp.upload-mini .oneFilePicker
{
    height:0;
}

.webuploader-element-invisible {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px,1px,1px,1px);
}
.webuploader-pick {
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: #00b7ee;
	padding: 10px 15px;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	overflow: hidden;
}
.webuploader-pick-hover {
	background: #00a2d4;
}

.webuploader-pick-disable {
	opacity: 0.6;
	pointer-events:none;
}


/* 小控件补丁 */
.uploadWarp.upload-mini
{
    width:150px; 
    height:150px;
} 
.uploadWarp.upload-mini .queueList
{
    padding: 0;
    min-height: 0px;
    height:100%;
}
.uploadWarp.upload-mini .placeholder
{
    padding:0;
    height:100%;
    width:100%;
    overflow:hidden;
}
.uploadWarp.upload-mini .webuploader-pick
{
    background:none;
    color:#ddd;
    border:0 none;
    box-shadow: 0 0 0 ;
    width:auto;height:auto;
    padding:0;
    margin:0; 
    width:100%;
    height:100%;
    
}
.uploadWarp.upload-mini .webuploader-pick i.iconfont
{
    font-size: 60px; 
    top:50%;
    left:50%;
    margin-left: -30px;
    margin-top:-24px;
    position: absolute;
} 
.uploadWarp.upload-mini .webuploader-pick span{
    display: block;
    font-size: 13px;
    position: absolute;
    top:50%;
    width:100%;
    margin-top:10px;
    text-align: center;
}

.uploadWarp.upload-mini  .filelist li.thumbnail
{
    margin:-2px;
    width:auto;
    height:auto; 
    background: none;
    border:none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
} 
.uploadWarp .filelist li.thumbnail.error{
    line-height: 1.6em;
    border:1px solid #a00;
    color:#a00;
}
.uploadWarp.upload-mini .thumbnail .uping{
    left:50%;
    top:50%;
    margin-left:-35px; 
    margin-top:-35px; 
}

.uploadWarp.upload-mini .filelist li img {
      
     /*  max-width:140px; 
     max-height: 140px; */
}
.uploadWarp .thisisfile i.iconfont.fileicon
{
    font-size: 60px;
    line-height: 60px;
    top:5px;
}
.uploadWarp.upload-mini .thisisfile i.iconfont.fileicon
{
    font-size: 80px;
    line-height: 80px;
    top:20px;
}

.uploadWarp .thisisfile span
{
    display: block; 
    position: absolute;
    bottom:10px;
    width:102px;
    line-height: 1.2em;
    font-size: 12px;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.uploadWarp.upload-mini .thisisfile span
{ 
    width:142px; 
}

.uploadWarp .shade{position: absolute;left:0px;top:0px;width:100%;height:100%;background:#000;color:#fff;
      filter:alpha(opacity=0);  
      -moz-opacity:0;  
      -khtml-opacity: 0;  
      opacity: 0;  
    -webit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    -ms-transition:all 0.4s;
    transition:all 0.4s;
    z-index: 9
}
.uploadWarp .shade i{-webit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    -ms-transition:all 0.4s;
    transition:all 0.4s;
    cursor: pointer;
}
.uploadWarp .shade .wp-del{position: absolute;font-size:16px;top:0;left:0%;margin-left:-35px;height:30px;width:30px;border-radius: 30px;line-height: 30px;}
.uploadWarp .shade .wp-look,.uploadWarp .shade .wp-down{position: absolute;font-size:26px;top:50%;left:100%;margin-left:-15px;margin-top:-15px;height:30px;width:30px;border-radius: 30px;line-height: 30px;}
.uploadWarp .shade:hover{filter:alpha(opacity=70);  
      -moz-opacity:0.7;  
      -khtml-opacity: 0.7;  
      opacity: 0.7;  }
.uploadWarp .shade:hover i{left:50%;}
.uploadWarp .shade:hover i.wp-del{left:0;margin:0;} 