#openFile {
	border-radius: 5px;
	cursor: pointer;
	background-color: rgb(231, 235, 238);
	color: rgb(12, 12, 13);
	height: 28px;
	padding: 4px 8px 4px 8px;
	margin-top: 2px;
	border: none;
}

#openFile span {
	margin-left: 5px;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: 500;
}

.previous-next-page-button-container {
	position: fixed;
	left: 18px;
	bottom: 90px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 100;
}

.previous-next-page-button-container button {
	padding: 5px 10px 5px 10px;
	font-size: 20px;
	/* background-color: rgba(0,0,0,0.1); */
	background-color: rgba(136, 136, 136, 0.1);
	/* color: #007bff; */
	/* color: rgba(207, 216, 224, 1); */
	color: rgba(134, 142, 150, 1);
	border: none;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
	border: solid 1px #fff;
}

.parent-circle {
	position: fixed;
	left: 10px;
	bottom: 10px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	/* background-color: lightgrey; */
	/* background-color: rgba(0, 0, 0, 0.1); */
	background-color: rgba(136, 136, 136, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px auto;
	z-index: 100;
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
	border: solid 1px #fff;
}

.child-circle {
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: #007bff;
	/* background-color: rgba(134, 142, 150, 1); */
	cursor: grab;
	border: solid 1px #fff;
}

.child-circle:active {
	cursor: grabbing;
}

.draggable-right {
	background-color: #0081ff;
	height: 25px;
	width: 25px;
	position: absolute;
	cursor: move;
	z-index: 100;
	border-radius: 0 50% 50% 50%;
	/* TL, TR, BR, BL */
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
	border: solid 1px #fff;
	z-index: 45;
}

.draggable-left {
	background-color: #0081ff;
	height: 25px;
	width: 25px;
	position: absolute;
	cursor: move;
	z-index: 20;
	border-radius: 0 50% 50% 50%;
	/* TL, TR, BR, BL */
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
	border: solid 1px #fff;
	transform: scaleX(-1);
	z-index: 45;
	/* 水平镜像 */
}


#mainContainer {
	overflow: hidden;
}


.textLayer ::-moz-selection {
	/*  background: #0081ff;
  background: #0081ff; */
	background: rgba(0, 0, 0, 0);
}


.textLayer ::selection {
	/*  background: #0081ff;
  background: #0081ff; */
	background: rgba(0, 0, 0, 0);
}

.selection-rect {
	z-index: 35;
	/* mix-blend-mode:color; */
}

.select-rect-div {
	opacity: 0.2;
	z-index: 35;
	position: absolute;
}


/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
	top: 0;
	height: 0;
	position: absolute;
}


.btn {
	display: block;
	padding: 10px;
	font-size: 20px;
	padding-top: 30px;
	/* background-image: linear-gradient(45deg, #2edd1d, #f2ff56); */
	background-image: linear-gradient(45deg, #0081ff, #1cbbb4);
	/* background-image: linear-gradient(45deg, #9000ff, #5e00ff); */
	/* background-image: linear-gradient(45deg, #f43f3b, #ec008c); */
	border: 0;
	text-align: left;
	color: #ffffff;
	height: 70px;
	vertical-align: bottom;
	width: 100%;
}

.btn-red {
	background-color: #dd524d;
}

.btn-yellow {
	background-color: #f0ad4e;
}

.desc {
	padding: 10px;
	color: #999999;
}

.post-message-section {
	visibility: hidden;
}

.caves-wrapper {
	position: relative;
	border: 1px solid black;
}

.annotation-buttons-hor {
	display: flex;
	flex-direction: row;
	position: absolute;
	/* top: 40%; */
	z-index: 40;
	background-color: #FFFFFF;
	padding: 2px 3px 2px 3px;
	border: #dedede 1px solid;
	border-radius: 5px;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);

	-moz-user-select: none;
	/*火狐*/
	-webkit-user-select: none;
	/*webkit浏览器*/
	-ms-user-select: none;
	/*IE10*/
	-khtml-user-select: none;
	/*早期浏览器*/
	user-select: none;
}

.annotation-buttons-hor button {
	background-color: #ffffff;
	/* background-color: #e7ebee; */
	border: none;
	color: rgba(134, 142, 150, 1);
	padding: 2px;
	/* margin-left: 10px; */
	/* margin: 2px 2px 2px 0px; */
	width: 32px;
	height: 32px;
}

.annotation-buttons-hor button:hover {
	background-color: rgba(207, 216, 224, 1);
	border-radius: 3px;
}

