html,
body {
    height: 100%;
}

body {
    min-width: 1300px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}

.bodyOverHide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.btn-type1-blue:hover { 
    background-color: #6bb3ff !important;
    color: #fff !important;
}

.btn-type1-blue:active {
    background-color: #247cd8 !important;
    color: #fff !important;
}

.btn-type2-grey:hover {
    background-color: #ededed !important;
    color: #959595 !important;
    border: 1px solid #ededed !important;
}

.btn-type2-grey:active {
    background-color: #fff !important;
    color: #000 !important;
    border: 1px solid #e2e7e8 !important;
}

.txt-type1-blue:hover {
    color: #6bb3ff !important;
}
.txt-type1-blue:active {
    color: #247cd8 !important;
}

.txt-type1-red:hover {
    color: #fe6262 !important;
}
.txt-type1-red:active {
    color: #db3b3b !important;
}

.editor-type1-blue:hover {
    border: 1px solid #2a90fc !important;
}

.editor-type1-blue:active {
    border: 1px solid #2a90fc !important;
}

.editor-type1-blue:focus {
    border: 1px solid #2a90fc !important;
}

.resetBtn:hover {
    color: #2a90fc;
}
.resetBtn {
    border: 0;
    background: 0;
    cursor: pointer;
    margin-left: 15px;
}

.btn {
    margin-bottom: 0;
    text-align: center;
    display: inline-block;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.btn-default {
    color: #666;
    background-color: #fff;
    border-color: #e8e9ea;
}

.btn-default:hover,
.btn-default:active,
.btn-default.focus {
    color: #4f4f4f;
    background-color: #fafafa;
    border-color: #d7d7d7;
}

.btn-primary {
    color: #fff;
    border-color: #2a90fc;
    background-color: #2a90fc;
}

.btn-wraning {
    background: #ff695b;
    color: white;
}

.btn-sm,
.btn-group-sm>.btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-default-borderColor {
    border-color: #e8e9ea;
}

/* 公用弹窗样式 */
.outerWindow {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background: rgba(0, 0, 0, .5);
}

.innerWindow {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 4px;
    position: absolute;
    background: white;
}

.innerWindowHead {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.innerGoBackBtn {
    top: 0;
    bottom: 0;
    border: 0;
    left: 20px;
    background: none;
    position: absolute;
}

.innerCloseBtn {
    top: 0;
    bottom: 0;
    border: 0;
    right: 20px;
    background: none;
    position: absolute;
}

.innerCloseBtn:hover {
    color: #fe6262;
}

.innerCloseBtn:active {
    color: #db3b3b;
}

.innerBtnBox {
    width: 100%;
    display: flex;
    padding: 20px 20px 0;
    margin-top: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    box-sizing: border-box;
    justify-content: flex-end;
    border-top: 1px solid #e8e8e8;
}

.innerBtnBox button {
    height: 32px;
    outline: none;
    padding: 0 14px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    box-sizing: border-box;
}

.innerResetBtn {
    color: #757272;
    border: 1px solid #ddd;
}

.innerSubmitBtn {
    border: 0;
    color: white;
    margin-left: 10px;
    background: #2a89fc;
}

.innerSubmitBtn:hover {
    background: #6bb3ff;
}

.innerSubmitBtn:active {
    background: #247cd8;
}

/* 公用删除提示窗 */

#pubWraningWindowBox {
    z-index: 57;
}

#pubWraningWindowBox .pubWraningWindow {
    top: 80px;
    bottom: auto;
    width: 330px;
    height: 185px;
}

#pubWraningWindowBox p {
    padding: 30px 20px;
    line-height: 20px;
    margin-bottom: 15px;
}

#pubWraningWindowBox .controlBtn {
    width: 290px;
    color: white;
    line-height: 35px;
    border-radius: 4px;
    margin: 0 20px 15px;
}

#pubWraningWindowBox .redWraningBtn {
    background: #f24a4a;
}

#pubWraningWindowBox .blueWraningBtn {
    background: #2a90fc;
}

/* 公用删除提示窗 */

/* 公用内部loading效果 */
.loaderInner {
    height: 20px;
    width: 100px;
    margin: 10px auto;
    background: white;
}

.loaderInner div {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border-radius: 50%;
    background: #d8d8d8;
    transform: scale(0.5);
    animation: innerDivMove 0.4s infinite alternate;
}

.loaderInner div:nth-of-type(2) {
    animation-delay: 0.2s;
}

.loaderInner div:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes innerDivMove {
    0% {
        transform: scale(0.5);
        opacity: 0.5
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 公用内部loading效果 */

/* 公共文件选择窗口 */

#selectContentWindow {
    z-index: 57;
}

.selectContent {
    width: 844px;
    max-height: 570px;
    min-height: 200px;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -422px;
    bottom: 20px;
    right: unset;
    margin-top: 80px;
}

.pubContentPartOne {
    flex: 0 0 150px;
}

.pubContentSpeciesList {
    margin-top: 10px;
}

.selectTypeLi {
    cursor: pointer;
    padding: 5px 15px;
    line-height: 25px;
}

.selectTypeLi.on,
.theSecondaryList li.on,
.selectTypeLi:hover,
.theSecondaryList li:hover {
    color: #2a90fc;
    background: #f5f5f5;
}

.theSecondaryList li.noAllowClick {
    color: #959595;
}

.theSecondaryList li.noAllowClick:hover {
    cursor: no-drop;
    background: #f5f5f5;
}

.selectTypeLi p {
    margin: 0;
}

.pubContentPartTwo {
    flex: 1;
    /* overflow: hidden; */
    overflow-y: hidden;
    overflow-x: auto;
}

.pubContentPartThree {
    flex: 0 0 240px;
    overflow: hidden;
    flex-direction: column;
    border-left: 1px solid #ddd;
}

.pubContentPartThree h3 {
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.pubContentPartThree h3 span {
    margin-right: auto;
}

.pubContentPartThree h3 button {
    border: 0;
    cursor: pointer;
    color: #fe4343;
    background-color: transparent;
}

.pubContentPartThree h3 button:hover {
    color: #fe6262;
}

.pubContentPartThree h3 button:active {
    color: #db3b3b;
}

.pubContentPartThree .pubContentPartSlectedList {
    flex: 1;
    overflow-y: auto;
}

.pubContentPartThree .pubContentPartSlectedList li {
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pubContentPartThree .pubContentPartSlectedList li:hover {
    background: #f5f5f5;
}

.pubContentPartThree .pubContentPartSlectedList li div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pubContentPartThree .pubContentPartSlectedList li div span {
    margin-right: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pubContentPartThree .pubContentPartSlectedList li p {
    margin: 0;
}

#firstContentList .projectListPart {
    height: 100%;
    flex-direction: column;
}

#firstContentList .projectListPart .projectSection {
    flex: 1;
    flex-direction: column;
}

#firstContentList .theSecondaryList.projectSectionUl {
    /* width: 600px; */
    flex: 1;
    overflow-y: auto;
    height: 100%;
}

.pubContentMainList {
    height: 100%;
    /* overflow-y: auto; */
}

.theMainList {
    /* flex-direction: column;
    /* flex: 0 0 200px; */
    /* flex: 1;
    overflow-x: hidden;
    border-left: 1px solid #ddd; */
    min-width: 200px;
    flex-direction: column;
    /* flex: 0 0 200px; */
    flex: auto;
    /* overflow-x: hidden; */
    border-left: 1px solid #ddd;
    overflow-y: auto;
}

.theMainList .fileList {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.moreFileBtn,
#moreProjectContent {
    border: 0;
    color: #fff;
    cursor: pointer;
    line-height: 30px;
    background: #6bb3ff;
}

.moreFileBtn,
#moreProjectContent:hover {
    background: #2a90fc;
}

.pubContentMainList .moreTaskSectionBtn {
    margin-left: 20px;
    margin-bottom: 10px;
    border: 0;
    color: #fff;
    cursor: pointer;
    line-height: 30px;
    background: #6bb3ff;
    width: 80%;
}
.pubContentMainList .moreTaskSectionBtn:hover {
    background: #2a90fc;
}

.theMainFileBtnBox button {
    color: gray;
    font-size: 22px;
}

.theMainFileIpt {
    width: 100%;
    padding-left: 5px;
    line-height: 24px;
    border-radius: 2px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.theSecondaryListTitle {
    padding: 5px 15px;
    font-weight: bold;
}

.theSecondaryList li {
    cursor: pointer;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    line-height: 13px;
}

.isFolderLi .icon-folder {
    height: 16px;
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    color: #2a90fc;
    margin-right: 5px;
    /* background: url(/public/images/i-folder.png) no-repeat; */
}

.isFolderLi .folder-blue.icon-folder {
 color: #3da8f5;
 background: transparent !important;
}
.isFolderLi .folder-green.icon-folder {
 color: #75c940;
 background: transparent !important;
}
.isFolderLi .folder-yellow.icon-folder {
 color: #ffaf38;
 background: transparent !important;
}
.isFolderLi .folder-purple.icon-folder {
 color: #797ec9;
 background: transparent !important;
}
.isFolderLi .folder-red.icon-folder {
 color: #ff4f3e;
 background: transparent !important;
}
.isFolderLi .folder-cyan.icon-folder ,
.isFolderLi .folder-gray.icon-folder {
 color: #2fbdb3;
 background: transparent !important;
}

.isFileLi .icon-file {
    height: 16px;
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    color: #2a90fc;
    margin-right: 5px;
    /* background: url(/public/images/i-file.png) no-repeat; */
}

.phaseSection{
    height: 68%;
    overflow-y: auto;
}
.heightFull{height: 95%;}
.borderBottom{border-bottom: 1px solid #ddd;}
.nodeDataText{padding: 10px 22px 10px 15px;display:block;}
.statis-box {
    border-top: 1px solid #ccc;
}
.statis-box span{
    margin-left: 10px;
}
.statis-box button{
    width: 90%;
    border: none;
    background: #fff;
    text-align: left;
    margin-left: 10px;
    line-height: 30px;
    cursor: pointer;
}

.statis-box button.on,
.statis-box button:hover{
    color: #2a90fc;
    background-color: #f5f5f5;
}

.theSecondaryList li .task-status{
    width: 14px;
    height: 14px;
    background: url(/public/images/icon-task-un.png);
    display: inline-block;
    vertical-align: sub;
    margin-right: 8px;
}

.theSecondaryList li.completed .task-status{
    width: 14px;
    height: 14px;
    background: url(/public/images/icon-task-on.png);
    display: inline-block;
}
.theSecondaryList li span.task-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333;
}
.theSecondaryList li.completed span.task-name {
    color: #999;
}

.pubContentListSelBtn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 24px;
    border: 0;
    cursor: pointer;
    color: #adadad;
    background-color: transparent;
}

