@charset "utf-8";
	/*--CSS Document --*/
	/*--google字型 --*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap);

@font-face {
    /*--處理中文難字問題 --*/
    font-family: 'tcav';
    src: url('fonts/mingliu.ttf') format('truetype');}

  *{font-family: 'Noto Sans TC', sans-serif, '微軟正黑體';
	margin: 0;
	padding: 0;
	text-align: center;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	transition: 0.8s;
	color: #333333;
	outline: none;}

/*-- 隱藏input數字預設輸入上下箭頭調整功能 --*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
	-webkit-appearance: none;
	margin: 0;}

img{border: 0;}

a:link, a:checked, a:visited{
	color:#db491d;
	text-decoration: none;}

/*-- 預載Loading --*/
.loader{
	position: fixed;
	display: inline-block;
	height: 100vh;
	width: 100%;
	background: rgba(255, 255, 255, 0.8) url(../images/loading.svg) center no-repeat;
	background-size: 25%;
	z-index: 2;
	top: 0;
	left: 0;}

/*-- header --*/
header{
	width: 100%;
	height: 70px;
	background: #007c7c;
	position: sticky;
    top: 0;
	z-index: 999;}

.header-wrap{
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 15px 2%;
	max-width: 1200px;}

.logo-wrap{
	display: inline-block;
	position: relative;
	width: auto;
	text-align: left;
	height: 40px;
	line-height: 4px;
	z-index: 1;
	color: #fff;
	font-size: 22px;}

.logo-wrap img{
	height: 100%;
	vertical-align: middle}

/*-- 選單 --*/
.navi-warp{
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);}

.navi-warp ul{
	display: flex;
	justify-content: center;
	padding: 10px;}

.navi-warp ul li{
	list-style: none;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 2px;
	color: #fff;
	border-radius: 5px;
	border: 1px #007c7c solid;
	font-weight: 600;
	cursor: pointer;}

