/**************************************************
若要只寫在前台，請在前方添加 body.gc_body
**************************************************/
/*-------------------------------------------------
---LIST---
1) ALL-Style
-------------------------------------------------*/
/*-------------------------------------------------
1) ALL-Style

Reference: Mobile-for-width---------------------

@media only screen and (max-width: px) and (min-width: px){}
→ MAX ~ MIN => CHANGE

@media only screen and (max-width: px){}
→ < MAX => CHANGE

@media only screen and (min-width: px){}
→ > MIN => CHANGE

Reference: Browser------------------------------

@media screen\9 {}
→ <= IE 7

@media \0screen {}
→ IE 8

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {}
→ >= IE10

@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { .selector {} }
→ WebKit 

@media screen and (min--moz-device-pixel-ratio:0) {}
→ Firefox > 4

Reference: Mobile-For iphone---------------------

→ Help mobile block to be block
→ Must to add at row
→ Have to used on 2col or 3col...

@media only screen and (max-width: 768px){
	.Leisure_block {
		display:block!important;
		clear: none!important;
	}
}
-------------------------------------------------
1F: iPad					1024px
2F: iPad					768px
3F: Iphone 5s				640px
4F: Iphone 6 Plus			414px
5F: Nexus  5X，Nexus 6P		412px
6F: Iphone 6				375px
7F: Galaxy S5				360px
8F:	Iphone 5				320px
-------------------------------------------------*/
#eg-wrap h2.topheader:before{
	background:#fff!important;
}
/*GC_minos:隱藏後台使用者編輯介面的SEO欄位*/
.yoast.yoast-settings,
.wpfm-header-div{
	display:none!important;
}