.status-menu {
	visibility: hidden;
	position: absolute;
	top: 40px;
	right: 35px;
	background: white;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 10;
	width: 120px;
}

.status-item {
	display: flex;
	flex-direction: row;
	/* justify-content: space-between; */
	box-sizing: border-box;
	padding: 5px 10px 5px 10px;
	cursor: pointer;
	align-items: center;
	border-radius: 5px;
	width: 100%;
}

.status-item:hover {
	background: #f2f2f2;
}

.reply-history-container {
	margin-top: 10px;
	margin-left: 45px;
}

.history-item {
	box-sizing: border-box;
	background-color: aliceblue;
	font-size: 0.9em;
	color: #555;
	margin-bottom: 4px;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-left: 4px solid #0081ff;
	padding: 10px;
	border-radius: 5px;
	margin-top: 10px;
}

.history-content {
	color: #555;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.reply-author {
	font-family: Lato, sans-serif;
	color: rgb(72, 80, 86);
	font-size: 13px;
	word-break: break-word;
	font-weight: 700;
}

.history-content div {
	display: flex;
	flex-direction: column;
}

.history-content div i {
	display: flex;
	flex-direction: column;
}

.history-meta {
	font-size: 0.85em;
	color: #888;
}

.reply-content {
	padding: 5px;
	border-radius: 4px;
	/* 可选：圆角边框 */
	border: 1px solid rgb(207, 212, 218, 0.4);
	color: rgb(72, 80, 86);
	margin: 10px 0px 0px 0px;
	/* 设置你想要的边框样式，例如蓝色边框 */
}

.reply-content[contenteditable="true"]:empty:before {
	content: attr(data-placeholder);
	color: #888;
	pointer-events: none;
}

/* 放在前面的话会被后面的 div flex 打乱 */
.anno-operate-menu {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 40px;
	right: 5px;
	background: white;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	z-index: 10;
	width: 80px;
	visibility: hidden;
}


.anno-title-container {
	font-size: 0.9em;
	color: #555;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0px;
}

.anno-icon-user-time {
	display: flex;
	flex-direction: row;
	/* background-color: antiquewhite; */
	align-items: center;
}

.anno-icon-user-time div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.anno-type-div i{
	width: 30px;
	height: 30px;
	/* margin: auto; */
	font-size: 17px;
	color: rgb(134, 142, 150);
	border-radius: 4px;
	cursor: pointer;

	display: flex;
	align-items: center;
	/* 垂直居中 */
	justify-content: center;
	/* 水平居中 */
}

.reply-number-i {
	cursor: pointer;
	color: rgb(134, 142, 150);
}

/* .anno-icon-user-time div i:hover {
	background-color: rgb(231, 237, 243);
} */

.anno-icon-user-time div span {
	margin-left: 30px;
	width: 100%;
}

.anno-author-span {
	font-family: "Roboto", "Arial", sans-serif;
	padding: 2px;
	color: rgb(72, 80, 86);
	font-size: 13px;
	word-break: break-word;
	font-weight: 700;
}

.anno-time-span {
	font-family: "Roboto", "Arial", sans-serif;
	color: rgb(207, 212, 218);
	font-size: 12px;
	padding: 2px;
}

/* 批注主体内容 */
.anno-body-container {
	position: relative;
	margin-left: 45px;
}

.anno-text-content {
	max-height: 150px;
	/* overflow: hidden; */
	overflow-y: auto;
	/* text-overflow: ellipsis; */
	width: 100%;
	padding: 5px 0px 5px 0px;
	/* padding-bottom:30px; */
}

.reply-content:focus {
	outline: none;
	/* 可选：移除默认轮廓 */
	border: 1px solid #0081FF;
	/* 设置你想要的边框样式，例如蓝色边框 */
}

.anno-save-menu {
	display: flex;
	flex-direction: row-reverse;
	margin-top: 10px;
}

.anno-save-menu div {
	padding: 3px 10px 3px 10px;
	border-radius: 3px;
	font-size: 13px;
	cursor: pointer;
}

.save-button {
	background-color: #0081FF;
	color: #fff;
}

.cancel-button {
	background-color: #fff;
	color: #0081FF;
	margin-right: 20px;
}

.reply-area {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;

	margin: 10px 0px 0px 0px;
	box-sizing: border-box;
	padding-top: 10px;
	width: 100%;
	border-top: 1px solid #eee;
	/* background-color: #ccc;s */
}

.reply-area p {
	width: 80%;
	padding: 5px;
	border-radius: 4px;
	/* 可选：圆角边框 */
	outline: 0.5px solid rgb(207, 212, 218);
	border: none;
	color: rgb(207, 212, 218);
	justify-content: space-between;
	min-height: 20px;
	margin: 0;
	font-size: 15px;
}

.reply-area p[contenteditable="true"]:empty:before {
	content: attr(data-placeholder);
	color: #888;
	pointer-events: none;
}

.reply-area p:focus {
	/* 可选：圆角边框 */
	outline: 0.5px solid #0081FF;
	border: none;
	color: rgb(72, 80, 86);
}

.anno-operation-buttons {
	display: flex;
	flex-direction: row;
	position: relative;
}

.anno-operation-buttons i {
	width: 30px;
	height: 30px;
	margin: auto;
	font-size: 17px;
	color: rgb(134, 142, 150);
	border-radius: 4px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;
}

.anno-operation-buttons i:hover {
	background-color: rgb(231, 237, 243);
}

.toggle-operate-menu {
	width: 30px;
	height: 30px;
	/* margin: auto; */
	font-size: 17px;
	color: rgb(134, 142, 150);
	border-radius: 4px;
	cursor: pointer;

	display: flex;
	align-items: center;
	/* 垂直居中 */
	justify-content: center;
	/* 水平居中 */
}

.toggle-operate-menu:hover {
	background-color: rgb(231, 237, 243);
}

.reply-area i {
	width: 30px;
	height: 30px;
	/* margin: auto; */
	font-size: 17px;
	color: rgb(134, 142, 150);
	border-radius: 4px;
	cursor: pointer;

	display: flex;
	align-items: center;
	/* 垂直居中 */
	justify-content: center;
	/* 水平居中 */
}

.reply-area i:hover {
	background-color: rgb(231, 237, 243);
}