:root {
	--viewport-height: calc(var(--vh, 1vh) * 100);
	--viewport-height-cut: calc(var(--viewport-height) - var(--header-height) - 40px);
	--main-color: #2da33d;
	--main-overlay-color: #2da33d;
	--text-color: #333;
	--header-height: 45px;
	--side-width: 40px
}

body {
	font-family: 'Noto Sans TC', 'Microsoft JhengHei', Arial;
	font-size: 1.05rem;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--text-color);
	overflow: hidden;
	margin: 0
}

a {
	transition: all .25s
}

a:hover {
	outline: 0;
	text-decoration: none
}

a:focus {
	outline: 0;
	box-shadow: none !important
}

img {
	max-width: 100%
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px
}

::-webkit-scrollbar-thumb {
	border: none
}

::-webkit-scrollbar-thumb {
	background-color: #1c1c1c;
	transition: all .25s
}

::-webkit-scrollbar-track {
	background-color: #ccc
}

main {
	position: relative;
	margin-top: 0;
	margin-bottom: 40px;
	min-height: 100%
}

main.list {
	width: calc(100% - var(--side-width));
	margin-left: auto
}

@media (min-width:992px) {
	:root {
		--header-height: 55px;
		--side-width: 50px
	}
}

@keyframes reveal {
	from {
		transform: scale(.001)
	}

	to {
		transform: scale(1)
	}
}

@keyframes slide {
	to {
		transform: translateX(1.5em)
	}
}

:root {
	--link-height: var(--lh, 180px);
	--modal-image: calc(var(--viewport-height) * 0.3);
}

.tour {
	position: relative;
	margin-bottom: 0;
	min-height: 100vh
}

#float {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(var(--viewport-height-cut) - var(--link-height))
}

#float .bottom {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 10
}

#float .bottom a {
	position: relative;
	pointer-events: all
}

#float .bottom a+a {
	margin-top: 15px
}

#float .bottom a img {
	border: 1px solid transparent;
	border-radius: 50%;
	transition: all .25s
}

#float .bottom a:hover img {
	border: 1px solid #fff
}

#float img {
	width: 40px;
	height: 40px;
	max-width: 100%
}

#view {
	position: relative
}

#view #webgl {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

#view #webgl {
	pointer-events: all
}

#link {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	transform: translateY(0);
	transition: all .5s;
	z-index: 10
}

#link.hide {
	transform: translateY(calc(100% - 40px));
}

#link .title-block {
	display: flex;
	justify-content: space-between;
	height: 40px;
	background-color: rgb(0 0 0 / .5)
}

#link .title-block h3 {
	margin-bottom: 0;
	padding: 10px 0;
	font-size: 1.1rem;
	font-weight: 400;
	color: #fff;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

#link .title-block .title {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	width: calc(100% - 55px);
	margin-left: 5px
}

#link .title-block a {
	height: 40px;
	display: flex;
	align-items: center
}

#link .title-block .btn-share i {
	padding: 10px 15px;
	font-size: 1.15rem;
	color: #fff
}

#link .title-block .btn-control i {
	padding: 10px;
	font-size: 1rem;
	vertical-align: middle;
	color: #fff
}

#link .list-block {
	padding: 15px;
	background-color: rgb(0 0 0 / 80%);
	transition: all .25s
}

#link .list-block .owl-carousel .item.active {
	border: 1px solid var(--main-color)
}

#link .list-block .owl-carousel .item .img-box {
	position: relative;
	height: 108px;
	overflow: hidden
}

#link .list-block .owl-carousel .owl-item .owl-lazy {
	height: 100%;
	width: 100%;
	object-position: center;
	object-fit: cover;
	opacity: 1
}

#link .list-block .owl-carousel .item .img-box::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	opacity: 1;
	transition: all .25s;
	z-index: 0
}

#link .list-block .owl-carousel .item.active .img-box::after, #link .list-block .owl-carousel .item:hover .img-box::after {
	background-color: rgba(0, 0, 0, 0)
}

[id*=view-modal] {
	width: 100%;
	max-width: 420px;
	max-height: 620px;
	padding: 0;
	overflow-y: hidden
}

[id*=view-modal] .img-block {
	max-height: 275px;
	height: var(--modal-image);
	overflow: hidden
}

[id*=view-modal] .img-block img {
	height: 100%;
	width: 100%;
	object-position: center;
	object-fit: cover
}

#share-modal {
	max-width: 500px;
	width: 100%;
	max-height: 100%;
	padding: 0
}

#share {
	margin-bottom: 20px;
	text-align: center
}

#loading {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--viewport-height);
	z-index: 1000;
	background-color: rgba(0, 0, 0, .8)
}

#view.dot-onload #loading, #view.panorama-onload #loading {
	display: block
}

.loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% - var(--header-height)))
}

.loading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	border-radius: 20px;
	background-color: rgba(255, 255, 255, .75)
}

.loading {
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0
}

.loading .gif {
	position: relative;
	width: 80px
}

@media (max-width:991px) {
	#float .bottom {
		bottom: 15px;
		right: 15px
	}
}

@media (max-width:480px) {
	#float img {
		width: 35px;
		height: 35px
	}

	#link .list-block .owl-carousel .item .img-box {
		height: 83px
	}
}

@media (max-width:400px) {
	#link .list-block .owl-carousel .item .img-box {
		height: 64px
	}
}

section {
	padding: 0;
	overflow: unset !important
}

header {
	display: none !important;
}

footer {
	display: none
}

.footer-social-icon {
	display: none !important
}