﻿/*主体布局*/
. {
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    /*overflow-x: hidden;*/ /*导致手机屏幕不能滚动*/
    /*height: 100%;*/
    /*overflow: hidden;*/
}

.htmlhome {
    background-color: #f1f1f1;
}

body {
    height: 100%;
    font: 14px/1.8 Tahoma,Geneva, "\5B8B\4F53", "icologo";
    overflow: hidden;
    margin: 0; /*color: #666;*/
}

#mainBody {
    /*border: thin solid blue;*/
    min-height: 100%;
    height: auto !important;
    position: fixed;
    width: 100%;
    text-align: center;
}

#mainBodyHome {
    /*border: thin solid blue;*/
    min-height: 100%;
    height: auto !important;
    position: relative;
    width: 100%;
    text-align: left;
}

#body {
    /*border: 2px solid blue;*/
    margin: 0 auto;
    text-align: center;
    overflow-y: scroll;
    overflow-x: hidden;
}

    #body .files {
        margin-top: 83px;
    }

#bodyHome {
    /*border: thin solid pink;*/
    margin: 0 auto;
    padding-bottom: 50px; /*大于等于页脚的高度 + 50*/
}

#mainBodyViewFile {
    padding: 20px 0 0 100px;
}

#headViewFile {
    width: 100%;
    height: 140px;
    text-align: center;
    color: #666666;
    background-color: #424242;
    padding: 20px 0 30px 0;
}

    #headViewFile:hover {
        color: #dd0000;
        -webkit-transition: color .3s linear, background-color .3s linear;
        transition: color .3s linear, background-color .3s linear;
    }

/*主体控件*/
a {
    text-decoration: none;
    color: dodgerblue;
}

    a:hover {
        text-decoration: underline;
    }

table {
    margin-bottom: 10px;
    border-collapse: collapse;
    display: table;
}

td,
th {
    padding: 5px 10px;
    border: 1px solid #DDD;
}

th {
    border-top: 1px solid #BBB;
    background-color: #F7F7F7;
}

td p {
    margin: 0;
    padding: 0;
}

table.syntaxhighlighter {
    border-collapse: initial;
}

    table.syntaxhighlighter td {
        padding: 0;
        border: 0;
    }
/* -------------------------------------------------------------------------------- */
/*	LeftMenu
/* -------------------------------------------------------------------------------- */
.leftMenu {
    /*border: thin solid blue;*/
    position: absolute;
    width: 73px;
    height: 100%;
    background-color: #f1f1f1; /*#6CD3C0;*/
    padding: 12px 0;
    text-align: center;
}

    .leftMenu img {
        width: 36px;
        border-radius: 20px;
        border: 1px solid #f1f1f1;
        cursor: pointer;
    }

    .leftMenu .action img:hover {
        border: 1px solid #6CD3C0;
        background: #fff;
        -webkit-transition: color .3s linear, background-color .3s linear;
        transition: color .3s linear, background-color .3s linear;
    }

    .leftMenu .lmlogo img {
        width: 42px;
        margin-bottom: 30px;
    }

    .leftMenu .lmadd img {
        margin-bottom: 150px;
    }

    .leftMenu .lmaccount {
        position: absolute;
        bottom: 25px;
        width: 100%;
        padding: 15px 0 5px 0;
        border-top: 1px solid #e1e1e1;
    }

        .leftMenu .lmaccount .upmenu {
            bottom: 0;
            left: 60px;
            display: none;
        }

/* -------------------------------------------------------------------------------- */
/*	HeadSearch
/* -------------------------------------------------------------------------------- */
.headSearch {
    /*border: 1px solid blue;*/
    position: fixed;
    top: 0px;
    padding-top: 10px;
    z-index: 11; /*搜索框，高于主体，低于菜单主体、预览弹出层*/
    margin: 0 auto;
    background-color: #fff; /*transition: width .2s ease-in-out, left .2s ease-in-out;*/
}

    .headSearch a {
        text-decoration: none;
    }

.whiteAreaHead {
    display: none;
}

.logo {
    padding-left: 10px;
    font-size: 22px;
}

    .logo a {
        color: #2d3642;
    }

.menu-logo a {
    font-size: 18px;
    color: #fff;
    line-height: 12px;
}

.search {
    /*border: 1px solid green;*/
    padding-left: 10px;
    width: 585px;
    height: 31px;
    border-bottom: 1px solid #a4a4a4; /*border-radius: 3px;*/
}

    .search table {
        margin: 0;
        border-collapse: initial;
    }

    .search td {
        padding: 0;
        border: 0;
    }


    .search input:focus {
        outline: none;
    }

.searchInput {
    border: 0px;
    width: 551px;
    height: 25px;
    font-size: 15px;
    padding-left: 7px;
    background-color: transparent;
}

.searchSubmit {
    width: 30px;
    height: 30px;
    font-size: 15px;
    border: 0;
    background: white url('../images/find.gif') no-repeat 3px 6px;
    cursor: pointer;
    border-radius: 9999px;
    background-color: transparent;
}

/* -------------------------------------------------------------------------------- */
/*	主体
/* -------------------------------------------------------------------------------- */
#tableMain {
    /*border: 1px solid red;*/
    position: relative;
    margin: 0 auto;
    text-align: left;
    width: 600px;
    vertical-align: top;
    left: 0;
    z-index: 10; /*主体，低于搜索框、菜单主体*/
    transition: width .2s ease-in-out, left .2s ease-in-out;
}

#whiteArea {
    /*border: 1px solid red;*/
    text-align: left;
    vertical-align: top;
    z-index: 14; /*预览弹出层，高于菜单，低于UEditor*/
    position: absolute;
    top: 0;
    left: 673px;
    background: #fafafa;
}

    #whiteArea img {
        max-width: 90%;
        border-radius: 3px;
    }

