/* 通用样式类 */
/* 表单校验信息样式 */
.validateMsg{
  height: 20px;
  padding: 1px 2px;
  color: rgba(224, 103, 79, 1);
  font-size: 12px;
  font-family: Noto Sans SC;
}

/* bootstrap modal 模态框居中 */
.modal-dialog {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: auto;
}

/* 语言下拉框 */
.dropdown-menu.language li{
  margin: 0 !important;
  /* padding: 5px 15px; */
}
/* .dropdown-menu.language li a{
  margin: 5px 15px;
} */

/* 头像下拉框定位 */
.dropdown-menu.user {
	width: 240px;
	/* height: 258px; */
	border-radius: 10px !important;
	background-color: rgba(236, 238, 242, 1);
	left: -87px;
}
/* 三角箭头 */
.dropdown-menu.user::after {
	content: '';
	position: absolute;
	top: -10px; /* 调整箭头的位置 */
	left: 50%;
	margin-left: -10px; /* 箭头在上边缘中间 */
	border-width: 0 10px 10px;
	border-style: solid;
	border-color: transparent transparent rgba(236, 238, 242, 1) transparent;
}
/* 点击头像下拉框 */
.user-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 258px;
	font-family: Noto Sans SC;
}
.user-header {
	width: 100%;
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.user-text {
	/* flex: 1; */
	width: 76px;
	overflow: hidden;
}
.user-name {
	font-size: 16px;
	color: rgba(51, 51, 51, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.enterprise-name {
	font-size: 12px;
	color: rgba(102, 102, 102, 1);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.user-content {
	width: 100%;
	height: 96px;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	/* align-items: center; */
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px 10px 0 0;
}
.user-content div {
	height: 32px;
	padding: 9px 20px;
	color: rgba(102, 102, 102, 1);
	cursor: pointer;
	position: relative;
}
.user-content div::after {
	display: block;
	content: '';
	position: absolute;
	right: 0;
	top: 16px;
	width: 20px;
	border-bottom: 1px solid #000;
}
.user-footer {
	flex: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0 0 10px 10px;
	gap: 10px;
}
.user-footer div {
	width: 200px;
	height: 32px;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.user-action {
	color: rgba(224, 103, 79, 1);
	border: 1px solid rgba(224, 103, 79, 1);
}
.user-logout {
	color: rgba(153, 153, 153, 1);
	border: 1px solid rgba(153, 153, 153, 1);
}

/* 版本类型shape */
.version-shape {
	width: 56px;
	height: 20px;
	border-radius: 10px 0px;
	background-color: rgba(153, 153, 153, 1);
	color: rgba(255, 255, 255, 1);
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
}
.version-shape.standard {
	background-color: rgba(51, 51, 51, 1);
}

/* rcv-select
通过bootstrap-dropmenu
自定义选择下拉框的样式 */
.rcv-select {
	font-family: Noto Sans SC;
  display: flex;
  /* border-bottom: #333 1px solid !important; */
}
.rcv-input {
	width: 100%;
	height: 32px;
	color: #000;
	display: flex;
	align-items: center;
	user-select: none;
}
.rcv-input::after {
	display: inline-block;
	font-family: SAP-icons;
	font-size: 12px;
	color: #666666;
	content: '\e1e2';
	padding: 9px 10px;
}
.rcv-input__content{
  user-select: none;
}
.rcv-select-menu {
	width: 480px;
	padding: 5px;
	display: flex;
	flex-direction: column;
}
.menu-item {
	width: 470px;
	height: 32px;
	padding: 9px 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	position: relative;
}
.menu-item:hover {
	color: #e0674f;
	background-color: rgba(224, 103, 79, 0.1);
}
.menu-item.active::before {
	display: inline-block;
	content: '';
	width: 14px;
	height: 14px;
	border: 1px solid #e0674f;
	border-radius: 100%;
	position: absolute;
	right: 10px;
}
.menu-item.active::after {
	display: inline-block;
	content: '';
	width: 6px;
	height: 6px;
	background-color: #e0674f;
	border-radius: 100%;
	position: absolute;
	right: 14px;
}
