/* 禁止文本选择 */
* {
    user-select: none; /* 禁用文本选择 */
}

body {
	margin: 0;
	padding: 0;
	display: flex;
	height: 100vh;
	background-color: #121212;
	color: #ffffff;
	font-family: Arial, sans-serif;
}

.container {
	display: flex;
	width: 100%;
}





/* 用户模态容器 */
.user-modal {
    position: absolute;
    width: 300px;
    border-radius: 10px;
    background: #1e1e1e;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-size: 14px;
    display: none;
    transition: opacity 0.5s ease, visibility 0s 1s; /* 动画效果：0.5秒 */
}

/* 头部样式 */
.user-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #2e2e2e;
    border-bottom: 1px solid #3a3a3a;
    position: relative;
}

/* 用户头像 */
.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

/* 用户信息 */
.user-info {
    flex-grow: 1;
}

.user-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.user-emailorweb3 {
    margin: 5px 0 0;
    font-size: 13px;
    color: #aaa;
}

.user-method {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: #42c742;
}

/* 设置按钮 */
.settings-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* 主体样式 */
.user-body {
    padding: 15px;
}

/* 电子钱包区域 */
.wallet {
    margin-bottom: 15px;
}

.wallet h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: bold;
}

.rewards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    border-radius: 5px;
    padding: 10px;
}

.rewards-info span {
    font-size: 13px;
    color: #aaa;
}

.rewards-info strong {
    font-size: 16px;
    color: #fff;
}

.exchange-link {
    color: #42c742;
    text-decoration: none;
    font-size: 13px;
}

/* 按钮区域 */
.actions .action-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
}

.actions .action-btn:hover {
    background: #444;
}



/* 放大模态样式 */
.ImgOrName-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);/* 背景模糊效果 */
  justify-content: center;
  align-items: center;
}

.ImgOrName-modal-content {
  position: relative;
  background-color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-avatar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

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

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

.modal-actions {
  margin-top: 20px;
}

.modal-actions button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 0 10px;
}

.modal-actions button:hover {
  background-color: #45a049;
}


.modal-actions input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}







/*file-manager 左侧*/

.file-manager {
	width: 61.8%;
	padding: 20px;
	background-color: #1e1e1e;
	overflow-y: auto;
	border-right: 1px solid #333;
}

.File-manager-title {
	height: 60px;
	text-align: center;
	/* 文字居中 */
	margin: 80px 0 20px;
	/* 上下外边距 */
	font-family: 'Arial', sans-serif;
	/* 字体 */
}

.File-manager-title h1 {
	font-size: 36px;
	/* 字体大小 */
	color: #ffffff;
	/* 字体颜色 */
	line-height: 1.5;
	/* 行高 */
}


.empty-area {
	background-color: #2e2e2e;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	height: 100%;
	text-align: center;
}

.empty-area p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
}

/* 导航栏容器上层样式 */
.breadcrumbContainer-container{
    height: 40px;
    margin: 10px 20px;
    overflow-x: auto; /* 启用水平滚动 */
    overflow-y: hidden; /* 禁止垂直滚动 */
    white-space: nowrap; /* 避免子元素换行 */
}

/* 自定义滚动条样式 */
.breadcrumbContainer-container::-webkit-scrollbar {
	height: 4px;
	/* 滚动条宽度 */
}

.breadcrumbContainer-container::-webkit-scrollbar-track {
	background-color: #333;
	/* 滚动条轨道背景色 */
	border-radius: 2px;
}

.breadcrumbContainer-container::-webkit-scrollbar-thumb {
	background-color: #555;
	/* 滚动条滑块颜色 */
	border-radius: 2px;
}

.breadcrumbContainer-container::-webkit-scrollbar-thumb:hover {
	background-color: #888;
	/* 滑块悬停颜色 */
}

/* 导航栏容器样式 */
#breadcrumbContainer {
	height: 100%;
	display: flex;
	align-items: center;
	background-color: #2e2e2e;
	/* 浅灰蓝背景 */
	border-radius: 6px;
	/* 圆角效果 */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	/* 轻微阴影 */
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	color: #ffffff;
	/* 默认文字颜色 */
}