.whiteareainner {
    /*border: 1px solid #EEE;*/ /*border-radius: 3px;*/
    width: 100%;
}

    .whiteareainner:hover {
        /*border-radius: 3px;*/
        background: #fff;
        -webkit-transition: color .3s linear, background-color .3s linear;
        transition: color .3s linear, background-color .3s linear;
    }

    .whiteareainner .header {
        /*padding-bottom: 2%;*/
        border-bottom: 1px solid #EEE;
        word-break: break-all;
        margin-left: 25px;
    }

        .whiteareainner .header .title {
            font-size: 16px;
        }

        .whiteareainner .header .time {
            color: #555555;
            background: url('../images/time.gif') no-repeat left;
            padding: 0 10px 0 15px;
        }

        .whiteareainner .header .close {
            display: none;
            cursor: pointer;
            height: 43px;
            width: 43px;
            position: absolute;
            top: 0;
            right: 0;
        }

            .whiteareainner .header .close::before,
            .whiteareainner .header .close::after {
                position: absolute;
                content: ' ';
                background-color: rgb(108, 211, 192);
                top: 12px;
                left: 20px;
                width: 1px;
                height: 20px;
                border: 1px solid gray;
            }

            .whiteareainner .header .close::before {
                transform: rotate(45deg);
            }

            .whiteareainner .header .close::after {
                transform: rotate(-45deg);
            }

    .whiteareainner #noteUpdate, .whiteareainner #viewtext {
        /*word-break: break-all;*/
    }

    .whiteareainner #viewtext {
        padding: 0 15px;
        overflow-x: hidden;
    }

        .whiteareainner #noteUpdate ol, .whiteareainner #viewtext ol {
            max-width: 91%;
        }

.footMileStone {
    position: absolute;
    left: 100px;
    text-align: left;
    font-size: 14px;
}

    .footMileStone h3 {
        color: #000;
    }

    .footMileStone p {
        border-bottom: 1px solid #EEE;
    }

        .footMileStone p:hover {
            padding-left: 5px;
            -webkit-transition: color .5s linear, background-color .5s linear;
            transition: color .5s linear, background-color .5s linear;
        }

    .footMileStone a {
        color: #6cd3c0;
    }

.footLogo {
    /*border: thin solid pink;*/
    padding: 20px 0 10px 0;
    text-align: center;
    color: #777;
}

    .footLogo a {
        text-decoration: none;
        color: #777777;
        font-size: 22px;
    }

    .footLogo span {
        margin-left: 20px;
    }

        .footLogo span a {
            font-size: 14px;
            margin-left: 10px;
        }

.footLogOn a {
    font-size: 13px;
}

/* -------------------------------------------------------------------------------- */
/*	FileTerm
/* -------------------------------------------------------------------------------- */
.FileTerm {
    /*border: 1px solid red;*/
    /*border-radius: 5px;*/
    margin: 0 5px 5px 0;
    padding: 2%;
}

.FileTermConst {
    padding: 2%;
    margin-top: 80px;
}

    .FileTermConst input, select {
        color: #444;
        background: #FAFAFA no-repeat 96% center;
        background-size: 20px auto;
        font-family: 'Lato', 'Helvetica Neue', sans-serif;
        border: 1px solid #EEE;
        border-radius: 3px;
        padding: 1%;
        width: 75%;
        font-size: 20px;
    }

    .FileTermConst select {
        width: 77.5%;
        color: #999;
    }

    /*.FileTermConst select {
        color: #444;
        font-size: 1em;
        background: #FAFAFA no-repeat 96% center;
        background-size: 20px auto;
        font-family: 'Lato', 'Helvetica Neue', sans-serif;
        border: 1px solid #EEE;
        border-radius: 3px;
        padding: 1%;
    }*/

    .FileTermConst input[type="button"] {
        width: auto;
        max-width: none;
        padding: 10px 16px;
        margin-top: 20px;
        border: none;
        background: #212831;
        color: #FFF;
        font-size: 0.925em;
        border-radius: 3px;
    }

    .FileTermConst input[type="checkbox"] {
        width: auto;
    }

    .FileTermConst input[type="submit"] {
        width: auto;
        max-width: none;
        padding: 10px 16px;
        margin-top: 20px;
        border: none;
        background: #212831;
        color: #FFF;
        font-size: 0.925em;
        border-radius: 3px;
    }

    .FileTermConst input[type="button"]:hover {
        cursor: pointer;
        background-color: #6cd3c0;
        color: #FFF;
        -webkit-transition: color .3s linear, background-color .3s linear;
        transition: color .3s linear, background-color .3s linear;
    }

    .FileTermConst input[type="submit"]:hover {
        cursor: pointer;
        background-color: #6cd3c0;
        color: #FFF;
        -webkit-transition: color .3s linear, background-color .3s linear;
        transition: color .3s linear, background-color .3s linear;
    }

.FileTerm_Title {
    font-size: 25px;
    border-bottom: 1px solid #ccc;
}

    .FileTerm_Title a {
        color: #2d3642;
        text-decoration: none;
    }

        .FileTerm_Title a:hover {
            color: #6cd3c0;
            -webkit-transition: color .1s linear, background-color .1s linear;
            transition: color .1s linear, background-color .1s linear;
        }

.FileTerm_Properties {
    color: #999;
    display: inline-block;
}

.filetermdescribeshort {
    color: #999;
}

.filetermtiles {
    display: block;
    padding-bottom: 15px;
}

    .filetermtiles .tile {
        position: relative;
        display: inline-block;
        background-color: #FAFAFA;
        margin: 0 0 7px 3px;
        width: 31%;
        height: 220px;
        border: 1px solid #EEE;
        border-radius: 3px;
        vertical-align: top;
    }

        .filetermtiles .tile:hover {
            filter: alpha(opacity:70);
            opacity: 0.7;
            -webkit-transition: filter .2s linear, opacity .2s linear;
            transition: filter .2s linear, opacity .2s linear;
        }

        .filetermtiles .tile a {
            color: #2d3642;
            cursor: pointer;
        }

        .filetermtiles .tile .half {
            width: 40%;
            margin: 20% 30%;
        }

        .filetermtiles .tile span {
            background-color: #fff;
            display: block;
            word-break: break-all;
            width: 87%;
            padding: 3% 7%;
            position: absolute;
            bottom: 0px;
        }

        .filetermtiles .tile div.thumbnail {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            height: 82%;
            cursor: pointer;
        }

            .filetermtiles .tile div.thumbnail:hover {
                background-size: contain;
                /*           -webkit-transition: filter .3s linear, background-size .3s linear;
                transition: filter .3s linear, background-size .3s linear;*/
            }

        .filetermtiles .tile div.sys {
            background-repeat: no-repeat;
            background-size: 40% auto;
            background-position: center;
            height: 82%;
            cursor: pointer;
        }

    .filetermtiles img {
        width: 99%;
        max-height: 100%;
        border-radius: 3px;
        cursor: pointer;
    }

