.content {
	flex: 1;
	overflow-y: auto;
	position: relative;

}

table {
	border-collapse: collapse;
	width: 100%;
	text-align: center;
	color: #7b7d7c;
}

thead {
	position: sticky;
	top: 0;
	background-color: #ffffff;
	z-index: 9;
}

thead::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ededed;
	position: absolute;
	left: 0;
	bottom: 0;
}

th {
	font-weight: normal;
}

tbody tr:nth-child(even) {
	background-color: #f8f9f8;
}

td>a {
    color: #428bef;
    display: flex;
    justify-content: center;
    align-items: center;
}

td>a i {
	transform: rotate(180deg);
	display: block;
}

@media screen and (max-width:600px) {
	.first {
		width: 18vw;
	}

	tr {
		height: 12vw;
	}
	td>a i.iconfont{
		font-size: 3.8vw;
	}
}

@media screen and (min-width:600px) {
	.first {
		width: 110px;
	}

	tr {
		height: 50px;
	}
	td>a i.iconfont{
		font-size: 16px;
	}
}