.pubContentListSelBtn.noAllowClick {
    cursor: no-drop;
}

.icon-ziyuan.pubContentListSelBtn {
    color: #2a90fc;
}

.pubContentListSelBtn:hover {
    color: #6bb3ff;
}

.pubContentListSelBtn:active {
    color: #247cd8;
}

.pubContentListDelBtn {
    border: 0;
    cursor: pointer;
    color: #fe4343;
    margin-left: 10px;
    visibility: hidden;
    background-color: transparent;
}

.pubContentListDelBtn:hover {
    color: #fe6262;
}

.pubContentListDelBtn:active {
    color: #db3b3b;
}

.pubContentPartSlectedList li:hover .pubContentListDelBtn {
    visibility: visible;
}

.pubContentList {
    flex: 1;
    color: grey;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.collectContentBtn {
    width: 70px;
    margin: 15px;
    line-height: 35px;
    border-radius: 4px;
}

/* 公共文件选择窗口 */

/* 修改用户头像 */

.changeProPic {
    left: 0;
    right: 0;
    top: 80px;
    z-index: 56;
    margin: auto;
    width: 500px;
    position: fixed;
    border-radius: 4px;
    background: white;
}

.changeProPicTitle {
    color: #8f8f8f;
    padding: 10px 0;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
}

.changeProPicTitle .icon-close {
    position: absolute;
    right: 10px;
}

.profilePictureFileBtn {
    width: 100px;
    padding: 0 10px;
    margin: 20px auto;
    position: absolute;
    right: 50px;
    top: 15px;
    border: 1px solid #8f8f8f;
    background: white;
    cursor: pointer;
    height: 30px;
    border-radius: 2px;
    color: #8f8f8f;
}

.profilePictureFileBtn i {
    line-height: 28px;
    margin-right: auto;
}

.profilePictureFileBtn span {
    line-height: 28px;
}

.profilePictureImg {
    display: block;
    border-radius: 50%;
    margin: 20px auto 0;
}

.changeProfilePictureBox .changeProPic {
    overflow-y: auto;
}

.personalMsgBox {
    color: #5c5a5a;
    margin-bottom: 20px;
}

.personalMsgSection {
    margin: 0 20px;
    line-height: 22px;
}

.personalMsgTitle {
    padding-left: 15px;
    margin-bottom: 10px;
    border-left: 5px solid #2a90fc;
}

/* 修改用户头像 */

.changePasswordBox {
    width: 460px;
    height: 304px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: white;
    border-radius: 4px;
    z-index: 60;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.changeTitle {
    color: #626262;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
    font-size: 18px;
    margin-bottom: 25px;
}

.changePwdDiv {
    padding: 0 40px 24px;
}

.changePwdDivTitle {
    color: #626262;
    display: inline-block;
    width: 65px;
    text-align: right;
    margin-right: 10px;
}

.changePwdDivIpt {
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    height: 32px;
    box-sizing: border-box;
    line-height: 32px;
    padding-left: 10px;
    width: 300px;
    background: white;
}

.changePwdDivIpt::-webkit-input-placeholder {
    color: #bfbfbf;
}

.changePwdDivIpt:-moz-placeholder {
    color: #bfbfbf;
    opacity: 1;
}

.changePwdDivIpt::-moz-placeholder {
    color: #bfbfbf;
    opacity: 1;
}

.changePwdDivIpt:-ms-input-placeholder {
    color: #bfbfbf;
}

.pwdTip {
    position: absolute;
    left: 120px;
    bottom: 4px;
    line-height: 16px;
}

.changeTitle i {
    position: absolute;
    right: 10px;
}

.color1 {
    color: #2a90fc;
}

.w100 {
    width: 100%;
}

.inputText {
    width: 100px;
    height: 30px;
    border: 1px solid #c7c8c9;
    border-radius: 3px;
    outline: none;
    padding-left: 10px;
    box-sizing: border-box;
}

.inputText2 {
    width: 500px;
    height: 35px;
    border: 1px solid #e8e9ea;
    border-radius: 3px;
    outline: none;
    padding-left: 10px;
}

.inputText3 {
    width: 400px;
}

textarea.inputText3 {
    height: 65px;
    resize: none;
}

.inputText4 {
    width: 180px;
}

.add-on {
    padding: 0 3px;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    position: absolute;
    color: #bebebe;
}

.add-on:hover {
    color: #27a2ff;
}

.add-on .icon-close {
    font-size: 13px;
}

.c-checkbox i,
.c-radio i {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: -20px;
    width: 20px;
    height: 18px;
    background-position: 0 0px;
}

.vaTop {
    vertical-align: top;
}

.task-line {
    height: 1px;
    background: #d3d3d3;
}

.name {
    color: #428bca;
    margin: 0 10px 0 10px;
}

.surname_l {
    margin-left: 10px;
    font-size: 12px;
    color: #00a881;
    border-radius: 50%;
    background: #e7e7df;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
}

.detailed-info-top {
    line-height: 40px;
}

.detailed-info-top span {
    margin-right: 10px;
    cursor: pointer;
    color: #333;
}

.detailed-info-top img {
    position: relative;
    top: 3px;
    margin-right: 3px;
    height: 16px;
    width: 16px;
}

.status-success {
    margin-left: 5px;
    font-size: 12px;
    padding: .1em .5em;
    color: #00a881;
    border: 1px solid #00a881;
    border-radius: 9px !important;
}

.task-content {
    line-height: 50px;
    font-size: 18px;
}

.taskDone {
    padding-bottom: 15px;
    border-bottom: solid 1px #d3d3d3;
}

.son-menu {
    margin-right: 5px;
    float: left;
    padding: 10px 15px;
    border-bottom: solid 2px #bbb;
    color: #bbb;
    cursor: pointer;
}

.son-menu:hover {
    border-bottom: solid 2px #13bb92 !important;
    color: #13bb92 !important;
}

.son-menu-active {
    border-bottom: solid 2px #13bb92 !important;
    color: #13bb92 !important;
}

.lh40 {
    line-height: 40px;
}

.add_child {
    padding: 12px 18px;
    cursor: pointer;
    color: #d3d3d3;
}

.add_child img {
    position: relative;
    margin-right: 3px;
    top: 5px;
    height: 20px;
    width: 20px;
}

.trends div {
    line-height: 28px;
    color: #aba3a3;
}

.add-w {
    line-height: 80px;
    text-align: center;
    color: #666;
    cursor: pointer;
}

.comment {
    position: absolute;
    left: 45px;
    bottom: 0;
    height: 60px;
    z-index: 20;
}

.comment .inputText {
    width: 488px;
}

.t_lh35 {
    line-height: 35px;
}

.t_lh35:hover {
    background: rgba(0, 0, 0, .07);
}

.backIcon,
.backIcon2 {
    width: 20px;
    float: left;
    height: 20px;
    cursor: pointer;
    margin: 12px 5px 0 0;
    vertical-align: middle;
    background: url(/public/images/common_all.png);
    background-position: -11px -211px;
}

.userListback {
    margin: 0px 5px 0 10px !important;
}

.changePwdBtn {
    display: block;
    width: 144px;
    margin: 1px auto 25px;
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 54;
    background: rgba(0, 0, 0, 0.5);
}

.mask-container {
    padding: 15px;
    z-index: 54;
    background: white;
    position: fixed;
    left: 0;
    top: 80px;
    right: 0;
    margin: auto;
    width: 545px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

#mask .mask,
#dept .mask {
    z-index: 55;
}

#mask .mask-container,
#dept .mask-container {
    z-index: 81;
}

.mask-line {
    height: 1px;
    background: #eaeced;
}

.mask-dept {
    padding: 15px;
    background: white;
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    margin: auto;
    width: 540px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 56;
}

#showTypeTask .choiceTaskListBox {
    height: 400px;
}

.mask-title {
    text-align: center;
    font-size: 14px;
    position: relative;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
}

.mask-input {
    width: 100%;
    height: 30px;
    border: 1px solid #e8e9ea;
    border-radius: 3px;
    outline: none;
    padding-left: 10px;
    box-sizing: border-box;
}

/* 选择部门弹窗式 */

.mask-input-dept {
    box-sizing: border-box;
    height: 30px;
    border: 1px solid #c7c8c9;
    border-radius: 3px;
    outline: none;
    padding-left: 10px;
    flex: 3;
    color: #666;
    font-size: 14px;
}

.deptField {
    margin-top: 15px;
    display: flex;
}

.deptField span {
    width: 95px;
}

.delAllPerson {
    margin-right: 10px;
    cursor: pointer;
}

.delAllPerson:hover {
    color: #2a90fc;
}

.mask-mt {
    margin-top: 20px;
}

.mask-left {
    float: left;
    width: 60%;
}

.mask-right {
    float: left;
    width: 40%;
}

.mask-bd {
    border: 1px solid #eaeced;
}

.mask-tree {
    height: 230px;
    overflow: auto;
}

.mask-noleftbd {
    border: 1px solid #e8e9ea;
    border-left: none;
}

.mask-tree ul li {
    line-height: 30px;
    padding: 0 10px;
}

.sUser_list li {
    padding-left: 15px;
}

.mask-tree ul li img {
    margin-right: 5px;
    height: 20px;
    width: 20px;
    position: relative;
}

.sName {
    margin-right: 5px;
}

.cb {
    color: #bbb;
}

.main-container {
    position: relative;
}

.main-hd {
    padding: 20px 20px 0 20px;
    border-bottom: 1px solid #e2e5e8;
    background: white;
}

.main-title {
    margin-bottom: 15px;
}

.main-title span {
    display: inline-block;
    vertical-align: middle;
    width: 3px;
    height: 18px;
    margin-right: 10px;
    background-color: #4a79d8;
}

.main-subContent {
    position: relative;
    top: 1px;
}

.tabs .tab-item {
    color: #999;
}

