html {
	width: 100%;
	height: 100%;
}

body {
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: #cce8ea;
}

@font-face {
	font-family: ch;
	src: url('../font/WT014.TTF');
}

html, body {
	font-family: 'ch';
}

.page {
	display: none;
}

.container {
	position: relative;
	box-sizing: content-box;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	overflow: hidden;
	left: 0;
	top: 0;
}

.inner .container {
	position: unset;
}

#horizontal-hint {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 200;
	text-align: center;
	background-color: white;
	background-image: url('../image/A.首頁畫面/圖片1.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 200px 180px;
}

#home-page .container {
	background-image: url('../image/A.首頁畫面/首頁-底圖.png');
	background-size: contain;
	width: 100%;
	height: 100%;
}

.slide {
	position: relative;
	left: -100%;
	width: 100%;
	height: 100%;
	animation-name: slide-flyin;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}

@keyframes slide-flyin {
	0% {
		left: -100%;
	}

	100% {
		left: 0%;
	}

}

.character {
	position: absolute;
	top: 5%;
	left: 1%;
	width: 60%;
	height: 90%;
	background-image: url('../image/A.首頁畫面/首頁-人物(動態)-spritesheet.png');
	background-repeat: no-repeat;
	background-size: 600% 500%;
	background-position-x: 0%;
	background-position-y: 0%;
	z-index: 1;
	animation-name: character-anim;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: step-start;
}

@keyframes character-anim {
	0% {
		background-position-x: 0%;
		background-position-y: 0%;
	}

	3.3% {
		background-position-x: 20%;
		background-position-y: 0%;
	}

	6.6% {
		background-position-x: 40%;
		background-position-y: 0%;
	}

	10% {
		background-position-x: 60%;
		background-position-y: 0%;
	}

	13.3% {
		background-position-x: 80%;
		background-position-y: 0%;
	}

	16.6% {
		background-position-x: 100%;
		background-position-y: 0%;
	}

	20% {
		background-position-x: 0%;
		background-position-y: 25%;
	}

	23.3% {
		background-position-x: 20%;
		background-position-y: 25%;
	}

	26.6% {
		background-position-x: 40%;
		background-position-y: 25%;
	}

	30% {
		background-position-x: 60%;
		background-position-y: 25%;
	}

	33.3% {
		background-position-x: 80%;
		background-position-y: 25%;
	}

	36.6% {
		background-position-x: 100%;
		background-position-y: 25%;
	}

	40% {
		background-position-x: 0%;
		background-position-y: 50%;
	}

	43.3% {
		background-position-x: 20%;
		background-position-y: 50%;
	}

	46.6% {
		background-position-x: 40%;
		background-position-y: 50%;
	}

	50% {
		background-position-x: 60%;
		background-position-y: 50%;
	}

	53.3% {
		background-position-x: 80%;
		background-position-y: 50%;
	}

	56.6% {
		background-position-x: 100%;
		background-position-y: 50%;
	}

	60% {
		background-position-x: 0%;
		background-position-y: 75%;
	}

	63.3% {
		background-position-x: 20%;
		background-position-y: 75%;
	}

	66.6% {
		background-position-x: 40%;
		background-position-y: 75%;
	}

	70% {
		background-position-x: 60%;
		background-position-y: 75%;
	}

	73.3% {
		background-position-x: 80%;
		background-position-y: 75%;
	}

	76.6% {
		background-position-x: 100%;
		background-position-y: 75%;
	}

	80% {
		background-position-x: 0%;
		background-position-y: 100%;
	}

	83.3% {
		background-position-x: 20%;
		background-position-y: 100%;
	}

	86.6% {
		background-position-x: 40%;
		background-position-y: 100%;
	}

	90% {
		background-position-x: 60%;
		background-position-y: 100%;
	}

	93.3% {
		background-position-x: 80%;
		background-position-y: 100%;
	}

	96.6% {
		background-position-x: 100%;
		background-position-y: 100%;
	}

}

