body {
    width:100%;
    left:0;
    font-family:"Microsoft Yahei", "Simsun", "Helvetica";
    background:url(background.png);
    font-size:12px;
}

.arrowBox {
    width:160px;
    height:100px;
    background-color:white;
    border:1px solid #d4ddf3;
    position:relative;
    border-top-left-radius:4px;
    border-bottom-left-radius:4px;
}

.arrowBox:after {
    content:'';
    position:absolute;
    top:0px;
    left:160px;
    width:0;
    height:0;
    border:50px solid transparent;
    border-left:12px solid #d4ddf3;
}

.arrowBox:before {
    content:'';
    position:absolute;
    top:0px;
    left:161px;
    width:0;
    height:0;
    border:50px solid transparent;
    border-left:12px solid #d4ddf3;
}

.badgeDiv {
    width:128px;
    height:108px;
    cursor:pointer;
    text-align:center;
    border:1px solid peru;
    border-radius:4px;
    display:inline-block;
    box-shadow:4px 4px 4px silver;
}

.badgeDiv .badgeDivHead {
    background-color:gainsboro;
    border-radius-top:4px;
}

.badgeDiv:hover {
    border:1px solid #ff5733;
    box-shadow:6px 6px 6px silver;
}

.badgeDiv:hover .badgeDivHead {
    background-color:lightgray;
}

.bubble {
	position:relative;
	border:1px solid #d6dbdf;
	border-radius:4px
}

.blueDetal {
	font-weight:bold;
	color:#5d6d7e;
	cursor:pointer;
	border:1px solid silver;
	border-radius:4px;
	background-color:lavender;
	height:32px;
	line-height:32px;
	width:80%;
	padding-left:12px;
    user-select:none
}

.hExpandDiv {
    position:absolute;
    background-color:#fafaf3;
    border-radius:4px;
    border:1px solid #abb2b9;
    width:128px;
    padding-left:16px;
}

.hExpandDiv > div {
    display:grid;
    grid-template-columns:104px auto;
    height:28px;
    line-height:28px;
    width:100%; 
}

.rightSlideIn {
    position:fixed;
    padding-left:12px;
    padding-right:4px;
    box-sizing:border-box;
    background-color:white;
    transition:right 0.5s ease-out;
    bottom:2px;
}

.topArrow:before {
	content:'';
	width:0;
	height:0;
	border:10px solid;
	position:absolute;
	top:-20px;
	left:16px;
	border-color:transparent transparent #d6dbdf;
}

.topArrow::after {
	content:'';
	width:0;
	height:0;
	border:10px solid;
	position:absolute;
	top:-19px;
	left:16px;
	border-color:transparent transparent #fff;
}

.dropList {
    display:none;
    position:absolute;
    min-width:96px;
    padding:8px 10px 8px 0;
    box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);
    background-color:white;
}

.dropListItem {
    border-bottom:1px solid silver;
    padding-bottom:4px;
    padding-left:16px;
	margin-top:8px;
	margin-bottom:12px;
}

.dropListItem:disabled {
    color:white;
    cursor:not-allowed;
}

.dropListItem:hover {
    background-image:linear-gradient(to right, #eaecf7, white);
	font-weight:bold;
}

.dropContain {
    display:inline-block;
    cursor:pointer;
    border-radius:2px;
}

.dropContain:hover .dropList {
    display:block;
}

.hintList {
	background-color:white;
	list-style:none;
	line-height:28px;
	padding-left:0;
	overflow-y:auto;
	margin:4px 0 0 0;
}

.hintList li {
	padding-left:12px;
}

.hintList li:hover {
	background-color:#e6e6e6;
	cursor:pointer;
}

.hoverShadow:hover {
    box-shadow:4px 4px 4px silver;
}

.leftArrow:before {
	content:'';
	width:0;
	height:0;
	border:10px solid;
	position:absolute;
	left:-20px;
	top:14px;
	border-color:transparent #d6dbdf transparent transparent;
}

.leftArrow::after {
	content:'';
	width:0;
	height:0;
	border:10px solid;
	position:absolute;
	left:-19px;
	top:14px;
	border-color:transparent #fff transparent transparent;
}

.signTaskDiv {
    margin-top:12px;
    margin-left:4px;
    border:1px solid #f67527;
    border-radius:4px;
    padding:20px 12px;
    cursor:pointer;
    box-shadow:4px 4px 4px silver;
}

.signTaskDiv:hover {
    border:1px solid #f51b09;
    box-shadow:6px 6px 6px silver;
}

.topHeader {
    background-color:#566573;
    width:100%;
    height:52px;
    position:absolute;
    left:0;
    top:0;
    line-height:52px;
}

.mainBox {
    width:99%;
    top:52px;
    position:absolute;
}

.mainBox .leftNav {
    width:200px;
    float:left;
    overflow:auto;
    background: #f8f8ee;
    font-size:12px;
    font-family:"Microsoft Yahei", "Simsun", Arial;
    border-right:1px solid #D9D9D9;
    border-top:1px solid #D9D9D9; 
}

.mainBox .rightBox {
    height:100%;
    margin-left:201px;
    padding-right:2px;
    padding-left:2px;
    border-left:1px solid #E6E6E6;
    border-top:1px solid #D9D9D9;
    overflow:auto;
}

.leftNavItem .deptItem, .leftNavItem .deptItem:visited {
    padding-left:20px;
    width:88%;
    height:36px;
    background-color:#f8f8f8;
    border-bottom:solid 1px #EAEAEA;
    border-top:solid 1px #FFFFFF;
    display:block;
    line-height:36px;
    color:#000000;
    cursor:default;
}

.leftNavItem .deptItem:hover, .leftNavItem .deptItem:active {
    background: #f2f2f2;
    color: #0075c7;
}

.leftNavItem img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 10px;
}