.tabs .tab-item {
    float: left;
    background-color: #f9fafb;
    padding: 8px 18px;
    border: 1px solid #e2e5e8;
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tabs .tab-item.active {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    color: #333;
}

.tabs .tab-item:first-child {
    border-top-left-radius: 2px;
}

.tabs .tab-item:last-child {
    border-top-right-radius: 2px;
}

.tabs .tab-item+.tab-item {
    margin-left: -1px;
}

.us-employee-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #d5e4f4;
    overflow: hidden;
}

/* 人员选择框 */

.applybox {
    box-sizing: border-box;
    min-height: 30px;
    line-height: 30px;
    border: 1px solid #c7c8c9;
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    flex: 3;
    border-radius: 4px;
}

.applybox span {
    cursor: pointer;
}

.applybox button {
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    padding: 0;
    outline: none;
    color: #2a90fc;
    padding: 0 5px;
    border-radius: 4px;
    position: absolute;
    background: white;
    box-sizing: border-box;
}

.loadGif {
    width: 110px;
    height: 20px;
    line-height: 20px;
    margin: 0 auto;
}

.deptChoiceBox {
    box-sizing: border-box;
    position: relative;
    padding-left: 10px;
    width: 200px;
    min-height: 30px;
    line-height: 30px;
    border: 1px solid #c7c8c9;
    border-radius: 4px;
    padding-right: 30px;
    flex: 3;
}

.deptFieldEdit,
.deptFieldEdit button {
    outline: none;
    background: #ddd !important;
}

.deptChoiceSpan {
    margin-right: 10px;
    display: inline-block;
}

.deptChoiceBtn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 28px;
    padding: 0 5px;
    color: #2a90fc;
    background: white;
    margin: auto 0;
}

.staffDeptChangeBox {
    z-index: 57;
    position: fixed;
    left: 0;
    right: 0;
    top: 30%;
    bottom: 0;
    margin: 0 auto;
    width: 400px;
    height: 150px;
    background: white;
    padding: 15px;
}

.deptHasChoice {
    height: 30px;
    line-height: 30px;
    border: 1px solid #eee;
    margin: 15px 0;
    padding-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.deptListBox {
    position: absolute;
    top: 34px;
    height: 150px;
    width: 100%;
    overflow: auto;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.mask-dept span.deptChoiceSpan {
    width: auto;
}

.staffDiv {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

.staffDiv img {
    margin-right: 5px;
}

.mask-dept span.deptChoiceSpan {
    width: auto;
}

.mask-dept span.deptChoiceSpan {
    width: auto;
}

.moreOprea {
    position: absolute;
    right: 0;
    top: 35px;
    z-index: 1;
    width: 250px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.moreOprea h2 {
    padding: 5px 10px;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    margin-bottom: 10px;
}

.moreOprea li {
    padding: 0 15px 5px;
    line-height: 40px;
    cursor: pointer;
}

.moreOprea li:hover {
    background: #f0f0f0;
}

.moreOprea li i {
    color: #a6a6a6;
}

.ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.ui-timepicker-div dl {
    text-align: left;
}

.ui-timepicker-div dl dt {
    height: 25px;
    margin-bottom: -25px;
}

.ui-timepicker-div dl dd {
    margin: 0 10px 10px 65px;
}

.ui-timepicker-div td {
    font-size: 90%;
}

.ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.ui_tpicker_hour_label,
.ui_tpicker_minute_label,
.ui_tpicker_second_label,
.ui_tpicker_millisec_label,
.ui_tpicker_time_label {
    padding-left: 20px
}

/*==========以下部分是Validform必须的===========*/

.Validform_checktip {
    margin-left: 8px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    color: #999;
    font-size: 12px;
}

.Validform_right {
    color: #71b83d;
    padding-left: 20px;
    background: url(../images/ValidformImages/right.png) no-repeat left center;
}

.Validform_wrong {
    color: red;
    padding-left: 20px;
    white-space: nowrap;
    background: url(../images/ValidformImages/error.png) no-repeat left center;
}

.Validform_loading {
    padding-left: 20px;
    background: url(../images/ValidformImages/onLoad.gif) no-repeat left center;
}

.Validform_error {
    border-color: #fe4343 !important;
    background: white;
}

#Validform_msg {
    color: #7d8289;
    font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
    width: 280px;
    -webkit-box-shadow: 2px 2px 3px #aaa;
    -moz-box-shadow: 2px 2px 3px #aaa;
    background: #fff;
    position: absolute;
    top: 0px;
    right: 50px;
    z-index: 99999;
    display: none;
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#999999');
}

#Validform_msg .iframe {
    position: absolute;
    left: 0px;
    top: -1px;
    z-index: -1;
}

#Validform_msg .Validform_title {
    line-height: 25px;
    height: 25px;
    text-align: left;
    font-weight: bold;
    padding: 0 8px;
    color: #fff;
    position: relative;
    background-color: #000;
}

#Validform_msg a.Validform_close:link,
#Validform_msg a.Validform_close:visited {
    line-height: 22px;
    position: absolute;
    right: 8px;
    top: 0px;
    color: #fff;
    text-decoration: none;
}

#Validform_msg a.Validform_close:hover {
    color: #cc0;
}

#Validform_msg .Validform_info {
    padding: 8px;
    border: 1px solid #000;
    border-top: none;
    text-align: left;
}

.Validform_checktip {
    margin-left: 0;
}

.info {
    border: 1px solid #ccc;
    padding: 2px 20px 2px 5px;
    color: #666;
    position: absolute;
    display: none;
    line-height: 20px;
    background-color: #fff;
}

.dec {
    bottom: -8px;
    display: block;
    height: 8px;
    overflow: hidden;
    position: absolute;
    left: 10px;
    width: 17px;
}

.dec s {
    font-family: simsun;
    height: 19px;
    left: 0;
    line-height: 21px;
    position: absolute;
    text-decoration: none;
    top: -9px;
    width: 17px;
}

.dec .dec1 {
    color: #ccc;
}

.dec .dec2 {
    color: #fff;
    top: -10px;
}

.validformtip {
    color: #fe4343;
    font-size: 12px;
}

.boxShadow {
    box-shadow: 0 7px 21px rgba(0, 0, 0, .1);
}

.smallMenuBox {
    position: absolute;
    background: white;
    z-index: 99;
    box-shadow: 0 7px 21px rgba(0, 0, 0, .1);
}

.smallMenuBox .smallMenuBoxTitle {
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    width: 210px;
    margin: 0 10px;
}

.smallMenuBox .smallMenuBoxTitle i {
    cursor: pointer;
    float: right;
    font-size: 14px;
    margin-right: 0;
    color: #a6a6a6;
}

.smallMenuBox .smallMenuBoxTitle i:hover {
    color: #2a90fc;
}

.smallMenuBox .smallMenuBoxTitle span {
    font-weight: bold;
    color: #333;
}

.smallMenuBox .smallMenuBoxUl {
    margin: 10px 0;
}

.smallMenuBox .smallMenuBoxUl li {
    cursor: pointer;
    line-height: 40px;
    color: #a6a6a6;
    padding: 0 10px;
    font-size: 14px;
}

.smallMenuBox .smallMenuBoxUl li:hover {
    background: #eee;
    color: #2a90fc;
}

/*<!--loading start-->*/

.loading-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .2);
}

.loading-view .loaders {
    left: 0;
    right: 0;
    top: 40%;
    width: 200px;
    height: 70px;
    display: flex;
    flex: 0 1 auto;
    margin: 0 auto;
    flex-wrap: wrap;
    position: absolute;
    flex-direction: row;
    border-radius: 10px;
    box-sizing: border-box;
    justify-content: center;
}

.loading-view .loaders .loader {
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
}

