.wu-example {
    padding: 30px 0;
}

.webuploader-container {
    position: relative;
    float: left;
}

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

.webuploader-pick {
    display: inline-block;
    cursor: pointer;
    background: #fafafa;
    padding: 10px 15px;
    color: #666;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
    float: left;
    width: 112px;
    height: 112px;
    position: relative;
    border: 1px solid #d6dee3;
    overflow: hidden;
    padding-top: 60px;
}

.webuploader-pick-hover {
    background: #00A3C6;
    color: #fff;
}

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

/*demo样式*/

#picker {
    display: inline-block;
    line-height: 1.428571429;
    vertical-align: middle;
    margin: 0 12px 0 0;
    height: 130px;
}

#picker .webuploader-pick {
    padding: 6px 12px;
    display: block;
}

.picker .picker-add {
    width: 50px;
    margin: 10px auto;
}

.picker .picker-add img {
    width: 100%;
}

.picker .picker-word {
   font-size: 16px;
}

#uploader-demo .thumbnail {
    width: 150px;
    height: 150px;
    overflow: hidden;
}

#uploader-demo .thumbnail img {
    width: 100%;
}

.uploader-list {
    /*width: 100%;*/
    overflow: hidden;
    /* float: left; */
}

.file-item {
    float: left;
    position: relative;
    margin-right: 20px;
    padding: 5px;
    width: 112px;
    height: 112px;
    overflow:hidden;
}

.file-item .error {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    background: red;
    color: white;
    text-align: center;
    height: 20px;
    font-size: 14px;
    line-height: 23px;
}

.file-item .info {
    position: absolute;
    left: 4px;
    bottom: 4px;
    right: 4px;
    height: 20px;
    line-height: 20px;
    text-indent: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
    z-index: 10;
}

/* 上次成功*/

.upload-state-done:after {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
    position: absolute;
    bottom: 0;
    right: 4px;
    color: #4cae4c;
    z-index: 99;
}

/*进度条*/

.file-item .progress {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    left: 0;
    height: 5px;
    overflow: hidden;
    z-index: 15;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: rgba( 0, 0, 0, 0.6);
}

/*进度条*/

.file-item .progress span {
    display: block;
    overflow: hidden;
    width: 0;
    height: 100%;
    background: #d14 url(images/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);
}

/*取消 删除*/

.file-item 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.6);
    width: 100%;
    bottom: 0px;
    left: 0;
    overflow: hidden;
    z-index: 300;
    color: #fff;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    
}

.file-item div.file-panel span {
    width: 24px;
    height: 24px;
    display: inline;
    float: right;
    text-indent: -9999px;
    overflow: hidden;
    margin: 5px 1px 1px;
}

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

.file-item div.file-panel span.rotateLeft:hover {
    background-position: 0 0;
}

.file-item div.file-panel span.rotateRight {
    background-position: -24px -24px;
}

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

.file-item div.file-panel span.cancel {
    background-position: -48px -24px;
}

.file-item div.file-panel span.cancel:hover {
    background-position: -48px 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;
    }
}

a.travis {
    position: relative;
    top: -4px;
    right: 15px;
}