/* 路径节点样式 */
#breadcrumbContainer span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	/* 默认路径颜色 */
	cursor: pointer;
	padding: 5px 8px;
	margin-right: 5px;
	/* 节点间距 */
	border: 1px solid #ddd;
	/* 整体边框透明 */
	border-radius: 4px;
	/* 圆角 */
	background-color: #2e2e2e;
	/* 节点背景色与导航栏背景一致 */
	transition: all 0.2s ease;
}
/* 悬停效果 */
#breadcrumbContainer span:hover {
	color: #ffffff;
	/* 悬停时文字颜色 */
	background-color: #aaa;
	/* 悬停时背景色 */
	border-color: #ffffff;
	/* 悬停时边框颜色 */
}

/* 当前路径样式 */
#breadcrumbContainer span.current {
	font-weight: bold;
	/* 当前目录加粗 */
	color: #ffffff;
	/* 当前目录文字颜色 */
	background-color: #2e2e2e;
	/* 当前目录背景色 */
	border: 1px solid #ddd;
	/* 浅色边框 */
	pointer-events: none;
	/* 禁用点击 */
}

/* 按钮容器样式 */
#button {
	display: flex;
	justify-content: space-between;
	/* 使按钮均匀分布 */
	align-items: center;
	height: 40px;
	/* 设置容器高度 */
	padding: 0 20px;
	/* 内边距，避免按钮紧贴容器边缘 */
	background-color: #2e2e2e;
	/* 背景颜色 */
	border-radius: 6px;
	/* 圆角效果 */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	/* 阴影效果 */
}

/* 按钮样式 */
#button button {
	height: 30px;
	/* 按钮高度 */
	width: 100px;
	padding: 0 15px;
	/* 水平内边距，调整按钮宽度 */
	font-size: 14px;
	/* 字体大小 */
	color: #fff;
	/* 文字颜色 */
	background-color: #cf1111;
	/* 按钮背景色 */
	border: none;
	/* 去掉边框 */
	border-radius: 4px;
	/* 圆角效果 */
	cursor: pointer;
	/* 鼠标悬停时显示手型 */
	transition: all 0.3s ease;
	/* 动画过渡 */
}

/* 悬停按钮效果 */
#button button:hover {
	background-color: #cf1111;
	/* 悬停时背景颜色 */
	transform: translateY(-2px);
	/* 悬停时微微抬起 */
}

/* 文件显示区域 */
.file-display-area {
	height: calc(100% - 140px);
	margin: 20px;
	background-color: #2a2a2a;
	position: relative;
	flex-direction: column;
}

.file-table-area{
    height: 100%;
    width: 100%;
    overflow-x: auto; /* 开启水平滚动 */
    overflow-y: hidden; /* 禁止垂直滚动 */
    white-space: nowrap; /* 避免子元素换行 */
    padding-bottom: -4px;
    margin-bottom: 4px; /* 将滚动条移出可视范围 */
}

/* 自定义滚动条样式 */
.file-table-area::-webkit-scrollbar {
	height: 4px;
	/* 滚动条高度 */
}

.file-table-area::-webkit-scrollbar-track {
	background-color: #333;
	/* 滚动条轨道背景色 */
	border-radius: 2px;
}

.file-table-area::-webkit-scrollbar-thumb {
	background-color: #555;
	/* 滚动条滑块颜色 */
	border-radius: 2px;
}

.file-table-area::-webkit-scrollbar-thumb:hover {
	background-color: #888;
	/* 滑块悬停颜色 */
}

/* 第一个 table：表头部分 */
.file-table-header {
	height: 5%;
	/* 表头高度为 5% */
	width: 100%;
	min-width: 1000px;
	table-layout: fixed;
	background-color: #333;
	border-collapse: collapse;
	position: sticky;
	top: 0;
	/* 固定在顶部 */
}

/* 表头单元格样式 */
.file-table-header th {
	padding: 10px;
	color: white;
	font-weight: bold;
	text-align: left;
	/*overflow: hidden;*/
	text-overflow: ellipsis;
	/* 显示省略号 */
	white-space: nowrap;
	/* 防止换行 */
}