.leftNavSub {
    font-weight:normal;
    padding-left:32px;
    height:32px;
    line-height:32px;
    cursor:pointer;
    display:block;
    color:#000;
    text-decoration:none;
}

.leftNavSub:hover {
    font-weight:bold;
}

.navExpandArrow {
    height:16px;
    width:16px;
    background-color:#f5e3c7;
}

.rectDiv {
    border: 1px dashed #d3d1cf;
    border-radius: 8px;
    line-height: 48px;
    padding-left:1%;
    padding-right:1%;
}

.removableLabelDiv {
    border:1px solid silver;
    border-radius:3px;
    display:inline-block;
    background-color:#f5fafa;
    padding-left:4px;
    margin-left:10px;
    line-height:24px;
}

.removableLabelDiv .closeLabel {
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
    float:right;
    padding:0 4px;
}

.rightEditDiv {
    position:absolute;
    width:340px;
    right:2px;
    top:72px;
    border:1px solid silver;
    border-radius:4px;
    background-color:white;
}

.SimpleEdit {
    border:none;
    border-bottom:1px dashed silver;
    height:24px;
    padding-left:8px;
    font:normal 16px verdana;
}

.greyHonzLine {
    border:none;
    border-bottom:1px dashed silver;
}

.picOverlay {
    position:absolute;
    width:100%;
    left:0;
    bottom:0;
    height:0;
    text-align:center;
    background-color:rgba(216, 216, 216, 0.8);
    transition:height 0.3s ease-in-out;
}

.picUploader {
    border:1px solid LightGray;
    border-radius:6px;
    padding-bottom:100%;
    position:relative;
    overflow-y:hidden
}

.picUploader>button {
    color:#eb984e;
    font-weight:bold;
    background-color:white;
    border:none;
    cursor:pointer;
    border-radius:6px;
    width:100%;
    position:absolute;
    left:0;
    top:0;
    bottom:0;
}

.picUploader:hover .picOverlay {
    height:28px;
}

.textGreyHonzLine {
    border:none;
    border-bottom:1px dashed silver;
    vertical-align:middle;
    display:inline-block;
}

.datePicker {
    padding-left:4px;
    height:24px;
    border-radius:4px;
    border:1px solid #edbb99;
}

.midCheckBox {
    width:16px;
    height:16px;
}

.pager {
	display:inline-block;
	height:20px;
	line-height:20px;
}

.popDataDiv {
    border:1px solid #aeb6bf;
    border-radius:4px;
    height:calc(100vh - 72px);
}

.popGreyHead {
    height:24px;
    line-height:24px;
    padding-right:12px;
    text-align:right;
    background-color:#aeb6bf;
    border-top-radius:4px
}

.tri-down {
    width:0;
    height:0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #d2deec;
}

.tri-right {
    width:0;
    height:0;
    border-top: 8px solid transparent;
    border-left: 12px solid #d2deec;
    border-bottom: 8px solid transparent;
}

.tri-right:hover {
    width:0;
    height:0;
    border-top: 8px solid transparent;
    border-left: 12px solid #9bbaee;
    border-bottom: 8px solid transparent;
}

.faintDot {
    width:12px;
    height:12px;
    border-radius:6px;
    background-color:#f9b768;
}

.smallDot {
    display:inline-block;
    width:6px;
    height:6px;
    border-radius:3px;
}

.textNoteUl {
    margin-left:-12px;
    margin-top:8px;
    color:#6c6c6c;
    line-height:28px
}

.verticalBlock {
    color:#404040;
    border:1px solid LightGray;
    border-radius:4px;
    overflow:auto;
    box-sizing:border-box;
}
