@charset "utf-8";
/*******************************************************************************
 * version 1.0 release;
 * copyright 2017
 ******************************************************************************/
body.header-fixed{
	overflow: hidden;
}
body.scroll-fixed{
	overflow: hidden;
}
/*wrap 最外框 */
.wrap {
	background: #fff;
	min-height: 100%;
	position: relative;
	overflow: hidden;/*防止超出*/
}

/*頁面寬度*/
.wrap__inner{
	margin: 0 auto;
	padding: 0 10px;
	max-width: 1200px;
}
.wrap__inner--no-padding {
	padding: 0;
}

/*header */
.header {
	background: #fff;
	height: 44px;
	z-index: 10;
	border-bottom: 1px solid #eee;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.header:after{
	clear: both;
	content: " ";
	display: block;
	height: 0;
	line-height: 0;
}
.header .inner{
	padding: 0;
}
.header__btn {
	display: inline-block;
	text-align: center;
	height: 43px;
	line-height: 43px;
	min-width: 43px;
	text-decoration: none;
	color: #333;
}
.header__btn:focus,
.header__btn:active {
	/* color: inherit; */
}
.header__btn-text {
	display: none;
}
.header__btn-icon {
	font-size: 22px;
}
.header__like {
	display: none;
}
/*content */
.content {
	padding: 0;/*10/16*/
	min-height: 50vh;
}
.content:before{
	content: " ";
	display: block;
	height: 44px;
}
.section {
	margin: 0 0 25px;
}
.section--gray {
	padding: 25px 0;
	background: #f7f7f7;
}
.section:last-child.section--gray {
	margin-bottom: 0;
}
/* 區塊-標題區 */
.section__heading{
	text-align: center;
	font-size: 20px;
	margin-bottom: 25px;
	color: #033e7c;
	color: var(--blue-light, #033e7c);
	line-height: 1.3;
	font-weight: normal;
}
/* 標題 */
.section__title{
	text-align: center;
	font-size: 22px;
	margin-bottom: 12px;
	color: #033e7c;
	color: var(--blue-light, #033e7c);
	line-height: 1.3;
	font-weight: normal;
}
.section__text {
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: .05em;
}
/*------------------------------右側欄------------------------------*/
.main {
	width: 100%;
}
/*------------------------------左側欄------------------------------*/
.sidebar {
}

/*footer */
.footer {
	background: #2071aa;
	/*background: var(--blue-main, #002852);*/
	color: #fff;
}
.footer-info-wrap {
	padding: 20px 0;
}
/*------------------------------版權宣告------------------------------*/
.footer__copyright {
	border-top: 1px solid hsla(0, 0%, 87%, .3);
	text-align: center;
	font-size: 0.875em;/*14/16*/
	padding: 0.625em 0;/*10/14 10/320*100*/
	color: #bbb;
}
/* 斷行 */
.footer__copyright br{

}
.footer a {
	color: inherit;
}
.footer a:focus,
.footer a:active {
	color: #bbb;
}
@media screen and (min-width: 768px) {
	/*頁面寬度*/
	.wrap__inner{
		padding: 0 15px;
	}
	.wrap__inner--no-padding {
		padding: 0;
	}
	/*content */
	.content {
		padding: 0 0 260px;/*10/16 15/768*100 331+10/16*/
		min-height: inherit;
	}
	/*------------------------------右側欄------------------------------*/
	/*footer */
	.footer {
		height: 260px;
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		padding-top: 35px;
	}
	.footer__inner {
		display: flex;
		/* align-items: center; */
		flex: 1;
		width: 100%;
	}
	.footer-info-wrap {
		width: 50%;
		padding: 0;
	}
	.nav-footer-wrap {
		width: 50%;
	}
	.footer__copyright {
		width: 100%;
	}
	/* 斷行 */
	.footer__copyright br{
		display: none;
	}

}

@media screen and (min-width: 1024px) {
	
	/*wrap 最外框 */
	.wrap {}
	.wrap__inner:after {
		content: " ";
		display: block;
		clear: both;
		line-height: 0;
		height: 0;
		visibility: hidden;
	}

	/*header */
	.header {
		position: relative;/*還原phone fixed*/
		height: auto;
		padding-top: 1px;
		margin-top: -1px;
	}
	.header::before {
		content: '';
		left: 0;
		right: 0;
		height: 1px;
		background: #eee;
		position: absolute;
		bottom: 64px;
	}
	.header__inner {
		position: static;
		/* overflow: hidden; */
	}
	/* 右側功能 */
	.header__function {
		/* position: absolute;
		top: auto;
		right: 15px; */
		/* float: right; */
		/* bottom: -49px; */
		/* bottom: 0; */
		z-index: 11;
		position: relative;
	}
	.header__logo {
		margin-left: auto;
		margin-right: auto;
	}
	
	.header__like {
		display: block;
		float: right;
	}
	.header__like .header__btn-icon {
		font-size: 24px;
	}
	.header__btn {
		position: static;
		height: 62px;
		line-height: 62px;
		width: 50px;
	}
	.header__btn-icon {
		font-size: 22px;
	}
	.header__inner-bar {
		display: flex;
		justify-content: space-between;
	}
	.header-fixed-web .header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 64px;
	}
	
	.header-fixed-web .header::before {
		content: none;
	}
	.header-fixed-web .header__inner {
		display: flex;
		align-items: center;
		margin: 0 auto;
		max-width: 1400px;
	}
	.header-fixed-web .header__logo {
		width: 100px;
		height: 34px;
		margin: 0;
		flex-shrink: 0;
	}
	.header-fixed-web .header__inner-bar {
		flex-grow: 1;
		padding-left: 30px;
	}
	.header-fixed-web .nav__item {
		margin-right: 30px;
	}
	.header-fixed-web .content:before {
		content: '';
		height: 64px;
	}
	
	/*------------------------------粉絲團------------------------------*/
	.fbplug {
		display: block;
		float: right;
		font-size: 0.875em;/*14/16*/
		height: 22px;
		margin: 35px 0 11px;
		position: relative;
		z-index: 1;
	}
	.fbplug > span {
		display: inline-block;
		vertical-align: top;
	}
	.fbplug > span.text {
		color: #593b2a;
		margin: 2px 0;
	}
	.fbplug > span.text > a {
		color: #593b2a;
		display: block;
		text-decoration: none;
	}
	.fbplug > span.text > a:hover,
	.fbplug > span.text > a:active{
		text-decoration: underline;
	}
	/*content */
	.content {
		padding: 0 0 370px;
	}
	.content:before{
		content: none;
	}
	
	.box:after {
		clear: both;
		content: " ";
		display: block;
		height: 0;
		line-height: 0;
		visibility: hidden;
	}
	/*------------------------------右側欄------------------------------*/
	.main {
		width: calc(100% - 175px);
		float: right;
		/* padding: 0 0 0 230px; */
	}
	/*------------------------------左側欄------------------------------*/
	.sidebar {
		display: block;
		float: left;
		width: 140px;
	}
	/*footer */
	.footer {
		height: 370px;
		padding-top: 75px;
	}
	.footer__copyright{
		padding: 16px 0;
	}
	.footer a:hover {
		color: #bbb;
	}
	.section {
		margin-bottom: 50px;
	}
	.section--gray {
		padding: 35px 0;
	}
	/* 區塊-標題區 */
	.section__heading{
		font-size: 22px;
		line-height: 1.36;
		margin-bottom: 35px;
	}
	/* 標題 */
	.section__title{
		border-bottom: 1px solid #e1e1e1;
		text-align: left;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
}

@media (min-width: 1230px) {
	.wrap__inner {
		padding: 0;
	}
	.header__function {
		right: 0;
	}
	.header-fixed-web .header__inner-bar {
		padding-left: 50px;
	}
	.header-fixed-web .nav__item {
		margin-right: 50px;
	}
	.header-fixed-web .header__inner {
		padding: 0 15px;
	}
}
@media (min-width: 1430px) {
	.header-fixed-web .header__inner {
		padding: 0;
	}
}
