* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	background-color: #fff;
	color: #333;
}

.header {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	border-bottom: 1px solid #eee;
	gap: 5px;
}

.icon-btn {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.header h1 {
	font-size: 17px;
	font-weight: 500;
	flex: 1;
	text-align: center;
	margin-left: -20px;
}

.content {
	padding: 20px;
	min-height: calc(100vh - 55px);
}

/* 无数据样式 */
.empty-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 180px);
}

.empty-icon {
	width: 250px;
	height: 250px;
}

.empty-text {
	font-size: 14px;
	color: #CCCCCC;
}

/* 弹窗样式 */
.popup-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
}

.popup {
	width: 100%;
	background-color: #fff;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	animation: popupShow 0.3s ease;
	bottom: 0;
	position: fixed;
	left: 0;
	height: calc(100% - 120px);
}

@keyframes popupShow {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.popup-header {
	padding: 20px 10px 0 10px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}

.popup-content {
	padding: 20px;
	height: calc(100% - 80px);
	/* 内容区域高度，根据弹窗头部和底部调整 */
	overflow-y: auto;
	/* 垂直滚动条 */
	overflow-x: hidden;
	/* 隐藏水平滚动条 */
}

.popup-content h3 {
	font-size: 15px;
	margin-bottom: 15px;
	border-left: 2px solid #2A82E4;
	padding-left: 5px;
}

.popup-content p {
	margin-bottom: 3px;
	line-height: 1.5;
	font-size: 14px;
}

.rating-group {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	margin-top:10px;
}

.rating-group span {
	flex: 1;
	text-align: center;
	padding: 6px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
}

.rating-group span.active {
	background-color: #007bff;
	color: #fff;
	border-color: #007bff;
}

.popup-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	padding: 10px;
	gap: 10px;
	align-items: flex-start;
	background-color: #ffffff;
}

.popup-footer button {
	flex: 1;
	padding: 10px;
	border: none;
	background-color: #2A82E4;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-radius: 100px;
	color: #ffffff;
}

.popup-footer button:first-child {
	border: 1px solid #2A82E4;
	background-color: #ffffff;
	color: #2A82E4;
}

/* 部门列表样式 */
.quarter-title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.department-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom:65px;
}

.department-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background-color: #f7f7f7;
	border-radius: 5px;
}

.department-info {
	display: flex;
	flex-direction: column;
}

.department-name {
	font-size: 15px;
	font-weight: 500;
}

.department-score {
	font-size: 13px;
	color: #999;
}

.evaluate-btn {
	color: #007bff;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.group {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px;
	background-color: #f7f7f7;
	border-radius: 5px;
	gap: 10px;
}

.form-group {
	display: flex;
	align-items: center;
}

.form-group label {
	display: block;
	margin-right: 10px;
	margin-bottom: 4px;
	font-size: 14px;
}

.form-group input {
	flex: 1;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	height: 40px;
}

.bottom-bt {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
}

.bottom-bt .submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #2A82E4;
	color: #fff;
	border: none;
	border-radius: 100px;
	font-size: 16px;
	margin-top: 20px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}