.tilelink img {
    width: 15px;
    visibility: hidden;
}

.FileTerm_Describe {
    display: block;
    font-size: 16px;
    color: #555555;
    word-break: break-all;
}

.FileTermDetail_Describe {
    /*font-weight: bold;*/
    font-size: 25px;
    word-break: break-all;
}

.notice {
    background-color: #212831;
    margin-top: 5px;
}

    .notice:hover {
        background-color: #212831;
    }

    .notice .FileTerm_Title {
        font-size: 20px;
        background: #414954;
        margin: 25px;
        padding: 10px;
        color: #fafafa;
        border-radius: 5px;
        border: 0;
    }

    .notice .FileTerm_Describe .time {
        font-size: 12px;
    }

    .notice .FileTerm_Title a {
        text-decoration: none;
        color: #fafafa;
    }

        .notice .FileTerm_Title a:hover {
            color: #fafafa;
        }

    .notice .FileTerm_Describe {
        display: block;
        color: #fafafa;
        word-break: break-all;
        font-size: 15px;
        margin: 25px;
    }

        .notice .FileTerm_Describe a {
            text-decoration: none;
            color: #fafafa;
        }

            .notice .FileTerm_Describe a:hover {
                text-decoration: underline;
            }

.fileItems {
    display: none;
}

.fileItemTable {
}

    .fileItemTable td {
        height: 50px;
    }

.fileno {
    position: absolute;
    left: 80px; /*margin-top: 8px;*/
}

.easyui-tree {
    text-align: left;
    font-size: 15px;
    margin: 10px 0;
}

    .easyui-tree li {
    }

        .easyui-tree li span {
            margin-top: 3px;
        }

    .easyui-tree .c0 {
        margin-top: 3px;
        display: inline-block;
        width: 40px;
        line-height: 1px;
        border-radius: 10px;
    }

    .easyui-tree img {
        vertical-align: middle;
        margin-right: 10px;
        width: 40px;
        border-radius: 10px;
        cursor: pointer;
    }

    .easyui-tree .c1 {
        color: #dd0000;
        text-decoration: none;
        max-width: 65%;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }

    .easyui-tree .c2 {
        display: inline-block;
        position: absolute;
        /*top: 8px;*/
        left: 80%;
        margin-top: 20px;
    }

        .easyui-tree .c2 img {
            width: 20px;
        }

#uploadContent {
    position: fixed;
    top: 0px;
    left: 0px;
    background: #fff; /*opacity: 0.9;     filter: alpha(opacity=90);*/ /*border: 1px solid green;*/
    width: 100%;
    height: 100%;
    z-index: 1002; /*上传附件弹出层，高于预览区域*/ /*display: none;*/
    visibility: hidden;
    text-align: center;
    transition: visibility .4s;
}

#uploading {
    margin-left: 20px;
}

.addtablecontent {
    /*border: 1px solid red;*/
    width: 600px;
    margin: 0 auto;
    margin-top: 20%;
}

    .addtablecontent input[type=button] {
        padding-left: 70px;
        padding-right: 70px;
    }

    .addtablecontent input[value=取消] {
        background-color: #dddddd;
        color: #444;
    }

/*textarea {
    font-weight: bold;
    border: 1px solid;
    border-color: #CECECF;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
    background-image: url('../images/notepad_bg.gif');
    background-repeat: repeat;
    font-size: 18px;
    font-family: 宋体, Arial, Helvetica, sans-serif;
    line-height: 26px;
}*/

/*textarea:focus {
        outline: none;
        border-color: #dd0000;
        box-shadow: 0 0 5px #dd0000,inset 1px 1px 2px rgba(0,0,0,0.1);
    }*/

#noteView {
    height: 800px;
}

#noteUpload {
    /*height: 500px;*/ /*width: 96%;*/
}

#uploadText {
}

#noteViewBody {
    overflow-y: hidden;
}

#noteViewFullScreen {
    height: 100%;
    width: 100%;
}

.userlink {
    display: inline;
}

    .userlink a {
        color: #555555;
        text-decoration: none;
    }

        .userlink a:hover {
            /*color: #dd0000;*/
        }

.useraccountheadimg img {
    width: 100px;
    height: 100px;
    border: 0;
    border-radius: 3px;
}

.care {
    cursor: pointer;
    border: 0;
    width: 12px;
    margin-right: 10px;
}

.filetermviewlink {
    position: relative;
    top: -3px;
    left: 7px;
    z-index: 1001;
    background: #2d3642;
    padding: 2%;
    width: 93%;
    border: 1px solid #2d3642;
    border-radius: 3px;
}

    .filetermviewlink input {
        width: auto;
        max-width: none;
        padding: 10px 16px;
        margin: 5px 0 0 0;
        border: none;
        background: #212831;
        color: #FFF;
        font-size: 0.925em;
        border-radius: 3px;
        display: none;
    }

        .filetermviewlink input:hover {
            cursor: pointer;
            background-color: #6cd3c0;
            color: #FFF;
            -webkit-transition: color .3s linear, background-color .3s linear;
            transition: color .3s linear, background-color .3s linear;
        }

    .filetermviewlink textarea {
        color: #444;
        font-size: 1em;
        background: #FAFAFA no-repeat 96% center;
        background-size: 20px auto;
        font-family: 'Lato', 'Helvetica Neue', sans-serif;
        border: 1px solid #EEE;
        border-radius: 3px;
        padding: 2%;
        width: 96%;
        height: 18px;
        resize: vertical;
        margin: 0;
    }