.annotation-buttons-hor button i:active {
	border-radius: 3px;
	background-color: rgba(207, 216, 224, 1);
	border-radius: 3px;
}


.hor-annotation-buttons {
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: 5%;
	z-index: 5000000;
	padding: 5px 7px 5px 7px;
	background-color: rgba(136, 136, 136);
	border-radius: 5px;
	/* opacity: 0.7; */
	/* background-color: rgba(136, 136, 136, 1); */
	/* box-shadow: 0px 2px 5px rgba(136, 136, 136, 1); */
}

.hor-annotation-buttons button {
	/* box-shadow: 0px 2px 5px rgba(136, 136, 136, 1); */
	/* border: solid 0.2px #B2B2B2; */
	transition: visibility 0s .2s;
	visibility: hidden;
	background-color: rgba(136, 136, 136, 0);
	/* background-color: #464646; */
	border: none;
	/* margin-right: 10px; */
	color: #fefefe;
	border-radius: 3px;
	padding: 1px;
	font-weight: 600;
	font-family: "Microsoft Yahei";
	font-size: 20px;
}

.hor-annotation-buttons button:hover {
	visibility: visible;
	color: #FFD700;
	/* background-color: #DDDDDD; */
	/* box-shadow: 0px 2px 5px rgba(136, 136, 136, 1); */
}

.hor-annotation-buttons button span:active {
	color: #FFD700;
	/* background-color: #DDDDDD; */
	/* box-shadow: 0px 2px 5px rgba(136, 136, 136, 1); */
}

.hor-annotation-buttons button i:active {
	color: #FFD700;
}

.op-buttons-container {
	width: 100%;
	min-height: 32px;
	/* background-color: #1CBBB4; */
	display: flex;
}

.annotation-buttons {
	overflow-x: auto;
	width: 100%;
	/* height: 32px; */
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	float: left;
	/* flex-wrap: wrap; */
	/* position: absolute; */
	/* top: 40%; */
	/* z-index: 5000000; */
	padding-right: 10px;
	height: 36px;
	/* color: #000000; */
	background-color: #e7ebee;
	/* background-color: rgba(156, 156, 156); */
	/* background-color: var(--body-bg-color); */
	/* background-color: var(--toolbar-bg-color); */
	box-shadow: var(--toolbar-box-shadow);
	border-bottom: var(--toolbar-border-bottom);
	/* border-bottom: 2px solid rgba(156, 156, 156); */
	/* border-radius: 0px 5px 5px 0px; */
	/* opacity: 0.7; */
	/* background-color: rgba(136, 136, 136, 1); */
	/* box-shadow: 0px 2px 5px rgba(255, 255, 255, 1); */
}

.annotation-buttons div {
	display: flex;
	flex-direction: row;
}

/*定义了滚动条滑块的样式*/
.annotation-buttons ::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border-style: dashed;
	/* background-color: rgba(0, 0, 0, 0.15); */
	background-color: #fbbd08;
	/* background-color: #ffed00; */
	border-color: #e2242400;
	border-width: 1.5px;
	background-clip: padding-box;
}

.annotation-buttons button {
	white-space: nowrap;
	background-color: rgba(136, 136, 136, 0);
	/* background-color: #868e96; */
	border: none;
	color: rgba(134, 142, 150, 1);
	border-radius: 3px;
	padding: 2px;
	/* margin-left: 10px; */
	margin: 2px 2px 2px 0px;
	min-width: 32px;
	max-height: 32px;
}


.annotation-buttons button:hover {
	background-color: rgba(207, 216, 224, 1);
	color: #0081ff;
}

.annotation-buttons button:hover i {
	background-color: rgba(207, 216, 224, 1);
	color: #0081ff;
}

.annotation-buttons button:hover i span {
	background-color: rgba(207, 216, 224, 1);
	color: #0081ff;
	padding-top: 8px;
	padding-bottom: 8px;
}

.annotation-buttons button:active {
	/* color: #FFD700; */
	background-color: rgba(207, 216, 224, 1);
	color: #0081ff;
}

.button-active {
	/* background-color: rgba(207, 216, 224, 1); */
	color: #0081ff;
	/* color: #FFD700; */
}

