@charset "utf-8";
/* CSS Document */
/*【default】*/
	body{
		color: #000;
		font-family:"微軟正黑體", Arial, sans-serif;
		line-height: 1.5em;
	}
	h1{
		font-size: 26px;
		letter-spacing: 5px;
		font-weight: bolder;
		color: #34495E;
	}
	h2{
		font-size: 24px;
		letter-spacing: 4px;
		font-weight: bolder;
	}
	h3 {
		font-size: 20px;
		letter-spacing: 3px;
		font-weight: bolder;
	}
	h4{
		font-size: 18px;
		letter-spacing: 2px;
	}
	h5{
		font-size: 14px;
		letter-spacing: 1px;
		color: #34495E;
	}
	header p, footer p{
		font-size: 16px;
		letter-spacing: 2px;
		color: #333;
	}

/*熒幕尺寸【小於】1025時頁面顯示---平板*/
@media (max-width:1024px) {
	/*-----------------------------------------------------整體預設架構-------------------------------------------------------------*/
	h1 {
		font-size: 22px;
	}
	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 16px;
	}

	h4 {
		font-size: 15px;
	}

	h5 {
		font-size: 12px;
	}

	p {
		font-size: 13px;
	}
}

/*熒幕尺寸【小於】481時頁面顯示---手機*/
@media (max-width: 480px) {
	/*-----------------------------------------------------整體預設架構-------------------------------------------------------------*/
	h1 {
		font-size: 20px;
	}
	h2 {
		font-size: 18px;
	}

}