.filetermcomments {
    position: relative;
    top: -5px;
    z-index: 1000;
    margin-top: -18px;
    margin-bottom: 20px;
    padding: 2%;
}

    .filetermcomments textarea {
        color: #444;
        font-size: 1em;
        background: #FAFAFA no-repeat 96% center;
        background-size: 20px auto;
        font-family: 'Lato', 'Helvetica Neue', sans-serif;
        border: 1px solid #EEE;
        border-radius: 3px;
        padding: 2%;
        width: 95%;
        height: 60px;
        resize: vertical;
        margin: 30px 0 0 0;
    }

    .filetermcomments input {
        margin: 5px 0 0 0;
        width: auto;
        max-width: none;
        padding: 10px 16px;
        border: none;
        background: #212831;
        color: #FFF;
        font-size: 0.925em;
        border-radius: 3px;
    }

        .filetermcomments input:hover {
            cursor: pointer;
            background-color: #6cd3c0;
            color: #FFF;
            -webkit-transition: color .3s linear, background-color .3s linear;
            transition: color .3s linear, background-color .3s linear;
        }

    .filetermcomments .level0 {
        font-family: 'Raleway', 'Helvetica Neue', sans-serif;
        color: #666;
        font-size: 15px;
        margin: 10px 0 0 -5%;
    }

    .filetermcomments .level {
        padding-top: 10px;
        margin: 0 0 0 5%;
        border-top: 1px solid #EEE;
        width: 95%;
    }

    .filetermcomments .operation a {
        color: gray;
        text-decoration: none;
    }

        .filetermcomments .operation a:hover {
            text-decoration: underline;
        }

.commentsheadimg {
    text-decoration: none;
}

.filetermcomments img {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 3px;
}

.filetermcomments .username {
    display: block;
    margin: -54px 0 0 50px;
}

.filetermcomments .content {
    display: block;
    margin-left: 50px;
    word-break: break-all;
}

.filetermcomments .operation {
    display: block;
    margin-left: 50px;
}

.level .comments {
    display: none;
    margin-left: 50px;
}

.commenttimes {
    background: url('../images/comment.gif') no-repeat left;
    padding: 0 10px 0 12px;
    cursor: default;
}

.visittimes {
    background: url('../images/visit.gif') no-repeat left;
    padding: 0 10px 0 15px;
    cursor: default;
}

/* -------------------------------------------------------------------------------- */
/*	FileTermForum
/* -------------------------------------------------------------------------------- */
.forumcontainer {
    background: #FAFAFA no-repeat 96% center;
    background-size: 20px auto;
    border: 1px solid #EEE;
    border-radius: 5px;
}

.filetermforum {
    border-bottom: 1px solid #EEE;
    padding: 2%;
}

    .filetermforum:hover {
        background: #fff;
    }

.filetermforum_title {
    font-size: 25px;
}

    .filetermforum_title a {
        color: #2d3642;
        text-decoration: none;
    }

        .filetermforum_title a:hover {
            color: #6cd3c0;
            -webkit-transition: color .1s linear, background-color .1s linear;
            transition: color .1s linear, background-color .1s linear;
        }

.filetermforum_properties {
    color: #999999;
}

    .filetermforum_properties .commentsheadimg img {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 3px;
    }

    .filetermforum_properties .care,
    .filetermforum_properties span {
        position: relative;
        top: -2px;
    }

    .filetermforum_properties .userlink {
        display: inline;
        position: absolute;
        line-height: 14px;
    }

/* -------------------------------------------------------------------------------- */
/*	Notification
/* -------------------------------------------------------------------------------- */
.filetermnotification {
    border-bottom: 1px solid #EEE;
    padding: 2%;
}

.filetermnotification_title {
    font-size: 25px;
}

    .filetermnotification_title a {
        color: #2d3642;
        text-decoration: none;
    }

        .filetermnotification_title a:hover {
            color: #6cd3c0;
            -webkit-transition: color .1s linear, background-color .1s linear;
            transition: color .1s linear, background-color .1s linear;
        }

    .filetermnotification_title span {
        color: #999999;
        font-size: 15px;
    }

.filetermnotification_properties {
    color: #999999;
}

    .filetermnotification_properties .commentsheadimg img {
        width: 30px;
        height: 30px;
        border: 0;
        border-radius: 3px;
    }

    .filetermnotification_properties .userlink {
        display: inline;
        position: relative;
        top: -5px;
    }

    .filetermnotification_properties span {
        position: relative;
        top: -5px;
    }


/* -------------------------------------------------------------------------------- */
/*	MVCPaging
/* -------------------------------------------------------------------------------- */
.pager {
    text-align: left;
    text-decoration: none;
    width: 100%;
}

    .pager a {
        padding: 10px;
        color: #2d3642;
        border: 1px solid #e1e2e3;
        text-decoration: none;
    }

        .pager a:hover {
            color: #6cd3c0;
            border: 1px solid #6cd3c0;
            background-color: rgba(250, 250, 250, 0.62);
        }

    .pager .current {
        font-size: 14px;
        margin-right: 5px;
        text-decoration: none;
        cursor: pointer;
    }

    .pager .total {
        display: none;
        float: right;
    }

.pager_false {
    font-size: 13px;
    margin-right: 5px;
    text-decoration: none;
}

.pager_true {
    font-size: 13px;
    text-decoration: none;
    margin-right: 5px;
}

    .pager_true:hover {
    }

.pager_num {
    font-size: 13px;
    margin-right: 5px;
}

/*智能查询*/
#aisearchanswer {
    margin: 100px 3% 0 3px;
    padding: 2%;
    background-color: #fafafa;
    border: 1px solid #EEE;
    border-radius: 3px;
    overflow-y: auto;
    max-height: 30vh;
    /*border: 1px solid #b9f7eb;*/
}

    #aisearchanswer:hover {
        /*border-radius: 3px;*/
        background: #fff;
        -webkit-transition: color .3s linear, background-color .3s linear;
        transition: color .3s linear, background-color .3s linear;
    }

    #aisearchanswer .logo {
        padding-left: 0;
        width: 25px;
        vertical-align: middle;
    }

