*{
	position: relative;
	box-sizing: border-box;
}

body{
	font-family: arial;
}

li{
	list-style: none;
	padding: 0;
	margin: 0;
}

ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

a{
	text-decoration: none;
	color: #000;
}

.wrapper{

}

/*navbar*/
.navbar{
	background-color: #FF7F27;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 100;
}

.logo{
	float: left;
	height: 80px;
	transition: all 1s;
}
.logo:hover{
	transform: scale(1.1);
}
.navbar .logo img{
	height: 100%;
}

.menu{
	float: right;
}
.menu li{
	float: left;
}
.menu li a{
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 30px;
	line-height: 20px;
	font-size:medium;
	transition: all 1s;
}
.menu li a:hover{
	color: #6F3700;
}

/*在PC上隱藏漢堡選單*/
.showmenu{
	display: none;
}

.topimg{
	width: 100%;
}
.topimg img{
	width: 100%;
}

#area1{
	background-color: #fff;
}

.word{
	padding: 60px 0px 100px 0px;
	text-align: center;
	line-height: 40px;
}

.wordcontent{
	text-align: left;
	width: 100%;
	line-height: 25px;
	padding: 10px;
}

#area2{
	background-color: #fff;
}

.product{
	border: 1px solid #bbb;
	width: 100%;
	text-align: left;
	line-height: 20px;
	padding: 10px 30px;
}
.smallimg, .smallimg2{
	width: 100%;
}

.smallimg img, .smallimg2 img{
	width: 10%;
}

.smallimg img:hover, .smallimg2 img:hover{
	border: 2px solid #bbb;
}


.bigimg, .bigimg2{
	width: 100%;
	padding: 10px 0px;
}
.bigimg img, .bigimg2 img{
	width: 100%;
}


#area3{
	width: 100%;
	background-color: #fff;
}

#area3 .pay{
	background-color: #fff;
}

#area3 .location{
	line-height: 16px;
}

#area4{
	width: 100%;
	background-color:#fff;

}

#area5{
	width: 100%;
	background-color:#FF7F27;

}
.copyright{
	padding: 10px 0px 10px 0px;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: #fff;
}

.tempdiv{
	width: 10%;
	height: 1px;
	background-color:#bbb;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 768px) {
	.navbar{
		height: 40px;
	}
	.logo{
		height: 40px;
	}
	.menu{
		/*隱藏選單開始*/
		max-height: 0;
		overflow: hidden;
		/*隱藏選單結束*/
		/*漸變效果*/
    	transition: max-height 0.5s;
    	/*margin-top: 1px;*/
    	/*絕對定位疊在網頁上*/
    	position: absolute;
    	/*權重*/
    	z-index: 100;
    	/*header 80px+1px boder 線條*/
    	top: 40px;
    	/* left:0 right:0表示滿版 */
    	left: 0;
   		right: 0;
    	background: #FF7F27;
	}
	.menu li{
		float: none;
		border-bottom: 1px solid #ff9900;
	}
	.menu li a{
    	transition: all 0.3s;
    	padding: 10px;
  	}
	.menu li a:hover{
    	background: #fff;
    	color: #FF7F27;
  	}
	.showmenu{
    	display: block;
    	float: right;
    	margin: 1em;
  	}
  	/*jQuery點擊後動態在 body 加上 class */
  	.menu-show .menu{
  		max-height: 160px;
  	}

  	.word{
  		padding: 50px 0;
  	}
}

