
.rwd-table {
	overflow: hidden;
	min-width: 100%;
}
/*
20170418 去掉
.rwd-table th, .rwd-table td {
	margin: 0.5em 1em; 
}
*/
.rwd-table th {
	font-weight: bold;
	display: none;
}
.rwd-table td {
	display: block;
}
.rwd-table td:before {
	content: attr(data-th) " : ";
	font-weight: bold;
	padding-right: 5px;
	display: inline-block;
}

/* 小裝置 */
@media(max-width: 767px) {
	.rwd-table th, .rwd-table td {
		text-align: left;
	}
	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
		border-width: 0px;
	}
	.rwd-table th:last-child, .rwd-table td:last-child {
		border-bottom-color: rgb(240,240,240);
		border-bottom-width: 1px;
		border-bottom-style: solid;
		/*
		padding-bottom: 20px;
		border-bottom-color: rgb(240,240,240);
		border-bottom-width: 1px;
		border-bottom-style: solid;
		margin-bottom: 5px;
		*/
	}
}

@media (min-width: 480px) {
	.rwd-table td:before {
		display: none;
	}
	.rwd-table th, .rwd-table td {
		display: table-cell;
		padding: 0.25em 0.5em;
	}
	.rwd-table th:first-child, .rwd-table td:first-child {
		padding-left: 0;
		padding-top: 0;
	/*	font-weight: bold; 20170418 去掉*/ 
	}
	.rwd-table th:last-child, .rwd-table td:last-child {
		padding-right: 0;
	}
	.rwd-table td:last-child {
		border-bottom-width : 0px;
	}
	.rwd-table th, .rwd-table td {
		padding: 5px !important;
	}
	.rwd-table th {
		text-align: center;
		border-bottom-color: rgb(240,240,240);
		border-bottom-width: 2px;
		border-bottom-style: solid;
		/* 20170418 去掉
		margin-bottom: 5px;
		*/
	}
}