.aichatcontent {
    word-break: break-all;
}

    .aichatcontent img {
        max-width: 90%;
        border-radius: 3px;
    }

    .aichatcontent code {
        background-color: #b9f7eb !important;
        padding: 8px 5px;
    }

/* -------------------------------------------------------------------------------- */
/*	LayoutHome
/* -------------------------------------------------------------------------------- */
.layouthome0 {
    width: 90%;
    max-width: 900px;
    min-width: 290px;
    margin: 0 auto;
    background: #FFF;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-top: 40px;
}

.layouthome1 {
    width: 90%;
    min-width: 290px;
    height: 85%;
    margin: 0 auto;
    background: #FFF;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-top: 40px;
}

.layouthome1inner {
    margin: 20px;
    height: 100%;
}

.layouthome {
    padding: 40px;
}

    .layouthome h3 {
        font-family: 'Raleway', 'Helvetica Neue', sans-serif;
        font-weight: normal;
    }

.layouthome-header {
    /*padding-bottom: 2%;*/
    border-bottom: 1px solid #EEE;
    word-break: break-all;
}

    .layouthome-header div {
        display: inline-block;
    }

    .layouthome-header .time {
        color: #555555;
        background: url('../images/time.gif') no-repeat left;
        padding-left: 15px;
    }

    .layouthome-header .changeMaxWidth {
        float: right;
        cursor: pointer;
        color: #555555;
        background: url('../images/fullScreen.gif') no-repeat left;
        padding-left: 15px;
    }

    .layouthome-header .return {
        float: right;
        padding-left: 15px;
        background: url('../images/back.gif') no-repeat left;
    }

        .layouthome-header .return a {
            color: #2d3642;
            text-decoration: none;
        }

            .layouthome-header .return a:hover {
                color: #6cd3c0;
                -webkit-transition: color .1s linear, background-color .1s linear;
                transition: color .1s linear, background-color .1s linear;
            }

.layouthome-body {
    /* overflow-x: auto; */
    /* word-break: break-all; */
}

    .layouthome-body img {
        border-radius: 3px;
        max-width: 90%;
        height: auto;
    }

.layouthome-title {
    font-size: 2.25em;
    line-height: 120%;
    font-weight: normal;
}

    .layouthome-title a {
        color: #2D3642;
    }

.viewnote .layouthome-title {
    text-align: center;
}

.layouthome-content {
    font-family: 'Raleway', 'Helvetica Neue', sans-serif;
    color: #666;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: 1px solid #EEE;
    margin-bottom: 30px;
}

    .layouthome-content .team {
        font-weight: normal;
        color: #2D3642;
    }

.layouthome-icp {
    color: #777777;
}

    .layouthome-icp a {
        text-decoration: none;
        color: #777777;
    }

#filetermdescribecontext {
    width: 570px;
    overflow-x: auto;
    word-break: break-all;
}

    #filetermdescribecontext img {
        border-radius: 3px;
        max-width: 90%;
        height: auto;
    }

.layouthome-form {
    overflow: hidden;
}

    .layouthome-form input, textarea {
        color: #444;
        font-size: 1em;
        background: #FAFAFA no-repeat 96% center;
        background-size: 20px auto;
        margin-bottom: 1em;
        font-family: 'Lato', 'Helvetica Neue', sans-serif;
        border: 1px solid #EEE;
        border-radius: 3px;
        padding: 2%;
        width: 95%;
    }

    .layouthome-form textarea {
        width: 95%;
        height: 250px;
        resize: none;
    }

        .layouthome-form input:focus, .layouthome-form textarea:focus {
            outline: none;
            background-color: #2D3642;
            border-color: #2B323A;
            color: #FFF;
            -webkit-transition: color .3s linear, background-color .3s linear;
            transition: color .3s linear, background-color .3s linear;
        }

    .layouthome-form table td {
        line-height: 40px;
    }

        .layouthome-form table td:first-child {
            text-align: right;
        }

    .layouthome-form table input {
        margin-bottom: 0;
    }

        .layouthome-form table input:focus {
            color: #444;
            font-size: 1em;
            background: #FAFAFA no-repeat 96% center;
            background-size: 20px auto;
            margin-bottom: 0;
            font-family: 'Lato', 'Helvetica Neue', sans-serif;
            border: 1px solid #EEE;
            border-radius: 3px;
            padding: 2%;
        }

    .layouthome-form input[type="submit"] {
        width: auto;
        max-width: none;
        padding: 10px 16px;
        margin-bottom: 0;
        border: none;
        background: #2D3642;
        color: #FFF;
        font-size: 0.925em;
    }

        .layouthome-form input[type="submit"]:hover {
            cursor: pointer;
            background-color: #6cd3c0;
            color: #FFF;
            -webkit-transition: color .3s linear, background-color .3s linear;
            transition: color .3s linear, background-color .3s linear;
        }

    .layouthome-form span {
        color: red;
        margin-left: 5px;
    }

.layouthome-table {
    max-width: 100%;
    background-color: transparent;
    width: 100%;
    margin-bottom: 20px;
}

    .layouthome-table th {
        text-align: left;
    }

    .layouthome-table thead > tr > th, .layouthome-table tbody > tr > th, .layouthome-table tfoot > tr > th, .layouthome-table thead > tr > td, .layouthome-table tbody > tr > td, .layouthome-table tfoot > tr > td {
        padding: 8px;
        line-height: 1.428571429;
        vertical-align: top;
        border-top: 1px solid #dddddd;
    }

.changeheadimage img {
    max-width: 100%;
}

.changeheadimage .h0 {
    display: inline-block;
    width: 200px;
    height: 200px;
    border: 1px solid #f1f1f1;
}

    .changeheadimage .h0 img {
        width: 200px;
        height: 200px;
        border: 0;
    }

.changeheadimage .h1 {
    display: inline-block;
    margin-left: 10px;
    width: 100px;
    height: 100px;
    border: 1px solid #f1f1f1;
}

    .changeheadimage .h1 img {
        width: 100px;
        height: 100px;
        border: 0;
        border-radius: 9999px;
    }

