@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap&subset=chinese-traditional');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');


html,body{
	position: relative;
	width: 100%;
	height: auto;
}
html{
	scroll-behavior: smooth; 
	padding: 0;
	margin: 0;
	/*min-width: 1300px;*/
}
body{
	font-family: 'Noto Sans TC', sans-serif;
	position: relative;
	padding: 0;
	margin: 0;	
	background-color: #000;
	transition: 0.3s ease;
}
*{
	box-sizing: border-box;
}
canvas{
	display: block;
}

.app{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
}

[data-aos="fade-ani"] {
	opacity: 0;
	transform: translateY(15%);
	transition-property: transform, opacity;
}
[data-aos="fade-ani"].aos-animate{
	opacity: 1;
	transform: translateY(0%);
}

.steam-btn{
	position: relative;
	width: 250px;
	height: 50px;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	color: #121212;
	line-height: 50px;
	background-color: #eccb73;
	border-radius: 0 10px 0 10px;
	z-index: 10;
	text-decoration: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
}
.steam-btn i{
	position: relative;
	font-size: 40px;
	margin-right: 15px;
	z-index: 0;
}
.steam-btn:hover{
	filter: brightness(1.3);
	-webkit-filter: brightness(1.3);
	-ms-filter: brightness(1.3);
	-o-filter: brightness(1.3);
}

.pc-btn{
	position: relative;
	width: 250px;
	height: 50px;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	color: #121212;
	line-height: 50px;
	background-color: #eccb73;
	border-radius: 0 10px 0 10px;
	text-decoration: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
}
.pc-btn i{
	position: relative;
	font-size: 40px;
	margin-right: 15px;
	z-index: 0;
}
.pc-btn:hover{
	filter: brightness(1.3);
	-webkit-filter: brightness(1.3);
	-ms-filter: brightness(1.3);
	-o-filter: brightness(1.3);
}

