@charset "utf-8";
/* 負責整個網站的佈局 */
*{
	box-sizing:border-box;
	-moz-box-sizing: border-box;
	margin:0;
	padding:0;
	word-wrap:break-word;
	word-break:break-word;

}
/**:hover{transition: all 0.5s;}*/


img,img a{
	border:0;
	vertical-align:middle;
}

a{
	text-decoration:none;
	color:inherit;

}



/*以下是 Reset CSS – 重置歸零 – 網頁排版在各瀏覽器快速一致化*/
html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, samp,
small, strike, tt, var,
b, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	/*vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	letter-spacing:1px;
	font-family: Arial ,"微軟正黑體";
	font-size:14px;
}


ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*-------------------------------------------結束Reset CSS瀏覽器快速一致化*/


.layout01{
	overflow:hidden;
	width:100%;
	padding-left:calc((100% - 1400px)/2);
	padding-right:calc((100% - 1400px)/2);
}

.layout02{
	overflow:hidden;
	width:100%;
	padding-left:calc((100% - 1190px)/2);
	padding-right:calc((100% - 1190px)/2);
	padding-bottom:30px;
}

.layout03{
	width:100%;
	overflow:hidden;
}

#pagebox{
	width: 920px;
	float: right;

}

#pagetop{	
	overflow:hidden;
	width:100%;

}
#pagetop .page_name{
	margin: 20px auto;
    display: block;
}





/*------------- RWD 各裝置調整 ----------------*/


@media screen and (max-width: 1399px){
.layout01{
	padding:0px;
}
}


@media screen and (max-width: 1189px){
.layout02{
	padding:0px;
}
}

@media screen and (max-width: 1200px){
	.layout02{
		width:100%;
		padding:0px 10px 50px;
	}

	#pagebox{
		width: calc(100% - 180px);
	}



}

@media screen and (max-width: 900px){
	#pagebox{
		width:100%;
	}
}

@media screen and (max-width: 450px){


}