/* 第二个 table：表体部分容器 */
.file-table-body-container {
	max-height: 95%;
	width: 100%;
	min-width: 1000px;
	overflow-y: auto;
	/* 启用垂直滚动条 */
	position: relative;
	/* 使滚动条容器可以定位 */
	overflow-x: hidden;
	/* 禁用水平滚动条 */
	/*padding-bottom: 4px;*/
	margin-bottom: 4px; /* 将滚动条移出可视范围 */
}

/* 自定义滚动条样式 */
.file-table-body-container::-webkit-scrollbar {
	width: 4px;
	/* 滚动条宽度 */
}

.file-table-body-container::-webkit-scrollbar-track {
	background-color: #333;
	/* 滚动条轨道背景色 */
	border-radius: 2px;
}

.file-table-body-container::-webkit-scrollbar-thumb {
	background-color: #555;
	/* 滚动条滑块颜色 */
	border-radius: 2px;
}

.file-table-body-container::-webkit-scrollbar-thumb:hover {
	background-color: #888;
	/* 滑块悬停颜色 */
}

/* 表体 table */
.file-table-body {
    width: 100%;
	min-width: 1000px;
	/* 增加宽度，防止被滚动条遮挡 */
	table-layout: fixed;
	border-collapse: collapse;
	/* 合并边框 */
	position: relative;
	z-index: 1;
	/* 确保表体的内容不会覆盖滚动条 */
	padding-right: 4px;
	/* 给表格留出空间，避免滚动条覆盖 */
}

/* 表体单元格样式 */
.file-table-body td {
	padding: 10px;
	color: white;
	text-align: left;
	overflow: hidden;
	/* 隐藏溢出的内容 */
	text-overflow: ellipsis;
	/* 显示省略号 */
	white-space: nowrap;
	/* 防止换行 */
}

/* 复制按钮样式 */
.copy-btn {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	margin-left: 5px;
	/* 与哈希值的间距 */
	font-size: 14px;
}

.copy-btn:hover {
	color: #00aaff;
	/* 悬停时的颜色变化 */
}

/* 设置每列的宽度比例，确保表头和表体列宽一致 */
.file-table-header th:nth-child(1),
.file-table-body td:nth-child(1) {
	width: 5%;
	/* 第一列占 5% */
}

.file-table-header th:nth-child(2),
.file-table-body td:nth-child(2) {
	width: 30%;
	/* 第二列占 10% */
}

.file-table-header th:nth-child(3),
.file-table-body td:nth-child(3) {
	width: 10%;
	/* 第三列占 30% */
}

.file-table-header th:nth-child(4),
.file-table-body td:nth-child(4) {
	width: 40%;
	/* 第四列占 40% */
}

.file-table-header th:nth-child(5),
.file-table-body td:nth-child(5) {
	width: 15%;
	/* 第五列占 20% */
}

/* 表体背景色 */
.file-table-body tbody tr:nth-child(odd) {
	background-color: #2a2a2a;
}

.file-table-body tbody tr:nth-child(even) {
	background-color: #1f1f1f;
}

.file-table-body tbody tr:hover {
	background-color: #444;
}

/* 文件夹名称的悬停样式 */
.folder-name {
	cursor: pointer;
	/* 鼠标悬停时显示为点击样式 */
}

/* 鼠标悬停时背景色变化 */
.folder-name:hover {
	color: #888;
	/* 悬停时文字颜色 */
}

/* 设置第五行的所有单元格内容靠右 */
.file-table-body td:nth-child(5) {
	text-align: right;
}

/* 选中时的行背景色 */
.selected-row {
	background-color: #444 !important;
	/* 设置选中背景颜色 */
}

.file-table-header th input,
.file-table-body td input,
.file-table-body td button {
	cursor: pointer;
}

.file-table-body td:nth-child(5) button {
	display: none;
}

