@charset: "UTF-8";
*{
	position: relative;
	box-sizing: border-box;
}
body{
	font-family: 微軟正黑體;
}
.wrapper{
	width: 100%;
	height: 56.355vw;
	background: url(../images/bg.jpg) no-repeat;
	background-size: cover;
	overflow-y: hidden;
}
/*header*/
.header{
	width: 59%;
	height: 19%;
	position: absolute;
	top: 12%;
	left: 6%;
}
.header .top{
	height: 50%;
	margin-bottom: 1vw;
	padding-left: 3vw;
}
.header .top .logo{
	display: inline-block;
	vertical-align: top;
	width: 5vw;
	height: 5vw;
	background: url(../images/common/logo.png) no-repeat;
	background-size: cover;
	display: inline-block;
}
.header .top .right{
	display: inline-block;
	vertical-align: top;
	margin-left: 1vw;
	text-shadow: 0 0.1vw 0.5vw rgba(0,0,0,0.8);

}
.header .top h1{
	font-size: 2.4vw;
	color: #fff;
	line-height: 3vw;
}
.header .top h2{
	font-size: 1.5vw;
	vertical-align: top;
	color: #fff;
}
.header .bottom{
	width: 100%;
	height: 35%;
	background: url(../images/common/subtitle_bg.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.header .bottom .subtitle{
	font-size: 1.5vw;
	line-height: 3.7vw;
	text-align: center;
	color: #fff;
}
.header .big_word{
	position: absolute;
	right: 0vw;
	bottom: -9vw;
	font-size: 3vw;
	color: #fff;
	line-height: 4vw;
	font-weight: 800;
	text-shadow: 0 0 0.5vw rgba(0,0,0,0.8);
}
.header .big_word span{
	color: #f8c301;
}
/*footer*/
.footer{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 11vw;
	background: url(../images/common/footer_bg.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.footer .left,.footer .right{
	display: inline-block;
	vertical-align: top;
	width: 50%;
	height: 100%;
}
.footer .left ul{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
}
.footer .left ul li{
	float: left;
	width: 25%;
}
.footer .left ul li a{ 
	display: block;
	width: 8vw;
	text-align: center;
	line-height: 2.4vw;
	color: black;
	text-decoration: none;
	font-size: 1.5vw;
	background: linear-gradient(#fff,#ccc);
	font-weight: 800;
	border-radius: 0.3vw;
	transition: all 0.1s ease-in;
}
.footer .left ul li a:hover{
	transform: scale(1.05);
	transition: all 0.1s ease-in;
}
.footer .right .slogon{
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 70%;
	height: 3vw;
	background: url(../images/common/slogon.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.footer .right .to_web{
	display: inline-block;
	width: 13vw;
	height: 3.8vw;
	background: linear-gradient(#ffe000,#ffb600);
	color: #1e0f00;
	font-size: 1.8vw;
	text-align: center;
	text-decoration: none;
	font-weight: 800;
	line-height: 3vw;
	border-radius: 1.9vw;
	padding: 0.2vw;
	margin-left: 12vw;
	transition: all 0.1s ease-in;
}
.footer .right .to_web:hover{
	transform: scale(1.05);
	transition: all 0.1s ease-in;
}
.footer .right .to_web span:after{
	content: "";
	width: 1.1vw;
	height: 1.5vw;
	margin-top: 0.7vw;
	margin-left: 0.8vw;
	display: inline-block;
	vertical-align: top;
	background: url(../images/common/right_arrow.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.footer .right .to_web span{
	display: block;
	width: 100%;
	height: 100%;
	border: 0.2vw solid #fff;
	border-radius: 1.9vw;
}
/*principles*/
.principles{
	position: absolute;
	right: 5%;
	top: 12%;
}
.principles .prin{
	width: 12vw;
	height: 5.2vw;
	margin-bottom: 0.5vw;
}
.principles .prin1{
	background: url(../images/common/principles/prin1.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.principles .prin2{
	background: url(../images/common/principles/prin2.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.principles .prin3{
	background: url(../images/common/principles/prin3.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.principles .prin4{
	background: url(../images/common/principles/prin4.png) no-repeat;
	background-size: cover;
	background-position: center;
}
.principles .prin .persent{
	width: 95%;
	height: 0.2vw;
	position: absolute;
	bottom: 0.3vw;
	left: 2.5%;
	background-color: rgba(256,256,256,0.5);
}
.principles .prin .persent span{
	width: 100%;
	height: 0.2vw;
	background-color: #fff;
	display: block;
	animation: persent 10s infinite;
}
.principles .prin1 .persent span{
	animation-delay: -1s;
}
.principles .prin2 .persent span{
	animation-delay: -2s;
}
.principles .prin3 .persent span{
	animation-delay: -4s;
}
.principles .prin4 .persent span{
	animation-delay: -s;
}
@keyframes persent{
	0%{
		width: 50%
	}
	50%{
		width: 100%
	}
	100%{
		width: 50%;
	}
}