.logo {
	position: absolute;
	top: 20%;
	left: 50%;
	width: 45%;
	height: 90%;
	background-image: url('../image/A.首頁畫面/首頁-標準字.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 5;
}

.start-btn {
	position: absolute;
	top: 85%;
	left: 35%;
	width: 30%;
	height: 6%;
	background-image: url('../image/A.首頁畫面/首頁-輕觸畫面.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 5;
	animation-name: blink;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-delay: 1s;
	opacity: 0;
}

@keyframes blink {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}

}

#intro-page .container {
	background-image: url('../image/B.前導劇情/前導-底圖.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.story {
	position: absolute;
	top: 6%;
	left: 20%;
	width: 70%;
	height: 56%;
	background-image: url('../image/B.前導劇情/前導-劇情(動態)-spritesheet.png');
	background-repeat: no-repeat;
	background-size: 900% 500%;
	background-position-x: 0%;
	background-position-y: 0%;
	z-index: 1;
	animation-name: story-anim;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: step-start;
	display: none;
}

@keyframes story-anim {
	0% {
		background-position-x: 0%;
		background-position-y: 0%;
	}

	2.5% {
		background-position-x: 12.5%;
		background-position-y: 0%;
	}

	5% {
		background-position-x: 25%;
		background-position-y: 0%;
	}

	7.5% {
		background-position-x: 37.5%;
		background-position-y: 0%;
	}

	10% {
		background-position-x: 50%;
		background-position-y: 0%;
	}

	12.5% {
		background-position-x: 62.5%;
		background-position-y: 0%;
	}

	15% {
		background-position-x: 75%;
		background-position-y: 0%;
	}

	17.5% {
		background-position-x: 87.5%;
		background-position-y: 0%;
	}

	20% {
		background-position-x: 100%;
		background-position-y: 0%;
	}

	22.5% {
		background-position-x: 0%;
		background-position-y: 25%;
	}

	25% {
		background-position-x: 12.5%;
		background-position-y: 25%;
	}

	27.5% {
		background-position-x: 25%;
		background-position-y: 25%;
	}

	30% {
		background-position-x: 37.5%;
		background-position-y: 25%;
	}

	32.5% {
		background-position-x: 50%;
		background-position-y: 25%;
	}

	35% {
		background-position-x: 62.5%;
		background-position-y: 25%;
	}

	37.5% {
		background-position-x: 75%;
		background-position-y: 25%;
	}

	40% {
		background-position-x: 87.5%;
		background-position-y: 25%;
	}

	42.5% {
		background-position-x: 100%;
		background-position-y: 25%;
	}

	45% {
		background-position-x: 0%;
		background-position-y: 50%;
	}

	47.5% {
		background-position-x: 12.5%;
		background-position-y: 50%;
	}

	50% {
		background-position-x: 25%;
		background-position-y: 50%;
	}

	52.5% {
		background-position-x: 37.5%;
		background-position-y: 50%;
	}

	55% {
		background-position-x: 50%;
		background-position-y: 50%;
	}

	57.5% {
		background-position-x: 62.5%;
		background-position-y: 50%;
	}

	60% {
		background-position-x: 75%;
		background-position-y: 50%;
	}

	62.5% {
		background-position-x: 87.5%;
		background-position-y: 50%;
	}

	65% {
		background-position-x: 100%;
		background-position-y: 50%;
	}

	67.5% {
		background-position-x: 0%;
		background-position-y: 75%;
	}

	70% {
		background-position-x: 12.5%;
		background-position-y: 75%;
	}

	72.5% {
		background-position-x: 25%;
		background-position-y: 75%;
	}

	75% {
		background-position-x: 37.5%;
		background-position-y: 75%;
	}

	77.5% {
		background-position-x: 50%;
		background-position-y: 75%;
	}

	80% {
		background-position-x: 62.5%;
		background-position-y: 75%;
	}

	82.5% {
		background-position-x: 75%;
		background-position-y: 75%;
	}

	85% {
		background-position-x: 87.5%;
		background-position-y: 75%;
	}

	87.5% {
		background-position-x: 100%;
		background-position-y: 75%;
	}

	90% {
		background-position-x: 0%;
		background-position-y: 100%;
	}

	92.5% {
		background-position-x: 12.5%;
		background-position-y: 100%;
	}

	95% {
		background-position-x: 25%;
		background-position-y: 100%;
	}

	97.5% {
		background-position-x: 37.5%;
		background-position-y: 100%;
	}

}

.context {
	display: none;
	position: absolute;
	top: 67%;
	left: 22%;
	width: 66%;
	height: 14%;
	z-index: 1;
	overflow: hidden;
}

.context img {
	position: relative;
	width: 100%;
}

#next-btn {
	display: none;
	position: absolute;
	left: 53%;
	top: 88%;
	width: 6%;
	height: 5%;
	border: none;
	background: none;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../image/B.前導劇情/下頁提示.png');
	cursor: pointer;
}

