@charset "utf-8";
/* 共用區 */

*{
	margin:0; 
	padding:0;
	-webkit-box-sizing:border-box; /*safari & chrome*/
	-moz-box-sizing:border-box; /*firebox*/
	box-sizing:border-box; /*解除padding影響寬度關係*/
	}

html, body{
	-webkit-text-size-adjust: 100%;
	width:100%;
	height:100%;
	font-family:"微軟正黑體", Arial, Helvetica,sans-serif; 
	}
a{ text-decoration:none;}

	
/* 桌機版 */
.w{ width:100%; height:auto; background-color:#009966}
.w1{width:980px; margin:0 auto}
.a{ width:100%; height:auto; background-color:#CA2B2F}


/* 手機版 */
@media screen and ( max-width:767px ){

.w{ width:100%; height:auto; background-color:#009966}
.w1{width:100%; margin:0 auto}


}