.ball-pulse>div:nth-child(0) {
    -webkit-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ball-pulse>div:nth-child(1) {
    -webkit-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ball-pulse>div:nth-child(2) {
    -webkit-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ball-pulse>div:nth-child(3) {
    -webkit-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ball-pulse>div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
}

/**
 * Styles shared by multiple animations
 */

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/*<!--loading end-->*/

.masked {
    overflow: hidden !important;
}

.masked-relative {
    position: relative !important;
}

.masked-hidden {
    visibility: hidden !important;
}

.wranBg {
    background: #ffe7e7;
}

.notNull {
    color: red;
    position: absolute;
    left: -10px;
}

.blue {
    background-color: rgb(61, 168, 245);
}

.green {
    background-color: rgb(117, 201, 64);
}

.cyan {
    background-color: rgb(47, 189, 179);
}

.purple {
    background-color: rgb(121, 126, 201);
}

.yellow {
    background-color: rgb(255, 175, 56);
}

.red {
    background-color: rgb(255, 79, 62);
}

.blueColor {
    color: rgb(61, 168, 245);
}

.greenColor {
    color: rgb(117, 201, 64);
}

.cyanColor {
    color: rgb(47, 189, 179);
}

.purpleColor {
    color: rgb(121, 126, 201);
}

.yellowColor {
    color: rgb(255, 175, 56);
}

.redColor {
    color: rgb(255, 79, 62);
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 106;
    width: 250px;
    max-width: none;
    padding: 0;
    text-align: left;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 3px;
    box-shadow: 0 7px 21px rgba(0, 0, 0, .2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.popover .popover-header {
    padding: 10px 0;
    margin: 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.popover .popover-back-handler {
    left: 15px;
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
    transition: opacity 218ms;
}

.popover .popover-back-handler,
.popover .popover-close-handler {
    position: absolute;
    top: 15px;
}

.popover .popover-title {
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    background: none;
    border: 0 none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.popover .popover-close-handler {
    right: 15px;
}

.popover .popover-back-handler,
.popover .popover-close-handler {
    position: absolute;
    top: 15px;
}

.popover-content {
    padding: 15px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.popover-content>.list>li {
    line-height: 30px;
}

.list>li:first-child>a {
    margin-top: 5px;
}

.popover-content>.list>li>a {
    color: gray;
}

.popover .deletebtn {
    width: 100%;
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: white;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background-color: #ff4f3e;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.disabledbtn {
    background-color: #d9d9d9;
    color: white;
}

.noticityWrapper {
    display: none;
    position: absolute;
    height: 25px;
    line-height: 25px;
    min-width: 120px;
    text-align: center;
    color: white;
    background: #f24a4a;
    border-radius: 4px;
    bottom: 45px;
    right: 0;
    white-space: nowrap;
}

.deptField span.wrapperArrow,
.wrapperArrow {
    width: 0;
    height: 0;
    position: absolute;
    bottom: -5px;
    right: 10px;
    border-top: 5px solid #f24a4a;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.icon-XSL {
    color: #8bc755;
}

.icon-TAR {
    color: #ba4cd7;
}

.icon-JPG {
    color: #3db6fb;
}

.icon-ZIP {
    color: #dc4ec1;
}

.icon-TXT {
    color: #55d7e0;
}

.icon-TIF {
    color: #43a73b;
}

.icon-SVG {
    color: #1a8ef7;
}

.icon-RAR {
    color: #8d51db;
}

.icon-PSD {
    color: #3676f4;
}

.icon-PNG {
    color: #fccc00;
}

.icon-PPT {
    color: #f85207;
}

.icon-PDF {
    color: #ea4318;
}

.icon-GIF {
    color: #84dc00;
}

.icon-DOC {
    color: #3878de;
}

.icon-BMP {
    color: #c98e18;
}

.icon-z1 {
    color: #57c1ff;
}

/* 选择用户 汇报 考勤 */

.pubSelUserBox {
    width: 250px;
    box-sizing: border-box;
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    margin: auto;
    background: white;
    z-index: 57;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.pubSelUserBox h2 {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    color: grey;
    text-align: center;
}

.pubSelUserBox h2 .iconfont:hover {
    color: #27a2ff;
}

.pubSelUserBox .searchPubSelUserIpt {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding-left: 10px;
    box-sizing: border-box;
    height: 30px;
    line-height: 30px;
    margin: 10px;
    width: 230px;
    background: #e2e2e2;
}

.pubSelUserBox .selAllUserList,
.pubSelUserBox .selSomeUserList {
    max-height: 210px;
    overflow-y: auto;
    border-bottom: 1px solid #e8e8e8;
}

.pubSelUserBox .selAllUserList p,
.pubSelUserBox .selSomeUserList p {
    cursor: pointer;
    line-height: 24px;
    padding: 5px 10px;
}

.pubSelUserBox .selAllUserList p:hover,
.pubSelUserBox .selAllUserList p.on,
.pubSelUserBox .selSomeUserList p:hover,
.pubSelUserBox .selSomeUserList p.on {
    background: #EAF4FA;
}

.pubSelUserBox .selAllUserList p img,
.pubSelUserBox .selSomeUserList p img {
    float: left;
    margin-right: 5px;
    border-radius: 50%;
}

.pubSelUserBox .selAllUserList p .iconfont,
.pubSelUserBox .selSomeUserList p .iconfont {
    float: right;
    color: #cacaca;
}

.pubSelUserBox .selAllUserList p:hover .iconfont,
.pubSelUserBox .selAllUserList p.on .iconfont,
.pubSelUserBox .selSomeUserList p:hover .iconfont,
.pubSelUserBox .selSomeUserList p.on .iconfont {
    color: #60c24e;
}

.pubSelUserBox .selAllUserList p span,
.pubSelUserBox .selSomeUserList p span {
    cursor: pointer;
}

.selMultiUsersBox {
    height: 35px;
    overflow: hidden;
}

.pubSelBtnBox {
    width: 140px;
    margin: 10px auto;
}

.pubSelBtnBox button {
    padding: 0;
    width: 60px;
    height: 30px;
    outline: none;
}

.iptSelBtn {
    display: block;
    margin: 10px auto;
}

/* 人员或部门选择 */

.getPersonOrDept {
    z-index: 999;
}

.personAndDeptBox {
    top: 80px;
    bottom: auto;
    width: 600px;
    height: 450px;
    flex-direction: column;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-property: width, height;
    -o-transition-property: width, height;
    -moz-transition-property: width, height;
    -webkit-transition-property: width, height;
}

.personAndDeptBoxBig {
    width: 90%;
    height: 90%;
}

.personTitle {
    flex: 0 0 56px;
    line-height: 35px;
    position: relative;
    padding: 10px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

.bigPersonBtn,
.smallPersonBtn {
    border: 0;
    top: 10px;
    right: 50px;
    cursor: pointer;
    position: absolute;
    background: white;
}

.closePersonBtn {
    top: 10px;
    right: 20px;
    position: absolute;
    border: 0;
    cursor: pointer;
    background: white;
    padding: 0 5px;
}

.personSection {
    flex: 1;
    min-height: 0;
    padding: 0 20px;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
}

.personSearch {
    flex: 0 0 32px;
    margin: 10px 0;
    padding: 0 10px;
    border-radius: 4px;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.personSearchIpt {
    border: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    border-radius: 4px;
}

.personSearchBtn {
    top: 0;
    right: 0;
    border: 0;
    z-index: 2;
    width: 40px;
    height: 30px;
    cursor: pointer;
    line-height: 30px;
    text-align: center;
    position: absolute;
    background: white;
    border-radius: 4px;
}

.personSearchResult {
    left: 0;
    top: 38px;
    z-index: 2;
    width: 100%;
    padding: 10px;
    max-height: 345px;
    overflow-y: auto;
    position: absolute;
    background: white;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.personSearchResult .personSearchResultTitle {
    height: 39px;
    line-height: 39px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: white;
}

.personSearchResult .personSearchResultTitle span {
    font-size: 14px;
    color: #252525;
    margin-right: auto;
}

.personSearchResult .personSearchResultTitle button {
    border: 0;
    opacity: 0.8;
    font-size: 14px;
    color: #959595;
    cursor: pointer;
    margin-left: 10px;
    background: white;
}

.personSearchResult .personSearchResultTitle .clearAllSelected:hover {
    color: #fe4343;
}

.personSearchResult .personSearchResultTitle .allSelectTheDeptResultBtn:hover {
    color: #27a2ff;
}

.personSearchResult .personSearchResultTitle button.enterTheseSelected {
    color: #2a90fc;
    position: relative;
    padding-left: 10px;
}

.personSearchResult .personSearchResultTitle button.enterTheseSelected::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: #ddd;
}

.deptResultBox,
.personResultBox {
    overflow: hidden;
}

.personSearchResult ul {
    margin-top: 50px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.personSearchResult ul li {
    display: flex;
}

.personSearchResult ul li:hover {
    background: #ededed;
}

.personSearchResult ul li .selectThisNode {
    width: 18px;
    height: 18px;
    margin: auto 20px;
    background: url(../images/noselected.png) no-repeat center center;
    background-size: 18px;
}

.personSearchResult ul li.on .selectThisNode {
    background: url(../images/selected.png) no-repeat center center;
    background-size: 18px;
}

.personSearchResult .hasChoicedNode {
    width: 100%;
    margin: 5px auto 5px 0;
    padding: 5px 0 5px 24px;
}

.personSearchResult .hasChoicedNode:hover {
    background: #ededed;
}

.personSearchResult .hasChoicedNode .delThisChoiced {
    display: none;
}

.notSearchResult {
    color: #f24a4a;
}

.personContentBox {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ddd;
}

.personBtnTab {
    width: auto;
    max-width: 290px;
    border-radius: 4px;
    border: 1px solid #2a90fc;
}

.personBtnTab button {
    flex: 1;
    border: 0;
    outline: none;
    padding: 0 15px;
    color: #2a90fc;
    cursor: pointer;
    line-height: 33px;
    text-align: center;
    background: white;
}

.personBtnTab button.active {
    border-radius: 0;
    color: white;
    background: #2a90fc;
}

.personDeptType {
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
}

.personUserType {
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
}

.choicedUserType span,
.choicedDeptType span {
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    margin-right: auto;
    padding-left: 10px;
}

.allSelectedBtn {
    border: 0;
    flex: 0 0 28px;
    -ms-flex: 0 0 28px;
    -webkit-flex: 0 0 28px;
    -moz-box-flex: 0 0 28px;
    -webkit-box-flex: 0 0 28px;
    margin-right: 10px;
    cursor: pointer;
    color: #1a8ef7;
    background: white;
}

.choiceDeptTypeBtn,
.choiceUserTypeBtn {
    flex: 0 0 34px;
    -ms-flex: 0 0 34px;
    -webkit-flex: 0 0 34px;
    -moz-box-flex: 0 0 34px;
    -webkit-box-flex: 0 0 34px;
    padding: 0 8px;
    cursor: pointer;
    color: #a2a2a2;
    background: white;
    box-sizing: border-box;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid #dedede;
}

.deptTypeUl,
.userTypeUl {
    left: 0;
    right: 0;
    top: 36px;
    z-index: 2;
    overflow-y: auto;
    max-height: 400px;
    position: absolute;
    background: white;
    box-shadow: 3px 5px 15px;
}

.deptTypeUl li,
.userTypeUl li {
    cursor: pointer;
    overflow: hidden;
    padding: 5px 10px;
    line-height: 24px;
}

.deptTypeUl li:hover,
.userTypeUl li:hover {
    background: #dedede;
}

.personContentBox h3 {
    width: 100%;
    display: flex;
    line-height: 35px;
    display: inline-flex;
    box-sizing: border-box;
    display: -moz-inline-box;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    border-bottom: 1px solid #ddd;
}

.personContentBox span {
    margin-right: auto;
}

.personContentLeft {
    flex: none;
    width: 50%;
    flex-direction: column;
    border-right: 1px solid #ddd;
}

.personDeptsBox,
.personUsersBox {
    flex: 1;
    overflow-x: hidden;
    flex-direction: column;
}

.personContentRight {
    flex: none;
    width: 50%;
    flex-direction: column;
}

.personContentPart {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.personContentPart .txtcenter {
    text-align: center !important;
}

.cleanAllHasChoicedPer {
    border: 0;
    cursor: pointer;
    background: white;
}

.choicedPartBox {
    padding: 10px;
}

.choicedPartBox span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.personBtnBox {
    text-align: right;
    padding: 10px 0;
}

.personBtnBox button {
    width: 58px;
    height: 35px;
    outline: none;
    cursor: pointer;
    line-height: 35px;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
}

.resetPersonBtn {
    color: #7d7d7d;
    background-color: white;
    border: 1px solid #e8e8e8;
}

.submitPersonBtn {
    border: 0;
    color: white;
    background-color: #2a89fc;
}

.hasChoicedNode {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin: 0 10px 0 0;
    position: relative;
    padding-left: 24px;
    display: inline-flex;
    text-overflow: ellipsis;
    box-sizing: border-box;
    display: -webkit-inline-flex;
}

.hasChoicedNode a {
    top: 0;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    margin: auto;
    color: white;
    display: block;
    line-height: 24px;
    position: absolute;
    text-align: center;
    border-radius: 50%;
    background: #81a6e0;
}

.choicedPartBox .hasChoicedNode {
    display: flex;
    line-height: 24px;
    margin-bottom: 10px;
    display: -webkit-flex;
}

.choicedNodeBox {
    height: 35px;
    margin: auto 0;
    overflow: hidden;
    line-height: 35px;
    position: relative;
    border-radius: 4px;
    padding-right: 48px;
    box-sizing: border-box;
}

.hasChoicedNode img {
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    border-radius: 50%;
}

.hasChoicedNode span {
    margin: 0 5px;
}

.choicedPartBox .hasChoicedNode span {
    margin: 0 auto 0 10px;
}

.hasChoicedNode .delThisChoiced {
    font-size: 14px;
    visibility: hidden;
}

.hasChoicedNode:hover .delThisChoiced {
    visibility: visible;
    color: #fe4343;
}

.hasChoicedNode:hover .delThisChoiced:hover {
    visibility: visible;
    color: #fe6262;
}

.hasChoicedNode:hover .delThisChoiced:active {
    visibility: visible;
    color: #db3b3b;
}

.choicedPartBox .hasChoicedNode:hover .delThisChoiced {
    color: #fe4343
}

.choicedPartBox .hasChoicedNode:hover .delThisChoiced:hover {
    color: #fe6262
}

.choicedPartBox .hasChoicedNode:hover .delThisChoiced:active {
    color: #db3b3b
}

.selProjectUserhDel {
    visibility: hidden;
}

.hasChoicedNode:hover .selProjectUserhDel {
    visibility: visible;
    color: #fe4343;
}

.hasChoicedNode:hover .selProjectUserhDel:hover {
    color: #fe6262;
}

.hasChoicedNode:hover .selProjectUserhDel:active {
    color: #db3b3b;
}

/**/

.crumb-nav {
    display: inline-block;
    vertical-align: middle;
}

.crumb-nav>li {
    display: inline-block;
    color: #333;
}

.crumb-nav li:first-child {
    cursor: pointer;
}

.crumb-nav>li:last-child {
    color: #333;
}

/* 公用部门选择 */

.selDeptBox {
    flex: 1;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #c7c8c9;
    border-radius: 4px;
}

.selDeptBtn,
.selDeptMulti {
    top: 0;
    bottom: 0;
    right: 5px;
    font-size: 20px;
    color: #2a90fc;
    line-height: 30px;
    position: absolute;
}

.selDeptBtn:hover,
.selDeptMulti:hover {
    color: #6bb3ff;
}

.selDeptBtn:active,
.selDeptMulti:active {
    color: #247cd8;
}

#selDeptTree {
    z-index: 80;
    width: 250px;
    position: fixed;
    background: white;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.175);
}

.selDeptBox .selDeptSm,
.selDeptBox .choicedNodeBox {
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    padding-left: 6px;
}

.selDeptBox .choicedNodeBox {
    padding-left: 6px;
}

.selDeptP {
    padding: 0 4px;
    line-height: 30px;
}

.selDeptP .delSelDeptBtn {
    visibility: hidden;
    margin-left: 5px;
}

.selDeptP:hover .delSelDeptBtn {
    color: #2a90fc;
    visibility: visible;
}

.showMore,
.showMoreNodes {
    top: 0;
    right: 25px;
    height: 30px;
    display: none;
    padding: 0 5px;
    cursor: pointer;
    font-size: 20px;
    color: #2a90fc;
    position: absolute;
}

.showMore:hover,
.showMoreNodes:hover {
    color: #6bb3ff;
}

.showMore:active,
.showMoreNodes:active {
    color: #247db8;
}

.omit .showMore,
.omit .showMoreNodes {
    display: block;
}

/* 项目成员选择 */

.projectPublicBoxBtn {
    margin: 10px auto;
    display: block;
    width: 124px;
}

.projectExcutorMemberBox .projectPublicBoxBtn {
    margin: 10px auto;
}

.noUserResult {
    padding: 10px;
    color: crimson;
}

.main-top {
    flex: 0 0 80px;
    flex: 0 0 80px;
    background: #2a90fc;
    color: white;
    width: 100%;
}

.main-top .gsname {
    padding-left: 100px;
    width: 134px;
    height: 52px;
    background: url(../images/eos.png) no-repeat 100px 15px;
}

.gsEnname {
    padding-left: 100px;
    letter-spacing: 4px;
}

.main-top .logo {
    position: absolute;
    left: 30px;
    top: 10px;
    height: 60px;
    width: 60px;
}

.main-top-menu {
    margin-right: 20px;
}

.userbox {
    color: white;
}

.s-name {
    margin-right: 3px;
    margin-top: 12px;
    text-align: center;
    height: 25px;
    width: 25px;
    line-height: 25px;
}

.s-name-nav {
    margin-right: 10px;
    text-align: center;
    color: #00a881;
    height: 35px;
    width: 35px;
    background: #dbdbdb;
    border-radius: 50%;
}

.main-top-menu .img {
    cursor: pointer;
    margin: 0 10px 0 10px;
    height: 20px;
    width: 20px;
    vertical-align: middle;
}

.main-drop {
    display: none;
    width: 200px;
    height: 235px;
    z-index: 10;
    top: 50px;
    left: -83px;
    position: absolute;
    color: #c7c7c7;
    background-color: rgba(0, 0, 0, .7);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.q-code {
    margin: 3px;
    line-height: 0;
}

.q-code img {
    width: 194px;
    height: 180px;
}

.code-down {
    font-size: 14px;
    color: #dbd7d7;
    line-height: 25px;
}

.main-add {
    cursor: pointer;
    padding-left: 30px;
    color: white;
    line-height: 30px;
    border-bottom: solid 1px black;
}

.flH {
    float: left;
    height: 50px;
    line-height: 50px;
}

.userMenu {
    margin-right: 30px;
}

.MessIcon {
    height: 80px;
}

.MessIcon i {
    display: block;
    height: 25px;
    margin-top: 18px;
}

.userMenu .icon-down-circle {
    margin: 0 10px;
    color: white;
    display: inline-block;
}

.userMenu .icon-down-circle.ratateto {
    animation: myshouqito 0.5s linear;
    -webkit-animation: myshouqito 0.5s linear;
    animation-fill-mode: forwards;
}

.userMenu .icon-down-circle.ratatefrom {
    animation: myshouqi 0.5s linear;
    -webkit-animation: myshouqi 0.5s linear;
    animation-fill-mode: forwards;
}

@keyframes myshouqito {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@-webkit-keyframes myshouqito {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes myshouqi {
    0% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes myshouqi {
    0% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.messNum {
    position: absolute;
    top: 25px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: red;
}

.MessIcon {
    padding: 0 10px;
    line-height: 80px;
    margin-right: 30px;
    text-align: center;
    display: flex;
    align-items: center;
}

.MessIcon img {
    width: 16px;
    height: 16px;
    margin-right: 3px;
}

.reportPageBtn i {
    font-size: 18px;
}

.MessIcon:hover {
    background: #2080fb;
}

.recycleBinBtn {
    margin-right: 40px;
}

.userMore {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    color: #565050;
    height: 34px;
    line-height: 34px;
    margin-top: 22px;
}

.userHeadPathBox {
    padding: 5px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    background: #2a90fc;
}

.userHeadPathBox img {
    display: block;
    border: 2px solid white;
    border-radius: 50%;
    box-sizing: border-box;
}

.userOperation {
    background: white;
    color: #5e5e5e;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    position: absolute;
    top: 40px;
    left: -33px;
    padding: 10px 0;
    z-index: 999;
    width: 120px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.quickMenuUl {
    right: 0;
    top: 40px;
    position: absolute;
    width: 120px;
    z-index: 60;
    background: white;
    color: #5e5e5e;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.userOperation li,
.quickMenuUl li {
    line-height: 30px;
    cursor: pointer;
    color: #5e5e5e;
}

.userOperation li a {
    display: block;
}

.userOperation li a:hover,
.userMenu .userOperation li:hover i,
.quickMenuUl li:hover,
.quickMenuUl li:hover i {
    color: #27a2ff;
}

.userMenu .userOperation li i,
.quickMenuUl li i {
    color: #5e5e5e;
    margin-left: 0;
    margin-right: 10px;
}

.qCreateNewReport i {
    font-size: 14px;
}

.qUploadFile i,
.qCreateNewApply i,
.qCreateNewTask i {
    font-size: 18px;
}

.quickClickBtn {
    color: white;
}

#content {
    height: 100%;
    display: flex;
    display: -webkit-flex;
    overflow-y: hidden;
    box-sizing: border-box;
    overflow-x: hidden;
}

#leftMenu {
    background: #f5f5f5;
    flex: 0 0 199px;
    -webkit-flex: 0 0 199px;
    z-index: 50;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    color: #999;
}

#leftMenu a {
    color: #999;
}

#leftMenu .munuTitle {
    margin: 10px 15px;
    padding: 15px 0 5px;
    border-top: 1px solid #ddd;
}

#leftMenu .munuUlBtn {
    display: flex;
    display: -ms-flex;
    padding: 0 15px;
    line-height: 30px;
}

#leftMenu .munuUlBtn:hover {
    color: #27a2ff;
}

#leftMenu .munuUlBtn:active {
    color: #247cdb;
}

#leftMenu .munuUlBtn img {
    width: 16px;
    height: 16px;
    margin: auto 10px auto 0;
}

#leftMenu .munuUlBtn span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-right: auto;
}

#leftMenu .munuUlBtn i {
    margin-left: 5px;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
}

#leftMenu .munuUlBtn i.on {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

#leftMenu .munuDiv {
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
    transition-property: height;
    transition-duration: 0.5s;
    -webkit-transition-property: height;
    -webkit-transition-duration: 0.5s;
}

#leftMenu .munuDivOpen {
    height: auto;
}

#leftMenu .leftMenu-topBtn {
    line-height: 35px;
    color: #999999;
    margin-top: 8px;
    position: relative;
    padding: 0 15px;
}

#leftMenu .leftMenu-topBtn img {
    width: 16px;
    height: 16px;
    margin: auto 10px auto 0;
}

#leftMenu .leftMenu-topBtn p {
    margin-right: auto;
    margin-bottom: 0;
}

#leftMenu .leftMenu-topBtn .shortcutRemoveIcon {
    display: none;
}

#leftMenu .leftMenu-topBtn:hover .shortcutRemoveIcon {
    display: block;
}

#leftMenu .leftMenu-btn {
    display: flex;
    margin-top: 8px;
    line-height: 35px;
    color: #999999;
    position: relative;
    padding-left: 30px;
    align-items: center;
    display: -webkit-flex;
}

