* {
	margin: 0;
	padding: 0;
}

html {
	background-image: linear-gradient(120deg, #02a982 0%, #8fd3f4 100%);	
	#background-color: #02a982; //默认
}

body {
    margin: 0 auto;
    max-width: 40rem;
	padding: 3rem 1rem 0 1rem;
}

a {
	text-decoration: none;
	color: #434343;
	border-bottom: dotted 0.1rem #ddd;
}

p {
    line-height: 2.5rem;
    text-indent: 1.6rem;
    text-align: left;
}

.card {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 2.5rem;
	background: #02a982;
	text-align: center;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02), 0 2px 2px rgba(0, 0, 0, 0.02), 0 4px 4px rgba(0, 0, 0, 0.02);
}

.card:hover {
	box-shadow: 0 0.5rem 0.5rem 0 rgba(0,0,0,0.24),0 1rem 1rem 0 rgba(0,0,0,0.19);
	border-radius: 0.5rem;
}

.title {
    background-color: #000;
    background-image: url("https://ttit.win/api/img/api.php");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 5rem;
	font-size: 1.4rem;
	color: #2F4F4F;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

.title:hover {
	background-color: #fa6262;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.content {
    font-family: Arial,Helvetica,sans-serif;
    padding: 1rem;
	color: #fa6262;
	font-size: 0.9rem;
	text-align: center;
	background: #fff;
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
}

#table_wrap > table {
    border-radius: 0.5rem;
	font-size: 0.8rem;
	text-align: center;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	border: 0.1rem #000;
	width: 100%;
	background-color: #fff;
	color: #ff6a6a;
}

#table_wrap > table:hover {
	box-shadow: 0 0.5rem 0.5rem 0 rgba(0,0,0,0.24),0 1rem 1rem 0 rgba(0,0,0,0.19);
	border-radius: 0.5rem;
}

table thead tr,table tbody tr {
	height: 3rem;
}

table tr th:first-child {
	border-top: 0;
	background-color: #02a982;
	color: #fff;
	font-size: 0.9rem;
	padding: 1rem;
}

table tr th:first-child,table tr td:first-child {
	border-left: 0;
}

table tr th:last-child,table tr td:last-child {
	border-right: 0;
}

table tr td:first-child,
table tr td:nth-child(2),
table tr td:nth-child(3),
table tr td:last-child {
	border-bottom: 0;
}

th {
	border-bottom: 0;
}

table tr:first-child th:first-child {
	border-top-left-radius: 0.5rem;
}

table tr:first-child th:last-child {
	border-top-right-radius: 0.5rem;
}

table tr:last-child td:first-child {
	border-bottom-left-radius: 0.5rem;
}

table tr:last-child td:last-child {
	border-bottom-right-radius: 0.5rem;
}

.biao {
    font-weight: bold;
    color: #6E8B3D;
}