.closeAnnotationListDiv {
	position: fixed;
	display: flex;
	flex-direction: row;
	align-items: center;
	/* justify-content: space-between; */
	/* 	position: absolute;
	top: 0; */
	width: 100%;
	height: 32px;
	padding-top: 4px;
	padding-bottom: 2px;
	/* padding-left: 5px; */
	box-shadow: var(--toolbarSidebar-box-shadow);
	border-bottom: var(--toolbarSidebar-border-bottom);
	background-color: var(--sidebar-toolbar-bg-color);
	/* opacity: 1; */
	/* border-bottom: solid 1px #000000; */
	/* background-color: #dddddd; */
}

.closeAnnotationListDiv div {
	border: #000000 2px solid;
	border-radius: 5px;
	margin-right: 5px;
	background-color: #DDDDDD;
	padding: 2px;
	height: 20px;
}

.closeAnnotationListDiv div button {
	background-color: rgba(0, 0, 0, 0);
}

.annotations-list {
	/* z-index: 450000; */
	width: 100%;
	height: 100%;
	/* background-color: #404040; */
	/* background-color: #efefef; */
	/* opacity: 0.5; */
	position: absolute;
	/* border-radius: 0px 10px 10px 0px; */
	/* top: 0px; */
	overflow-y: auto;
	box-shadow:
		0 -4px 4px rgba(0, 0, 0, 0.1),
		0 0 0 2px rgb(255, 255, 255),
		4px 4px 4px rgba(0, 0, 0, 0.2);
}

.annotation-container {
	display: flex;
	align-items: center;
	width: 25%;
	max-width: 250px;
	min-width: 200px;
	height: 85%;
	position: absolute;
	top: 10%;
}

.page-annotations {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.page-annotations-title {
	display: flex;
	flex-direction: row;
	/* align-items: center; */
	justify-content: space-between;
	width: 100%;
	/* 	margin-top: 5px;
	margin-bottom: 5px; */
	margin-right: 10px;
	padding-bottom: 7px;
	padding-top: 7px;
	border-bottom: solid 1px #bbbbbb;
	/* background-color: #dddddd; */
	background-color: rgba(248, 249, 250, 1);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.page-annotations-title div {
	display: flex;
	flex-direction: row;
}

.page-annotations-title:hover {
	/* background-color: #F2BD08; */
	background-color: #ffed00;
}

.page-annotations-title p {
	/* margin-left: 15px; */
	margin-top: auto;
}

.page-annotations-title i {
	/* margin:auto; */
	margin-left: 5px;
	margin-right: 5px;
	margin-top: auto;
}

.page-annotations-container {
	padding: 10px 10px 10px 10px;
	font-size: 13px;
	/* border-bottom: solid 0.5px #888888; */
	/* background-color: #F8f8f8; */
	background-color: rgba(255, 255, 255, 1);
	margin: 5px 10px 5px 10px;
	border-radius: 5px;
	/* border: #888888 2px solid; */
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255,255,255,0);
	/* 		0 -4px 4px rgba(0, 0, 0, 0.1),
		0 0 0 2px rgb(255, 255, 255),
		4px 4px 4px rgba(0, 0, 0, 0.2); */

	-moz-user-select: none;
	/*火狐*/
	-webkit-user-select: none;
	/*webkit浏览器*/
	-ms-user-select: none;
	/*IE10*/
	-khtml-user-select: none;
	/*早期浏览器*/
	user-select: none;
}

.page-annotations-container-tpm {
	/* background-color: #ffed00; */
	border: 1px solid #0081FF;
	box-shadow: 1px 1px 1px 1px rgba(0, 129, 255, 0.1);
}

.page-annotations-container:hover {
	/* background-color: #F2BD08; */
	/* background-color: #ffed00; */
	border: 1px solid #0081FF;
	box-shadow: 1px 1px 1px 1px rgba(0, 129, 255, 0.1);
}

/* 历史记录批注对象，即使鼠标离开也是蓝色边框 */
.blue-border {
	/* background-color: #F2BD08; */
	/* background-color: #ffed00; */
	border: 1px solid #0081FF;
	box-shadow: 1px 1px 1px 1px rgba(0, 129, 255, 0.1);
}

.page-annotations-container i {
	float: right;
	position: relative;
	top: 0px;
}

/* .annotations-list::-webkit-scrollbar {
	height: 10px !important;
	width: 10px !important;
}

.annotations-list::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border-style: dashed;
	background-color: #fbbd08;
	border-color: #e2242400;
	border-width: 1.5px;
	background-clip: padding-box;
} */


/*定义了滚动条滑块的样式*/
.annotation-buttons ::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border-style: dashed;
	/* background-color: rgba(0, 0, 0, 0.15); */
	background-color: #fbbd08;
	/* background-color: #ffed00; */
	border-color: #e2242400;
	border-width: 1.5px;
	background-clip: padding-box;
}