#go-paper-btn {
	display: none;
	position: absolute;
	left: 75%;
	top: 88%;
	width: 20%;
	height: 9%;
	border: none;
	background: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position-x: center;
	background-image: url('../image/B.前導劇情/前導-按鈕.png');
	cursor: pointer;
}

#go-paper-btn.disable {
	cursor: not-allowed;
	background-image: url('../image/B.前導劇情/前導-按鈕(不可按).png');
}

.dot {
	display: none;
	position: absolute;
	left: 91%;
	top: 67%;
	width: 2%;
	height: 3%;
	border: none;
	background: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position-x: center;
	background-image: url('../image/B.前導劇情/其他頁提示.png');
	cursor: pointer;
}

.dot.selected {
	background-image: url('../image/B.前導劇情/當前頁提示.png');
}

#dot1 {
	position: absolute;
	left: 91%;
	top: 67%;
}

#dot2 {
	position: absolute;
	top: 72%;
}

#dot3 {
	position: absolute;
	top: 77%;
}

#intro2-page .container {
	background-image: url('../image/C.提示紙條/紙條-底圖.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.context2 {
	position: absolute;
	top: 22%;
	left: 22%;
	width: 66%;
	height: 51%;
	z-index: 1;
	overflow: hidden;
}

.context2 img {
	position: relative;
	width: 100%;
}

#dot4 {
	display: block;
	position: absolute;
	top: 43%;
	left: 89%;
}

#dot5 {
	display: block;
	position: absolute;
	top: 49%;
	left: 89%;
}

#start-buying-btn {
	position: absolute;
	left: 73%;
	top: 83%;
	width: 20%;
	height: 9%;
	border: none;
	background: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position-x: center;
	background-image: url('../image/C.提示紙條/紙條-按鈕.png');
	cursor: pointer;
}

#start-buying-btn.disable {
	cursor: not-allowed;
	background-image: url('../image/C.提示紙條/紙條-按鈕(不可按).png');
}

#next-btn2 {
	position: absolute;
	left: 53%;
	top: 83%;
	width: 6%;
	height: 5%;
	border: none;
	background: none;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../image/C.提示紙條/下頁提示.png');
	cursor: pointer;
}

#shopping-page .container {
	background-image: url('../image/D.採購畫面/採購-底圖.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

#left-btn {
	position: absolute;
	left: 1%;
	top: 36%;
	width: 9%;
	height: 14%;
	border: none;
	background: none;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../image/D.採購畫面/採購-換頁鈕(左).png');
	cursor: pointer;
	display: none;
}

#right-btn {
	position: absolute;
	left: 90%;
	top: 36%;
	width: 9%;
	height: 14%;
	border: none;
	background: none;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../image/D.採購畫面/採購-換頁鈕(右).png');
	cursor: pointer;
}

#quit-btn {
	position: absolute;
	left: 2%;
	top: 83%;
	width: 18%;
	height: 14%;
	border: none;
	background: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../image/D.採購畫面/採購-離開紐.png');
	cursor: pointer;
}

#cart-btn {
	position: absolute;
	left: 76%;
	top: 83%;
	width: 22%;
	height: 14%;
	border: none;
	background: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../image/D.採購畫面/採購-購物車.png');
	cursor: pointer;
}

.shopping-window {
	position: absolute;
	left: 10%;
	top: 9%;
	width: 80%;
	height: 70%;
	overflow: hidden;
}

.window-1 {
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
}

.window-2 {
	position: absolute;
	left: 100%;
	top: 0%;
	width: 100%;
	height: 100%;
}

.shopping-item {
	width: 20%;
	height: 29%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	float: left;
	margin-left: 4%;
	margin-top: 2%;
	text-align: right;
	color: white;
	box-sizing: border-box;
	padding-right: 7.5%;
	padding-top: 0.3%;
}

.shopping-window div[name='昆布'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-昆布.png');
}

.shopping-window div[name='九孔'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-九孔.png');
}

.shopping-window div[name='虱目魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-虱目魚.png');
}

.shopping-window div[name='石花菜'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-石花菜.png');
}

.shopping-window div[name='白蝦'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-白蝦.png');
}

.shopping-window div[name='烏魚殼'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-烏魚殼.png');
}

.shopping-window div[name='透抽'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-透抽.png');
}

.shopping-window div[name='牡蠣'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-牡蠣.png');
}

.shopping-window div[name='黑鮪魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-黑鮪魚.png');
}

