* {
	margin: 0px;
	padding: 0px;
}
.index_1920 {
	background-image: url(images/index_1920.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	background-color: #ef1e08;
}
.index_950 {
	width: 950px;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	position: relative;
}


/*浮動選單開始*/
.bar {
	width: 100%;
	height: 60px;
	position: fixed;
	bottom: 0px;
	z-index: 3;
	background-repeat: repeat-x;
	background-position: center top;
	background-color: #000;
}
/*浮動選單結束*/

/* 無敵開始 */
.wrapper_wode {
	position: relative;
	width: 950px;
	height: 415px;
	overflow: hidden;
	margin: 0 auto;
}
.wrapper_wode ul.pic {
	position: absolute;
	width: 10450px;
}
.wrapper_wode ul.pic a { display:block; float:left;}
.wrapper_wode ul.pic li img {

}
.wrapper_wode h2, .wrapper_wode h3 {
	cursor: pointer;
	position: absolute;
	top: 130px;
	z-index: 5;
}

.wrapper_wode h2 {
	left: 890px;
}
.wrapper_wode ul.pic li { float: left;}
/* 無敵結束 */

/* 品特開始 */
#wrapper {
	position: relative;
	width: 950px;
	height: 444px;
	overflow: hidden;
	margin: 0 auto;
}
#wrapper ul.pic {
	position: absolute;
	width: 9999px;
}
#wrapper ul.pic a { display:block; float:left;}
#wrapper ul.pic li img { width:950px; height:444px;}
#wrapper ul.pic li.box2 img, #wrapper ul.pic li.box3 img { width:317px;}
#wrapper ul.pic li.box3 span img { width:317px; height:222px;}
#wrapper ul.pic li.box4 img { width:317px;}
#wrapper h2, #wrapper h3 {
	cursor: pointer;
	position: absolute;
	top: 130px;
	z-index: 5;
}
#wrapper h2 { left: 890px; }
#wrapper ul.pic li { float: left;}
#wrapper ul.page { margin: 0 auto; position:relative; z-index:99; top:423px;width:200px;float:right;}
#wrapper ul.page li { float: left; margin-right: 10px; width: 10px; height: 10px; background-color:#999; border-radius: 5px; }
/* 品特結束 */


/*TIME開始*/
.Time {
	width: 160px;
	height: 30px;
	position: absolute;
	z-index: 9999;
	left: 724px;
	top: 419px;
	font-family: "微軟正黑體";
	font-size: 18px;
	line-height: 30px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}
.TimeD {
	width: 40px;
	height: 30px;
	position: absolute;
	z-index: 100;
	left: 331px;
	top: 433px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 30px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}
.TimeH {
	width: 40px;
	height: 30px;
	position: absolute;
	z-index: 100;
	left: 475;
	top: 445px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 30px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	left: 399px;
	top: 433px;
}
.TimeM {
	width: 40px;
	height: 30px;
	position: absolute;
	z-index: 100;
	left: 466px;
	top: 433px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 30px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}
.TimeS {
	width: 40px;
	height: 30px;
	position: absolute;
	z-index: 100;
	left: 540px;
	top: 433px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 30px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}
/*TIME結束*/

/*main動畫開始*/
.index_day {
	width: 197px;
	height: 144px;
	position: absolute;
	z-index: 101;
	top: 320px;
	right: 20px;
	text-align: center;
	background-image: url(images/index_14.png);
	background-repeat: no-repeat;
	background-position: center 0px;
}
.index_boy {
	width: 412px;
	height: 553px;
	position: absolute;
	z-index: 100;
	top: 200px;
	text-align: center;
	background-image: url(images/index_07.png);
	background-repeat: no-repeat;
	background-position: center 0px;
}
.index_boyMOV {
   animation-duration: 3s;/* 指定秒數*/
   animation-name: boyMOV;/* 指定跑的動畫名稱*/
   animation-iteration-count: infinite; /*重複次數。指定為 infinite，讓動畫一直持續重複播放。*/
   animation-direction: alternate; /* 讓動畫來回播放*/
   
  -webkit-animation-duration: 3s; 
  -webkit-animation-name: boyMOV;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-direction: alternate; 
  
  -moz-animation-duration: 3s;
  -moz-animation-name: boyMOV;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate; */
  }

 @keyframes boyMOV{
	/* 用from 或是 0%*/
	from { 
    left: -20px;
	top:200px;
  }
   50%{ top:180px;}
 /* 用to 或是 100%*/
  to {
    left: 0px;
	top:220px;
  }
  

.index_dayMOV {
   animation-duration: 3s;/* 指定秒數*/
   animation-name: dayMOV;/* 指定跑的動畫名稱*/
   animation-iteration-count: infinite; /*重複次數。指定為 infinite，讓動畫一直持續重複播放。*/
   animation-direction: alternate; /* 讓動畫來回播放*/
   
  -webkit-animation-duration: 3s; 
  -webkit-animation-name: dayMOV;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-direction: alternate; 
  
  -moz-animation-duration: 3s;
  -moz-animation-name: dayMOV;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate; */
  }

 @keyframes dayMOV{
	/* 用from 或是 0%*/
	from { 
    right:20px;
	top:320px;
  }
   50%{ top:280px;}
 /* 用to 或是 100%*/
  to {
    right:0px;
	top:340px;
  }
