.main {
	padding: 20px;
	padding-bottom: 40px;
}
.main h2 {
	font-weight: normal;
	margin: 10px auto;
	width: fit-content;
	color: #42474c;
}
.main h3 {
	font-weight: normal;
	margin: 20px auto 10px;
	width: fit-content;
	color: #42474c;
}
.main table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
	font-size: 20px;
	border: 1px solid #42474c;
	overflow-x: auto;
	box-shadow: 10px 10px 20px -1px rgba(66,71,76,0.59);
	-webkit-box-shadow: 10px 10px 20px -1px rgba(66,71,76,0.59);
	-moz-box-shadow: 10px 10px 20px -1px rgba(66,71,76,0.59);
}
.main table tr {
	height: 45px;
}
.main table tr:nth-child(2n) {
	background-color: #ebebeb;
}
.main table tr th,
.main table tr td {
	padding: 5px 10px;
	width: 25%;
}
.main table tr td {
	color: #42474c;
}
.main table .tr1 {
	background-color: #56b0d2;
	color: white ;
}
.main table tr td a {
	padding: 5px 10px;
	cursor: pointer;
	text-decoration: none;
	border-radius: 5px;
	background-color: #63d2af;
	color: white;
}

@media (max-width: 768px) {
	.main table tr {
		display: block;
		padding: 5px 0;
		height: fit-content;
		position: relative;
	}
	.main table tr.tr1 {
		display: none;
	}
	.main table tr td {
		display: block;
		width: 100%;
		text-align: right;
		padding-left: 45px;
	}
	.main table tr td:before {
		content: attr(data-lable);
		position: absolute;
		left: 10px;
	}
	.main table tr td a {
		text-align: center;
		display: block;
		width: 20%;
		min-width: 110px;
		margin: 0 auto;
	}
}