@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
html, body {
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: 'Noto Sans TC', "Helvetica Neue", Helvetica, "Microsoft YaHei", "微软雅黑", sans-serif;
	font-size: 75%;
	color: #ddd;
	line-height: 1.4;
	height: 100%;
	transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
}
.wrap {
	/*height: 100%;*/
	min-height: 100%;
 *display: table; /* For IE7 Hack */
 *height: 100%; /* For IE7 Hack */
}
.header {
	position: fixed;
	width: 100%;
	height: 59px;
	background-color: rgba(0, 0, 0, 0.75);
	border-bottom: 1px solid #cc8a55;
	z-index: 99;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.header.shrink {
	background-color: #000;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.main {
	/*height: 100%;*/
	overflow: auto;
	padding-bottom: 36px;
	width: 100%;
} /* must be same height as the footer */
#demo-1 {
	position: fixed; /* can either be relative, absolute or fixed. If position is not set (i.e. static), it would be set to "relative" by script */
	overflow: hidden; /* to bound the empty top space created by inner element's top margin */
	width: 100%;
	height: 100%;
	min-height: 240px;
	background-color: #333;
}
.demo-inner-content {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	/*margin: 180px auto;
	padding: 40px;*/
	width: 20%;
	height: auto;
	/*margin-left: -250px;
	margin-top: -101px;*/
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*max-width: 600px;*/
	box-sizing: border-box;
	color: #fff;
	text-align: center;/*font-size: 1.5em;*/
}
.demo-inner-content h1 {
	font-size: 2.5rem;
	margin: 0 auto;
	width: 100%;
}
.demo-inner-content h1 img {
	max-width: 100%;
	height: auto;
}
.demo-inner-content .main-title {
	display: block;
	width: 400px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 5px;
	padding-top: 5px;
	border-top: 3px dotted #c79e2c;
}
.footer {
	position: relative;
	width: 100%;
	height: 36px;
	font-size: 1rem;
	font-weight: 200;
	margin-top: -36px;
	clear: both;
	/*padding-top: 10px;*/
	z-index: 9;
	/*text-align: center;*/
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.75);
}
.footer .copyright {
	display: inline-block;
	margin: 10px auto;
	margin-left: 25px;
	margin-right: 5px;
}
.footer .copyright a {
	color: #ddd;
	text-decoration: none;
	margin: 0 5px;
}
.footer .copyright a:hover {
	color: #cc8a55;
}
/** 社群連結 **/
.footer .socialDiv {
	display: inline-block;
}
.footer .socialDiv a {
	display: inline-block;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
	margin-right: 6px;
	background-size: contain !important;
}
.footer .socialDiv a.fb {
	background: url(../images/social_fb.png) no-repeat;
}
.footer .socialDiv a.fb:hover {
	background: url(../images/social_fb_h.png) no-repeat;
}
.footer .socialDiv a.line {
	background: url(../images/social_line.png) no-repeat;
}
.footer .socialDiv a.line:hover {
	background: url(../images/social_line_h.png) no-repeat;
}
.footer .socialDiv a.tr {
	background: url(../images/social_tr.png) no-repeat;
}
.footer .socialDiv a.tr:hover {
	background: url(../images/social_tr_h.png) no-repeat;
}
.footer .socialDiv a.ig {
	background: url(../images/social_ig.png) no-repeat;
}
.footer .socialDiv a.ig:hover {
	background: url(../images/social_ig_h.png) no-repeat;
}
/** 社群連結 End **/
a.containerClose {
	position: fixed;
	right: 425px;
	height: calc(100% - 166px);
	width: 20px;
	display: block;
	bottom: 36px;
	background: url(../images/container_close.png) center no-repeat #000;
	border-right: 1px solid #1a1a1a;
	padding: 35px 0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	z-index: 10;
}
.container {
	position: fixed;
	width: 370px;
	height: 75%;
	height: calc(100% - 166px);
	background: url(../images/container_bg.png) top center no-repeat;
	background: rgba(0, 0, 0, 0.9);
	right: 0;
	bottom: 36px;
	padding: 35px;
	padding-right: 20px;
	z-index: 9;
}
.container h1 {
	height: 26px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
}
.container .content {
	height: 78%;
	height: calc(100% - 150px);
	overflow: auto;
	margin: 30px 0;
}
/* width */
.container .content::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.container .content::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 4px;
}
 