.shopping-window div[name='鬼頭刀'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-鬼頭刀.png');
}

.shopping-window div[name='鮭魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-鮭魚.png');
}

.shopping-window div[name='紅蟳'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-紅蟳.png');
}

.shopping-window div[name='土魠魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-土魠魚.png');
}

.shopping-window div[name='四破魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-四破魚.png');
}

.shopping-window div[name='石蓴'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-石蓴.png');
}

.shopping-window div[name='秋刀魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-秋刀魚.png');
}

.shopping-window div[name='飛魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-飛魚.png');
}

.shopping-window div[name='臭肚魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-臭肚魚.png');
}

.shopping-window div[name='紫菜'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-紫菜.png');
}

.shopping-window div[name='鰻魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-鰻魚.png');
}

.shopping-window div[name='黃金蜆'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-黃金蜆.png');
}

.shopping-window div[name='黑鮪魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-黑鮪魚.png');
}

.shopping-window div[name='旗魚'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-旗魚.png');
}

.shopping-window div[name='龍蝦'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-龍蝦.png');
}

.shopping-window div[name='櫻花蝦'] {
	background-image: url('../image/D.採購畫面/採購-海鮮食材項目/採購-櫻花蝦.png');
}

#dot6 {
	display: block;
	position: absolute;
	left: 47.5%;
	top: 83%;
}

#dot7 {
	display: block;
	position: absolute;
	left: 50.5%;
	top: 83%;
}

#item-detail {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	background-color: rgba(0, 0, 0, 0.6);
	background-image: url('../image/E.海鮮資訊/資訊-底圖.png');
	background-size: 90%;
	background-repeat: no-repeat;
	background-position: center;
}

#close-detail-btn {
	position: absolute;
	left: 88%;
	top: 5%;
	width: 8%;
	height: 11%;
	border: none;
	background: none;
	cursor: pointer;
}

.item-detail-image {
	position: absolute;
	width: 36%;
	height: 46%;
	top: 17%;
	left: 8%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#item-detail[name='九孔'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-九孔.png');
}

#item-detail[name='土魠魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-土魠魚.png');
}

#item-detail[name='四破魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-四破魚.png');
}

#item-detail[name='白蝦'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-白蝦.png');
}

#item-detail[name='石花菜'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-石花菜.png');
}

#item-detail[name='石蓴'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-石蓴.png');
}

#item-detail[name='牡蠣'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-牡蠣.png');
}

#item-detail[name='昆布'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-昆布.png');
}

#item-detail[name='虱目魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-虱目魚.png');
}

#item-detail[name='秋刀魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-秋刀魚.png');
}

#item-detail[name='紅蟳'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-紅蟳.png');
}

#item-detail[name='飛魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-飛魚.png');
}

#item-detail[name='烏魚殼'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-烏魚殼.png');
}

#item-detail[name='臭肚魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-臭肚魚.png');
}

#item-detail[name='鬼頭刀'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-鬼頭刀.png');
}

#item-detail[name='透抽'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-透抽.png');
}

#item-detail[name='紫菜'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-紫菜.png');
}

#item-detail[name='黃金蜆'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-黃金蜆.png');
}

#item-detail[name='黑鮪魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-黑鮪魚.png');
}

#item-detail[name='旗魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-旗魚.png');
}

#item-detail[name='龍蝦'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-龍蝦.png');
}

#item-detail[name='鮭魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-鮭魚.png');
}

#item-detail[name='櫻花蝦'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-櫻花蝦.png');
}

#item-detail[name='鰻魚'] .item-detail-image {
	background-image: url('../image/E.海鮮資訊/資訊-海鮮大圖/資訊-鰻魚.png');
}

#item-name {
	position: absolute;
	width: 20%;
	height: 10%;
	left: 49.5%;
	top: 19.5%;
}

#item-unit {
	position: absolute;
	width: 20%;
	height: 10%;
	left: 48%;
	top: 20%;
	text-align: right;
}

#item-price {
	position: absolute;
	width: 8%;
	height: 10%;
	left: 71%;
	top: 20.2%;
	text-align: center;
}

#item-desc {
	position: absolute;
	width: 79%;
	height: 19%;
	left: 10%;
	top: 68%;
	text-align: justify;
}

#item-value {
	position: absolute;
	width: 11.5%;
	height: 10%;
	left: 69%;
	top: 36.3%;
	text-align: center;
}