.file-table-body .selected-row td:nth-child(5) button,
.file-table-body tr:hover td:nth-child(5) button {
	display: inline-block;
	background: none;
	/* 移除按钮背景 */
	border: none;
	/* 移除按钮边框 */
	color: #cf1111;
	/* 设置文字颜色 */
	font-family: Arial, sans-serif;
	text-decoration: none;
	/* 默认无下划线 */
	cursor: pointer;
	/* 鼠标指针变为可点击样式 */
	padding: 0;
	/* 移除内边距 */

}

.file-table-body tr:hover td:nth-child(5) button:hover {
	text-decoration: underline;
	/* 鼠标悬停时显示下划线 */
}

.card {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #cf1111;
	/* 卡片背景颜色 */
	border-radius: 30px;
	/* 圆角 */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	/* 阴影效果 */
	padding: 15px;
	cursor: pointer;
	margin-top: 20px;
}

.card i {
	font-size: 24px;
	/* 图标大小 */
	margin-right: 10px;
	/* 图标与文字之间的间距 */
}

.uploadOrdownload-area {
	width: 38.2%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #2e2e2e;
}

.uploadOrdownload-area h2 {
	color: white;
	margin-bottom: 20px;
}

.custum-file-upload {
	height: 150px;
	width: 300px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border: 2px dashed #ffffff;
	background-color: #444;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s;
}

.custum-file-upload:hover {
	background-color: #555;
}


.progress {
	width: 100%;
	height: 10px;
	border-radius: 15px;
	background-color: #d1d1d1;
	margin-top: 10px;
	display: none;
}

.progress-bar {
	height: 100%;
	width: 0;
	background-color: #cf1111;
	border-radius: 15px;
	transition: width 0.3s;
}

h1 {
	text-align: center;
	margin-bottom: 20px;
	color: white;
}

.content-box {
	height: calc(100% - 180px);
	/* 计算高度为100%减去160px */
	padding: 10px;
	background-color: #1e1e1e;
}

.uploadOrdownload-status {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.9);
}

.stop-upload {
	background-color: #cf1111;
	color: #d1d1d1;
	border: none;
	padding: 10px 20px;
	border-radius: 15px;
	cursor: pointer;
	margin-top: 10px;
}

.stop-upload:hover {
	background-color: #f0f0f0;
}

.stop-download {
	background-color: #cf1111;
	color: #d1d1d1;
	border: none;
	padding: 10px 20px;
	border-radius: 15px;
	cursor: pointer;
	margin-top: 10px;
}

.stop-download:hover {
	background-color: #f0f0f0;
}






/* 半透明模糊导航栏样式 */
.navbar {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	background-color: rgba(51, 51, 51, 0.7);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
	z-index: 10;
}

#unLogIn,
.navbar-item {
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	cursor: pointer;
	transition: color 0.3s;
}

#unLogIn:hover,
.navbar-item:hover {
	color: #ff5252;
}

.search-container {
	height: 200px;
	display: flex;
	align-items: center;
	margin-left: 100px;
	/* 将搜索框推到右侧 */
	margin-right: 100px;
	/* 与右侧保持100px的距离 */
}

/* From Uiverse.io by themrsami */
.search-bar {
	width: 600px;
	position: relative;
	display: flex;
	align-items: center;
	background-color: #1e1e1e;
	height: 25px;
	border-radius: 30px;
	padding: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.search-input {
	width: 100%;
	border: none;
	background: none;
	color: #fff;
	font-size: 16px;
	padding: 10px;
	outline: none;
}

.search-input::placeholder {
	color: #aaa;
}

.search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: #333;
	border-radius: 50%;
	margin-left: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.search-icon svg {
	fill: #fff;
}

.search-icon:hover {
	background-color: #555;
}

.search-bar:hover {
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.search-bar:focus-within {
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}


/*导航栏右侧的用户头像和下拉菜单*/


.user-dropdown {
	position: absolute;
	top: 50px;
	right: 0;
	background-color: #333;
	color: white;
	border-radius: 5px;
	padding: 10px;
	display: none;
	/* 默认隐藏 */
	width: 150px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	text-align: left;
}

.user-dropdown button {
	background-color: crimson;
	color: white;
	border: none;
	border-radius: 5px;
	padding: 5px 10px;
	cursor: pointer;
	margin-top: 10px;
}

.user-dropdown button:hover {
	background-color: darkred;
}












.content-title {
	font-size: 24px;
	margin-bottom: 20px;
}

.file-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-radius: 5px;
	background-color: #2e2e2e;
	margin: 5px 0;
}

.file-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.download-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: color 0.3s;
}

