.online-documents .ext-tools {
	background-color: darkslateblue;
}

.doc-menu-items {
	background-color: darkslateblue;
	position: absolute;
	top: 150px;
	left: 0;
	width: 230px;
	bottom: 30px;
	color: #b8c7ce;
	overflow-y: auto;
}

.doc-content-items {
	position: fixed;
	left: 230px;
	bottom: 33px;
	top: 50px;
	background-color: #f1f1f1;
	overflow-y: auto;
	right: 0;
}

.doc-list-items {
	width: 75%;
	margin: 0 auto;
	margin-top: 24px;
	/* border-radius: 5px; */
}

.post {
	background-color: white;
	border-bottom: 1px solid #d9d9d9;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
	margin-bottom: 24px;
	padding: 20px 24px;
	position: relative;
	border-radius: 5px;
}

.post:hover {
	background-color: #eee;
}

.post-title a {
	text-decoration: none;
	color: #333;
	/* font-weight: 400; */
	font-size: medium;
}

.post-ctrl {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 150px;
	height: 40px;
}

.post-ctrl img {
	width: 40px;
	height: 40px;
	float: right;
	margin: 0 5px;
}

.post-body {
	font-size: 13px;
}

span.doc-color {
	position: absolute;
	left: 0;
	height: 100%;
	width: 10px;
	top: 0;
}

span.doc-recent-span {
	padding: 12px 5px 12px 15px;
	display: block;
	font-size: 18px;
}

.doc-search img {
	position: absolute;
	width: 40px;
	right: 0;
	top: 0;
	height: 40px;
}

.doc-search {
	height: 40px;
}

span.lb-text:hover {
	background-color: rgb(41, 56, 70);
}

.doc-search {
	border-radius: 3px;
	border: 1px solid #374850;
	margin: 10px 10px;
}

input.doc-search-input {
	color: #666;
	border-top-left-radius: 2px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 2px;
	box-shadow: none;
	background-color: #374850;
	border: 1px solid transparent;
	height: 35px;
	width: 100%;
	background-position: 96%;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	background-image: url(../img/search.svg);
	padding-left: 2%;
}

.doclist-items-title {
	height: 50px;
	line-height: 50px;
	background-color: steelblue;
	color: snow;
	position: fixed;
	right: 340px;
	left: 230px;
	z-index: 9;
	text-align: left;
	padding-left: 20px;
	font-size: 20px;
	top: 0;
}

.post-content {
	word-break: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}






.spinner {
	width: 100px;
	height: 60px;
	left: 50%;
	margin-left: -50px;
	top: 10em;
	position: fixed;
}

.spinner .three-bounce {
	position: relative;
	text-align: center;
	top: 50%;
	bottom: 50%;
	margin-top: -9px
}

.spinner .three-bounce>div {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	top: 50%;
	margin-top: -9px;
	background: #aeadba;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.spinner .three-bounce .one {
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s
}

.spinner .three-bounce .two {
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s
}

@keyframes bouncedelay {
	0%,
	100%,
	80% {
		transform: scale(0);
		-webkit-transform: scale(0)
	}
	40% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}

/*word文档格式校正*/
.doc-preview * {
    line-height: 130%;
}

.doc-preview a {
    text-decoration: none;
}