@charset "utf-8";

.tabs-wrapper {
	display: block;
	margin: 20px auto;
	text-align: center;
	position: relative;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.tabs-wrapper select.tab-nav {
	display: none;
}

.tabs-wrapper ul.tab-nav {
	list-style: none;
	/* display: block;
	margin: 0px; */
	display: flex;
	width: auto;
	justify-content: center;
	margin: auto;
}

.tabs-wrapper ul.tab-nav li {
	text-align: center;
	font-family: '微軟正黑體';
	/* display: inline-block; */
	margin: 0 15px;
}

.tabs-wrapper ul.tab-nav li:last-child {
	margin-right: 0;
}
.tabs-wrapper ul.tab-nav li a {
	display: block;
	text-decoration: none;
	padding: 20px;
	min-width: 150px;
	color: #fff;
	font-size: 20px;
	border: 1px solid #fff;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.tabs-wrapper ul.tab-nav li.active a {
	background: #b8956c;
	border: none;
}

.tabs-wrapper ul.tab-nav li:hover a {
	background: #b8956c;
}

.tabs-wrapper .target-tabs {
	padding-top: 20px;
	overflow: hidden;
	position: relative;
}

.tabs-wrapper .target-tabs .tab-content {
	display: none;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.tabs-wrapper .target-tabs .tab-content .tab-heading .tab-no {
	font-size: 28px;
	font-weight: light;
}

/*.tabs-wrapper .target-tabs .tab-content p {
  line-height: 24px;
  word-spacing: 1px;
}*/
.tabs-wrapper .target-tabs .tab-content img {
	max-width: 100%;
	height: auto;
}
.tabs-wrapper .target-tabs .tab-content.active {
	display: block;
}

.tabs-wrapper .target-tabs .tab-content.inactive {
	position: absolute;
}

/*.tabs-wrapper .target-tabs .tab-content a {
  color: #007FD3;
  text-decoration: none;
}*/

@media screen and (max-width: 1024px) {
	.tabs-wrapper::before {
		content: '\e913';
		font-family: 'icomoon';
		font-size: 30px;
		position: absolute;
		right: 15px;
		top: 4px;
		z-index: 5;
		color: #000;
		pointer-events: none;
	}
	.tabs-wrapper ul.tab-nav {
		display: none;
	}

	.tabs-wrapper select.tab-nav {
		width: 100%;
		padding: 10px;
		font-size: 18px;
		color: #000;
		border: 1px solid #d8d8d8;
		display: block;
	}

	.tabs-wrapper select.tab-nav:focus {
		outline: none;
	}

	.tabs-wrapper .target-tabs {
		border-radius: 0px 0px 2px 2px;
	}
}
