.it-weather-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
}

.it-weather-table {
	border: none;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: #fff;
	font-family: "Noto Sans TC", Sans-serif;
	margin-bottom: 0;
}

.it-weather-table th,
.it-weather-table td {
	padding: 16px;
	border: 0;
	text-align: center;
	vertical-align: middle;
	color: #1d1a1a;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	background: #F1EAEA !important;
	color: var(--Color-Black-100, #1D1A1A);
	text-align: center;

	/* Paragraph */
	font-family: "Noto Sans TC";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
	/* 200% */
	letter-spacing: 1.44px;
}

.it-weather-table thead th {
	background: #EED6D6 !important;
	color: var(--Color-Black-100, #1D1A1A);

	/* Paragraph */
	font-family: "Noto Sans TC";
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	/* 200% */
	letter-spacing: 1.44px;
	padding: 16px;
}



.it-weather-table thead th:first-child {
	border-top-left-radius: 12px;
}

.it-weather-table thead tr {
	border: none !important;
}

.it-weather-table thead th:last-child {
	border-top-right-radius: 12px;
}

.it-weather-table tbody tr:nth-child(even) {
	background: #F1EAEA !important
}

.it-weather-table tbody>tr:nth-child(odd)>td,
.it-weather-table tbody>tr:nth-child(odd)>th {
	background: #fff !important
}

.it-weather-table tbody th {
	color: #9b2f2d;
	font-weight: 500;
}

.it-weather-table tbody tr th,
.it-weather-table tbody tr td {
	border-top: 1px solid var(--Color-Black-25, rgba(29, 26, 26, 0.25));
}

.it-weather-table tbody tr:last-child th:first-child {
	border-bottom-left-radius: 12px;
}

.it-weather-table tbody tr:last-child td:last-child {
	border-bottom-right-radius: 12px;
}

table caption+thead tr:first-child td,
table caption+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table thead:first-child tr:first-child td,
table thead:first-child tr:first-child th {
	border-block-start: none;
}

@media (max-width: 767px) {
	.it-weather-table {
		min-width: 0;
		border-spacing: 0 12px;
		background: transparent;
	}

	.it-weather-table thead {
		display: none;
	}

	.it-weather-table,
	.it-weather-table tbody,
	.it-weather-table tr,
	.it-weather-table th,
	.it-weather-table td {
		display: block;
		width: 100%;
	}

	.it-weather-table tr {
		overflow: hidden;
		border-radius: 12px;
		background: #fff;
	}

	.it-weather-table tbody tr:nth-child(even),
	.it-weather-table tbody tr:nth-child(odd) {
		background: #fff;
	}

	.it-weather-table tbody th {
		padding: 16px 18px;
		background: #efd5d6;
		text-align: left;
		font-weight: 700;
	}

	.it-weather-table td {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		padding: 14px 18px;
		text-align: right;
	}

	.it-weather-table td::before {
		content: attr(data-label);
		color: #1d1a1a;
		font-weight: 700;
		text-align: left;
	}

	.it-weather-table tbody tr+tr th,
	.it-weather-table tbody tr+tr td,
	.it-weather-table td+td {
		border-top: 1px solid rgba(29, 26, 26, 0.12);
	}

	.it-weather-table tr+tr {
		margin-top: 24px;
	}
}