 /* 全局样式 */
 body {
 	font-family: 'Arial', sans-serif;
 	margin: 0;
 	padding: 10px;
 	background-color: #f0f0f0;
 	overflow-x: hidden;
 }

 a {
 	text-decoration: none;
 	/* 去除下划线 */
 	color: inherit;
 	/* 继承父元素的颜色 */
 	-webkit-tap-highlight-color: transparent;
 	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }

 a:focus {
 	outline: none;
 	/* 去除焦点状态的轮廓 */
 }

 a:hover {
 	text-decoration: none;
 	/* 去除悬停下划线 */
 	color: inherit;
 	/* 继承父元素的颜色 */
 }

 /* 任务容器样式 */
 .task-container {
 	background-color: white;
 	border-radius: 8px;
 	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 	padding: 10px;
 	margin-top: 40px;
 }

 /* 任务头部样式 */

 .task-header b {
 	font-size: 18px;
 	line-height: 40px;
 }

 .task-idop {
 	font-size: 12px;
 }

 /* 任务信息样式 */
 .copsl-ndh {
 	border-top: 1px solid #f1eded;
 }

 .task-info {
 	padding: 10px 0px 0px 0px;
 	margin-top: 5px;
 }

 .task-info p {
 	margin: 5px 0;
 	font-size: 14px;
 	line-height: 1.6;
 	color: #555;
 }

 .task-scjt {
 	font-size: 14px;
 	line-height: 0.5;
 	color: #555;
 }

 /* 查看示例按钮样式 */
 .example-btn {
 	background-color: #ff6600;
 	padding: 5px 15px;
 	border: none;
 	border-radius: 15px;
 	cursor: pointer;
 	font-size: 14px;
 	transition: background-color 0.3s ease;
 	margin-left: 20px;
 	color: #fff;
 }

 .example-btnlp {
 	background-color: #306cf5;
 	margin-left: 40px;
 }

 .example-btn:hover {
 	background-color: #ff5454;
 }

 .example-apo {
 	background-color: #166dfd;
 	padding: 10px 20px;
 	border-radius: 15px;
 	font-size: 14px;
 	color: #fff;
 	text-align: center;
 	margin-top: 20px;
 	margin-bottom: 40px;
 	width: 200px;
 	height: 45px;
 	/* 增加按钮宽度 */
 	display: block;
 	/* 将元素显示为块级元素 */
 	margin-left: auto;
 	/* 自动计算左边距 */
 	margin-right: auto;
 	/* 自动计算右边距 */
 }

 .biaoti {
 	font-size: 15px;
 }

 .task-tupian {
 	display: flex;
 	align-items: center;
 	/* 垂直居中 */
 }

 .tupian img {
 	width: 80px;
 	height: 120px;
 	border-radius: 5px;
 	/* 圆弧 */
 	cursor: pointer;
 	/* 鼠标悬停时显示可点击样式 */
 	margin-top: 10px;
 	margin-left: 20px;
	border: 1px solid #ccc;
 }

 .tupianxz {
 	/* margin-left: 50px; */
 	/* 图片与下载按钮的间距 */
 	cursor: pointer;
 	/* 鼠标悬停时显示可点击样式 */
 	/* color: #3785fd; */
 	font-size: 14px;

 }


 .selected-ts {
 	cursor: pointer;
 	font-size: 14px;
 	color: #666;
 	margin-left: 14px;
 }

 /* 上传图片 */
 .image-container {
 	display: flex;
 	flex-wrap: wrap;
 	padding: 10px;
 }

 .image-item {
 	position: relative;
 	width: 80px;
 	height: 120px;
 	margin: 10px;
 	transition: all 0.3s ease;
 	/* 添加过渡效果 */
 }

 .image-item img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	border-radius: 8px;
	border: 1px solid #ccc;
 }

 .close-button {
 	position: absolute;
 	top: -8px;
 	right: -8px;
 	background-color: rgba(255, 0, 0, 0.5);
 	color: white;
 	cursor: pointer;
 	border-radius: 50%;
 	width: 20px;
 	height: 20px;
 	line-height: 20px;
 	text-align: center;
 	transition: all 0.3s ease;
 	/* 添加过渡效果 */
 	z-index: 999;
 }

 .close-button:hover {
 	background-color: rgba(255, 0, 0, 0.8);
 	/* 鼠标悬停时加深颜色 */
 }

 .select-button {
 	position: relative;
 	width: 80px;
 	height: 120px;
 	border: 1px dashed #b1b1b1;
 	margin-left: 10px;
 	border-radius: 8px;
 	margin-top: 10px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	cursor: pointer;
 	overflow: hidden;
 	transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

 .select-button:hover {
 	border-color: #0056b3;
 	box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
 }

 .select-button span {
 	font-size: 24px;
 	color: #b1b1b1;
 }

 button {
 	padding: 10px 30px;
 	background-color: #007bff;
 	color: #fff;
 	border: none;
 	border-radius: 20px;
 	cursor: pointer;
 	font-size: 16px;
 	transition: background-color 0.3s ease, box-shadow 0.3s ease;
 	box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
 	/* margin-left: 50px; */
 	margin: auto;
 }

 .selected-files {
 	margin-top: 10px;
 	font-size: 14px;
 	color: #999;
 }

.selected-files1#upload-status {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 9999;
}

 .upload-preview {
 	width: 60px;
 	height: 60px;
 	margin-right: 10px;
 	margin-bottom: 10px;
 	position: relative;
 	overflow: hidden;
 	border: 1px solid #ddd;
 	border-radius: 5px;
 }

 .upload-preview img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	display: block;
 }

 .upload-preview .delete-icon {
 	position: absolute;
 	top: 0px;
 	right: 0px;
 	cursor: pointer;
 	color: red;
 	font-size: 24px;
 	background: rgba(255, 255, 255, 0.8);
 	border-radius: 50%;
 	width: 20px;
 	height: 20px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 }

 .upload-preview .status {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	color: #fff;
 	font-size: 14px;
 	background: rgba(128, 128, 128, 0.2);
 	/* 灰色遮罩 */
 }

 .upload-preview .status.approved {
 	background: rgba(0, 128, 0, 0.7);
 	color: #00ff00;
 	/* 绿色字体 */
 }

 .upload-results {
 	display: flex;
 	flex-wrap: wrap;
 	justify-content: space-around;
 	margin-top: 20px;
 }

 .upload-result {
 	width: 31%;
 	margin-bottom: 20px;
 	position: relative;
 	overflow: hidden;
 	border: 1px solid #ddd;
 	border-radius: 5px;
 }

 .upload-result img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	display: block;
 }

 .upload-result .status {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	color: #fff;
 	font-size: 14px;
 	background: rgba(128, 128, 128, 0.8);
 	/* 灰色遮罩 */
 }

 .upload-result .status.approved {
 	background: rgba(128, 128, 128, 0.5);
 	/* 灰色遮罩 */
 	color: #75ff4a;
 	/* 绿色字体 */
 }

 .navbar {
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 45px;
 	/* 导航栏高度 */
 	background-color: #fff;
 	/* 背景色 */
 	z-index: 9999;
 	/* 确保导航栏在最上层 */
 	display: flex;
 	align-items: center;
 	border-bottom: 1px solid #d3d2d2;
 }

 .back-button {
 	width: 20px;
 	height: 20px;
 	z-index: 99999;
 	margin-left: 10px;
 	position: fixed;
 }

 .left-arrow {
 	display: inline-block;
 	margin: 20px;
 	border-left: 1px solid;
 	border-bottom: 1px solid;
 	width: 10px;
 	height: 10px;
 	transform: rotate(45deg);

 }

 .title {
 	margin: auto;
 	z-index: 999;
 }

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

 /* 弹窗样式 */
 .popup {
 	background-color: white;
 	width:70%;
 	max-width: 800px;
 	border-radius: 10px;
 	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
 	position: relative;
 }

 /* 关闭按钮样式 */
 .close-btn {
 	position: absolute;
 	top: 5px;
 	right: 5px;
 	cursor: pointer;
 	background: rgba(0, 0, 0, 0.5);
 	color: white;
 	width: 40px;
 	height: 40px;
 	border-radius: 50%;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	border: none;
 	font-size: 18px;
 	opacity: 0.8;
 	transition: opacity 0.3s ease;
	font-size: 24px;
 }

 .close-btn:hover {
 	opacity: 1;
 }

 /* 弹窗内图片样式 */
 .popup img {
 	width: 100%;
 	height: auto;
 	display: block;
 	border-radius: 10px;
 }

 /* 审核 */
 .status-container {
 	display: flex;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 }

 .status-icon {
 	width: 80px;
 	height: 80px;
 	margin-top: 20px;
 }

 .status-text h3 {
 	font-size: 22px;
 	color: #333;
 	text-align: center;
 }