#leftMenu .leftMenu-btn img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

#leftMenu .leftMenu-btn p {
    margin: 0 auto 0 0;
}

#leftMenu .leftMenu-btn i {
    margin-right: 15px;
    display: none;
}

#leftMenu .leftMenu-btn:hover i {
    display: block;
}

.mrl10 {
    margin: 0 10px;
}

.flH span {
    cursor: pointer;
}

.iconColor {
    color: #4d4d4d;
    text-align: center;
}

.iconColorWhite {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
}

.icon-shouji {
    font-size: 22px;
}

.icon-shezhi {
    font-size: 18px;
}

.icon-jia1 {
    font-size: 18px;
}

.menuIcon {
    text-align: center;
    padding: 5px 0 5px 0;
}

.menuName {
    text-align: center;
    padding: 0px 0 5px 0;
}

#leftMenu .leftMenu-topBtn:hover,
#leftMenu .leftMenu-btn:hover,
#leftMenu .leftMenu-btn:hover span.iconfont,
#leftMenu .leftMenu-btn.menuActive {
    color: #27a2ff;
    background: #e0eaf3;
}

#leftMenu .leftMenu-btn.menuActive:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #27a2ff;
}

#leftMenu .leftMenu-btn.menuActive .iconfont {
    color: #55a6fd;
}