.changeheadimage .h2 {
    display: inline-block;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #f1f1f1;
}

    .changeheadimage .h2 img {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 3px;
    }

.viewnote {
    text-align: left;
}

    .viewnote ol {
        max-width: 95%;
    }

/* -------------------------------------------------------------------------------- */
/*	logon
/* -------------------------------------------------------------------------------- */
.logon-imgcontent {
    width: 400px;
    vertical-align: top;
    display: inline-block;
    line-height: 1px;
}

    .logon-imgcontent img {
        width: 400px;
        border-radius: 100px;
    }

.logon-form {
    vertical-align: top;
    display: inline-block;
    margin: 30px 0 0 55px;
}

    .logon-form input {
        color: #444;
        font-size: 1em;
        background: #FAFAFA no-repeat 96% center;
        background-size: 20px auto;
        margin-bottom: 1em;
        font-family: 'Lato', 'Helvetica Neue', sans-serif;
        border: 1px solid #EEE;
        border-radius: 3px;
        padding: 10px;
        width: 300px;
    }

        /*.logon-form input:focus {
            outline: none;
            background-color: #2D3642;
            border-color: #2B323A;
            color: #FFF;
            -webkit-transition: color .3s linear, background-color .3s linear;
            transition: color .3s linear, background-color .3s linear;
        }*/

        .logon-form input[type="checkbox"] {
            width: auto;
            max-width: none;
        }

        .logon-form input[type="submit"] {
            width: auto;
            max-width: none;
            padding: 10px 16px;
            margin-bottom: 0;
            border: none;
            background: #2D3642;
            color: #FFF;
            font-size: 0.925em;
        }

            .logon-form input[type="submit"]:hover {
                cursor: pointer;
                background-color: #6cd3c0;
                color: #FFF;
                -webkit-transition: color .3s linear, background-color .3s linear;
                transition: color .3s linear, background-color .3s linear;
            }

    .logon-form .validatecode {
        width: 60px;
    }

    .logon-form img {
        cursor: pointer;
        position: absolute;
    }

    .logon-form span {
        display: block;
    }

/* -------------------------------------------------------------------------------- */
/*	HeadMenu
/* -------------------------------------------------------------------------------- */
.headmenu {
    width: 100%;
    height: 54px;
    background: #6CD3C0;
    text-align: center;
}

.headmenucontent {
    margin: 0 auto;
    text-align: left;
    height: 100%;
    width: 90%;
    max-width: 900px;
    min-width: 290px;
}

    .headmenucontent .action {
        display: inline-block;
        height: 100%;
        padding: 0 20px;
        cursor: pointer;
        transition: background-color .3s linear;
        color: #fff;
        line-height: 50px;
        font-size: 18px; /*border: solid 1px red;*/
    }

        .headmenucontent .action a {
            color: #fff;
            text-decoration: none;
        }

        .headmenucontent .action:hover {
            background-color: #4de0c5;
        }

    .headmenucontent .hmaccount {
        position: relative;
        float: right;
    }

    .headmenucontent .hmaccount {
        background: url(../images/menudropdownarrow.png) 90% center transparent scroll no-repeat;
        background-size: 9px 5px;
    }

        .headmenucontent .hmaccount img {
            position: relative;
            top: 2px;
        }

.headmenu .hmaccount .upmenu {
    right: 0;
    top: 50px;
}

    .headmenu .hmaccount .upmenu div:hover {
        background-color: #f1f1f1;
    }

    .headmenu .hmaccount .upmenu div a {
        color: #4a4a4a;
    }

/*最新消息数量外span，定时向span内填充最新消息数量*/
.notificationsmenu {
    position: absolute;
}

.notificationamounts {
    display: inline;
    color: white;
    position: absolute;
    width: 15px;
    line-height: 15px;
    text-align: center;
    background: red;
    font-size: 12px;
    font-weight: bold;
    padding: 1px 2px 2px 1px;
    border-radius: 100px;
    top: 8px;
    left: 72px;
}

.sub-menu .notificationamounts {
    top: 19px;
    left: 55px;
}

.nomore {
    color: gray;
}

.viewmorenotifications {
    color: gray;
    text-decoration: none;
}

    .viewmorenotifications:hover {
        text-decoration: underline;
    }

/* -------------------------------------------------------------------------------- */
/*	首页文档相应操作
/* -------------------------------------------------------------------------------- */
.more {
    display: block;
    margin: 10px 10px 0 5px;
    padding: 10px;
    color: #2d3642;
    border: 1px solid #e1e2e3;
    text-align: center;
    text-decoration: none;
}

    .more:hover {
        color: #6cd3c0;
        border: 1px solid #6cd3c0;
        background-color: rgba(250, 250, 250, 0.62);
        text-decoration: none;
    }

.viewmoretiles {
    position: relative;
    top: -30px;
    float: right;
    padding: 5px 10px;
    color: transparent;
    text-align: right;
}

.tilescontent:hover {
    background-color: #FAFAFA;
    -webkit-transition: color .3s linear, background-color .3s linear;
    transition: color .3s linear, background-color .3s linear;
}

    /*显示查看文档详细链接*/
    .tilescontent:hover .viewmoretiles {
        color: #6cd3c0;
        text-decoration: underline;
    }

.filetermoperations {
    visibility: hidden;
    display: inline-block;
    position: absolute;
    right: 2%;
    transition: visibility .2s;
}

    .filetermoperations img {
        width: 20px;
        cursor: pointer;
    }

/*显示文档操作图标*/
.filetermcontent:hover .filetermoperations {
    visibility: visible;
}

.tileoperations {
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px; /*transition: visibility .2s;*/
}

    .tileoperations img {
        width: 20px;
    }

/*显示文档磁贴操作图标*/
.filetermtiles .tile:hover .tileoperations {
    visibility: visible;
}

.filetermtiles .tile:hover .tilelink img {
    visibility: visible;
}

.filetermtiles .tile a {
    display: block;
}
/* -------------------------------------------------------------------------------- */
/*	详细页文档相应操作
/* -------------------------------------------------------------------------------- */
.filedetailoperations {
    display: none;
    position: absolute;
    right: 2%;
}

    .filedetailoperations img {
        width: 20px;
        cursor: pointer;
    }

