  @charset "UTF-8";
  @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;500;600&display=swap');
  /* CSS Document */
  *{ margin:0; padding:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;
     image-rendering:-moz-crisp-edges;         /* Firefox        */
     image-rendering:-o-crisp-edges;           /* Opera          */
     image-rendering:-webkit-optimiz-contrast; /* Safari         */
     image-rendering:optimize-contrst;         /* CSS3 Proposed  */
     -ms-interpolation-mode:neares-neighbor;   /* IE8+           */
}
body {background-image: radial-gradient(#93C8EC,#D0EBFA);
	background-repeat:no-repeat;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
}
  
  html{ width:100%; height:100%; font-family:Arial, Helvetica,"微軟正黑體",sans-serif; text-size-adjust:none;
        font-size:15px; 
         }
  ul{ margin: 0; padding: 0; list-style: none;}



/* == 桌機版優先 ============================================================================= */


/*置頂按鈕*/
.gotop{ background: #34344a; font-size: 24px; width: 50px; height: 50px; display: flex; justify-content: center;  align-items: center; border-radius: 50px; position: fixed; bottom: 3%; right: 1%; z-index: 999;}
.gotop a{ text-decoration: none; color: #fff; }
/*------------桌機板------------*/

/*刊頭滿版背景*/
.headeroutside{width:100%;}
/*桌機刊頭*/
#header{
	width:100%;
	margin:0 auto;}
/*手機刊頭*/
#header-m{
	width:0;
	height:0;
	overflow:hidden;}

/*內容滿版背景*/
.contentoutside{width:100%;}

/*桌機內容*/
.content{
	width:100%;
	max-width:1300px;
	margin:0 auto;
	padding:0;
	text-align:center;}

/*圖片切換*/
.pic{
	width:100%;
	margin:0 auto;
	max-width: 1200px;
	padding:0;
	text-align:center;}
	
.pic-m{
	width:0;
	height:0;
	overflow:hidden;}

/*------------手機板---------------*/
@media screen and (max-width:767px){
/*桌機刊頭*/
#header{
	width:0;
	height:0;
	overflow:hidden;}
	
/*手機刊頭*/
#header-m{
	display:block;
	width:100%;
	height:auto;
	margin:0;}


/*圖片切換*/
.pic{
	width:0;
	height:0;
	overflow:hidden;}
.pic-m{
	display:block;
	width:100%;
	height:auto;
	margin:0;}
	
/*置頂按鈕*/
.gotop{display: none;}	
	

}