#plus-btn {
	position: absolute;
	left: 47%;
	top: 34%;
	width: 6%;
	height: 10%;
	border: none;
	background: none;
	cursor: pointer;
}

#minus-btn {
	position: absolute;
	left: 58%;
	top: 34%;
	width: 6%;
	height: 10%;
	border: none;
	background: none;
	cursor: pointer;
}

#item-amount {
	position: absolute;
	width: 9%;
	height: 10%;
	left: 51%;
	top: 36.3%;
	text-align: center;
}

#item-left {
	position: absolute;
	width: 9%;
	height: 10%;
	left: 50.5%;
	top: 54.3%;
	text-align: right;
}

#item-bought {
	position: absolute;
	width: 9%;
	height: 10%;
	left: 50.5%;
	top: 49%;
	text-align: right;
}

#put-in-cart-btn {
	position: absolute;
	top: 50.5%;
	left: 65%;
	width: 26%;
	height: 10%;
	background: none;
	border: none;
	background-image: url('../image/E.海鮮資訊/資訊-放購物車.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 5;
	cursor: pointer;
}

#out-of-stock-btn {
	position: absolute;
	top: 50.5%;
	left: 74%;
	width: 17%;
	height: 10%;
	background: none;
	border: none;
	background-image: url('../image/E.海鮮資訊/資訊-已售完.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right;
	z-index: 5;
	cursor: not-allowed;
}

#cart-full-btn {
	position: absolute;
	top: 50.5%;
	left: 70%;
	width: 21%;
	height: 10%;
	background: none;
	border: none;
	background-image: url('../image/E.海鮮資訊/資訊-購物車已滿.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right;
	z-index: 5;
	cursor: not-allowed;
}

#done-mask {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-image: url('../image/E.海鮮資訊/資訊-已放入購物車提示.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
	z-index: 15;
}

#cart-detail {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	background-color: rgba(0, 0, 0, 0.6);
	background-image: url('../image/F.購物車選單/購物車-底圖.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
}

#close-cart-detail-btn {
	position: absolute;
	top: 39%;
	left: 12%;
	width: 8%;
	height: 21%;
	background: none;
	border: none;
	z-index: 5;
	cursor: pointer;
}

#need {
	position: absolute;
	width: 7%;
	height: 10%;
	left: 79%;
	top: 9%;
	text-align: center;
}

#checkout-btn {
	position: absolute;
	width: 18%;
	height: 10%;
	top: 83%;
	left: 77%;
	background: none;
	border: none;
	background-image: url('../image/F.購物車選單/購物車-可以結帳鈕.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

#checkout-btn.disable {
	background-image: url('../image/F.購物車選單/購物車-不可結帳鈕.png');
	cursor: not-allowed;
}

#total {
	position: absolute;
	width: 14%;
	height: 10%;
	left: 44%;
	top: 84.5%;
	text-align: right;
}

#buying-list {
	position: absolute;
	width: 73%;
	height: 59%;
	top: 21%;
	left: 23%;
	overflow-y: auto;
}

