.modern-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 12px;
	border: 1px solid #d1d8e0;
	border-radius: 15px;
	overflow: hidden;
	margin: 20px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	table-layout: fixed; /* 添加这个属性让固定宽度生效 */
}

.modern-table th {
	background: #12b5fe;
	color: white;
	font-weight: 600;
	padding: 5px 5px;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,0.1);
}

.modern-table th:first-child {
	background: #0D2241;
	border-right: none;
	font-size: 17px;
}

.modern-table td {
	padding: 5px 5px;
	text-align: center;
	border-bottom: 1px solid #e0e0e0;
}

.modern-table tr:hover td {
	background-color: #f8fafc;
}

.modern-table tr:nth-child(even) {
	background-color: #f9f9f9;
}

/* 修正后的固定宽度设置 */
.modern-table th:nth-child(1),
.modern-table td:nth-child(1) {
	width: 100px; /* 第一列自动宽度 */
	min-width: 120px; /* 给第一列设置最小宽度 */
}

.modern-table th:nth-child(2),
.modern-table td:nth-child(2) {
	width: 60px; /* 第二列 */
}

.modern-table th:nth-child(3),
.modern-table td:nth-child(3) {
	width: 60px; /* 第三列 */
}

.modern-table th:nth-child(4),
.modern-table td:nth-child(4) {
	width: 60px; /* 第四列 */
}

.modern-table th:nth-child(5),
.modern-table td:nth-child(5) {
	width: 60px; /* 第五列 */
}

.modern-table th:nth-child(6),
.modern-table td:nth-child(6) {
	width: 60px; /* 第六列 */
}

.modern-table th:nth-child(7),
.modern-table td:nth-child(7) {
	width: 60px; /* 第七列 */
}

@media (max-width: 767px) {
	.modern-table {
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch; /* 为了在iOS设备上实现更平滑的滚动 */
	}
}