.navi-warp ul li span{color: #fff;}
.navi-warp ul li:hover{
	background: #ff2b2b;
	border: 1px #eaff00 dashed;}

.navi-warp ul li:hover span{color: #eaff00;}

/*-- 主內容區 --*/
.container{
	display: block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;}


	/*-- 主視覺 --*/
	.theme-wrap{
		display: inline-block;
		width: 100%;
		height: auto;
		padding: 20px;}

	/*--  天空 --*/
	.theme-sky{
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 351px;
		background: url(../images/theme-sky.png) top -40px center repeat-X;
		background-size: auto;}

	/*--  天空clouds --*/
	.theme-sky ul {
		display: flex;
		position: absolute;
		justify-content: center;
		width: 100%;
		height: 50%;
		left: 0;
		top: 30%;
		transform: translateY(-50%);}

	.theme-sky ul li:nth-of-type(1){
		display: inline-block;
		width: 11.59%;
		height: 100%;
		background: url(../images/deco-cloud1.png) center no-repeat;
		background-size: contain;
		animation:  clouds-ani 10s linear infinite;}

	.theme-sky ul li:nth-of-type(2){
		display: inline-block;
		width: 11.59%;
		height: 100%;
		background: url(../images/deco-cloud2.png) center no-repeat;
		background-size: contain;
		margin-top: 5%;
		animation:  clouds-ani 20s linear infinite;}

	.theme-sky ul li:nth-of-type(3){
		display: inline-block;
		width: 11.59%;
		height: 100%;
		background: url(../images/deco-cloud3.png) center no-repeat;
		background-size: contain;
		margin-top: 10px;
		margin-left: 5%;
		animation:  clouds-ani 15s linear infinite;}

	.theme-sky ul li:nth-of-type(4){
		display: inline-block;
		width: 11.59%;
		height: 100%;
		background: url(../images/deco-cloud4.png) center no-repeat;
		background-size: contain;
		margin-top: 30px;
		margin-left: 15%;
		animation:  clouds-ani 12s linear infinite;}

	.theme-sky ul li:nth-of-type(5){
		display: inline-block;
		width: 11.59%;
		height: 100%;
		background: url(../images/deco-cloud5.png) center no-repeat;
		background-size: contain;
		margin-top: 0;
		margin-left: 10%;
		animation:  clouds-ani 8s linear infinite;}
		/*--  clouds-ani --*/
		@keyframes clouds-ani{
			0%{ opacity: 0;
				transform: translateX(200px);}
			50%{opacity: 1;}
			100%{opacity: 0;
				transform: translateX(-200px);}
		}

	/*--  天空lamps --*/	
	.theme-sky > div {
		display: flex;
		justify-content: space-evenly;
		z-index: 1;
		pointer-events: none;}

	.theme-sky > div > span{
		display: inline-block;
		width: 83px;
		height: 99px;
		top: -10px;
		background: url(../images/deco-lamp1a.png) top center no-repeat;
		background-size: contain;}

	.theme-sky > div > span:nth-of-type(1){top: 15px;}
	.theme-sky > div > span:nth-of-type(3){top: 16px;}
	.theme-sky > div > span:nth-of-type(5){top: 12px;}
	.theme-sky > div > span:nth-of-type(7){top: 18px;}

	.theme-sky > div > span:nth-of-type(2),
	.theme-sky > div > span:nth-of-type(4),
	.theme-sky > div > span:nth-of-type(6){
		background: url(../images/deco-lamp2a.png) top center no-repeat;
		background-size: contain;}

	/*--  天空flags --*/
	.deco-flags{
		position: absolute;
		display: inline-block;
		width:100%;
		height: 89px;
		top: -30px;
		left: 0;
		background: url(../images/deco-flags.png) top center repeat-x;
		background-size: auto;
		pointer-events: none;}

	.theme-moutain{
		position: absolute;
		display: inline-block;
		width: 100%;
		height: 300px;
		top: 40px;
		left: 0;
		background: url(../images/deco-mountain.png) center no-repeat;
		background-size: auto;}

	.theme-ground{
		position: absolute;
		left: 0;
		bottom: 20px;
		display: block;
		width: 100%;
		height: 189px;
		background: url(../images/theme-bgground.png) bottom center repeat-X;
		background-size: auto;}

	/*-- 天空SAKURA --*/
	.deco-skySakura{
		position: absolute;
		display: inline-block;
		width:100%;
		height: 156px;
		top: -20px;
		left: 0;
		background: url(../images/deco-sakra.png) top -50px center repeat-x;
		background-size: auto;
		pointer-events: none;
		display: none;
		z-index: 1;}


	/*--  主題商店 + 裝飾 --*/
	.theme{
		display: inline-block;
		width: 100%;
		max-width: 1400px;
		height: 690px;}

	.theme-store{
		display: inline-block;
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		width: auto;}

	.theme-store::before{
		content: '';
		position: absolute;
		display: inline-block;
		left: 15%;
		top: 22.66%;
		width: 4.09%;
		height: 10.13%;
		background: url(../images/deco-chick1a.png) center no-repeat;
		background-size: contain;
		z-index: 1;}

	.theme-store::after{
		content: '';
		position: absolute;
		display: inline-block;
		right: 11%;
		top: -8%;
		width: 4.09%;
		height: 15.46%;
		background: url(../images/deco-chick2a2.png) center no-repeat;
		background-size: contain;
		animation: chick2-ani 5s ease-in-out infinite;}
		/*--  chick2-ani --*/
		@keyframes chick2-ani{
			0%{ transform: translateX(20px) scaleX(1);;}
			50%{ transform: translateX(-20px);}
			50.1%{ transform: translateX(-20px) scaleX(-1);}
			80%{ transform: translateX(-20px) scaleX(-1);}
			99.99%{ transform: translateX(20px) scaleX(-1);}
			100%{ transform: translateX(20px) scaleX(1);}
		}

		/*便利店-手機版預設隱藏*/
		.theme-store > div > img:nth-of-type(2){display: none;}

	/*--  標題 --*/
	.theme-title1,
	.theme-title2{
		position: absolute;
		display: inline-block;
		width: 622px;
		height: 159px;
		top: -120px;
		left: 50%;
		transform: translateX(-50%);
		background: url(../images/theme-title1.png) center no-repeat;
		background-size: contain;
		animation: themeTitle-ani 1s ease-in-out forwards;
		animation-delay: 2.5s;
		opacity: 0;}
		/*--  themeTitle-ani--*/
		@keyframes themeTitle-ani{
			0%{	opacity: 0;
				transform: translateY(-40px) translateX(-50%);}
			100%{
				opacity: 1;
				transform: translateY(0px) translateX(-50%);}
		}

	.theme-tag1,
	.theme-tag2{
		position: absolute;
		display: inline-block;
		width: 269px;
		height: 74px;
		left: 0;
		top: 0;
		background: url(../images/theme_yeartag.png) center no-repeat;
		background-size: contain;
		animation: themeTag-ani 1s ease-in-out forwards;
		animation-delay: 2.5s;
		opacity: 0;}
		/*--  themeTitle-ani--*/
		@keyframes themeTag-ani{
			0%{	opacity: 0;
				transform: translateY(0px);}
			100%{
				opacity: 1;
				transform: translateY(-70px);}
		}

	/*第二波*/
	#theme-store2{display: none;}
	.theme-title2{
		background: url(../images/theme-title2.png) center no-repeat;
		background-size: contain;}
	.theme-tag2{
		background: url(../images/theme_yeartag2.png) center no-repeat;
		background-size: contain;}

	/*--  裝飾 --*/
	.deco-tree1{
		position: absolute;
		display: inline-block;
		width: auto;
		left: -200px;
		bottom: 0;}

	.deco-tree2{
		position: absolute;
		display: inline-block;
		width: auto;
		right: -100px;
		bottom: 0;}

	.deco-koi1{
		display: inline-block;
		position: absolute;
		top: -120px;
		right: -50px;
		width: 152px;
		height: 67px;
		background: url(../images/deco-koi1.png) center no-repeat;
		background-size: contain;
		animation: decoKoi1-ani 4s linear infinite ;}
		/*--  decoKoi2-ani --*/
		@keyframes decoKoi1-ani{
			0%{transform: translate(0px , 3px) scale(0.99);}
			25%{transform: translate(6px, 0px) scale(1);}
			50%{transform: translate(3px, 3px) scale(0.99);}
			75%{transform: translate(6px, 0px) scale(1);}
			100%{transform: translate(0px, 3px) scale(0.99);}
		}

	.deco-koi1::after{
		content: '';
		display: inline-block;
		position: absolute;
		left: -38px;
		top: 26px;
		width: 60px;
		height: 182px;
		background: url(../images/deco-flagline1.png) center no-repeat;
		background-size: contain;}

	.deco-koi2{
		display: inline-block;
		position: absolute;
		top: -180px;
		right: -80px;
		width: 121px;
		height: 53px;
		background: url(../images/deco-koi2.png) center no-repeat;
		background-size: contain;
		animation: decoKoi2-ani 4s linear infinite ;}
		/*--  decoKoi2-ani --*/
		@keyframes decoKoi2-ani{
			0%{transform: translate(0px , 0) scale(0.99);}
			25%{transform: translate(8px, 2px) scale(1.02);}
			50%{transform: translate(4px, 0) scale(1);}
			75%{transform: translate(6px, 2px) scale(0.99);}
			100%{transform: translate(0px, 0) scale(0.99);}
		}

	.deco-koi2::after{
		content: '';
		display: inline-block;
		position: absolute;
		left: -40px;
		top: 24px;
		width: 63px;
		height: 165px;
		background: url(../images/deco-flagline2.png) center no-repeat;
		background-size: contain;}

	.deco-doruma{
		display: inline-block;
		position: absolute;
		bottom: -10px;
		left: -20px;
		width: 181px;
		height: 177px;
		background: url(../images/deco-doruma.png) bottom center no-repeat;
		background-size: contain;
		animation: doruma-ani 5s ease-in-out infinite;}
		/*--  doruma --*/
		@keyframes doruma-ani{
			0%{transform:  rotate(10deg); transform-origin:  center bottom;}
			50%{transform:  rotate(-10deg); transform-origin:  center bottom;}
			100%{transform:  rotate(10deg); transform-origin:  center bottom;}
		}

	.deco-dorumaTiger{
		display: inline-block;
		position: absolute;
		bottom: -10px;
		right: -40px;
		width: 178px;
		height: 177px;
		z-index: 1;}

	.deco-dorumaTiger::after{
		content: '';
		display: inline-block;
		position: absolute;
		width: 178px;
		height: 177px;
		left: 0;
		top: 0;
		background: url(../images/deco-doruma-tiger.png) bottom center no-repeat;
		background-size: contain;
		animation: dorumaTiger-ani 6s ease-in-out infinite;
		z-index: 1;}
		/*--  doruma --*/
		@keyframes dorumaTiger-ani{
			0%{transform:  rotate(5deg); transform-origin:  center bottom;z-index: 1;}
			50%{transform:  rotate(-5deg); transform-origin:  center bottom;z-index: 1;}
			100%{transform:  rotate(5deg); transform-origin:  center bottom;z-index: 1;}
		}		

	.deco-dorumaTiger::before{
		content: '';
		display: inline-block;
		position: absolute;
		bottom: 00px;
		left: 60%;
		width: 79.46%;
		height: 46.32%;
		background: url(../images/deco-doruma-tigetial.png) bottom center no-repeat;
		background-size: contain;
		z-index: -1;
		animation: dorumaTigerTail-ani 3s ease-in-out infinite;}
		/*--  dorumaTiger --*/
		@keyframes dorumaTigerTail-ani{
			0%{transform:  rotate(0deg); transform-origin:  left bottom;z-index: -1;}
			50%{transform:  rotate(-15deg); transform-origin:  left bottom;z-index: -1;}
			100%{transform:  rotate(0deg); transform-origin:  left bottom;z-index: -1;}
		}

	.deco-bush1{
		position: absolute;
		display: inline-block;
		right: 0;
		bottom: -20px;
		width: 273px;
		height: 84px;
		background: url(../images/deco-bush1.png) center no-repeat;
		background-size: contain;}

	.deco-bush2{
		position: absolute;
		display: inline-block;
		left: 0;
		bottom: 30px;
		width: 284px;
		height: 88px;
		background: url(../images/deco-bush2.png) center no-repeat;
		background-size: contain;}

	.deco-24h{
		position: absolute;
		display: inline-block;
		left: 38%;
		transform: translateY(-50%);
		bottom: -32px;
		width: 149px;
		height: 104px;
		background: url(../images/deco-24h.png) bottom center no-repeat;
		background-size: contain;}

	.deco-cat{
		position: absolute;
		display: inline-block;
		left: 60%;
		transform: translateY(-50%);
		bottom: -35px;
		width: 131px;
		height: 58px;
		background: url(../images/deco-cat.png) center no-repeat;
		background-size: contain;}

	.deco-cat::after{
		content: 'ｚ';
		position: absolute;
		color: #fff;
		font-weight: 600;
		left: 40px;
		top: -10px;
		animation: z-ani 2s ease-in-out infinite;}
		/*--  z-ani ----*/
		@keyframes z-ani{
			0%{
				opacity: 0;
				transform: translateY(5px);}
			80%{opacity: 1;}
			100%{
				opacity: 0;
				transform: translateY(-5px);}

		}


	/*paperCuts*/
	.papercuts{
		position: fixed;
		display: flex;
		justify-content: center;
		width: 100%;
		height: 100%;
		pointer-events: none;
		top: 0;
		left: 0;}

	.papercuts li {
		display: inline-block;
		flex: 1;
		list-style: none;
		margin: 0 20px;
		animation: papaerCutFalling-ani 5s ease-in-out infinite;}
		/*-- papaerCutFalling-ani --*/
		@keyframes papaerCutFalling-ani{
			0%{	opacity: 0;
				transform: translateY(-200px);}
			10%{opacity: 1;}
			90%{opacity: 1;}
			100%{opacity: 0;
				transform: translateY(1000px);}
		}

		.papercuts li:nth-of-type(1){animation-duration: 6.2s;}
		.papercuts li:nth-of-type(2){animation-duration: 4.8s;}
		.papercuts li:nth-of-type(3){animation-duration: 5.6s;}
		.papercuts li:nth-of-type(4){animation-duration: 7.2s;}
		.papercuts li:nth-of-type(5){animation-duration: 10.2s;}
		.papercuts li:nth-of-type(6){animation-duration: 4.2s;}
		.papercuts li:nth-of-type(7){animation-duration: 5.2s;}
		.papercuts li:nth-of-type(8){animation-duration: 8.2s;}
		.papercuts li:nth-of-type(9){animation-duration: 5.7s;}
		.papercuts li:nth-of-type(10){animation-duration: 4.2s;}
		.papercuts li:nth-of-type(11){animation-duration: 6.1s;}
		.papercuts li:nth-of-type(12){animation-duration: 4.8s;}
		.papercuts li:nth-of-type(13){animation-duration: 5.6s;}
		.papercuts li:nth-of-type(14){animation-duration: 7.2s;}
		.papercuts li:nth-of-type(15){animation-duration: 10.2s;}
		.papercuts li:nth-of-type(16){animation-duration: 4.2s;}
		.papercuts li:nth-of-type(17){animation-duration: 5.2s;}
		.papercuts li:nth-of-type(18){animation-duration: 8.2s;}
		.papercuts li:nth-of-type(19){animation-duration: 6.2s;}
		.papercuts li:nth-of-type(20){animation-duration: 7.2s;}

	.papercuts li > span{
		display: inline-block;
		width: 10px;
		height: 10px;
		background: #fff;
		animation: papaerCutSpin-ani 0.5s ease-in-out infinite;}
		/*-- papaerCutSpin-ani --*/
		@keyframes papaerCutSpin-ani{
			0%{transform: scaleX(1);}
			100%{transform: scaleX(-1);}
		}

	.papercuts li:nth-of-type(odd) > span{
		background: #d8384f;
		animation-duration: 0.3s;}

	/*sakura*/
	.sakura{
		position: fixed;
		display: flex;
		justify-content: center;
		width: 100%;
		height: 100%;
		pointer-events: none;
		top: 0;
		left: 0;}

	.sakura li {
		display: inline-block;
		flex: 1;
		list-style: none;
		margin: 0 20px;
		animation: sakuraFalling-ani 5s ease-in-out infinite;}
		/*-- sakuraCutFalling-ani --*/
		@keyframes sakuraFalling-ani{
			0%{	opacity: 0;
				transform: translateY(-200px);}
			10%{opacity: 1;}
			90%{opacity: 1;}
			100%{opacity: 0;
				transform: translateY( 700px);}
		}

		.sakura li:nth-of-type(1){animation-duration: 8.2s;}
		.sakura li:nth-of-type(2){animation-duration: 4.8s;}
		.sakura li:nth-of-type(3){animation-duration: 5.6s;}
		.sakura li:nth-of-type(4){animation-duration: 17.2s;}
		.sakura li:nth-of-type(5){animation-duration: 10.2s;}
		.sakura li:nth-of-type(6){animation-duration: 14.2s;}
		.sakura li:nth-of-type(7){animation-duration: 15.2s;}
		.sakura li:nth-of-type(8){animation-duration: 8.2s;}
		.sakura li:nth-of-type(9){animation-duration: 9.7s;}
		.sakura li:nth-of-type(10){animation-duration: 14.2s;}
		.sakura li:nth-of-type(11){animation-duration: 8.1s;}
		.sakura li:nth-of-type(12){animation-duration: 14.8s;}
		.sakura li:nth-of-type(13){animation-duration: 8.6s;}
		.sakura li:nth-of-type(14){animation-duration: 11.2s;}
		.sakura li:nth-of-type(15){animation-duration: 4.2s;}
		.sakura li:nth-of-type(16){animation-duration: 7.2s;}
		.sakura li:nth-of-type(17){animation-duration: 10.2s;}
		.sakura li:nth-of-type(18){animation-duration: 5.7s;}
		.sakura li:nth-of-type(19){animation-duration: 6.2s;}
		.sakura li:nth-of-type(20){animation-duration: 8.5s;}

	.sakura li > span{
		display: inline-block;
		width: 20px;
		height: 20px;
		background: url(../images/deco-sakura1.png) center no-repeat;
		background-size: contain;
		animation: sakuraSpin-ani 2s ease-in-out infinite;}
		/*-- papaerCutSpin-ani --*/
		@keyframes sakuraSpin-ani{
			0%{transform: rotate(0deg) translateX(0px);}
			100%{transform: rotate(180deg) translateX(50px);}
			100%{transform: rotate(360deg) translateX(0px);}
		}

	.sakura li:nth-of-type(odd) > span{
		background: url(../images/deco-sakura2.png) center no-repeat;
		background-size: contain;
		animation-duration: 3s;}


    /*-- 開場蓋版 --*/
	.introOpeing{
		display: inline-block;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 999;
		pointer-events: none;}

	.introOpeing span{
		display: flex;
		position: fixed;
		align-items: center;
		background: rgba(00, 00, 00, 0.6);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		animation: introOpeningBg-ani 2.5s ease-in-out forwards;}
		/*-- introOpeingBg-ani --*/
		@keyframes introOpeningBg-ani{
			0%{background: rgba(00, 00, 00, 0.6);}
			99%{background: rgba(00, 00, 00, 0.6);}
			100%{ background: rgba(00, 00, 00, 0.0);}
		}		
	
	.introOpeing img{
		width: 100%;
		max-width: 784px;
		margin: 0 auto;
		animation: introOpening-ani 2.5s ease-in-out forwards;}
		/*-- introOpeing-ani --*/
		@keyframes introOpening-ani{
			0%{ opacity: 0;
				transform: scale(0.7);}
			50%{opacity: 1;
				transform: scale(1.1);}
			90%{
				opacity: 1;
				transform: scale(1.1);}
			100%{transform: scale(1.1);
				 opacity: 0;
				 z-index: 1;}
		}

		.shine{
			position: absolute;
			display: inline-block;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			background: url(../images/theme-popUpShine1.png) center repeat;
			background-size: auto;
			animation: shine-ani 5s ease forwards;}
			/* shine-ani*/
			@keyframes shine-ani{
				0%{	background-image: url(../images/theme-popUpShine1.png);
					background-size: auto;}
				15%{ background-image: url(../images/theme-popUpShine2.png);
					 background-size: auto;}
				30%{ background-image: url(../images/theme-popUpShine3.png);
					 background-size: auto;}
				45%{ background-image: url(../images/theme-popUpShine1.png);
					  background-size: auto;}
				60%{ background-image: url(../images/theme-popUpShine2.png);
					 background-size: auto;}
				75%{ background-image: url(../images/theme-popUpShine3.png);
					 background-size: auto;}
				90%{ background-image: url(../images/theme-popUpShine2.png);
					 background-size: auto;}
				99%{ background-image: url(../images/theme-popUpShine1.png);
					 background-size: auto;}
				100%{opacity: 0;}
			}

/*-------------共用樣式區---------------*/

/*-- 招式主標(共用) --*/
.insure-title{
	color: #fff;
	display: inline-block;
	width: 285px;
	height: 55px;}

.insure-title > img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);}


/*-- 投保好禮(共用) --*/
.insure-bonus{
	display: flex;
	padding: 10px;}

.insure-bonus > div{
	flex: 1;
	display: inline-block;
	max-width: 230px;
	margin: 20px 10px;
	padding: 100px 10px 25px;
	background: #f1e9e0;
	border-radius: 10px;
	border: 1px #be9669 solid;}

.insure-bonus > div > .bonus-tag{
	display: inline-block;
	position: absolute;
	width: auto;
	height: auto;
	left: 10px;
	top: -30px;}

.insure-bonus > div > .bonus-prize{
	display: inline-block;
	position: absolute;
	width: auto;
	height: auto;
	right: 10px;
	top: -30px;}

.insure-bonus > div > .bonus-tag > img{
	width: 100%;
	max-width: 100px;
	animation: bonusTag-ani 1s ease-in-out infinite;}

	/* bonusTag-ani */
	@keyframes bonusTag-ani{
		0%{transform: scale(1);}
		50%{transform: scale(0.95);}
		100%{transform: scale(1);}
	}

/* 獎品位置調整 */
.insure-bonus > div > .bonus-prize.p1{right: -5px;}
.insure-bonus > div > .bonus-prize.p2{
	left: 60%;
	transform: translateX(-50%);}

.insure-bonus > div > .bonus-prize.p2-2{
	left: 55%;
	transform: translateX(-50%);}

.insure-bonus > div > .bonus-prize.p3{
	top: 20px;
	right: 0;}

.insure-bonus > div > .bonus-prize.p4-1{
	top: -130px;}
	
.insure-bonus > div > .bonus-prize.p4-2{
	top: -90px;
	left: 60%;
	transform: translateX(-50%);}

.insure-bonus > div > .bonus-prize.p5{
	top: -45px;
	right: -55px;}

.insure-bonus > div > .bonus-prize.p6{
	top: -45px;
	right: -40px;}

.insure-bonus > div > .bonus-prize.p7{
	top: -100px;}

.insure-bonus > div > .bonus-content{
	font-size: 23px;
	font-weight: 600;}

.insure-bonus > div > .bonus-content > span{display: block;}
.insure-bonus > div > .bonus-content > span:nth-of-type(1){
	display: inline-block;
	width: auto;
	color: #be9669;}
.insure-bonus > div > .bonus-content > span:nth-of-type(3) > span{
	font-size: 38px;
	color: #d30f0b;}

/*附註*/
.insure-bonus .note{
	position: absolute;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #d30f0b;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10px;}

/* 查看商品詳情立即GO (共用) */
.act-wrap{
	display: block;
	padding: 10px;
	margin-top: 40px;}

.act-wrap p.note-rate{
	position: absolute;
	width: 100%;
	font-size: 20px;
	font-weight: 600;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);}

.act-wrap p.note-rate span{color: #d30f0b;}

.act-wrap .act-title{
	display: inline-block;
	border: 2px #be9669 solid ;
	width: 80%;
	min-width: 230px;
    height: 20px;
	border-bottom: 0;
	margin-bottom: 20px;
	border-radius: 2px;
	color: #fff;}

.act-wrap .act-title > img{
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);}

.act-wrap > div{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;}


.act-wrap > div > a:hover,
.act-wrap > div > a:active{transform: translateY(-10px);}

.rulenote::before{
	content: '同一保戶';
    position: absolute;
    display: inline-block;
	left: -50px;
	top: -20px;
    font-size: 16px;
    line-height: 17px;
    padding: 5px;
    box-sizing: border-box;
	width: 48px;
    height: 48px;
    border-radius: 50%;
	color: #FFF;
    background: #be9669;
    border: 1px solid #be9669;
    z-index: 1;}
	
.rulenote::after{
    content: '＼';
    position: absolute;
    display: inline-block;
    left: -14px;
    bottom: 6px;
    font-size: 10px;}

/*-------------共用樣式區：結束---------------*/

/*-- 好運第一招：年金險 --*/
.s1-wrap{
	display: inline-block;
	width: 100%;
	background: url(../images/deco-s1-bg.png) center;
	background-size: auto;
	padding: 40px 20px;
	margin: 40px 0;}

.s1-wrap .s1{
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	padding: 80px 20px 20px 20px;
	background: #ffeded;}

.section-title{
	position: absolute;
	display: inline-block;
	text-align: center;
	font-size: 15px;
	line-height: 165px;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	padding: 20px;
	width: 393px;
	height: 165px;}

.section-title > img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);}

.deco-s1-flower{
	position: absolute;
	display: inline-block;
	width: 53px;
	height: 35px;
	background: url(../images/deco-s1-flower.png) center no-repeat;
	background-size: contain;}

.deco-s1-line{
	position: absolute;
	display: inline-block;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 8px;
	background: url(../images/deco-s1-bgline.png) center no-repeat;
	background-size: contain;}

span.deco-s1-flower:nth-of-type(2){
	left: 20px;
	top: 20px;}

span.deco-s1-flower:nth-of-type(3){
	right: 20px;
	top: 20px;}

.subtitle{
	display: inline-block;
	width: auto;
	height: auto;
	margin: 30px 0;}

.s1-content{
	display: flex;
	flex-wrap: wrap;}

.s1-content > div::after{
	content: '';
	position: absolute;
	display: inline-block;
	background: #be9669;
	width: 20px;
	height: 20px;
	left: 20px;
	top: -5px;}

.s1-content > div{
	flex: 1;
	padding: 30px 20px;
	margin: 10px;
	background: #fff;
	border-radius: 10px;}

.s1-content > div > p {
	font-size: 22px;
	font-weight: 600;
	margin: 30px 0;}

.s1-content > div > p > span {color: #ff1212;}
.s1-content > div:nth-of-type(2) > .insure-bonus > div{
	max-width: 460px;
    margin: 20px auto;}
.s1-content > div:nth-of-type(2) > .act-wrap .act-title{width: 60%;}


#take3-2 > div:nth-of-type(1) > .insure-bonus > div{
	max-width: 460px;
    margin: 20px auto;}

/*-- 好運第二招：旅平險 --*/
.s2-wrap{
	display: inline-block;
	width: 100%;
	background: url(../images/deco-s2-bg.png) center;
	background-size: auto;
	padding: 40px 20px;
	margin: 40px 0;}

.s2-wrap .s2{
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	padding: 80px 20px 20px 20px;
	background: #d6fce7;}

.s2-content{
	display: flex;
	flex-wrap: wrap;}

.s2-content > div::after{
	content: '';
	position: absolute;
	display: inline-block;
	background: #be9669;
	width: 20px;
	height: 20px;
	left: 20px;
	top: -5px;}

.deco-s2-flower{
	position: absolute;
	display: inline-block;
	width: 53px;
	height: 35px;
	background: url(../images/deco-s2-flower.png) center no-repeat;
	background-size: contain;}

.deco-s2-line{
	position: absolute;
	display: inline-block;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 8px;
	background: url(../images/deco-s2-bgline.png) center no-repeat;
	background-size: contain;}

span.deco-s2-flower:nth-of-type(2){
	left: 20px;
	top: 20px;}

span.deco-s2-flower:nth-of-type(3){
	right: 20px;
	top: 20px;}

.s2-content > div{
	flex: 1;
	padding: 30px 20px;
	margin: 10px;
	background: #fff;
	border-radius: 10px;}

.s2-part1{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px;}

.s2-part1 > div{flex: 1;}

.s2-part1 > div > p {
	font-size: 22px;
	font-weight: 600;
	margin: 30px 0;
	white-space: pre-line;}

.s2-part1 > div > p > span {color: #ff1212;}

.s2-content > div > .insure-bonus{
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	justify-content: space-evenly;}

.s2-content > div > .insure-bonus > div{
	flex: 1;
	display: inline-block;
	min-width: 230px;
	margin: 20px 10px;
	padding: 100px 10px 40px;
	background: #f1e9e0;
	border-radius: 10px;
	border: 1px #be9669 solid;}

.s2-content > div > .insure-bonus > .s2-Btn{
	flex: 2;
	max-width: initial;
	display: inline-block;
	margin: initial;
	padding: initial;
	background: initial;
	border-radius: initial;
	border: initial;}

.s2-content > div > .insure-bonus > div:nth-of-type(3) > .act-wrap{margin-top: 10px;}
.s2-content > div > .insure-bonus > div > .act-wrap .act-title{width: 60%;}
.s2-Btn .act-wrap{margin-top: 20px;}

/*-- 旅平加碼 --*/
.ta-bonus{
	display: inline-block;
	width: 90%;
	padding: 10px;}

.s2-content > div > .s2-part1 > .ta-bonus > p{
	color: #d30f0b;
	text-align: center;
	margin: 10px 0;}

.ta-bonusContent{
	display: inline-block;
	background: #00503a;
	width: 100%;
	max-width: 340px;
	padding: 10px 20px;
	border-radius: 10px;}
	
.ta-bonusContent p{
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	white-space: pre-line;}

.ta-bonusContent p span{
	display: inline-block;
	color: #eaff00;
	margin-left: 5px;}

.ta-bonusContent p:nth-of-type(2),
.ta-bonusContent p:nth-of-type(3){
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	padding-top: 5px;
	margin-top: 5px;
	border-top: 1px #be9669 solid;}

.ta-bonusContent p:nth-of-type(2)::before,
.ta-bonusContent p:nth-of-type(3)::before{
	content: '▼';
	color: #be9669;
	margin-right: 5px;}

.bonusDate{
	display: inline-block;
	width: 100%;
	background: #fff;
	padding: 10px 35px;
	margin: 10px 0;
	border-radius: 10px;}

.bonusDate.date2{display: none;}
.bonusDate.date3{display: none;}

.bonusDate > p {
	display: inline-block;
	vertical-align: middle;
	color: #8bc34a;
	line-height: 45px;
	font-size: 35px;
	font-weight: 600;}

.bonusDate.date2 > p {color: #f44336;}
.bonusDate.date3 > p {color: #ff7525;}

.bonusDate > span {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 45px;
	line-height: 20px;
	color: #be9669;
	font-size: 20px;
	font-weight: 600;
	margin: 0 5px;}

.bonusDate > p > span {
	font-size: 20px;
	margin: 0 5px;
	color: #333;
	font-weight: 100;}

.ta-bonus .note{
	display: block;	
	font-size: 15px;	
	font-weight: 600;
	color: #ff1212;}

.bonusDate::before {
	content: '';
	position: absolute;
	display: inline-block;
	left: -45px;
	width: 92px;
	height: 56px;
	background: url(../images/gift-linepoints10.png) center no-repeat;
	background-size: contain;}

.bonusDate::after {
	content: '';
	position: absolute;
	display: inline-block;
	right: -40px;
	width: 97px;
	height: 92px;
	background: url(../images/deco-s2early150.png) center no-repeat;
	background-size: contain;
	animation: early200-ani 1.5s ease-in-out infinite;}
	/* early200-ani */
	@keyframes early200-ani{
		0%{transform: translateY(10px) rotate(0deg);}
		5%{transform: rotate(5deg);}
		10%{transform: rotate(0deg);}
		15%{transform: rotate(5deg);}
		20%{transform: rotate(5deg);}
		25%{transform: rotate(0deg);}
		30%{transform: rotate(5deg);}
		35%{transform: rotate(0deg);}
		50%{transform: translateY(5px) rotate(0deg);}
		100%{transform: translateY(10px) rotate(0deg);}
	}

	.bonusDate.date2::after{
		background: url(../images/deco-s2early50.png) center no-repeat;
		background-size: contain;}

	.bonusDate.date3::after{
		background: url(../images/deco-s2early100.png) center no-repeat;
		background-size: contain;}


/*-- 好運第三招：壽險 --*/
.s3-wrap{
	display: inline-block;
	width: 100%;
	background: url(../images/deco-s3-bg.png) center;
	background-size: auto;
	padding: 40px 20px;
	margin: 40px 0;}

.s3-wrap .s3{
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	padding: 80px 20px 20px 20px;
	background: #bbd7ee;}

.s3-content{
	display: flex;
	flex-wrap: wrap;}

.s3-content > div::after{
	content: '';
	position: absolute;
	display: inline-block;
	background: #be9669;
	width: 20px;
	height: 20px;
	left: 20px;
	top: -5px;}

.deco-s3-flower{
	position: absolute;
	display: inline-block;
	width: 53px;
	height: 35px;
	background: url(../images/deco-s3-flower.png) center no-repeat;
	background-size: contain;}

.deco-s3-line{
	position: absolute;
	display: inline-block;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 8px;
	background: url(../images/deco-s3-bgline.png) center no-repeat;
	background-size: contain;}

span.deco-s3-flower:nth-of-type(2){
	left: 20px;
	top: 20px;}

span.deco-s3-flower:nth-of-type(3){
	right: 20px;
	top: 20px;}

.s3-content > div{
	flex: 1;
	padding: 30px 20px;
	margin: 10px;
	background: #fff;
	border-radius: 10px;}

.s3-part1{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px;}

.s3-part1 > div{flex: 1;}
.s3-part1 > .insure-bonus > div{max-width: initial;}

.s3-part1 > div > p {
	font-size: 22px;
	font-weight: 600;
	margin: 30px 0;}

.s3-part1 > div > p > span {
	color: #ff1212;}

.s3-part1 .insure-bonus > div{padding-top: 70px;}	

.s3-content > div > .insure-bonus{
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	justify-content: space-evenly;}

.s3-content > div > .insure-bonus > div{
	flex: 1;
	display: inline-block;
	margin: 20px 10px;
	padding: 100px 10px 10px;
	background: #f1e9e0;
	border-radius: 10px;
	border: 1px #be9669 solid;}

.s3-content > div > .insure-bonus > div:nth-of-type(3){
	flex: 2;
	max-width: initial;
	display: inline-block;
	margin: initial;
	padding: initial;
	background: initial;
	border-radius: initial;
	border: initial;}

.s3-content > div > .insure-bonus > div:nth-of-type(3) > .act-wrap{margin-top: 10px;}
.s3-content > div > .insure-bonus > div > .act-wrap .act-title{width: 60%;}

.deco-pig{
	display: block;
	text-align: center;
	position: relative;
	height: 86px;
	margin: 25px 0 10px;
	background: url(../images/deco-pig.png) center no-repeat;
	background-size: contain;}

/*-- 壽險第二波加碼--*/
.lifeinsure-bonus{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	max-width: 1000px;
	padding: 10px 20px;
	background: #ebeae9;
	border-radius: 10px;
	margin: 0 auto;}

.lifeinsure-bonus div{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
    justify-content: center;
	padding: 10px 20px;}

.lifeinsure-bonus > div > p{
	font-size: 23px;
	display: block;
	color: #be9669;
	font-weight: 600;}

.lifeinsure-bonus > div > p > span{
	display: block;
	font-size: 23px;
	display: block;
	color: #d30f0b;
	font-weight: 600;}

.lifeinsure-bonus > div > span:nth-of-type(1){
	display: inline-block;
	width: 80px;
	line-height: 24px;
	margin: 0 10px;
	font-size: 23px;
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	background: #ff1212;
	animation: fontColor-ani 3s ease-in-out infinite;}

	/*fontColor-ani*/
	@keyframes fontColor-ani{
		0%{background: #ff1212;}
		25%{background: #ff7300;}
		50%{background: #8400ff;}
		75%{background: #00c3ff;}
		100%{background: #ff1212;}
	}


/*-- 好運第四招：基富通專區 --*/
.s4-wrap{
	display: inline-block;
	width: 100%;
	background: url(../images/deco-s4-bg.png) center;
	background-size: auto;
	padding: 40px 20px;
	margin: 40px 0;}

.s4-wrap .s4{
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	padding: 80px 20px 20px 20px;
	background: #d5cbab;}

.s4-content{
	display: flex;
	flex-wrap: wrap;}

.s4-content > div::after{
	content: '';
	position: absolute;
	display: inline-block;
	background: #be9669;
	width: 20px;
	height: 20px;
	left: 20px;
	top: -5px;}

.deco-s4-flower{
	position: absolute;
	display: inline-block;
	width: 53px;
	height: 35px;
	background: url(../images/deco-s4-flower.png) center no-repeat;
	background-size: contain;}

.deco-s4-line{
	position: absolute;
	display: inline-block;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 8px;
	background: url(../images/deco-s4-bgline.png) center no-repeat;
	background-size: contain;}

span.deco-s4-flower:nth-of-type(2){
	left: 20px;
	top: 20px;}

span.deco-s4-flower:nth-of-type(3){
	right: 20px;
	top: 20px;}

.s4-content > div{
	flex: 1;
	padding: 30px 20px;
	margin: 10px;
	background: #fff;
	border-radius: 10px;}

.s4-part1{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px;}

.s4-part1 > div{flex: 2;}
.s4-part1 > div:nth-of-type(2){flex: 3;}

.s4-part1 > .insure-bonus > div{
    padding-top: 30px;
	padding-right: 10px;
	margin-right: 80px;
    max-width: initial;}

.s4-part1 > div > p {
	font-size: 22px;
	font-weight: 600;
	margin: 30px 0;}

.s4-part1 > div > p > span {
	color: #ff1212;}

.s4-content > div > .insure-bonus{
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	justify-content: space-evenly;}

.s4-content > div > .insure-bonus > div{
	flex: 1;
	display: inline-block;
	margin: 20px 10px;
	padding: 100px 10px 10px;
	background: #f1e9e0;
	border-radius: 10px;
	border: 1px #be9669 solid;}

.s4-content > div > .insure-bonus > div:nth-of-type(3){
	flex: 2;
	max-width: initial;
	display: inline-block;
	margin: initial;
	padding: initial;
	background: initial;
	border-radius: initial;
	border: initial;}

.s4-content > div > .insure-bonus > div:nth-of-type(3) > .act-wrap{margin-top: 10px;}
.s4-content > div > .insure-bonus > div > .act-wrap .act-title{width: 60%;}
.s4-content > div > div > .act-wrap{padding-right: 180px;}

.deco-fish{
	display: block;
	text-align: center;
	position: relative;
	width: 92px;
	height: 102px;
	margin: 20px auto;
	background: url(../images/deco-fish1.png) center no-repeat;
	background-size: contain;
	animation: fish-ani1 1s ease-in-out infinite;}
	@keyframes fish-ani1{
		0%{transform: translateY(0px);}
		50%{transform: translateY(5px);}
		100%{transform: translateY(0px);}
	}


.deco-fish .deco-fish2{
	position: absolute;
	display: inline-block;
	top: 50%;
	transform: translateX(-50%);
	left: -50px;
	width: 51px;
	height: 47px;
	background: url(../images/deco-fish2.png) center no-repeat;
	background-size: contain;
	animation: fish-ani2 1s ease-in-out infinite;}
	/*fish-ani*/
	@keyframes fish-ani2{
		0%{transform: translateY(0px) rotate(10deg);}
		50%{transform: translateY(-15px) rotate(0deg);;}
		100%{transform: translateY(0px) rotate(10deg);;}
	}

.deco-fish .deco-fish3{
	position: absolute;
	display: inline-block;
	top: 50%;
	transform: translateX(-50%) scale(-1);
	right: -50px;
	width: 51px;
	height: 47px;
	background: url(../images/deco-fish2.png) center no-repeat;
	background-size: contain;
	animation: fish-ani3 2s ease-in-out infinite;}
	/*fish-ani*/
	@keyframes fish-ani3{
		0%{transform: translateY(0px) rotate(-40deg) scaleX(-1);}
		50%{transform: translateY(-30px) rotate(0deg) scaleX(-1);}
		100%{transform: translateY(0px) rotate(-40deg) scaleX(-1);}
	}

/*基富通加碼第二波*/
.s4-part1 > .insure-bonus > div.fr2{margin-right: 10px;}
.s4-content > div > div > .act-wrap.fr{padding-right: initial;}
/*--  活動看版 --*/
.banner-wrap{
	display: inline-block;
	width: 100%;
	background: url(../images/deco-s5-bg.png) center;
	background-size: auto;
	padding: 40px 20px;}

.banner-wrap .banner{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;}

.banner-wrap .banner > div {margin: 10px 20px;}
.banner-wrap .banner > div > a > img {max-width: 507px;}
.banner-wrap .banner div > h2{
	margin: 20px 0;}
	.banner-wrap .banner div > h2::before,
	.banner-wrap .banner div > h2::after{
		content: '';
		vertical-align: middle;
		display: inline-block;
		width: 30px;
		height: 25px;
		margin: 0 10px;
		background: url(../images/deco-s5-flowerL.png) center no-repeat;
		background-size: contain;}
	.banner-wrap .banner div > h2::after{	
		background: url(../images/deco-s5-flowerR.png) center no-repeat;
		background-size: contain;}

/*-- 活動辦法 --*/
.rules-wrap{padding: 40px 20px 20px;}
#rules-switch{display: none;}
.rules-title span{
	display: block;
	width: 100%;
	max-width: 1200px;
	height: 5px;
	margin: 20px auto;
	background: #333;}

.rules-title span::before{
	content:'' ;
	position: absolute;
	display: inline-block;
	width: 35px;
	height: 31px;
	background: url(../images/deco-triangle.png) center no-repeat;
	background-size: auto;
	top: 50%;
	left: 50%;
	cursor: pointer;
	transition: 0.5s;
	transform: translate(-50% , -50%);}

.rules{
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 2%;
	height: 0;
	overflow: hidden;
	padding: 0;}

.rules ol {padding-left: 20px;}
.rules > ol > li{
	font-size: 16px;}

.rules ol li{
	font-weight: 600;
	text-align: left;
	line-height: 24px;
	margin-bottom: 10px;}

.rules ol li h3{
	margin: 10px 0;
	text-align: left;
	font-size: 17px;
	white-space: pre-line;
	color: #f44336;}
	
.rules ol li ul{
	background: #efefef;
	padding: 10px;
	padding-left: 30px;
	margin-top: 10px;}

.rules ol li ul li{
	margin-left: 10px;
	list-style: square;
	font-weight: 400;
	margin-bottom: 5px;}

.rules ol li ul li span{color: #ff5722;}

.rules ol li ol{padding-left: 5px;}
.rules ol li ol li{
	list-style: none;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 600;}

/*活動辦法開關控制器*/
#rules-switch:checked ~ .rules{
	height: auto;
	padding: 20px 2%;}

#rules-switch:checked ~ .rules-title span::before{
	transform: translate(-50% , -50%) rotate(180deg);}


/*路徑提示箭頭*/
.icon-arrow::after{
	content: '▼';
	position: absolute;
	color: #db491d;
	top: 14px;
	left: 4px;
	transform: rotate(-90deg);
	display: inline-block;
	font-size: 15px;
	animation: iconArrow-ani 2s linear infinite;}

	/*路徑提示箭頭動畫*/
	@keyframes iconArrow-ani{
		0%{ transform: translateX(4px) rotate(-90deg);}
		50%{ transform: translateX(-4px) rotate(-90deg);}
		100%{ transform: translateX(4px) rotate(-90deg);}
	}



	/*-----------------*/
	/*----TO TOP ------*/
	/*-----------------*/

	.section-btnTop{
		display: inline-block;
		position: fixed;
		width: 100%;
		max-width: 1200px;
		height: 1px;
		margin: 0 auto;
		bottom: 15%;
		left: 50%;
		transform: translate(-50% , -50%);
		text-align: right;
		z-index: 99;}

	.btnTop-Wrap{
		display: inline-block;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 1px;}

	.btnTop{
		position: relative;
		display: inline-block;
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
		height: 60px;
		border-radius: 30px;
		font-weight: 600;
		padding: 5px;
		background: #d8384f;
		line-height: 50px;
		color: #ffffff;
		font-size: 1.2em;
		cursor: pointer;
		transition: 0.5s;
		box-shadow: 0 6px 16px -9px rgba(00, 00, 00, 0.8);}

	.btnTop:active,
	.btnTop:hover{
		color: rgb(255, 230, 0);
		background: #8f0941;
		box-shadow: 0 6px 16px -9px rgba(00, 00, 00, 0);} 


	.cno{
		display: block;
		text-align: right;
		width: 100%;
		background: #007c7c;
		color: #fff;
		padding: 5px 2%;
		z-index: -1;}

	footer{
		padding: 10px 2%;
		font-size: 15px;
		z-index: 1;}
	
	
	/*錨點--*/
	#section1{top: -200px;}
	#section2{top: -180px;}
	#section3{top: -160px;}
	#section4{top: -160px;}

	