select {
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: auto;
	-moz-transition: border-color 0.2s ease-in-out;
	-webkit-transition: border-color 0.2s ease-in-out;
	-ms-transition: border-color 0.2s ease-in-out;
	transition: border-color 0.2s ease-in-out;
	background: #fff;
	border: solid 1px #e0e0e0;
	border-radius: 5px;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0.75em;
	text-decoration: none;
	width: 100%;
}


/* input[type="checkbox"] {
		-webkit-appearance: checkbox;
	}
	
	input[type="radio"] {
		-webkit-appearance: radio;
	} */



/* The container */
.formData {
	.container {
		display: block;
		position: relative;
		padding-left: 35px;
		margin-bottom: 12px;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		font-size: 1em;
		letter-spacing: -0.025em;
	}

	/* Hide the browser's default checkbox */
	.container input[type="radio"],
	input[type="checkbox"] {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}

	/* Create a custom checkbox */

	.checkmark {
		position: absolute;
		top: 0px;
		left: 0;
		height: 25px;
		width: 25px;
		background-color: #eee;
	}

	@media(min-width: 540px) {
		.checkmark {
			position: absolute;
			top: 0px;
			left: 0;
			height: 25px;
			width: 25px;
			background-color: #eee;
		}
	}

	@media(min-width: 768px) {
		.checkmark {
			position: absolute;
			top: 0px;
			left: 0;
			height: 25px;
			width: 25px;
			background-color: #eee;
		}
	}

	@media(min-width: 920px) {
		.checkmark {
			position: absolute;
			top: 7px;
			left: 0;
			height: 25px;
			width: 25px;
			background-color: #eee;
		}
	}




	/* On mouse-over, add a grey background color */
	.container:hover input~.checkmark {
		background-color: #ccc;
	}

	/* When the checkbox is checked, add a blue background */
	.container input:checked~.checkmark {
		background-color: #2196F3;
	}

	/* Create the checkmark/indicator (hidden when not checked) */
	.checkmark:after {
		content: "";
		position: absolute;
		display: none;
	}

	/* Show the checkmark when checked */
	.container input:checked~.checkmark:after {
		display: block;
	}

	/* Style the checkmark/indicator */
	.container .checkmark:after {
		left: 9px;
		top: 5px;
		width: 5px;
		height: 10px;
		border: solid white;
		border-width: 0 3px 3px 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.container p {
		font-size: 16px;
		;
	}



}



/* CSS */
.parent {
	display: flex;
	/* 水平置中 */
	justify-content: center;
	/* 垂直置中 */
	align-items: center;
}

.child {
	display: flex;
	/* 水平置中 */
	justify-content: center;
	/* 垂直置中 */
	align-content: center;
	flex-wrap: wrap;
}

.child ul {
	padding:0 60px;
}




.error {
	border: 1px solid red !important;
}
.error-label {
	color: red;
}



  .table {
    width: 100%;
    border-collapse: collapse;
  }

  .table, .table th, .table td {
    border: 1px solid black;
  }

  .table th, .table td {
    padding: 8px;
    text-align: left;
  }


  .right-align {
	text-align: right !important;
}
 

.magin0
{

	margin: 0 0 0em 0;
}

p,span{
	font-family: Microsoft JhengHei;
    font-weight: bold;
}


.italic-text {
    font-style: italic;
}