.download-icon:hover {
	color: #ff5252;
}







.modal {
	display: none;
	/* 默认隐藏 */
	position: fixed;
	z-index: 10;
	/* 在最上层 */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	/* 启用滚动 */
	background-color: rgba(0, 0, 0, 0.5);
	/* 半透明黑色背景 */
	backdrop-filter: blur(10px);
	/* 背景模糊效果 */
}

.modal-content {
	z-index: 10;
	background-color: #222;
	/* 深色背景 */
	margin: auto;
	/* 自动左右居中 */
	padding: 20px;
	width: 70%;
	/* 宽度占70% */
	/*height: 80%; /* 最大高度80% */
	overflow-y: auto;
	/* 启用竖向滚动 */
	color: white;
	/* 字体颜色 */
	border-radius: 10px;
	/* 圆角 */
	position: relative;
	/* 相对定位 */
	top: 50%;
	/* 位置为视口的50% */
	transform: translateY(-50%);
	/* 垂直居中 */
}


.close-button {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close-button:hover,
.close-button:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}


.modal-body {
	display: flex;
	/* 使用flex布局 */
}

.sidebar {
	width: 200px;
	/* 侧边导航栏占200px宽度 */
	height: 650px;
	background-color: #333;
	/* 背景色 */
	padding: 15px;
	border-radius: 10px;
	/* 圆角 */
	margin-right: 15px;
	/* 外围 */
}

.sidebar h3 {
	color: white;
	/* 字体颜色 */
}

.sidebar-item {
    width:150px;
	color: white;
	/* 字体颜色 */
	cursor: pointer;
	/* 鼠标指针 */
	padding: 10px 5px;
	text-decoration: none;
	list-style-type: none;
}

.sidebar-item:hover {
	background-color: #444;
	/* 鼠标悬停效果 */
}

/* 点击后固定的效果 */
.sidebar-item.active {
	background-color: #444;
}

.content-area {
	width: calc(100% - 245px);
	height: 650px;
	/* 限制最大高度 */
	margin: 15px;
	overflow-y: auto;
	/* 启用垂直滚动 */
	
}

/* 自定义滚动条 */
.content-area::-webkit-scrollbar {
	width: 8px;
	/* 滚动条宽度 */
}

.content-area::-webkit-scrollbar-track {
	background-color: #333;
	/* 滚动条轨道背景色 */
	border-radius: 4px;
}

.content-area::-webkit-scrollbar-thumb {
	background-color: #555;
	/* 滚动条滑块颜色 */
	border-radius: 4px;
}

.content-area::-webkit-scrollbar-thumb:hover {
	background-color: #888;
	/* 滑块悬停颜色 */
}

.content-area h2 {
	color: white;
	/* 字体颜色 */
}

#contentFileReceive,
#contentFileSearch {
    height: calc(100% - 19.92px);
    width: 100%;

}

.searchAndreceive-area {
    height: calc(100% - 288.72px);
    width: 100%;
	background-color: #2e2e2e;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.searchAndreceive-area p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
}

/* 文件显示区域 */
.file-display-area2 {
	height: calc(100% - 40px);
	margin: 20px;
	background-color: #2a2a2a;
	position: relative;
	flex-direction: column;
}

/* 第一个 table：表头部分 */
.file-table-header2 {
	height: 40.8px;
	/* 表头高度为 5% */
	width: 100%;
	min-width: 1000px;
	table-layout: fixed;
	background-color: #333;
	border-collapse: collapse;
	position: sticky;
	top: 0;
	/* 固定在顶部 */
}

/* 表头单元格样式 */
.file-table-header2 th {
	padding: 10px;
	color: white;
	font-weight: bold;
	text-align: left;
	/*overflow: hidden;*/
	text-overflow: ellipsis;
	/* 显示省略号 */
	white-space: nowrap;
	/* 防止换行 */
}

