
/**,
*:after,
*::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}*/

.st-container,
.st-pusher,
.st-content {
	height:100%;float:left;
}

.st-content {
	overflow-y: scroll;
	background: #fff;
}

.st-content,
.st-content-inner {
	position: relative;
}

.st-container {
	position: relative;
	overflow: hidden;
}

.st-pusher {
	position: relative;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	width: 290px;
	height: 100%;
	background: #FFF;/*手機板選單背景*/
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	overflow-y:scroll;
	
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 50%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */
.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-menu h2 {
	margin: 0;
	padding: 0.7em 1em;
	color: rgba(0,0,0,0.4);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 400;
	font-size: 2.2em;
	font-family:"Microsoft YaHei";
}
.st-menu h2 a{
	text-decoration: none;
	color: #F39800;
}
.st-menu ul li p{
	text-decoration: none;
	display: block;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	color: #333;/*手機版選單項目字顏色*/
	text-transform: uppercase;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	font-weight: 400;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
	margin:0;
	padding:0.8em 1em;
	font-size:1.15em;
}
.st-menu ul li a{
	text-decoration: none;
	display: block;
	outline: none;
	color: #333;/*手機版選單項目字顏色*/
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	transition: background 0.3s, box-shadow 0.3s;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	padding: 0.8em 1em;
	font-size:1.15em;
}

.st-menu ul li:first-child a{
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.st-menu ul li a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
	color: #666;/*手機板選單字滑過變化顏色*/
}
#open1 li a,#open2 li a,#open3 li a,#open4 li a,#open5 li a,#open6 li a,#open7 li a,#open8 li a{font-size:1em;padding-left:1.5em;color:#666}



/* 效果3: Push*/
.st-effect-3.st-menu-open .st-pusher {
	position:fixed;/*讓左側選單固定不隨畫面移動延伸的關鍵*/
	-webkit-transform: translate3d(300px, 0, 0);
	transform: translate3d(300px, 0, 0);
}

.st-effect-3.st-menu {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	overflow-y:scroll;
}

.st-effect-3.st-menu-open .st-effect-3.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-effect-3.st-menu::after {
	display: none;
}


/* 效果1: Slide in on top */
.st-effect-1.st-menu {
	position:fixed;/*讓左側選單固定不隨畫面移動延伸的關鍵*/
	visibility: visible;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
	display: none;
}

button{
	opacity: 0.3;
	border-radius: 5px;
	height:auto;
	position: fixed;
	z-index: 15;
	background-color: #FFF;
	-webkit-appearance: none;/*ios系統專用，默認的系統樣式*/
    font-family: '微軟正黑體';
    text-align:center;
}
button i{font-weight:normal;display:block !important}
button:hover {background:#FFF;}

.button_bar{background:#000;display:block;border-radius:1px;}



#st-trigger-effects img{
	text-align: center;
	width:100%;
}

/*選單變換*/


/*PC*/
@media screen and (min-width: 1201px) {
#mobile_menu,.st-container,.st-pusher{
	width:100%;
	margin:auto;
	text-align:center;}
#nav{display:none;}
.st-content{display:none;}
.st-menu{display:none;}
.st-pusher::after{display:none;}
}


/*手機*/
@media screen and (min-width: 1px) and (max-width: 767px){
#mobile_menu{width:100%;height:100%;float:left}
/*按鈕*/
button{
	width: 12%;
	top: .8%;
	left: 3.5%;
    padding: 2px 0;
}
.button_bar{width:63%;height:3px;margin:4px auto 3px}
button i{font-size:2em}
/*按鈕橫式*/
@media screen and (orientation:landscape){
button{
	width: 8%;
	top: 2%;
	left: 3.2%;
    font-size:1em;
}
}
}

/*ipad*/
@media screen and (min-width: 768px) and (max-width: 991px){
#mobile_menu{width:100%;height:100%;float:left;}
/*按鈕*/
button{
	width:8.3%;
	top: 1%;
	left: 2.7%;
    padding: 2px 0;
    font-size:1.15em;
}
.button_bar{width:65%;height:3px;margin:6px auto 3px;}
button i{font-size:2.3em}
}

/*平板*/
@media screen and (min-width: 992px) and (max-width: 1200px){
#mobile_menu{width:100%;height:100%;float:left;}
/*按鈕*/
button{
	width:8%;
	top: 1.3%;
	left: 2.5%;
    padding: 3px 0 5px;
    font-size:1.25em;
}
.button_bar{width:60%;height:4px;margin:7px auto 4px;}
button i{font-size:2.3em}

}
#open1,#open2,#open3,#open4,#open5,#open6,#open7{display:none;}