.anno-canvas {
	background: rgba(255, 255, 255, 0);
	/*关键点*/
	position: absolute;
	z-index: 1;
	/*确保在遮盖的元素的上方*/
	left: 0px;
	top: 0px;
}

.my-processing-tip {
	z-index: 10000;
	position: absolute;
	display: flex;
	align-items: center;
	/* top:20%; */
	top: -500px;
	width: 100%;
	justify-content: center;
	text-align: center;
}

.my-processing-tip div {
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	z-index: 10000000;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}


.my-extract-processing-tip {
	z-index: 10000;
	position: absolute;
	display: flex;
	align-items: center;
	/* top:20%; */
	top: -500px;
	width: 100%;
	justify-content: center;
	text-align: center;
}

.my-extract-processing-tip div {
	padding: 20px;
	width: 300px;
	z-index: 10000000;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}

.my-extract-processing-tip button {
	margin-top: 10px;
	margin-bottom: -5px;
}

.my-extract-processing-tip input {
	border: 1px solid #ccc;
	padding: 5px 0px 5px 0px;
	border-radius: 5px;
	font-size: 15px;
	width: 100%;
	outline: none;
	margin-top: 10px;
	margin-bottom: 5px;
}

.operation-tip {
	z-index: 10000;
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	float: left;
	left: 10px;
	top: 80px;
	/* top: -500px; */
	/* width: 100%; */
	justify-content: center;
	text-align: left;
}

.operation-tip div {
	background-color: #efefef;
	border: #808080 1px solid;
	border-radius: 10px;
	margin-top: 20px;
	padding: 10px;
	font-size: 15px;
	width: 240px;
	display: flex;
	justify-content: space-between;
	display: flex;
	align-items: center;
	z-index: 10000000;
	box-shadow:
		0 -4px 4px rgba(0, 0, 0, 0.1),
		0 0 0 2px rgb(255, 255, 255),
		4px 4px 4px rgba(0, 0, 0, 0.2);
}



canvas,
.canvas-container {
	background: rgba(255, 255, 255, 0);
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
}

.canvas-container {
	z-index: 10;
}


.my-menu-x {
	visibility: hidden;
	z-index: -100;
	position: absolute;
	top: 85px;
	right: 25px;
	box-sizing: border-box;
	border-radius: 4px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	/* background-color: rgba(0, 0, 0, 0.1); */
	background-color: #fff;
	font-size: 10px;
	transition-duration: var(--sidebar-transition-duration);
}


.my-menu-x-1 div {
	min-height: 26px;
}

.my-menu-x-2 div {
	min-height: 15px;
	color: #808080;
}

.setting-title {
	font-size: 15px;
	padding: 5px 0px 5px 0px;
	font-weight: 600;
}


.my-menu-x div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 10px;
	padding-right: 10px;
	padding-inline: 10px;

}

.my-menu-x div:hover {
	background-color: rgba(235, 238, 250, 1);
	color: #0081FF;
	font-size: 700;
}

.my-menu-x div input {
	border: none;
	background-color: rgba(0, 0, 0, 0);
}

.copy-btn-container {
	z-index: 10000;
	position: absolute;
	top: -50px;
	left: -50px;
}

.vertical-split {
	border-right: #ffffff solid 1px;
	margin-left: 12px;
	margin-right: 12px;
}

.member_list_form {
	display: flex;
	flex-direction: column;
	margin: 5px 2px 5px 0;
	font-size: 13px;
	float: right;
}

.member_name_item {
	text-align: right;
	/* 	margin-right: 5px;
	margin-top: 5px; */
	vertical-align: middle;
	padding: 3px;
	border-radius: 2px;
	/* background-color: #fbbd08; */
}

.member_name_item:hover {
	/* background-color: #fbbd08; */
	background-color: #ffed00;
}


.member_list_form input {
	vertical-align: middle;
	margin-top: -3px;
	margin-left: 5px;
}

.my-annotation-toolbar {
	display: flex;
	align-items: center;
}

.my-annotation-tool {
	background: none;
	border: none;
	padding: 4px;
	font-size: 1rem;
	background-color: #dddddd;
	margin-top: 2px;
}

.my-annotation-tool:active {
	/* color: #FFD700; */
	/* font-weight: 600; */
	background-color: #dedede;
}

.my-annotation-tool i {
	font-size: 20px;
}

.my-annotation-toolbar button {
	font-size: 1.25rem;
	padding: 10px;
}