/* 第二个 table：表体部分容器 */
.file-table-body-container2 {
	max-height: calc(100% - 40.8px);
	width: 100%;
	min-width: 1000px;
	overflow-y: auto;
	/* 启用垂直滚动条 */
	position: relative;
	/* 使滚动条容器可以定位 */
	overflow-x: hidden;
	/* 禁用水平滚动条 */
	padding-bottom: 4px;
	margin-right: -4px; /* 将滚动条移出可视范围 */
}

/* 自定义滚动条样式 */
.file-table-body-container2::-webkit-scrollbar {
	width: 4px;
	/* 滚动条宽度 */
}

.file-table-body-container2::-webkit-scrollbar-track {
	background-color: #333;
	/* 滚动条轨道背景色 */
	border-radius: 2px;
}

.file-table-body-container2::-webkit-scrollbar-thumb {
	background-color: #555;
	/* 滚动条滑块颜色 */
	border-radius: 2px;
}

.file-table-body-container2::-webkit-scrollbar-thumb:hover {
	background-color: #888;
	/* 滑块悬停颜色 */
}

/* 表体 table */
.file-table-body2 {
    width: 100%;
	min-width: 1000px;
	/* 增加宽度，防止被滚动条遮挡 */
	table-layout: fixed;
	border-collapse: collapse;
	/* 合并边框 */
	position: relative;
	z-index: 1;
	/* 确保表体的内容不会覆盖滚动条 */
	padding-right: 4px;
	/* 给表格留出空间，避免滚动条覆盖 */
}

/* 表体单元格样式 */
.file-table-body2 td {
	padding: 10px;
	color: white;
	text-align: left;
	overflow: hidden;
	/* 隐藏溢出的内容 */
	text-overflow: ellipsis;
	/* 显示省略号 */
	white-space: nowrap;
	/* 防止换行 */
}

/* 设置每列的宽度比例，确保表头和表体列宽一致 */
.file-table-header2 th:nth-child(1),
.file-table-body2 td:nth-child(1) {
	width: 40%;
	/* 第一列占 5% */
}

.file-table-header2 th:nth-child(2),
.file-table-body2 td:nth-child(2) {
	width: 10%;
	/* 第二列占 10% */
}

.file-table-header2 th:nth-child(3),
.file-table-body2 td:nth-child(3) {
	width: 40%;
	/* 第三列占 30% */
}

.file-table-header2 th:nth-child(4),
.file-table-body2 td:nth-child(4) {
	width: 10%;
	/* 第四列占 40% */
}

/* 表体背景色 */
.file-table-body2 tbody tr:nth-child(odd) {
	background-color: #2a2a2a;
}

.file-table-body2 tbody tr:nth-child(even) {
	background-color: #1f1f1f;
}

.file-table-body2 tbody tr:hover {
	background-color: #444;
}

/*增值服务*/
.card-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	/* 卡片之间的间隔 */
	flex-wrap: wrap;
	/* 响应式设计：小屏幕时卡片会换行 */
	margin-top: 20px;
}

.add-service-card {
	margin-left: 3px;
	/* 向右偏移10像素 */
	background-color: #333;
	/* 深色背景 */
	color: white;
	padding: 20px;
	width: 40%;
	/* 每个卡片占据容器的48%宽度 */
	border-radius: 10px;
	/* 圆角 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	/* 卡片阴影 */
	text-align: center;
	transition: transform 0.3s ease;
	/* 添加过渡效果 */
}

.add-service-card:hover {
	transform: scale(1.05);
	/* 鼠标悬停时卡片放大 */
}

.add-service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.card-price {
	font-size: 1.2rem;
	font-weight: bold;
	color: #ff4444;
	/* 使用金色显示价格 */
	margin-bottom: 15px;
}

.card-description {
	font-size: 1rem;
	margin-bottom: 20px;
}

.add-service-card ul {
	list-style-type: none;
	padding: 0;
}

.add-service-card ul li {
	margin-bottom: 10px;
}

.btn-subscribe {
	background-color: #cf1111;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-size: 1rem;
	margin-top: 20px;
	transition: background-color 0.3s;
}