.status-text{
	font-size: 14px;
	color: #999;
	text-align: center;
	line-height: 10px;
	margin-top: 30px;
}

 .status-text p {
 	font-size: 14px;
 	color: #999;
 	text-align: center;
 	line-height: 10px;
 }

 .submit-1 {
 	position: fixed;
 	bottom: 60px;
 	left: 50%;
 	transform: translateX(-50%);
 }

 .submit-1 button {
 	padding: 10px 20px;
 	border: none;
 	border-radius: 5px;
 	background-color: #007bff;
 	color: #fff;
 	cursor: pointer;
 }

 .modal {
 	display: none;
 	position: fixed;
 	z-index: 1;
 	left: 0;
 	top: 0;
 	width: 100%;
 	height: 100%;
 	overflow: auto;
 	background-color: rgba(0, 0, 0, 0.4);
 	justify-content: center;
 	align-items: center;
 }

 .modal-content {
 	background-color: #fefefe;
 	border: 1px solid #888;
 	width: 220px;
 	border-radius: 8px;
 	text-align: center;
 	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
 	position: relative;
 	padding: 20px;
 }

 .close {
 	position: absolute;
 	top: 0px;
 	right: 10px;
 	color: #aaa;
 	font-size: 28px;
 	cursor: pointer;
 }

 .close:hover,
 .close:focus {
 	color: black;
 	text-decoration: none;
 }

 .buttonlk {
 	background-color: #4CAF50;
 	border: none;
 	color: white;
 	padding: 10px 32px;
 	text-align: center;
 	text-decoration: none;
 	display: inline-block;
 	font-size: 16px;
 	margin: 4px 2px;
 	cursor: pointer;
 	border-radius: 8px;
 	height: 40px;
 	margin-top: 20px;
 }

 .modal-message {
 	margin-bottom: 20px;
 }