@charset "utf-8";
/* CSS Document */
/*【default】*/
    body{
    	line-height: 1.5em;
    	color: #333;
    }
	h1{
		font-size: 26px;
		letter-spacing: 5px;
		font-weight: bolder;
	}
	h2{
		font-size: 24px;
		letter-spacing: 2px;
		font-weight: bolder;
	}
	h3 {
		font-size: 20px;
		letter-spacing: 2px;
	}
	h4{
		font-size: 18px;
		letter-spacing: 2px;
	}
	h5{
		font-size: 14px;
		letter-spacing: 1px;
	}
	p{
		font-size: 16px;
		letter-spacing: 2px;
	}
	h6{
		font-size: 12px;
		letter-spacing: 1px;
	}

/*熒幕尺寸【小於】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;
	}
	h6{
		font-size: 10px;
	}
}

/*熒幕尺寸【小於】481時頁面顯示---手機*/
@media (max-width: 480px) {
	/*-----------------------------------------------------整體預設架構-------------------------------------------------------------*/
	h1 {
		font-size: 20px;
	}
	h2 {
		font-size: 18px;
	}

}