


.my-file-list-item {
    width: 615px;
    padding: 15px 0px 19px;
    border-bottom: 1px solid #f6f6f6
}

.my-file-list-item .file-info {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.my-file-list-item .file-info .file-name {
    width: 600px;
    font-size: 18px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding: 0 30px
}

.my-file-list-item .file-info .file-name :hover {

}

.my-file-list-item .file-info .file-name .file-icon {
    height: 22px;
    position: absolute;
    top: 0;
    left: 0
}

.my-file-list-item .file-info .file-name .file-icon.icon-word {
    width: 18px;
    background: url(../img/word.png) no-repeat 50%;
    background-size: 100%
}

.my-file-list-item .file-info .file-name .file-icon.icon-pdf {
    width: 18px;
    background: url(../img/pdf.png) no-repeat 50%;
    background-size: 100%
}

.my-file-list-item .file-info .file-name .file-icon.icon-zip {
    width: 20px;
    background: url(../img/zip.png) no-repeat 50%;
    background-size: 100%
}

.my-file-list-item .file-info .file-name .file-icon.icon-folder {
    width: 20px;
    background: url(../img/folder.png) no-repeat 50%;
    background-size: 100%
}

.my-file-list-item .file-other {
    margin-top: 10px;
    padding: 0 30px
}

.my-file-list-item .file-other .file-tag {
    padding: 4px 6px 5px 9px;
    margin-right: 10px;
    background: #f8f8f8;
    border-radius: 2px;
    font-weight: 400;
    font-size: 12px;
    color: #666
}

.my-file-list-item .file-other .file-date,.my-file-list-item .file-other .file-download,.my-file-list-item .file-other .file-num,.my-file-list-item .file-other .file-preview,.my-file-list-item .file-other .file-size {
    font-weight: 400;
    font-size: 12px;
    color: #999
}

.my-file-list-item .file-other .file-preview {
    padding-left: 26px;
    position: relative
}

.my-file-list-item .file-other .file-preview:before {
    width: 16px;
    height: 16px;
    content: "";
    background: url(../img/icon_preview.png) no-repeat 50%;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.my-file-list-item .file-other .file-download {
    padding-left: 20px;
    position: relative
}

.my-file-list-item .file-other .file-download:before {
    width: 16px;
    height: 16px;
    content: "";
    background: url(../img/icon_download.png) no-repeat 50%;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.my-file-list-item .file-other .file-slider {
    display: inline-block;
    width: 1px;
    height: 10px;
    margin: 0 8px;
    background: #dfdfdf
}

.my-file-list-item .folder-files-list {
    margin-top: 13px;
    margin-left: 0px;
    padding: 0 30px
}

.my-file-list-item .folder-files-list-item {
    padding: 11px 5px 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 565px
}


.my-file-list-item .folder-files-list-item:nth-child(odd) {
    background: #f9f9f9
}

.my-file-list-item .folder-files-list-item:hover {
    background: #f2fafa
}

.my-file-list-item .file-adv {
    width: 840px;
    height: 95px;
    margin: 20px -20px 0;
    position: relative
}

.my-file-list-item .file-adv:after {
    display: block;
    width: 45px;
    height: 20px;
    content: "广告";
    background: rgba(0,0,0,.6);
    border-radius: 0 0 0 6px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10
}

.my-file-list-item .file-adv img {
    width: 100%;
    height: 100%
}

.folder-files-list .folder-files-list-item {
  display: none;
}

.folder-files-list.is-expanded .folder-files-list-item {
  display: block;
}

.folder-files-list .el-checkbox__inner {
    width: 20px;
    height: 20px;
    background: hsla(0,0%,97.6%,0);
    border-radius: 2px;
    border: 1px solid #c9c9c9
}

.folder-files-list .el-checkbox__inner:after {
    border-color: #4ab83e;
    width: 5px;
    height: 10px;
    top: 2px;
    left: 6px
}

.folder-files-list .el-checkbox__label {
    max-width: 400px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    line-height: 39px;
    vertical-align: middle;
    white-space: nowrap;      /* 保证文本不会换行 */
    overflow: hidden;         /* 超出容器部分隐藏 */
    text-overflow: ellipsis  /* 超出部分显示为省略号 */
}

.folder-files-list .is-checked .el-checkbox__inner {
    border: 1px solid #4ab83e
}


.folder-files-list .el-checkbox__inner {
        display: inline-block;
        position: relative;
        border: 1px solid #dcdfe6;
        border-radius: 2px;
        box-sizing: border-box;
        width: 20px;
        height: 20px;
        background-color: #fff;
        z-index: 1;
        transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)
}


.el-checkbox__inner:hover {
    border-color: #409eff
}

.el-checkbox__inner:after {
    box-sizing: content-box;
    content: "";
    border: 1px solid #fff;
    border-left: 0;
    border-top: 0;
    height: 7px;
    left: 4px;
    position: absolute;
    top: 1px;
    transform: rotate(45deg) scaleY(0);
    width: 3px;
    transition: transform .15s ease-in .05s;
    transform-origin: center
}

.el-input__inner::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

.el-checkbox,.el-checkbox__input {
    display: inline-block;
    position: relative
}

.el-checkbox-button__inner,.el-checkbox__input {
    white-space: nowrap;
    vertical-align: middle;
    outline: 0
}

.el-checkbox {
    color: #606266;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 30px
}

.el-checkbox.is-bordered {
    padding: 9px 20px 9px 10px;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    line-height: normal;
    height: 40px
}

.el-checkbox.is-bordered.is-checked {
    border-color: #409eff
}

.el-checkbox.is-bordered.is-disabled {
    border-color: #ebeef5;
    cursor: not-allowed
}

.el-checkbox.is-bordered+.el-checkbox.is-bordered {
    margin-left: 10px
}

.el-checkbox.is-bordered.el-checkbox--medium {
    padding: 7px 20px 7px 10px;
    border-radius: 4px;
    height: 36px
}

.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label {
    line-height: 17px;
    font-size: 14px
}

.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner {
    height: 14px;
    width: 14px
}

.el-checkbox.is-bordered.el-checkbox--small {
    padding: 5px 15px 5px 10px;
    border-radius: 3px;
    height: 32px
}

.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label {
    line-height: 15px;
    font-size: 12px
}

.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner {
    height: 12px;
    width: 12px
}

.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner:after {
    height: 6px;
    width: 2px
}

.el-checkbox.is-bordered.el-checkbox--mini {
    padding: 3px 15px 3px 10px;
    border-radius: 3px;
    height: 28px
}

.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label {
    line-height: 12px;
    font-size: 12px
}

.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner {
    height: 12px;
    width: 12px
}

.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner:after {
    height: 6px;
    width: 2px
}


.el-checkbox__input {
    cursor: pointer;
    line-height: 1
}

.el-checkbox__input.is-disabled .el-checkbox__inner {
    background-color: #edf2fc;
    border-color: #dcdfe6;
    cursor: not-allowed
}

.el-checkbox__input.is-disabled .el-checkbox__inner:after {
    cursor: not-allowed;
    border-color: #c0c4cc
}

.el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label {
    cursor: not-allowed
}

.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
    background-color: #f2f6fc;
    border-color: #dcdfe6
}

.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner:after {
    border-color: #c0c4cc
}

.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner {
    background-color: #f2f6fc;
    border-color: #dcdfe6
}

.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner:before {
    background-color: #c0c4cc;
    border-color: #c0c4cc
}


.el-checkbox__input.is-disabled+span.el-checkbox__label {
    color: #c0c4cc;
    cursor: not-allowed
}

.el-checkbox__input.is-checked .el-checkbox__inner:after {
    transform: rotate(45deg) scaleY(1)
}

.el-checkbox__input.is-checked+.el-checkbox__label {
    color: #409eff
}

.el-checkbox__input.is-focus .el-checkbox__inner {
    border-color: #409eff
}

.el-checkbox__input.is-indeterminate .el-checkbox__inner:before {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    height: 2px;
    transform: scale(.5);
    left: 0;
    right: 0;
    top: 5px
}

.el-checkbox__input.is-indeterminate .el-checkbox__inner:after {
    display: none
}

.el-checkbox__original {
    opacity: 0;
    outline: 0;
    position: absolute;
    margin: 0;
    width: 0;
    height: 0;
    z-index: -1
}

.el-checkbox-button,.el-checkbox-button__inner {
    display: inline-block;
    position: relative
}

.el-checkbox__label {
    display: inline-block;
    padding-left: 10px;
    line-height: 19px;
    font-size: 14px
}

.el-checkbox:last-of-type {
    margin-right: 0
}

.el-checkbox-button__inner {
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-left: 0;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0
}

.el-checkbox-button__inner.is-round {
    padding: 12px 20px
}

.el-checkbox-button__inner:hover {
    color: #409eff
}

.el-checkbox-button__inner [class*=el-icon-] {
    line-height: .9
}

.el-checkbox-button__inner [class*=el-icon-]+span {
    margin-left: 5px
}

.el-checkbox-button__original {
    opacity: 0;
    outline: 0;
    position: absolute;
    margin: 0;
    z-index: -1
}

.el-checkbox-button.is-checked .el-checkbox-button__inner {
    color: #fff;
    background-color: #409eff;
    border-color: #409eff;
    box-shadow: -1px 0 0 0 #8cc5ff
}

.el-checkbox-button.is-checked:first-child .el-checkbox-button__inner {
    border-left-color: #409eff
}

.el-checkbox-button.is-disabled .el-checkbox-button__inner {
    color: #c0c4cc;
    cursor: not-allowed;
    background-image: none;
    background-color: #fff;
    border-color: #ebeef5;
    box-shadow: none
}

.el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner {
    border-left-color: #ebeef5
}

.el-checkbox-button:first-child .el-checkbox-button__inner {
    border-left: 1px solid #dcdfe6;
    border-radius: 4px 0 0 4px;
    box-shadow: none!important
}

.el-checkbox-button.is-focus .el-checkbox-button__inner {
    border-color: #409eff
}

.el-checkbox-button:last-child .el-checkbox-button__inner {
    border-radius: 0 4px 4px 0
}

.el-checkbox-button--medium .el-checkbox-button__inner {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0
}

.el-checkbox-button--medium .el-checkbox-button__inner.is-round {
    padding: 10px 20px
}

.el-checkbox-button--small .el-checkbox-button__inner {
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 0
}

.el-checkbox-button--small .el-checkbox-button__inner.is-round {
    padding: 9px 15px
}

.el-checkbox-button--mini .el-checkbox-button__inner {
    padding: 7px 15px;
    font-size: 12px;
    border-radius: 0
}

.el-checkbox-button--mini .el-checkbox-button__inner.is-round {
    padding: 7px 15px
}



.my-file-list-item .download-btn{
    white-space: nowrap;      /* 保证文本不会换行 */
    display: inline-block;
    height: 30px;
    padding: 0 26px;
    border-radius: 16px;
    border: 1px solid #4ab83e;
    font-weight: 400;
    font-size: 14px;
    color: #4ab83e;
    text-align: center;
    line-height: 32px;
    text-decoration: none;
    cursor: pointer;
    outline: none
}
.my-file-list-item .download-btn:hover {
    background: #4ab83e;
    color: #fff;
    text-decoration: none
}


.my-file-list-item .download_btn_folder{
    white-space: nowrap;      /* 保证文本不会换行 */
    display: inline-block;
    height: 30px;
    padding: 0 26px;
    border-radius: 16px;
    border: 1px solid #4ab83e;
    font-weight: 400;
    font-size: 14px;
    color: #4ab83e;
    text-align: center;
    line-height: 32px;
    text-decoration: none;
    cursor: pointer;
    outline: none
}

.my-file-list-item .download_btn_folder{
    display: none
}

.my-file-list-item .download_btn_folder:hover {
    background: #4ab83e;
    color: #fff;
    text-decoration: none
}