#leftMenu .leftMenu-btn.menuActive .iconfont.icon-lingxing {
    color: #27a2ff;
}

.menuActive .iconColor {
    color: #00a881;
}

.menus {
    color: #423d3d;
    cursor: pointer;
    position: relative;
}

.menus:hover {
    color: #00a881 !important;
}

.menuActive:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    margin-top: -5px;
    content: ' ';
    color: white;
    border-top: 8px solid transparent;
    border-right: 8px solid #eff2f8;
    border-bottom: 8px dashed transparent;
}

.content-left {
    margin: 15px 30px 30px 15px;
}

.content-nav span {
    display: inline-block;
    cursor: pointer;
    padding: 5px 10px 5px 10px;
}

.nav-active {
    background: #00a881;
    color: white;
    border-radius: 5px;
}

.nav-list {
    margin-top: 15px;
}

.nav-time {
    display: inline-block;
    width: 10%;
}

.nav-line {
    position: relative;
    top: -3px;
    display: inline-block;
    height: 1px;
    background: #dcdcdc;
    width: 88%;
}

.nav-con {
    margin-top: 12px;
    line-height: 35px;
}

.content-right {
    margin-top: 15px;
}

.user {
    font-weight: bold;
    line-height: 35px;
}

.dates {
    line-height: 35px;
}

.task-box {
    width: 200px;
    height: 80px;
}

.box-bdrb {
    border-right: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
}

.box-bdb {
    border-bottom: solid 1px #e5e5e5;
}

.box-bdr {
    border-right: solid 1px #e5e5e5;
}

.task-type {
    text-align: center;
    line-height: 25px;
}

.count-mar {
    margin-top: 10px;
}

.todo {
    color: #f8a03f;
    font-size: 14px;
    font-weight: bold;
}

.expire {
    color: #f9490d;
    font-size: 14px;
    font-weight: bold;
}

.inhand {
    color: #88bf7b;
    font-size: 14px;
    font-weight: bold;
}

.done {
    color: darkgray;
    font-size: 14px;
    font-weight: bold;
}

#charts {
    height: 300px;
}

.nav-name {
    margin: 0 8px 0 8px;
    color: #6c6565;
    font-weight: bold;
}

.lastTitle {
    font-weight: bold;
    line-height: 35px;
    border-bottom: solid 1px #e5e5e5;
}

#rightMenu {
    height: 100%;
    flex-grow: 1;
    overflow-x: auto;
}

.recordInformation {
    width: 100%;
    background: #f5f5f5;
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    border-top: 1px solid #ddd;
    display: none;
}

.recordInformation a {
    font-size: 12px;
}

.recordInformationLogin {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: transparent;
    border-top: 0;
    color: white;
}

.recordInformationLogin a {
    color: white;
}

/* 全站上传文件 */

.pubUploadFileBox {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    position: fixed;
    background: rgba(0, 0, 0, .5);
}

.pubUploadFileCon {
    left: 0;
    right: 0;
    top: 80px;
    margin: auto;
    width: 600px;
    border-radius: 4px;
    position: absolute;
    background: white;
}

.pubUploadFileTitle {
    padding: 0 20px;
    line-height: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.selectFloder {
    cursor: pointer;
    color: #b9b9b9;
    margin-left: 10px;
}

.selectFloder i {
    margin-left: 5px;
}

.closePubUploadFile {
    top: 0;
    right: 20px;
    cursor: pointer;
    position: absolute;
}

.selFileBox {
    margin: 20px;
    padding: 10px;
    cursor: pointer;
    line-height: 40px;
    border-radius: 2px;
    border: 1px solid #e8e8e8;
}

.selectFile {
    text-align: center;
}

.thisSelFileTypeIcon {
    font-size: 40px;
}

.thisSelFileName {
    margin-right: auto;
}

.delThisSelFile {
    cursor: pointer;
    color: #909090;
}

.delThisSelFile:hover {
    color: #2a90fc;
}

.visualBox {
    margin: 0 20px 20px;
}

.visualSelectPub {
    width: 100%;
    height: 30px;
    border: 1px solid #e8e8e8;
}

.visualNum {
    color: #909090;
    margin: 20px 0 10px;
}

.uploadFilePubBtnBox {
    padding: 20px;
    text-align: right;
    border-top: 1px solid #e8e8e8;
}

.uploadFilePubBtn {
    border: 0;
    width: 50px;
    height: 30px;
    color: white;
    cursor: pointer;
    line-height: 30px;
    border-radius: 4px;
    background: #2a90fc;
}

.addVisualUser {
    border: 0;
    color: #2a90fc;
    cursor: pointer;
    font-size: 30px;
    background: white;
}

.visualBoxP {
    flex: 0 0 65px;
    line-height: 30px;
}

.visualUserList .hasChoicedNode {
    overflow: inherit;
    text-align: center;
    display: inline-block;
}

.visualUserList .hasChoicedNode img {
    float: none;
    margin: auto;
    display: block;
    position: relative;
}

.visualUserList .hasChoicedNode span {
    display: block;
    line-height: 20px
}

.visualUserList .hasChoicedNode i {
    right: 0;
    top: -8px;
    color: #a1a1a1;
    position: absolute;
}

.visualUserList .hasChoicedNode i:hover {
    color: #2a90fc;
}

/* 全站上传文件 */

.notAllowClick {
    border: 0 !important;
    color: white !important;
    cursor: no-drop !important;
    background-color: #c3c3c3 !important;
}

/* 新建公告 */

.pubNotifyDialog .notify-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 800;
    display: none;
    padding: 0 20px 20px 20px;
}

.pubNotifyDialog .notify-dialog .pb-box {
    width: 100%;
    height: 60px;
    background-color: #fff;
}

.pubNotifyDialog .notify-dialog .content {
    max-width: 90%;
    width: 820px;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.34) 0px 0px 5px;
    min-height: 300px;
    overflow: hidden;
}

.pubNotifyDialog .notify-dialog .content .show-big,
.pubNotifyDialog .notify-dialog .content .show-small {
    border: 0;
    top: 17px;
    right: 50px;
    cursor: pointer;
    position: absolute;
    background: white;
    z-index: 100;
    display: none;
}