/* Handle */
.container .content::-webkit-scrollbar-thumb {
  width: 4px;
  background: #9e8f83;
  border: 2px solid transparent;
  border-radius: 4px;
  background-clip: content-box;
}

/* Handle on hover */
.container .content::-webkit-scrollbar-thumb:hover {
  width: 4px;
  background: #68594c; 
  border: 2px solid transparent;
  background-clip: content-box;
}
.container .content .main-title {
	font-size: 1.41rem;
	font-weight: 500;
	margin-bottom: 15px;
	color: #cc8a55;
}
.container .content p {
	font-family: 'Noto Sans TC', "微軟正黑體", "Microsoft JhengHei UI", sans-serif;
	font-size: 1.16rem;
	font-weight: 100;
	margin-bottom: 15px;
	line-height: 1.8;
}
.container .aboutInfo {
	background: url(../images/about_info.png) left top 3px no-repeat;
	background-size: 60px auto;
	font-size: 1rem;
	font-weight: 100;
	line-height: 1.8;
	padding-left: 70px;
	padding-bottom: 3px;
}
.containPhoto {
	width: 33%;
	display: inline-block;
	padding: 0 6px;
	overflow: hidden;
	box-sizing: border-box;
}
.containPhoto a {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.containPhoto img {
	width: 100%;
	height: auto;
	-webkit-transition: -webkit-transform 0.2s linear;
    -moz-transition: -moz-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
}
.containPhoto img:hover {
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/**內文燈箱**/
.contentImg {
	display: table;
	width: 100%;
	margin: 20px auto;
	font-size: 0;
}
.lightItem {
	position: relative;
	width: 33%;
	padding: 5px;
	display: inline-block;
	box-sizing: border-box;
}
a.lightImg {
}
a.lightImg img {
	width: 100%;
}
/**上一個、下一個按鈕**/
.preNext {
	position: fixed;
	left: 20px;
	bottom: 60px;
	z-index: 1;
}
.preNext a {
	color: #fff;
	text-decoration: none;
	font-size: 1.08rem;
	background: #000;
	margin: 0 3px;
	padding: 5px 15px;
	opacity: 0.45;
}
.preNext a:hover {
	opacity: 1;
}
@media screen and (max-height: 800px) {
	/*.container .content {
		height: 72%;
	}*/
}

@media screen and (max-width: 1366px) {
html, body {
}
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
.footer {
	padding: 20px;
	height: auto;
	background: #222;
	text-align: center;
}
.footer .copyright {
	margin: 0;
	margin-bottom: 12px;
	display: block;
}
.footer .socialDiv {
	display: block;
}
#demo-1 {
	position: relative;
	height: 350px;
}
.demo-inner-content {
	width: 30%;
	/*width: 350px;
	margin-left: -175px;
	margin-top: -62px;*/
}
a.containerClose {
	display: none;
}
.container {
	position: relative;
	width: auto;
	height: auto;
	right: 0 !important;
	bottom: auto;
	margin-top: 0;
	padding-right: 35px;
	background: none;
}
.container .content {
	height: auto !important;
	overflow: inherit;
	padding-bottom: 20px;
	border-bottom: 1px solid #333;
}
/**上一個、下一個按鈕**/
.preNext {
	position: inherit;
	background: #000;
	text-align: center;
	border-top: 1px solid #333;
	border-bottom: 2px solid #333;
	padding: 20px 0;
}
}
@media screen and (max-width: 736px) {
html, body {
	font-size: 75%;
}
.demo-inner-content .main-title {
	width: 230px;
}
}
@media screen and (max-width: 700px) {
}
@media screen and (max-width: 414px) {
html, body {
	 font-size: 68%;
}
.demo-inner-content {
	width: 45%;
}
.demo-inner-content .main-title {
	width:200px;
}
.container {
	padding: 30px 25px;
}
}
@media screen and (max-width: 320px) {
.container .aboutInfo {
	background-size: auto;
}
}