.btn-subscribe:hover {
	background-color: #ff4444;
}

@media (max-width: 768px) {
	.add-service-card {
		width: 100%;
		/* 小屏幕时每个卡片占据100%宽度 */
	}
}



/* 用户登陆注册的模态 */
.auth-modal {
	display: none;
	/* 隐藏模态 */
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.22);
	/* 模态背景颜色 */
	backdrop-filter: blur(10px);
	/* 背景模糊效果 */
}

.auth-modal-content {
	background-color: rgba(34, 34, 34, 0.8);
	/* 深色半透明背景 */
	margin: auto;
	padding: 20px;
	width: 60%;
	/* 宽度占60% */
	max-height: 80%;
	/* 最大高度 */
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}

.auth-close-button {
	color: white;
	font-size: 28px;
	cursor: pointer;
	align-self: flex-end;
}

.auth-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.auth-tab-links {
	cursor: pointer;
}

.auth-tab-links span {
	margin: 0 10px;
	padding: 10px;
	border-radius: 5px;
	color: white;
	transition: background-color 0.3s;
}

.auth-tab-links .active-tab {
	background-color: #444;
	/* 激活标签背景 */
}


.auth-tab-links {
	display: flex;
	/* 使用 Flexbox */
	justify-content: center;
	/* 居中对齐 */
	flex-wrap: nowrap;
	/* 防止换行 */
}

.auth-tab-links span {
	white-space: nowrap;
	/* 防止文本换行 */
	margin: 0 10px;
	/* 标签之间的间距 */
}




.auth-modal-body {
	margin-top: 20px;
}

.auth-input-group {
	margin-bottom: 20px;
	/* 增加上下边距 */
}

.auth-input-field {
	width: 80%;
	/* 输入框宽度占满 */
	padding: 10px;
	border: 2px solid transparent;
	border-radius: 5px;
	/* 圆角 */
	transition: border 0.3s;
	background-color: rgba(255, 255, 255, 0.07);
	/* 输入框背景稍浅 */
}

.auth-input-field:focus {
	border: 2px solid blue;
	/* 蓝色边框 */
	outline: none;
}

.auth-button-container {
	display: flex;
	justify-content: space-between;
	/* 按钮平行排列 */
}

.auth-button {
	background-color: darkred;
	/* 深红色 */
	color: white;
	padding: 10px 20px;
	/* 增加水平内边距 */
	border: none;
	border-radius: 20px;
	/* 胶囊形状 */
	cursor: pointer;
	transition: background-color 0.3s;
}

.auth-button:hover {
	background-color: crimson;
	/* 悬停效果 */
}

/* Toast 样式 || 提示 样式 */
.toast {
	visibility: hidden;
	min-width: 300px;
	background: #cf1111;
	/* 红色背景 */
	color: #ffffff;
	/* 白色字体 */
	text-align: center;
	border-radius: 10px;
	padding: 15px 20px;
	position: fixed;
	z-index: 1000;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 1s ease, visibility 1s;
}

/* 显示时的样式 */
.toast.show {
	visibility: visible;
	opacity: 1;
}

/* 右键菜单 */
#contextMenu {
	position: absolute;
	background-color: #1a1a1a;
	/* 深黑色背景 */
	color: #fff;
	/* 白色文字 */
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 1000;
	width: 150px;
	font-size: 14px;
}

/* 菜单项 */
#contextMenu li {
	padding: 12px;
	border-bottom: 1px solid #444;
	/* 深色的分隔线 */
	cursor: pointer;
	transition: background-color 0.3s;
	border-radius: 4px;
}

/* 最后一项没有底部边框 */
#contextMenu li:last-child {
	border-bottom: none;
}

/* 鼠标悬停效果 */
#contextMenu li:hover {
	background-color: #333;
	/* 悬停时稍微变亮 */
	color: #fff;
	/* 保持文字为白色 */
}

/* 点击时效果 */
#contextMenu li:active {
	background-color: #007bff;
	/* 点击时显示蓝色 */
	color: #fff;
	/* 保持文字为白色 */
}