.pubNotifyDialog .notify-dialog .content .close {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(/static/notify/images/close.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    z-index: 50;
    margin-top: 17px;
    margin-right: 20px;
}


.pubNotifyDialog .notify-dialog .red-tag {
    color: #f51616;
}

.pubNotifyDialog .notify-dialog .edit-wrap .range-box {
    margin-top: 15px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .range-box .range {
    display: inline-block;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog ul.sel-user .item .close-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(/static/notify/images/people-close.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog ul.sel-user .item:hover .close-icon {
    background: url(/public/images/close-blue.png) no-repeat;
    background-size: 100% 100%;
}

.pubNotifyDialog .notify-dialog ul.sel-user .item {
    float: left;
    min-width: 80px;
    margin-right: 10px;
}

.pubNotifyDialog .notify-dialog ul.sel-user .item:hover {
    color: #2a90fc;
}

.pubNotifyDialog .notify-dialog .edit-wrap .title {
    color: #323232;
    font-size: 14px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    padding-left: 20px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .sel-range {
    width: 662px;
    min-height: 36px;
    background-color: #ffffff;
    border-radius: 3px;
    border: solid 1px #d9d9d9;
    line-height: 36px;
    display: inline-block;
    cursor: pointer;
    padding: 0 10px;
    vertical-align: middle;
    position: relative;
}

.pubNotifyDialog .notify-dialog .edit-wrap .sel-range .arrow {
    width: 16px;
    height: 18px;
    display: inline-block;
    background: url(/static/notify/images/arrow.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
}

.pubNotifyDialog .notify-dialog .edit-wrap .sel-range .arrow.up {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    /* Opera */
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box .receive-arrow {
    width: 16px;
    height: 18px;
    display: inline-block;
    background: url(/static/notify/images/arrow.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    display: none;
    position: absolute;
    right: 10px;
    top: 20px;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box .receive-arrow.up {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    /* Opera */
}


.pubNotifyDialog .notify-dialog .edit-wrap .sel-range .sel-mul {
    color: #bfbfbf;
    display: inline-block;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .edit-wrap .title-box {
    margin-top: 20px;

}

.pubNotifyDialog .notify-dialog .edit-wrap .title-box .title-txt {
    width: 674px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 3px;
    border: solid 1px #d9d9d9;
    line-height: 36px;
    padding-left: 10px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .err-tip {
    margin-left: 90px;
    color: #f51616;
    display: none;
}

.pubNotifyDialog .notify-dialog .edit-wrap .edit-box {
    margin-top: 15px;
    width: 700px;
    position: relative;
    min-height: 210px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .comment-sum {
    width: 661px;
    background-color: #ffffff;
    border-radius: 3px;
    border: solid 1px #d9d9d9;
    display: inline-block;
    vertical-align: text-top;
}

.pubNotifyDialog .notify-dialog .edit-wrap .priority-box .sel-menu {
    display: inline-block;
    margin-left: 10px;
    vertical-align: sub;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .edit-wrap .priority-box .check {
    width: 16px;
    height: 16px;
    display: inline-block;
    cursor: pointer;
    margin-top: 5px;
    background: url(/static/notify/images/icon-instance.png) no-repeat;
    vertical-align: sub;
    background-size: 100% 100%;
}

.pubNotifyDialog .notify-dialog .edit-wrap .priority-box .check.active {
    width: 16px;
    height: 16px;
    display: inline-block;
    cursor: pointer;
    margin-top: 5px;
    background: url(/static/notify/images/icon-instance-active.png) no-repeat;
    background-size: 100% 100%;
}

.pubNotifyDialog .notify-dialog .edit-wrap .error-txt {
    text-align: right;
    color: #f51616;
    margin-right: 20px;
    padding-bottom: 5px;
    visibility: hidden;
}

.pubNotifyDialog .notify-dialog .edit-wrap .btn-box {
    width: 100%;
    border-top: 1px solid #e8e8e8;
    text-align: right;
    background-color: #fff;
    height: 60px;
    padding-top: 10px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .btn-box .cancel-btn {
    width: 64px;
    height: 32px;
    background-color: #fff;
    border-radius: 2px;
    border: solid 1px #d9d9d9;
    color: rgba(0, 0, 0, 0.49);
    cursor: pointer;
    margin-left: 20px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .btn-box .sure-btn {
    width: 64px;
    height: 32px;
    background-color: #2a90fc;
    border-radius: 2px;
    border: 1px solid #2a90fc;
    color: #fff;
    cursor: pointer;
    margin-left: 15px;
    margin-right: 20px;
}


/* 弹窗 详情页面*/
.pubNotifyDialog .notify-dialog .edit-wrap {
    color: #323232;
    font-size: 14px;
    position: relative;
    height: 100%;
    padding-top: 10px;
    display: none;
}

.pubNotifyDialog .notify-dialog .detail-wrap {
    color: #323232;
    font-size: 14px;
    position: relative;
    height: 100%;
    padding-top: 55px;
    display: none;
}

.pubNotifyDialog .notify-dialog .edit-wrap .title-box {
    padding-bottom: 10px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .title-box {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding-left: 20px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .scroll-content {
    position: relative;
    margin-left: 20px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .scroll-content .ss-content {
    overflow-y: auto;
}

.pubNotifyDialog .notify-dialog .detail-wrap .scroll-content {
    position: relative;
    overflow-y: auto;
    height: 100%;
    padding: 0 20px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .title-box .icon-title {
    width: 16px;
    height: 16px;
    display: inline-block;
    cursor: pointer;
    margin-top: 18px;
    background: url(/static/notify/images/icon-alarm.png) no-repeat;
    vertical-align: sub;
}

.pubNotifyDialog .notify-dialog .detail-wrap .title-box .title-msg {
    max-width: 400px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .detail-wrap .title-box .instancy {
    display: inline-block;
    margin-left: 10px;
    background-color: #ff4242;
    border-radius: 4px 4px 4px 0px;
    vertical-align: middle;
    line-height: 22px;
    color: #f7f7f7;
    font-size: 12px;
    padding: 0 5px;
    display: none;
}

.pubNotifyDialog .notify-dialog .detail-wrap .content-box {
    padding: 20px 0;
    vertical-align: middle;
    display: inline-block;
    margin-top: 0;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .content-box {
    margin-left: 60px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .content-box .item-title:before {
    content: " ";
    width: 4px;
    height: 20px;
    background-color: #2d91ef;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .detail-wrap .content-box .item-title {
    font-size: 14px;
    color: #2a2a2a;
    font-weight: bold;
    width: 700px;
    word-break: break-all;
    display: inline-block;
}

.pubNotifyDialog .notify-dialog .detail-wrap .content-box .item-msg {
    color: #464646;
    line-height: 24px;
    margin-top: 15px;
    display: inline-block;
    width: 98%;
    word-break: break-all;
    margin-left: 13px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box .title-item,
.pubNotifyDialog .notify-dialog .detail-wrap .sender-box .title-item,
.pubNotifyDialog .notify-dialog .detail-wrap .files .title-item,
.pubNotifyDialog .notify-dialog .detail-wrap .create-time .title-item {
    color: #2a2a2a;
    vertical-align: top;
    display: inline-block;

}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box .title-item,
.pubNotifyDialog .notify-dialog .detail-wrap .sender-box .title-item {
    font-weight: bold;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box,
.pubNotifyDialog .notify-dialog .detail-wrap .sender-box,
.pubNotifyDialog .notify-dialog .detail-wrap .files,
.pubNotifyDialog .notify-dialog .detail-wrap .create-time,
.pubNotifyDialog .notify-dialog .detail-wrap .add-comment-box {
    border-top: 1px solid #ebebeb;
    padding: 15px 0;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box {
    padding-bottom: 0;
    position: relative;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box ul {
    width: 80%;
}

.pubNotifyDialog .notify-dialog .detail-wrap .sender-box ul {
    width: 80%;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box ul,
.pubNotifyDialog .notify-dialog .detail-wrap .sender-box ul,
.pubNotifyDialog .notify-dialog .detail-wrap .files ul {
    display: inline-block;
}

.pubNotifyDialog .notify-dialog .detail-wrap .files ul {
    width: 90%;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box li.item,
.pubNotifyDialog .notify-dialog .detail-wrap .sender-box li.item,
.pubNotifyDialog .notify-dialog .detail-wrap .files li.item {
    display: inline-block;
    float: left;
    margin-left: 20px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .files li.item:hover {
    color: #256ff2;
}

.pubNotifyDialog .notify-dialog .detail-wrap .files li.item {
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box li.item {
    position: relative;
    margin-bottom: 10px;
    min-width: 100px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box li.item span.user-name {
    /*margin-left: 30px;*/
}

.pubNotifyDialog .notify-dialog .edit-wrap a.dept-name,
.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box li.item a.dept-name {
    width: 24px;
    height: 24px;
    margin: auto;
    color: white;
    display: inline-block;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: #81a6e0;
}

.pubNotifyDialog .notify-dialog .detail-wrap .files .file-type {
    max-width: 10%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .detail-wrap .files .file-name {
    max-width: 82%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .user-head {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .detail-wrap .receiver-box li.item .user-head,
.pubNotifyDialog .notify-dialog .detail-wrap .sender-box li.item .user-head {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .detail-wrap .files .file-icon {
    width: 16px;
    height: 18px;
    display: inline-block;
    /*background: url(/static/notify/images/file-fill.png) no-repeat;*/
    background-size: 100% 100%;
    vertical-align: sub;
}

.pubNotifyDialog .notify-dialog .detail-wrap .add-comment-box {
    position: relative;
    padding-bottom: 20px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .edit-send-msg {
    display: none;
    position: relative;
}

.pubNotifyDialog .notify-dialog .detail-wrap .add-comment-box .user-head {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    vertical-align: middle;
    position: absolute;
}

.pubNotifyDialog .notify-dialog .detail-wrap .to-edit {
    width: 720px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 4px;
    border: solid 1px #d5d5d5;
    display: inline-block;
    cursor: pointer;
    line-height: 36px;
    padding-left: 10px;
    margin-left: 50px;
    color: #9b9b9b;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box {
    background-color: #fff;
    border-top: 1px solid #ebebeb;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .user-head {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    vertical-align: middle;
    position: absolute;
    top: 15px;
    left: 0;
}


.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .content {}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box li.item {
    position: relative;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .user-name {
    color: #373737;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box li.item .create-time {
    color: #9b9b9b;
    border: none;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .msg {
    color: #373737;
    line-height: 24px;
    margin-top: 10px;
    width: 500px;
    word-break: break-all;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .operate-box {
    position: absolute;
    right: 0;
    top: 20%;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .operate-box .reply-txt {
    cursor: pointer;
    color: #9b9b9b;
}

.pubNotifyDialog .notify-dialog .detail-wrap .comment-box .operate-box .del-txt {
    cursor: pointer;
    color: #ff3b3b;
}

.pubNotifyDialog .notify-dialog .detail-wrap .sum-box {
    width: 700px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    position: absolute;
    left: 50px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .send-box {
    margin-left: 50px;
    padding-bottom: 20px;
    position: absolute;
}

.pubNotifyDialog .notify-dialog .detail-wrap .send-box .send-btn {
    width: 120px;
    background-color: #2a90fc;
    color: #ffffff;
    cursor: pointer;
    height: 32px;
    line-height: 28px;
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .send-box .cancel-btn {
    width: 68px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 2px;
    border: solid 1px #d5d5d5;
    color: #9c9c9c;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin-left: 14px;
}


.pubNotifyDialog .notify-dialog .detail-wrap .send-box.active {
    margin-top: 210px;
}

.work-files {
    width: 650px;
}

.work-files li {
    margin-top: 10px;
}

.work-files .remove-file {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(/static/notify/images/people-close.png) no-repeat;
    cursor: pointer;
    vertical-align: top;
    margin-top: 17px;
}

.pubNotifyDialog .notify-dialog .list-box .page-box {
    text-align: center;
}


/*已读*/
.pubNotifyDialog .notify-dialog .detail-wrap .read-box {
    color: #969696;
    font-size: 12px;
    border-top: 1px solid #ebebeb;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .mark-read {
    margin: 15px 0;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .un-read-icon {
    width: 14px;
    height: 10px;
    display: inline-block;
    background: url(/static/notify/images/un-read.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .mark-read-icon {
    width: 14px;
    height: 10px;
    display: inline-block;
    background: url(/static/notify/images/mark-read.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .un-read {
    margin: 15px 0;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .mark-read ul,
.pubNotifyDialog .notify-dialog .detail-wrap .read-box .un-read ul {
    display: inline-block;
    vertical-align: text-top;
    max-width: 520px;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .mark-read .item,
.pubNotifyDialog .notify-dialog .detail-wrap .read-box .un-read .item {
    color: #969696;
    font-size: 12px;
    float: left;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .read-more {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(/static/notify/images/read-more.png) no-repeat;
    background-size: 100% 100%;
    display: none;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .detail-wrap .read-box .remind-btn {
    margin-left: 15px;
    width: 140px;
    height: 32px;
    border-radius: 4px;
    background-color: #2a90fc;
    color: #f7f7f7;
    border: 1px solid #2a90fc;
    cursor: pointer;
    display: none;
}

/*未读*/

/*富文本 start*/
.pubNotifyDialog .notify-dialog .note-editor.note-frame .note-editing-area .note-editable {
    cursor: text;
}

.pubNotifyDialog .notify-dialog .note-editor.note-frame .note-statusbar {
    display: none;
}

.pubNotifyDialog .notify-dialog .note-editor.note-frame {
    border: 1px solid #a9a9a900;
}

.pubNotifyDialog .notify-dialog .edit-wrap .sum-box {
    width: 684px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: -17px;
    margin-left: 83px;
}

.pubNotifyDialog .notify-dialog .edit-wrap .sum-box .work-files {
    width: 100%;
    border-top: 1px solid #e3e3e3;
    background-color: #e3e3e345;
}

.pubNotifyDialog .notify-dialog .emoji-picker {
    width: 15px;
    height: 14px;
    background-image: url(/public/lib/summernote/tam-emoji/img/smile.png);
    display: inline-block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pubNotifyDialog .notify-dialog .file-picker {
    width: 15px;
    height: 14px;
    background-image: url(/public/lib/summernote/tam-emoji/img/file-link.png);
    display: inline-block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pubNotifyDialog .notify-dialog .sum-box .work-files {
    /*padding: 10px;*/
}

.pubNotifyDialog .notify-dialog .sum-box .work-files li {
    padding: 0 10px 10px 10px;
}

.pubNotifyDialog .notify-dialog .sum-box .work-files .icon {
    width: 32px;
    height: 41px;
    display: inline-block;
    background: url(/static/notify/images/file-fill.png) no-repeat;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .sum-box .work-files .name {
    color: #2a90fc;
    max-width: 400px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
}

.pubNotifyDialog .notify-dialog .sum-box .work-files .remove-file {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(/static/notify/images/people-close.png) no-repeat;
    cursor: pointer;
    vertical-align: middle;
    margin-top: 5px;
}

.pubNotifyDialog .notify-dialog table {
    max-width: 800px;
}

.pubNotifyDialog .notify-dialog table td,
.pubNotifyDialog .notify-dialog table th {
    padding: 5px 3px;
    border: 1px solid #999;
    min-width: 50px;
    max-width: 100px;
    word-break: break-all;
}

.pubNotifyDialog .notify-dialog table td img {
    max-width: 70px;
}

.note-editor .note-editing-area .note-editable table td,
.note-editor .note-editing-area .note-editable table th {
    border: 1px solid #999;
}

.note-table-popover .note-popover-arrow,
.note-table-popover .note-children-container {
    display: none;
}

.note-editor.note-frame .note-editing-area .note-editable {
    word-break: break-all;
}

.pubNotifyDialog .notify-dialog .note-editor .note-editing-area .note-editable table td,
.pubNotifyDialog .notify-dialog .note-editor .note-editing-area .note-editable table th {
    border: 1px solid #999;
}

/*富文本 end*/

/* 公告删除提示框 */

.pubNotifyDialog .del-dialog .content .del-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(/public/images/icon-del.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    cursor: pointer;
}

.pubNotifyDialog .del-dialog .content .cancel-btn {
    width: 66px;
    height: 30px;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #eee;
    color: rgba(0, 0, 0, 0.49);
    cursor: pointer;
    margin-left: 55px;
    float: right;
    margin-right: 10px;
}

.pubNotifyDialog .del-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 900;
    display: none;
}

.pubNotifyDialog .del-dialog .content {
    width: 300px;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    top: 40%;
    left: 40%;
    padding: 20px;
}

.pubNotifyDialog .del-dialog .content .close {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(/static/notify/images/close.png) no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    cursor: pointer;
}

.pubNotifyDialog .del-dialog .content .msg {
    margin-top: 20px;
}

.pubNotifyDialog .del-dialog .content .btn-box {
    margin-top: 20px;
}

.pubNotifyDialog .del-dialog .content .sure-btn {
    width: 66px;
    height: 30px;
    background-color: #2a90fc;
    border-radius: 2px;
    border: 1px solid #2a90fc;
    color: #fff;
    cursor: pointer;
    float: right;
}

/* 公告删除提示框 */

/* 新建公告 */

/* 任务详情、文件详情通用样式 */
.currencyDynamic {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    min-height: 250px;
}

.currencyDynamicBtn {
    border: 0;
    color: #4d4d4d;
    background: none;
    line-height: 24px;
}

.currencyDynamicBtn span:hover {
    color: #2a90fc;
}

.currencyDynamicBtnList {
    top: 46px;
    z-index: 1;
    left: 10px;
    right: 10px;
    color: #4d4d4d;
    border-radius: 4px;
    position: absolute;
    background: white;
    flex-direction: column;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.currencyDynamicBtnList li {
    cursor: pointer;
    padding: 8px 0 8px 10px;
}

.currencyDynamicBtnList li:hover {
    background: #eee;
}

.currencyDynamicList {
    flex: 1;
    overflow: hidden;
    flex-direction: column;
}

.currencyDynamicListBtn {
    border: 0;
    margin: 10px 0;
    font-size: 14px;
    color: #959595;
    background: none;
    text-align: left;
}

.currencyDynamicListBtn:hover {
    color: #2a90fc;
}

.currencyDynamicListUl {
    overflow-y: auto;
}

.currencyDynamicListUl li {
    color: #959595;
    font-size: 12px;
    margin-top: 15px;
}

.currencyDynamicListUl .dynamicLink .link{
    color: #2440b3;
    text-decoration: underline;
}

.dynamicContent {
    flex: 1;
    min-width: 0;
    margin-right: auto;
    /* display: flex; */
    flex-wrap: wrap;
}

.dynamicContent a {
    color: #404040;
}

.dynamicContentOpen {
    flex: 1;
}

.dynamicContent a:hover {
    color: #2a90fc;
}

.dynamicContent a.relevanceDeleted:hover {
    color: #404040;
}

.currencyReply {
    flex: 0 0 100px;
    flex-wrap: wrap;
    background: white;
    border-top: 1px solid #d5d5d5;
}

.currencyReplyTextarea {
    resize: none;
    flex: 0 0 100%;
    border: 0;
    padding: 5px 15px;
    box-sizing: border-box;
    height: 55px;
}

.currencyReplyBtn {
    margin-left: auto;
    padding: 5px 15px;
    color: #2a90fc;
    height: 30px;
}

.dynamicReplyContentBox {
    flex: 1;
    flex-wrap: wrap;
}

.dynamicReplyImg {
    border-radius: 50%;
}

.dynamicReplyContentBox .replySender {
    line-height: 20px;
    flex: 0 0 100%;
    min-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dynamicReplyContent {
    flex: 0 0 100%;
    margin-top: 5px;
    line-height: 20px;
}

.dynamicReplyContent p {
    margin: 0;
}

.currencyParticipantTitle {
    font-size: 14px;
    color: #4d4d4d;
}

.currencyAddParticipantBtn {
    border: 0;
    height: 30px;
    font-size: 30px;
    color: #2a90fc;
    background: none;
    line-height: 30px;
}

.currencyParticipantList li {
    cursor: pointer;
    margin-left: 10px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.currencyParticipantImg {
    width: 26px;
    height: 26px;
    display: block;
    border-radius: 50%;
    background: #000;
}

.currencyDelParticipantBtn {
    border: 0;
    top: -5px;
    right: -5px;
    color: #aaa;
    display: none;
    background: none;
    position: absolute;
}

.currencyParticipantList li:hover .currencyDelParticipantBtn {
    display: block;
}

.pubCollectBox {
    border-radius: 2px;
    border: 1px solid #ddd;
}

.pubCollectBoxTitle {
    display: block;
    color: #959595;
    margin-bottom: 10px;
}

.collectFileList .collectFile {
    line-height: 28px;
    margin-bottom: 10px;
    padding: 4px 10px;
}

.collectFileList .collectFile:hover {
    background: #f5f5f5;
}

.collectFileList .collectFile .fileFileType {
    font-size: 28px;
}

.collectDoneTaskList .collectTaskStatusBtn,
.collectDoneTaskList .collectTaskName,
.collectDoneTaskList .collectTaskProkect,
.collectDoneTaskList .collectMenuListBtn {
    opacity: 0.6;
}

.collectTask {
    padding: 4px 10px;
}

.collectTask:hover {
    background: #f5f5f5;
}

.collectTaskStatusBtn {
    border: 0;
    color: #959595;
    background: none;
    margin-right: 10px;
}

.collectTaskName {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    color: #959595;
    overflow: hidden;
    margin-right: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.collectTaskName:hover {
    color: #2a90fc;
}

.correlationBtnBox {
    padding: 5px 0;
    border-radius: 2px;
    border: 1px solid #ddd;
}

.theCorrelationBtn {
    border: 0;
    border-right-color: currentcolor;
    border-right-style: none;
    border-right-width: 0px;
    padding: 5px;
    flex: 0 0 100px;
    color: #2a90fc;
    background: none;
    border-right: 1px solid #ddd;
}

.correlationBtnBox input {
    border: 0;
    width: 100%;
    padding-left: 35px;
    box-sizing: border-box;
    background: url(/public/images/icon_search.png) no-repeat 5px center;
    background-size: auto;
    background-size: 20px;
}

.correlationResultList {
    right: 0;
    z-index: 1;
    left: 0;
    overflow-y: auto;
    max-height: 200px;
    position: absolute;
    border-radius: 4px;
    overflow-x: hidden;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.historyContent h3 {
    padding: 10px;
    color: #959595;
}

.correlationResultList li {
    padding: 10px;
    cursor: pointer;
    color: #959595;
}

.correlationResultList li span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    margin-left: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.correlationResultList li:hover {
    background: #ebebeb;
}

.collectBtnMenu {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 250px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background: white;
    border-radius: 2px;
    z-index: 2;
}

/* 任务详情、文件详情通用样式 */

.questionTip {
    width: 14px;
    height: 14px;
    background: url(../images/question.png) no-repeat center center;
    background-size: 14px;
    margin: auto 0;
}

/*日期选择器，鼠标经过，选中的日期背景颜色*/
.c-datepicker-date-table td .cell:hover {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
    line-height: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #d9ebff;
}

.c-datepicker-input--small .c-datepicker-input__inner {
    cursor: pointer;
}

.c-datepicker-time-spinner__item {
    cursor: pointer;
}

.c-datepicker-time-spinner__item:hover {
    background-color: #d9ebff;
    border-radius: 3px;
}