/*显示文档操作图标*/
.FileTermConst:hover .filedetailoperations {
    display: inline-block;
}

.FileTermConst .time {
    color: #555555;
    background: url('../images/time.gif') no-repeat left;
    padding: 0 10px 0 15px;
}
/*显示文档tree元素操作图标*/
/*.easyui-tree:hover .c2 {
    display: inline-block;
}*/
/* -------------------------------------------------------------------------------- */
/*	时间线
/* -------------------------------------------------------------------------------- */
.timelinecontent {
    overflow: hidden;
    padding-left: 75px;
    border: 0;
    text-align: left;
}

    .timelinecontent .files {
        padding-left: 10px;
    }

    .timelinecontent .strong a {
    }

    .timelinecontent .thin {
        padding: 0 5%;
    }

    /*.timelinecontent .thin a {
            font-size: 20px;
            font-style: italic;
        }*/

    .timelinecontent img {
        width: 20px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    .timelinecontent .timelineleftline {
        position: absolute;
        width: 1px;
        background-color: #6cd3c0;
        overflow: hidden;
    }

    .timelinecontent .timelineyearcircle {
        position: relative;
        top: 24px;
        left: -15px;
        width: 10px;
        height: 10px;
        background: #6cd3c0;
        -moz-border-radius: 50px;
        -webkit-border-radius: 50px;
        border-radius: 50px;
    }

    .timelinecontent .timelineyear {
        position: relative;
        left: -85px;
        font-size: 20px;
        color: #6cd3c0;
    }

    .timelinecontent .operation {
        padding-left: 10px;
    }

        .timelinecontent .operation .filesloading {
            padding: 2%;
        }

        .timelinecontent .operation .nomore {
            padding: 2%;
        }

/* -------------------------------------------------------------------------------- */
/*	弹出菜单
/* -------------------------------------------------------------------------------- */
.upmenu {
    position: absolute;
    width: 230px;
    padding: 12px 0;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 13; /*弹出菜单，低于预览弹出层*/
    opacity: 0.97;
    filter: alpha(opacity=97);
    border: 3px solid rgba(217, 217, 217, 0.4);
    border-top: 1px solid rgba(217, 217, 217, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), -6px 8px 15px rgba(0, 0, 0, 0.04), 6px 8px 15px rgba(0, 0, 0, 0.04);
    display: none;
}

    .upmenu div {
        height: 32px;
        line-height: 32px;
        width: 100%;
        cursor: pointer;
        transition: background 0.1s ease-in-out;
        text-align: left;
    }

        .upmenu div:hover {
            background-color: #6cd3c0;
        }

        .upmenu div a {
            padding-left: 20%;
            width: 80%;
            display: block;
            color: #4a4a4a;
            text-decoration: none;
            transition: color 0.1s ease-in-out;
        }

        .upmenu div:hover a {
            color: white;
        }

    .upmenu hr {
        margin: 5px 20px;
        background-color: lightgray;
        height: 1px;
        border: none;
    }

/* -------------------------------------------------------------------------------- */
/*	整体缩放
/* -------------------------------------------------------------------------------- */
@media screen and (max-width: 1440px) {

    /* -------------------------------------------------------------------------------- */
    /*	LeftMenu
    /* -------------------------------------------------------------------------------- */
    .leftMenu {
        width: 55px;
    }

        .leftMenu img {
            width: 27px;
        }

        .leftMenu .lmlogo img {
            width: 32px;
            margin-bottom: 30px;
        }

        .leftMenu .lmaccount .upmenu {
            left: 45px;
        }

    /* -------------------------------------------------------------------------------- */
    /*	HeadMenu
    /* -------------------------------------------------------------------------------- */
    .headmenu {
        height: 40px;
    }

    .headmenucontent {
        width: 80%;
        max-width: 700px;
        min-width: 290px;
    }

        .headmenucontent .action {
            padding: 0 20px;
            line-height: 35px;
            font-size: 14px;
        }

        .headmenucontent .hmaccount img {
            width: 13px;
        }

    .headmenu .hmaccount .upmenu {
        top: 35px;
    }

    /* -------------------------------------------------------------------------------- */
    /*	HeadSearch
    /* -------------------------------------------------------------------------------- */
    .logo {
        padding-left: 8px;
        font-size: 17px;
    }

    .search {
        width: 439px;
        height: 27px;
        padding-left: 4px;
    }

    .searchInput {
        width: 413px;
        font-size: 12px;
        padding-left: 7px;
    }

    .searchSubmit {
        width: 23px;
        height: 23px;
        background: white url('../images/find.gif') no-repeat 2px 4px;
        background-size: 17px;
    }

    /* -------------------------------------------------------------------------------- */
    /*	主体
    /* -------------------------------------------------------------------------------- */
    #tableMain {
        width: 450px;
    }

    #whiteArea {
        left: 513px;
    }

    .footLogo a {
        font-size: 17px;
    }

    .footLogo span a {
        font-size: 9px;
    }

    /* -------------------------------------------------------------------------------- */
    /*	FileTerm
    /* -------------------------------------------------------------------------------- */
    .FileTerm {
        padding: 1%;
    }

    .FileTerm_Title {
        font-size: 18px;
    }

    .tilelink img {
        width: 11px;
    }

    .FileTerm_Describe {
        font-size: 12px;
    }

    .FileTermDetail_Describe {
        font-size: 15px;
    }

    .filetermtiles .tile {
        height: 173px;
    }


    /* -------------------------------------------------------------------------------- */
    /*	弹出菜单
    /* -------------------------------------------------------------------------------- */
    .upmenu {
        width: 173px;
        padding: 8px 0;
        border: 3px solid rgba(217, 217, 217, 0.4);
    }

        .upmenu div {
            height: 24px;
            line-height: 24px;
        }

            .upmenu div a {
                font-size: 10px;
            }

    /* -------------------------------------------------------------------------------- */
    /*	LayoutHome
    /* -------------------------------------------------------------------------------- */
    .layouthome0 {
        max-width: 700px;
    }

    .layouthome-title {
        font-size: 1.8em;
    }

    .layouthome-content {
        font-size: .5em;
    }

    .layouthome-form input, textarea {
        font-size: .7em;
    }

    /* -------------------------------------------------------------------------------- */
    /*	logon
    /* -------------------------------------------------------------------------------- */
    .logon-imgcontent {
        width: 300px;
    }

        .logon-imgcontent img {
            width: 270px;
            border-radius: 80px;
        }

    .logon-form {
        margin: 20px 0 0 30px;
    }

        .logon-form input {
            font-size: .5em;
            padding: 7px;
            width: 230px;
        }

            .logon-form input[type="submit"] {
                padding: 8px 14px;
                font-size: 0.8em;
            }
}

