* {
    box-sizing: border-box;
}


.site-block {
    background-color: #ffffff;
}

.site-block .site-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}

.site-block .site-block-header .site-block-title {
    font-size: 1.14em;
    font-weight: 400;
    padding: 10px;
    border-bottom: 2px solid transparent;
}

.site-block .site-block-header.green .site-block-title {
    color: lightseagreen;
    position: relative;
    border-bottom: 2px solid lightseagreen;
}

.site-block .site-block-header.green .site-block-title::after {
    position: absolute;
    content: ' ';
    left: calc(50% - 5px);
    bottom: 0;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid lightseagreen;
}

.site-block .site-block-header .site-block-link {
    color: grey;
    padding-right: 10px;
}

.site-block .site-block-body {

}

.new-doc-list {
    padding: 10px;
}

.new-doc-list .doc-item {
    display: block;
}

.new-doc-list .doc-item + .doc-item {
    border-top: 1px solid #eeeeee;
}

.new-doc-list .doc-item .doc-title {
    display: flex;
    align-items: center;
    line-height: 1.6em;
    padding: 5px 0;
}

.new-doc-list .doc-item .doc-title i {
    margin-right: 5px;
}

.new-doc-list .doc-item .doc-title span {
    width: calc(100% - 20px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.new-doc-list .doc-item .doc-desc {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: grey;
}

.document-tree {

}

.document-tree .document-tree-title {
    width: 100%;
    background-color: lightseagreen;
    color: #FFFFFF;
    padding: 0 10px;
    height: 3.14em;
    display: flex;
    align-items: center;
}

.document-tree .document-tree-content {
    background-color: #FFFFFF;
}

.document-tree .document-tree-content .document-tree-item {
    padding: 10px;
    color: #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.document-tree .document-tree-content .document-tree-item.selected {
    color: lightseagreen;
}

.document-tree .document-tree-content .document-tree-item:nth-child(n+2) {
    border-top: 1px solid #eeeeee;
}

.document-list {
    background-color: #FFFFFF;
}

.document-list .document-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
    min-height: 3.14em;
}

.document-list .document-list-body {
    padding: 0 10px 10px 10px;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.document-list .document-list-footer {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

.document-info {
    min-height: calc(100vh - 210px);
    background-color: #FFFFFF;
}

.document-info .document-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
    min-height: 3.14em;
}

.document-info .document-info-body {
    padding: 10px;
}

.document-info .document-info-footer {
    border-top: 1px solid #eeeeee;
}

@media screen and (max-width: 768px) {
    .document-list .document-list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .document-list .document-list-header .document-list-search {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {

}

@media screen and (min-width: 992px) and (max-width: 1200px) {

}

@media screen and (min-width: 1200px) {

}

.hover-wrap {

}

.hover-wrap .hover-bg {
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.hover-wrap:hover .hover-bg {
    background-size: 120% !important;
}

.hover-wrap:hover .hover-title, .hover-title:hover {
    color: lightseagreen;
}

i[class*="wenku-icon-"] {
    width: 1em;
    height: 1em;
    display: inline-block;
    line-height: inherit;
    background-size: cover;
}

.wenku-icon-word {
    background-image: url("/static/images/icon-word.png");
}

.wenku-icon-ppt {
    background-image: url("/static/images/icon-ppt.png");
}

.wenku-icon-pdf {
    background-image: url("/static/images/icon-pdf.png");
}

.wenku-icon-excel {
    background-image: url("/static/images/icon-excel.png");
}

.wenku-icon-txt {
    background-image: url("/static/images/icon-txt.png");
}

.wenku-icon-image {
    background-image: url("/static/images/icon-image.png");
}

.wenku-icon-video {
    background-image: url("/static/images/icon-video.png");
}

.ad-list {
    width: 100%;
}

.ad-list .ad-item {
    display: block;
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid #d3e0e9;
    border-bottom: 1px solid #d3e0e9;
    transition: color .1s ease;
}

.ad-list .ad-item .ad-img {
    width: 100%;
    height: auto;
}