.my-annotation-toolbar button:hover {
	/* color: #FFD700; */
	/* font-weight: 600; */
	background-color: #dedede;
}

.my-mouse-move-text {
	position: fixed;
	top: -500px;
	z-index: 100000;
	background-color: #0081FF;
	color: #fff;
	border-radius: 4px;
	padding: 5px;
	width: auto;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.link-annotation-item {
	border: 3px dotted red;
}

.my-annotation-history {
	position: fixed;
	top: -500px;
	left: 0px;
	width: 350px;
	z-index: 100000;
	border-radius: 5px;
	/* border: #888888 2px solid; */
}

.triangle-down {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	position: absolute;
	left: 46%;
	top: -10px;
	transform: scaleY(-1);
	border-style: solid;
	/* 红 透明 透明 */
	border-color: #dedede transparent transparent transparent;
}

.triangle-down em {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	position: absolute;
	left: -10px;
	top: -11px;
	border-style: solid;
	/* 红 透明 透明 */
	border-color: #fff transparent transparent transparent;
}

/* 四象三角形 */
.triangle-all {
	width: 0;
	height: 0;
	border-width: 30px;
	border-style: solid;
	border-color: #c03 #fc0 #69c #6c6;
	/* 红 黄 蓝 绿 */
}

.read-only-model-div {
	white-space: nowrap;
	color: rgba(12, 12, 13, 1);
	cursor: pointer;
	display: flex;
	align-items: center;
	margin-top: 2px;
	font-size: 16px;
	padding: 0 5px 0 5px;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-right: 10px;
	height:28px;
	background-color: rgb(231, 235, 238);
	border-radius: 5px;
}

.read-only-model-div :hover {
	color: #0081FF;
}


.my_horizontalToolbarSeparator {
	margin-top: -5px;
	margin-bottom: -5px;
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.column-div {
	display: flex;
	justify-content: left;
	/* background-color: #808080; */
	margin: 5px 0px 5px 0px;
	align-items: center;
}

.simple-input {
	border: 2px solid #ccc;
	border-radius: 5px;
	width: 45px;
	margin-left: 10px;
	text-align: center;
}

.save-comment-button {
	margin-top: 5px;
	font-size: 12px;
	font-weight: 600;
	padding: 5px;
	/* background-color: rgba(207, 216, 224, 1); */
	border: none;
	border-radius: 5px;
}

.save-comment-button:active {
	color: #0081ff;
}

#my-setting-menu div {
	display: flex;
	flex-direction: row;
	font-size: 13px;
}

#my-menu div {
	font-size: 13px;
}

/* 
#my-setting-menu{
	font-size: 14px;
	font-weight: 500;
} */


/* .show-connect-div :hover{
	color:#0081ff;
} */

/* .popup {
	width: 100px;
	background: #fc0;
	padding: 10px 20px;
	color: #333;
	border-radius: 4px;
	position: absolute;
	top: 30px;
	left: 30px;
	border: 1px solid #333;
}

.popup span {
	display: block;
	width: 0;
	height: 0;
	border-width: 10px 10px 0;
	border-style: solid;
	border-color:transparent transparent #333;
	position: absolute;
	top: 36px;
	left: 50%;
	margin-left: -10px;
}

.popup em {
	display: block;
	width: 0;
	height: 0;
	border-width:10px 10px 0;
	border-style: solid;
	border-color: transparent transparent #fc0;
	position: absolute;
	top: 1px;
	left: -10px;
} */

.ribbons {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(235, 238, 250, 1);
	border-radius: 4px;
	height: 28px;
	margin-top: 2px;
	/* transform: translateX(-50%); */
	/*    height: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    margin: auto; */
}

.selectform {
	display: flex;
	flex-direction: row;
	/* background-color: aliceblue; */
	border: 1px solid #ccc;
	border-radius: 5px;
	justify-content: space-between;
	padding: 10px;
	font-size: 17px;
	/* margin-bottom: 10px; */
}

.linktip {
	margin-top: 10px;
	/* background-color: antiquewhite; */
	text-align: left;
	float: left;
	width: 100%;
	justify-content: left;
	font-size: 15px;
	font-weight: 600;
}

.selectform label {
	/* background-color: aliceblue; */
	padding: 10px;
}

.hyper-link-p {
	text-decoration: underline;
	font-weight: bold;
	font-style: italic;
	color: #0081FF;
	padding: 5px 0px 5px 0px;
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: #fff;
	border-radius: 2px;
	overflow-wrap: break-word;
}


