/* ---reset.css--- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ---reset.css--- */
body{
	position:relative;
	color:#333;
	font-family:"微軟正黑體", Arial, "Times New Roman",Helvetica,sans-serif;
	margin:0;
	border:0;
	background:url(images/bg2.png) repeat-y;
	background-size:cover;
	text-decoration: none;
	-webkit-box-sizing:border-box;
	-webkit-text-size-adjust:none;
}
a{
	color:#fff;
	text-decoration: none;
}
.headerwrapper{
	width: 80%;
	height: 100%;
	margin: 0 auto;
	background: url(images/title.jpg)no-repeat;
	background-size: 100%;
	background-position: center 20px;
	position: relative;
	padding-bottom: 15%;
}
.logo{
	position: absolute;
	top:20px;
	right:100px;
	z-index: 2;
}
.logo img{
	width:200px;
}
.phoneheader{
	display:none;
}
.header{
	width:100%;
	height:100%;
	/*background:url(images/title.jpg);*/
	background-size:cover;
	margin:0 auto 20px;
	position: relative;
	padding-bottom: 15%;
}
.header img:nth-of-type(1){
	width:150px;
	margin:150px 0 0 120px;
	transform-origin: center top;
	-webkit-transform-origin: center top;
	-moz-transform-origin: center top;
	-ms-transform-origin: center top;
	-o-transform-origin: center top;
	animation: rotate 2s infinite ease-in-out alternate;
	-webkit-animation: rotate 2s infinite ease-in-out alternate;
	-moz-animation: rotate 2s infinite ease-in-out alternate;
	-ms-animation: rotate 2s infinite ease-in-out alternate;
	-o-animation: rotate 2s infinite ease-in-out alternate;
}
.header img:nth-of-type(2){
	width:120px;
	position: absolute;
	top:290px;
	right:60px;
	transform-origin: center center;
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	-o-transform-origin: center center;
	animation: rotate2 5s 2s infinite;
	-webkit-animation: rotate2 5s 2s infinite;
	-moz-animation: rotate2 5s 2s infinite;
	-ms-animation: rotate2 5s 2s infinite;
	-o-animation: rotate2 5s 2s infinite;
}
.header img:nth-of-type(3){
	width:80px;
	position: absolute;
	top:405px;
	right:-5px;
	transform-origin: center center;
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	-o-transform-origin: center center;
	animation: rotate3 5s 2s infinite;
	-webkit-animation: rotate3 5s 2s infinite;
	-moz-animation: rotate3 5s 2s infinite;
	-ms-animation: rotate3 5s 2s infinite;
	-o-animation: rotate3 5s 2s infinite;
}
.header img:nth-of-type(4){
	width:43px;
	position: absolute;
	top:430px;
	right:110px;
	transform-origin: center center;
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	-o-transform-origin: center center;
	animation: rotate2 5s 2s infinite;
	-webkit-animation: rotate2 5s 2s infinite;
	-moz-animation: rotate2 5s 2s infinite;
	-ms-animation: rotate2 5s 2s infinite;
	-o-animation: rotate2 5s 2s infinite;
}
@keyframes rotate{
	0%{
		transform: rotate(12deg);
	}
	/*30%{
		transform: rotate(-12deg);
	}
	60%{
		transform: rotate(12deg);
	}*/
	100%{
		transform: rotate(-12deg);
	}
	/*100%{
		transform: rotate(0deg);
	}*/
}
@keyframes rotate2{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-webkit-keyframes rotate2{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-moz-keyframes rotate2{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-ms-keyframes rotate2{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-o-keyframes rotate2{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@keyframes rotate3{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-webkit-keyframes rotate3{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-moz-keyframes rotate3{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-ms-keyframes rotate3{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
@-o-keyframes rotate3{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(-360deg);
	}
	100%{
		transform: rotate(0deg);
	}
}
.videowrapper{
	width:80%;
	height:664px;
	margin:0 auto 70px auto;
}
.videowrapper2{
	width:80%;
	height:664px;
	color:#fff;
	font-size:30px;
	text-align: center;
	line-height: 664px;
	background:#333;
	margin:0 auto 70px auto;
}
.videocontainer {
	position: relative;
	padding:30px 0 56.25% 0;
	height: 0;
	overflow: hidden;
	box-shadow: 5px 5px 12px #555;
}
.videocontainer iframe,.videocontainer object,.videocontainer embed {
	position: absolute;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
}
.content{
	width:1280px;
	margin:0 auto;
	padding:0 0 60px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.content > img:nth-of-type(1){
	display:block;
	width:95%;
	margin:30px auto 30px auto;
}
.content > img:nth-of-type(2){
	display:none;
}
.content > img:nth-of-type(3){
	display:block;
	width:95%;
	margin:0 auto 0 auto;
}
.content > img:nth-of-type(4){
	display:none;
}
.content > img:nth-of-type(5){
	display:block;
	width:800px;
	margin:30px auto 30px auto;
}
.content ul{
	padding:0 0 0 400px;
	box-sizing: border-box;
}
.content li{
	display:inline-block;
	color:#fff;
	font-size:25px;
	text-align: center;
	background:#AD1D39;
	border-radius: 12px;
	padding:20px;
	margin:0 30px 60px 0;
	transition: 0.5s;
}
.content li:last-child{
	margin:0 0 60px 0;
}
.content li:hover{
	transform: scale(1.2);
}
.warranty{
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.warranty a{
	display:inline-block;
	margin:0 20px 0 0;
	transition: 0.3s;
}
.warranty a:hover{
	transform: translate(0,-20px);
}
.warranty img{
	width:400px;
}
.warranty a:last-child{
	margin:0 0 0 0;
}
.footerwrapper{
	width:100%;
	/*background:#666;*/
	margin:0 auto;
	clear: both;
}
.footer{
	width:100%;
	height:60px;
	/*color:#fff;*/
	font-size:20px;
	text-align: center;
	line-height: 60px;
	margin:0 0 0 0;
}
.footer a{
	color:#AD1D39;
}
@media \0screen\,screen\9,screen and (min-width:801px) and (max-width:1279px){
.videowrapper{
	width:85%;
	height:auto;
}
}
@media \0screen\,screen\9,screen and (min-width:801px) and (max-width:1024px){
.headerwrapper{
	width:100%;
	height: 100%;
	min-width: 320px;
	background:none;
	padding-bottom: 0;
}
.phoneheader{
	display:block;
	width:800px;
	margin:0 auto;
}
.phoneheader img{
	width:100%;
}
.header{
	display:none;
}
.videowrapper{
	width:85%;
	height:auto;
	margin:0 auto 30px auto;
}
.videowrapper2{
	width:85%;
	height:400px;
	font-size: 25px;
	line-height: 400px;
	margin:-2px auto 30px auto;
}
.content{
	width:100%;
}
.content > img:nth-of-type(1){
	width:95%; 
}
.content > img:nth-of-type(5){
	width:60%;
}
.content ul{
	padding:0 0 0 250px;
	box-sizing: border-box;
}
.content li{
	display:inline-block;
	color:#fff;
	font-size:25px;
	text-align: center;
	background:#AD1D39;
	border-radius: 12px;
	padding:20px;
	margin:0 30px 60px 0;
	transition: 0.5s;
}
.warranty a{
	display:inline-block;
	margin:0 0 20px 0;
}
.warranty img{
	width:330px;
	margin:0 0 0 0;
}
}
@media \0screen\,screen\9,screen and (max-width:800px){
.headerwrapper{
	width:100%;
	height: 100%;
	min-width: 320px;
	background:none;
	padding-bottom: 0;
}
.logo{
	display:none;
}
.phoneheader{
	display:block;
}
.phoneheader img{
	width:100%;
	min-width: 320px;
}
.header{
	display:none;
}
.videowrapper{
	width:100%;
	height:auto;
	margin:-5px auto 30px auto;
}
.videowrapper2{
	width:100%;
	height:300px;
	font-size: 25px;
	line-height: 300px;
	margin:-5px auto 30px auto;
}
.content{
	width:100%;
}
.content > img:nth-of-type(1){
	display:none;
}
.content > img:nth-of-type(2){
	display:block;
	width:95%;
	margin:0 auto;
}
.content > img:nth-of-type(3){
	display:none;
}
.content > img:nth-of-type(4){
	display:block;
	width:95%;
	margin:0 auto 30px auto;
}
.content > img:nth-of-type(5){
	width:90%;
}
.content ul{
	padding:0 0 0 0;
	box-sizing: border-box;
}
.content li{
	display:block;
	width:40%;
	color:#fff;
	font-size:25px;
	text-align: center;
	background:#AD1D39;
	border-radius: 12px;
	padding:20px;
	margin:0 auto 20px auto;
	transition: 0.5s;
}
.content li:last-child{
	margin:0 auto 0 auto;
}
.warranty a{
	display:block;
	margin:0 0 20px 0;
}
.warranty img{
	width:90%;
	margin:0 0 0 0;
}
.footer{
	font-size:16px;
}
.footer a{
	color:#AD1D39;
}
}