.buying-item {
	position: relative;
	width: 100%;
	height: 33%;
	background-image: url('../image/F.購物車選單/購物車-選單條.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.item-detail-thumbnail {
	position: absolute;
	left: 1%;
	top: 5%;
	width: 14%;
	height: 63%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.item-detail-name {
	position: absolute;
	left: 14.7%;
	top: 17%;
	width: 16%;
	height: 63%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: center;
}

.item-detail-amount {
	position: absolute;
	left: 36.4%;
	top: 17%;
	width: 16%;
	height: 63%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: center;
}

.item-detail-unit {
	position: absolute;
	left: 60%;
	top: 17%;
	width: 16%;
	height: 63%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: left;
}

.item-detail-cost {
	position: absolute;
	left: 65%;
	top: 17%;
	width: 23%;
	height: 63%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: right;
}

.delete-btn {
	position: absolute;
	left: 90%;
	top: 18%;
	width: 10%;
	height: 38%;
	border: none;
	background: none;
	cursor: pointer;
}

.plus-btn {
	position: absolute;
	left: 33%;
	top: 14%;
	width: 7%;
	height: 43%;
	border: none;
	background: none;
	cursor: pointer;
}

.minus-btn {
	position: absolute;
	left: 48%;
	top: 14%;
	width: 7%;
	height: 43%;
	border: none;
	background: none;
	cursor: pointer;
}

#checkout-page .container {
	background-image: url('../image/G.成果畫面/成果-底圖.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

#quit-btn-2 {
	position: absolute;
	left: 80%;
	top: 87%;
	width: 19%;
	height: 12%;
	border: none;
	background: none;
	cursor: pointer;
}

.checkout-item {
	position: relative;
	left: 63%;
	top: 20.3%;
	width: 25%;
	height: 9.4%;
}

.checkout-name {
	width: 35%;
	float: left;
	text-align: left;
}

.checkout-amount {
	width: 15%;
	float: left;
	text-align: right;
}

.checkout-unit {
	width: 10%;
	float: left;
	text-align: right;
}

.checkout-cost {
	width: 40%;
	float: left;
	text-align: center;
}

.checkout-total {
	position: relative;
	left: 76%;
	top: 23%;
	width: 14%;
	height: 7%;
	text-align: center;
}

.rank {
	position: absolute;
	width: 5%;
	height: 10%;
	left: 82%;
	top: 77%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.exlow .rank {
	width: 7%;
	left: 81%;
	background-image: url('../image/G.成果畫面/成果-極低消耗.png');
}

.low .rank {
	background-image: url('../image/G.成果畫面/成果-低消耗.png');
}

.mid .rank {
	background-image: url('../image/G.成果畫面/成果-中消耗.png');
}

.high .rank {
	background-image: url('../image/G.成果畫面/成果-高消耗.png');
}

.rank-image {
	position: absolute;
	width: 43%;
	height: 52%;
	left: 6%;
	top: 21%;
	background-repeat: no-repeat;
	background-position: 0% 0%;
	background-size: 500% 501%;
	background-image: url('../image/G.成果畫面/成果-中消耗餐桌(動態).png');
	animation-name: character-anim2;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: step-start;
}

@keyframes character-anim2 {
	0% {
		background-position-x: 0%;
		background-position-y: 0%;
	}

	5% {
		background-position-x: 25%;
		background-position-y: 0%;
	}

	10% {
		background-position-x: 50%;
		background-position-y: 0%;
	}

	15% {
		background-position-x: 75%;
		background-position-y: 0%;
	}

	20% {
		background-position-x: 100%;
		background-position-y: 0%;
	}

	25% {
		background-position-x: 0%;
		background-position-y: 25%;
	}

	30% {
		background-position-x: 25%;
		background-position-y: 25%;
	}

	35% {
		background-position-x: 50%;
		background-position-y: 25%;
	}

	40% {
		background-position-x: 75%;
		background-position-y: 25%;
	}

	45% {
		background-position-x: 100%;
		background-position-y: 50%;
	}

	50% {
		background-position-x: 0%;
		background-position-y: 50%;
	}

	55% {
		background-position-x: 25%;
		background-position-y: 50%;
	}

	60% {
		background-position-x: 50%;
		background-position-y: 50%;
	}

	65% {
		background-position-x: 75%;
		background-position-y: 50%;
	}

	70% {
		background-position-x: 100%;
		background-position-y: 50%;
	}

	75% {
		background-position-x: 0%;
		background-position-y: 75%;
	}

	80% {
		background-position-x: 25%;
		background-position-y: 75%;
	}

	85% {
		background-position-x: 50%;
		background-position-y: 75%;
	}

	90% {
		background-position-x: 75%;
		background-position-y: 75%;
	}

	95% {
		background-position-x: 100%;
		background-position-y: 75%;
	}

	100% {
		background-position-x: 0%;
		background-position-y: 100%;
	}

}

.exlow .rank-image {
	background-image: url('../image/G.成果畫面/成果回饋-極低/成果回饋-極低.png');
}

.low .rank-image {
	background-image: url('../image/G.成果畫面/成果回饋-低/成果回饋-低.png');
}

.mid .rank-image {
	background-image: url('../image/G.成果畫面/成果回饋-中/成果回饋-中.png');
}

.high .rank-image {
	background-image: url('../image/G.成果畫面/成果回饋-高/成果回饋-高.png');
}

.rank-text {
	position: absolute;
	width: 48%;
	height: 25%;
	left: 4%;
	top: 72.6%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.exlow .rank-text {
	background-image: url('../image/G.成果畫面/成果-2000以下文案.png');
}

.low .rank-text {
	background-image: url('../image/G.成果畫面/成果-2000到5000文案.png');
}

.mid .rank-text {
	background-image: url('../image/G.成果畫面/成果-5000到10000文案.png');
}

.high .rank-text {
	background-image: url('../image/G.成果畫面/成果-10000以上文案.png');
}