.hyper-link-p-red {
	text-decoration: underline;
	font-weight: bold;
	font-style: italic;
	color: red;
	padding: 3px;
	margin-top: 5px;
	margin-bottom: -5px;
	background-color: #fff;
	border-radius: 2px;
	overflow-wrap: break-word;
}

.link-process-tip {
	z-index: 10000;
	position: absolute;
	display: flex;
	align-items: center;
	/* top: 20%; */
	top: -500px;
	width: 100%;
	justify-content: center;
	text-align: center;
}

.linkform {
	border-radius: 10px;
	padding: 20px;
	width: 500px;
	z-index: 10000000;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}

.linkform #link_input {
	border: 1px solid #ccc;
	padding: 5px 0px 5px 0px;
	border-radius: 5px;
	font-size: 15px;
	width: 100%;
	outline: none;
	margin-top: 10px;
}

.linkform div {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	margin-bottom: -5px;
}

.ribbons .ribbon-group {
	padding: 0;
	border: none;
	background-color: transparent;
	font-size: 12px;
	font-weight: 600;
	margin: 0px 4px 0px 4px;
	/* margin: 0 22px; */
	cursor: pointer;
	color: rgba(134, 142, 150, 1);
	white-space: nowrap;
	padding: 4px;
	border-radius: 2px;
}

.ribbons .ribbon-group:hover {
	color: #0081FF;
	background-color: rgba(255, 255, 255, 1);
}

::-webkit-scrollbar {
	height: 10px !important;
	width: 10px !important;
}

/*定义了滚动条滑块的样式*/
::-webkit-scrollbar-thumb {
	border-style: dashed;
	background-color: rgba(173, 181, 189, 1);
	padding: 5px;
	border-radius: 5px;
	/* background-color: #fbbd08; */
	border-color: #e2242400;
	border-width: 1.5px;
	background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.2)
}

/* sider container */


[dir="ltr"] #mySidebarContainer {
	left: calc(100% - var(--annotation-right-sidebar-width));
}

[dir="rtl"] #mySidebarContainer {
	right: calc(1 * var(--annotation-sidebar-width));
	/* right: 10px; */
}

[dir="ltr"] #mySidebarContainer {
	border-right: var(--doorhanger-border-color-whcm);
}

[dir="rtl"] #mySidebarContainer {
	border-left: var(--doorhanger-border-color-whcm);
}

[dir="ltr"] #mySidebarContainer {
	transition-property: left;
}

[dir="rtl"] #mySidebarContainer {
	transition-property: right;
}

#mySidebarContainer {
	position: absolute;
	/* background-color: #1CBBB4; */
	background-color: var(--body-bg-color);
	box-shadow: inset calc(-1px * var(--dir-factor)) 0 0 rgba(0, 0, 0, 0.25);
	/* top: 32px; */
	top: 72px;
	bottom: 0;
	inset-inline-start: calc(-1 * var(--annotation-sidebar-width));
	width: var(--annotation-sidebar-width);
	visibility: hidden;
	z-index: 100;
	font: message-box;
	border-top: 1px solid rgba(51, 51, 51, 1);
	-webkit-border-end: var(--doorhanger-border-color-whcm);
	border-inline-end: var(--doorhanger-border-color-whcm);
	transition-property: inset-inline-start;
	transition-duration: var(--sidebar-transition-duration);
	transition-timing-function: var(--sidebar-transition-timing-function);
}

/* #outerContainer.sidebarMoving #mySidebarContainer, */
#outerContainer.myAnnotationSidebarOpen #mySidebarContainer {
	visibility: visible;
}

#outerContainer.myAnnotationSidebarOpen #viewerContainer:not(.pdfPresentationMode) {
	margin-right: var(--annotation-sidebar-width);
	/* transition-property: inset-inline-start; */
}

#outerContainer.myAnnotationSidebarOpen #my-menu {
	/* visibility: visible; */
	right: calc(25px + var(--annotation-sidebar-width));
}

#outerContainer.myAnnotationSidebarOpen #my-setting-menu {
	/* visibility: visible; */
	right: calc(25px + var(--annotation-sidebar-width));
}

#current_file_url {
	margin-left: 5px;
	margin-top: -3px;
	font-weight: 600;
	color: rgba(134, 142, 150, 1);
	text-decoration: none;
}

#current_file_url:hover {
	background-color: rgba(207, 216, 224, 1);
	color: #0081ff;
}

#openFile:hover {
	color: #0081FF;
}