/* -------------------------------------------------------------------------------- */
/*	LayoutHome窗体宽度小于主体最大宽度900px时样式
/* -------------------------------------------------------------------------------- */
@media screen and (max-width: 970px) {

    /* -------------------------------------------------------------------------------- */
    /*	LayoutHome
    /* -------------------------------------------------------------------------------- */
    .layouthome {
        padding: 5%;
    }

    .layouthome-title, .layouthome-body {
        text-align: center;
    }

    .logon-imgcontent {
        width: 80%;
        max-width: 322px;
        min-width: 200px;
        margin-bottom: 10px;
    }

        .logon-imgcontent img {
            max-width: 400px;
            width: 80%;
            border-radius: 100%;
        }

    .logon-form {
        display: block;
        margin: 0 auto;
        text-align: left;
        width: 80%;
        max-width: 322px;
        min-width: 200px;
    }

        .logon-form input {
            max-width: 300px;
            width: 100%;
        }

            .logon-form input[type="checkbox"] {
                width: auto;
                max-width: none;
            }

            .logon-form input[type="submit"] {
                width: auto;
                max-width: none;
            }
}

/* -------------------------------------------------------------------------------- */
/*	小屏弹窗显示预览
/* -------------------------------------------------------------------------------- */
@media screen and (max-width: 900px) {

    /* -------------------------------------------------------------------------------- */
    /*	预览
    /* -------------------------------------------------------------------------------- */
    #whiteArea {
        background-color: transparent; /*border: 1px solid pink;*/
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
    }

    .whiteareainner .header .close {
        display: block;
        right: 63px; /*弹窗预览，左侧有菜单，减掉其宽度*/
    }

    .whiteareainner {
        background: #fff;
        position: absolute;
        top: 0px;
        left: 0px;
        margin: 0 63px; /*弹窗预览，左侧有菜单，减掉其宽度*/
        width: 100%;
    }
}

/* -------------------------------------------------------------------------------- */
/*	屏宽小于主体+左菜单时，左菜单在头部显示
/* -------------------------------------------------------------------------------- */
@media screen and (max-width: 800px) {

    /* -------------------------------------------------------------------------------- */
    /*	LeftMenu
	/* -------------------------------------------------------------------------------- */
    .leftMenu {
        width: 100%;
        height: 45px;
        background-color: #fff;
        box-shadow: 0 1px 4px #eeeeee;
        padding: 0;
        text-align: center;
        z-index: 12; /*菜单主体，高于主体、搜索框，低于预览弹出层、弹出菜单*/
    }

        .leftMenu div {
            display: inline-block;
        }

        .leftMenu img {
            border: 1px solid #fff;
        }

        .leftMenu .lmlogo img {
            width: 30px;
            margin: 0;
            border: 0;
        }

        .leftMenu .lmadd img {
            margin: 0;
        }

        .leftMenu .lmaccount {
            position: static;
            bottom: auto;
            width: auto;
            padding: 0;
            border: 0;
        }

            .leftMenu .lmaccount .upmenu {
                top: 40px;
                bottom: initial;
                left: auto;
                right: 60px;
                display: none;
                /*height: 245px;*/
            }

        .leftMenu img {
            width: 30px;
            margin-top: 7px;
        }

    .leftMenuContent {
        /*border: 1px solid red;*/
        width: 600px;
        padding-right: 25px;
        text-align: right;
    }

        .leftMenuContent .lmlogo {
            float: left;
            padding-top: 7px;
        }

    .headSearch {
        top: 45px;
    }

    #body .files {
        margin-top: 125px;
    }

    .FileTermConst {
        margin-top: 125px;
    }

    .whiteareainner {
        margin: 0; /*弹窗预览，左侧无菜单*/
    }

        .whiteareainner .header .close {
            right: 0;
        }
}

/* -------------------------------------------------------------------------------- */
/*	屏宽小于主体时，主体宽度缩放为100%
/* -------------------------------------------------------------------------------- */
@media screen and (max-width: 620px) {

    /* -------------------------------------------------------------------------------- */
    /*	HeadMenu
	/* -------------------------------------------------------------------------------- */
    .leftMenuContent {
        width: 100%;
    }

    /* -------------------------------------------------------------------------------- */
    /*	主体
	/* -------------------------------------------------------------------------------- */
    #tableMain {
        width: 100%;
    }

    /* -------------------------------------------------------------------------------- */
    /*	FileTerm
    /* -------------------------------------------------------------------------------- */
    .filetermtiles .tile {
        height: 150px;
    }

        .filetermtiles .tile .half {
            margin: 15% 30%;
        }

    /* -------------------------------------------------------------------------------- */
    /*	HeadSearch
	/* -------------------------------------------------------------------------------- */
    .headSearch {
        width: 100%;
    }

    .search {
        padding-left: 0px;
        width: 100%;
    }

        .search table {
            padding-left: 7px;
            width: 100%;
        }

    .searchInput {
        width: 100%;
    }

    .searchSubmit {
        float: right;
    }
}

/* -------------------------------------------------------------------------------- */
/*	小屏样式
/* -------------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {

    /* -------------------------------------------------------------------------------- */
    /*	FileTerm
	    /* -------------------------------------------------------------------------------- */
    .filetermtiles .tile {
        width: 28%;
    }
}