/*-------------------------------nav-----------------------------------*/
#app-nav-btn{
	display: none;
	position: fixed;
	width: 50px;
	height: 50px;
	padding: 0px;
	right: 2%;
	top: 2%;
	z-index: 1111;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.9);
	outline: none;
	border: none;
	border-radius: 0 10px 0 10px;
}
#app-nav-btn div{
	position: absolute;
	width: 24px;
	height: 20px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#app-nav-btn div span{
	transition: 0.3s linear;
}
#app-nav-btn div span:nth-child(1){
	position: absolute;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #fff;
	margin: 0 0 5px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#app-nav-btn div span:nth-child(2){
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	background-color: #fff;
	margin: 0 0 5px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#app-nav-btn div span:nth-child(3){
	position: absolute;
	display: block;
	width: 14px;
	height: 2px;
	background-color: #fff;
	margin: 0 0 0px;
	bottom: 0;
	left: 0;
}
#app-nav-btn.active div span:nth-child(1){
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotateZ(45deg);
	background-color: #fff;
}
#app-nav-btn.active div span:nth-child(2){
	display: none;
	background-color: #fff;
}
#app-nav-btn.active div span:nth-child(3){
	position: absolute;
	width: 24px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotateZ(-45deg);
	background-color: #fff;
}
nav{
	font-family: 'Noto Serif TC', sans-serif;
	position: fixed;
	width: 1366px;
	height: 65px;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	transition: 0.3s linear;
	backdrop-filter: blur(5px);
	background-color: rgba(255,255,255,0.65);
	border-radius: 10px;
}
.nav-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	padding: 0 15px;
}
.nav-brand{
	position: absolute;
  	width: max-content;
  	top: 50%;
	transform: translateY(-50%);
	left: 15px;
}
.nav-brand img{
	position: relative;
	display: block;
	width: 100%;
}
.nav-center{
	position: relative;
	width: max-content;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
ul.nav-menu{
	list-style: none;
	position: relative;
	width: max-content;
	height: 100%;
	padding: 0;
	margin: 0 0 0 0px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
ul.nav-menu li{
	position: relative;
	margin: 0 15px;
	width: max-content;
	height: 100%;
	padding: 0 10px;
}
ul.nav-menu li a:before{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	background-color: #121212;
	transition: 0.3s ease;
}
ul.nav-menu li a{
	position: relative;
	padding: 0px 10px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 70px;
	text-decoration: none;
	color: #121212;
	transition: 0.3s ease;
	width: 100%;
}
ul.nav-menu li a:hover{
	
}
ul.nav-menu li a:hover:before{
	opacity: 0.7;
}
ul.nav-menu li.active a{
	
}
ul.nav-menu li.active a:before{
	opacity: 0.7;
}
.nav-play{
	position: relative;
	width: 150px;
	height: 100%;
	cursor: pointer;
	transition: 0.3s linear;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
  	justify-content: center;
  	align-items: center;
  	margin-left: 10px;
}
.nav-play-btn{
	position: relative;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
  	justify-content: center;
  	align-items: center;
	width: 150px;
	height: 45px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 40px;
	transition: 0.3s ease;
	background-color: #d12920;
	border-radius: 0 10px 0 10px;
}
.nav-play-btn:hover{
	background-color: #861c17;
}
.nav-play ul{
	position: absolute;
	width: max-content;
	height: auto;
	list-style: none;
	padding: 8px 4px;
	margin: 0;
	top: 70px;
	right: 0;
	background-color: #1a1e2a;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s linear;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
  	justify-content: center;
  	align-items: center;
}
.nav-play ul li{
	position: relative;
	width: 150px;
	height: 40px;
	margin: 0 4px;
}
.nav-play ul li a{
	width: 100%;
	height: 100%;
	font-size: 18px;
	background-size: cover;
	line-height: 40px;
}
.nav-play ul li a i{
	font-size: 30px;
}
.nav-play:hover ul{
	opacity: 1;
	visibility: visible;
}

/*-------------------------------m-nav-----------------------------------*/


/*-------------------------------p0-----------------------------------*/

section#p0{
	position: relative;
	width: 100%;
	height: 850px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	z-index: 10;
	background: url('../img/p0bg.jpg') no-repeat center;
	overflow: hidden;
}
.p0-container{
	position: relative;
	width: 1366px;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	z-index: 10;
}
.p0-content{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p0-slogan{
	position: relative;
	width: max-content;
	height: auto;
	padding: 0;
}
.p0-slogan img{
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
}
.p0-btns-container{
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 15px;
}
.p0-btns{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p0-btns .steam-btn{
	margin-right: 12px;
}
.p0-btns .pc-btn{
	margin-left: 12px;
}
.p0-intro > p{
	position: relative;
	width: calc(58% - 30px);
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	line-height: 28px;
	color: #cccccc;
	margin: 0 0px 0 0;
	padding-left: 30px;
	border-left: 1px solid rgba(255,255,255,0.4);
}
.p0-bg-video{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
.p0-bg-video:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background-image: linear-gradient(rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.8) 85%,rgba(0,0,0,1) 100%);
	top: 0;
	left: 0;
	z-index: 10;
}
.p0-bg-video video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	min-width: 100%;
	min-height: 100%;
	z-index: 1;
}


/*-------------------------------p1-----------------------------------*/
section#p1{
	position: relative;
	width: 100%;
	height: 1050px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: url('../img/p1-bg.jpg') no-repeat center;
	overflow: hidden;
	padding-top: 320px;
}
.p1-container{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.p1-slogan{
	position: relative;
	width: 100%;
	height: auto;
	font-family: 'Noto Serif TC', sans-serif;
}
.p1-slogan h1{
	position: relative;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: inherit;
	color: #a11f1f;
	margin: 0 auto 30px;
	width: max-content;
}
.p1-slogan h1:after{
	content: '';
	position: absolute;
	width: 80%;
	height: 1px;
	display: block;
	background-color: #121212;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
	mix-blend-mode: exclusion;
}
.p1-slogan h3{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	line-height: inherit;
	color: #121212;
	margin: 0 0 0px 0;
}
.p1-yt-container{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
.p1-yt{
	position: relative;
	display: block;
	width: 960px;
	height: 540px;
	border-radius: 0 10px 0 10px;
	margin: 0;
	z-index: 5;
	overflow: hidden;
}
a.yt-cover{
	position: absolute;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.6);
	transition: 0.3s linear;
}
a.yt-cover:hover{
	background-color: rgba(0, 0, 0, 0.2);
}
.v-play{
	position: relative;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 180px;
	border-radius: 0 10px 0 10px;
	border: 1px solid #d12920;
	background-color: #d12920;
	transition: 0.3s linear;
}
a.yt-cover:hover .v-play{
	border: 1px solid #d12920;
	background-color: #121212;
}
.v-play span{
	position: relative;
	display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 43.3px;
    border-color: transparent transparent transparent #121212;
}
a.yt-cover:hover .v-play span{
	border-color: transparent transparent transparent #d12920;
}
.p1-yt iframe{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.p1-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.p1-bg .p1-layer{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.p1-bg .p1-layer img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.p1-bg .p1-layer:first-child{
	z-index: 10;
}
.p1-bg .p1-layer:last-child{
	z-index: 5;
}


/*-------------------------------marquee-----------------------------------*/
section.s18-marquee{
	position: relative;
	width: 100%;
	height: 60px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #121212;
}
.s18-marquee-row{
	position: relative;
	height: 100%;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	/*gap: 300px;*/
}
.s18-marquee-item{
	position: relative;
	height: 100%;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	/*gap: 150px;*/
}
.s18-marquee-tag{
	position: relative;
	width: max-content;
	height: 100%;
	gap: 5rem;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.s18-marquee-tag img{
	position: relative;
	display: block;
}

/*-------------------------------p2-----------------------------------*/
section#p2{
	position: relative;
	width: 100%;
	height: 950px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-image: url('../img/p2-bg.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #121212;
	overflow: hidden;
}
.p2-container{
	position: relative;
	width: 1366px;
	height: 100%;
	margin: 0px auto 0;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.chara-tab{
	position: absolute;
	width: 100%;
	height: auto;
	margin: 0 auto;
	left: 50%;
	bottom: 130px;
	transform: translateX(-50%);
	z-index: 10;
}
.chara-tab ul{
	position: relative;
	width: max-content;
	height: auto;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.chara-tab ul li{
	position: relative;
	width: 360px;
	height: 90px;
	border-radius: 0 10px 0 10px;
	overflow: hidden;
	transition: 0.3s linear;
	z-index: 10;
	margin: 0 10px;
	background-color: #121212;
	border: 1px solid #d12920;
}
.chara-tab ul li a{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
	text-decoration: none;
	color: #d12920;
	font-size: 30px;
	font-weight: 900;
	line-height: 88px;
	text-align: center;
}
.chara-tab ul li:hover{
	background-color: #d12920;
}
.chara-tab ul li:hover a{
	color: #121212;
}
.chara-tab ul li.active{
	background-color: #d12920;
}
.chara-tab ul li.active a{
	color: #121212;
}
.chara-container{
	font-family: 'Noto Serif TC', sans-serif;
	position: relative;
	width: 100%;
	height: 600px;
	margin: 0 auto;
	z-index: 5;
	border-radius: 10px;
}
.chara-content{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#c-t3.chara-content{
	background: url('../img/t3-bg.png') no-repeat center;
}
#c-t4.chara-content{
	background: url('../img/t4-bg.png') no-repeat center;
}
#c-t5.chara-content{
	background: url('../img/t5-bg.png') no-repeat center;
}
.chara-intro{
	position: relative;
	width: 40%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 20;
}
.chara-intro img{
	position: relative;
	display: block;
	margin: 0 auto 10px;
}
.chara-intro h2{
	position: relative;
	font-size: 30px;
	font-weight: 700;
	line-height: inherit;
	color: #fff;
	margin: 0;
	text-align: center;
}
.chara-info{
	position: relative;
	width: 40%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	z-index: 20;
	padding-left: 120px;
}
.chara-info p{
	position: relative;
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	color: #fff;
	margin: 0 0 40px 0;
	text-align: left;
}
.chara-info p:after{
	content: '';
	display: block;
	position: absolute;
	width: 60%;
	height: 1px;
	background-color: #e5e5e5;
	opacity: 0.6;
	bottom: -20px;
	left: 0;
}
.c-yt{
	position: relative;
	width: 360px;
	height: 203px;
	border-radius: 0 10px 0 10px;
	overflow: hidden;
}
.c-yt .v-play{
	width: 100px;
	height: 100px;
}
.c-yt .v-play span{
    border-width: 15px 0 15px 26px;
}
.c-yt iframe {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.c-img{
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	pointer-events: none;
}

/*-------------------------------p3-----------------------------------*/
section#p3{
	position: relative;
	width: 100%;
	height: 700px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: url('../img/p3-bg.jpg') no-repeat center;
}
.p3-container{
	font-family: 'Noto Serif TC', sans-serif;
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
}
.p3-container h1{
	position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    color: #121212;
    margin: 0 0 50px 0;
    text-align: center;
}
.p3-row{
	position: relative;
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 35px;
}
.p3-box{
	position: relative;
	width: 400px;
	height: auto;
	transition: 0.3s linear;
}
.p3-box img{
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 10px;
	border-radius: 0 10px 0 10px;
	overflow: hidden;
}
.p3-box h2{
	position: relative;
	font-size: 28px;
	line-height: 28px;
    font-weight: 900;
    color: #a11f1f;
    text-align: center;
    margin: 0 0 30px 0;
}
.p3-box h2:after{
	content: '';
	display: block;
	position: absolute;
	width: 60%;
	height: 1px;
	background-color: #121212;
	mix-blend-mode: difference;
	opacity: 0.6;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}
.p3-box p{
	position: relative;
	font-size: 16px;
	line-height: 30px;
    font-weight: 400;
    color: #121212;
    margin: 0;
    text-align: left;
}

/*-------------------------------p4-----------------------------------*/
section#p4{
	position: relative;
	width: 100%;
	height: 450px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-image: url('../img/p4-bg.png');
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
	background-color: #121212;
}
.p4-container{
	font-family: 'Noto Serif TC', sans-serif;
	position: relative;
	width: 1366px;
	height: auto;
	margin: 0 auto;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}
.p4-container h1{
	position: relative;
	font-size: 36px;
	line-height: inherit;
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin: 0 0 36px 0;
}
.p4-container h1:after{
	content: '';
	display: block;
	position: absolute;
	width: 60%;
	height: 1px;
	background-color: #e5e5e5;
	mix-blend-mode: difference;
	opacity: 0.6;
	bottom: -18px;
	left:0;
}
.p4-container h2{
	position: relative;
	font-size: 16px;
	line-height: inherit;
    font-weight: 500;
    color: #fff;
    text-align: left;
    margin: 0 0 20px 0;
}
.p4-btns{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p4-btns a{
	margin-right: 15px;
}

/*-------------------------------p6-----------------------------------*/

section#p6{
	position: relative;
	width: 100%;
	height: 200px;
	z-index: 10;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
	background-color: #fff;
}
section#p6 h1{
	position: relative;
	font-size: 26px;
	font-weight: 700;
	line-height: 26px;
	color: #121212;
	margin: 0 0 30px 0;
	text-align: center;
}
.p6-fast-container{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.p6-fast-container a{
	position: relative;
	min-width: 40px;
	height: 40px;
	background-color: #121212;
	border-radius: 20px 20px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: 0.4s linear;
	margin: 0 16px;
	padding: 0;
	overflow: hidden;
}
.p6-fast-container a i{
	position: relative;
	font-size: 1.25rem;
	text-align: center;
	color: #fff;
	transition: 0.4s linear;
}
.p6-fast-container a span{
	width: 0;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	color: #fff;
	margin: 0;
	text-align: left;
	transition: 0.3s linear;
	opacity: 0;
	visibility: hidden;
	padding: 0;
}
.p6-fast-container a:hover{
	background-color: #d12920;
	padding: 0 20px;
}
.p6-fast-container a:hover span{
	width: auto;
	opacity: 1;
	visibility: visible;
	margin: 0 0 0 15px;
}

/*-------------------------------footer-----------------------------------*/

footer{
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px 0;
	background-color: #111111;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}
.footer-container{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 15px;
}
.footer-logo{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-logo img{
	position: relative;
	display: block;
	max-width: 100%;
	margin: 0 15px;
}
p.copyright{
	position: relative;
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	color: #787878;
	margin: 25px 0 25px;
	font-family: 'Noto Sans TC', sans-serif;
}
.term{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Noto Sans TC', sans-serif;
}
.term p{
	position: relative;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #787878;
	margin: 0 0 0px 20px;
}
img#eva15{
	position: relative;
	margin: 0 auto;
}