body
{
	background: #9AD7D2;
}

button , select , input[type="radio"] , input[type="checkbox"] ,
input[type="submit"] , label , a
{
	cursor: pointer;
}

input[type="number"]
{
	-moz-appearance:textfield;
}

/*****     Class     *****/
.Notice
{
	color: red;
	display: none;
	font-size: 13px;
	text-align: left;
}

.NoData /* 沒有資料 */
{
	text-align: center;
	font-size: 18px;
}

/*****     共同     *****/
/*     input select textarea     */
.Ipt , .Sel , .Textarea
{
	border-radius: 5px;
	width: 100%;
}

.Ipt input , .Sel select , .Textarea textarea
{
	font-size: 13px;
	display: block;
	width: 100%;
	padding: 0 0 0 10px;
	min-height: 30px;
}

.Ipt input::placeholder
{
	color: #BEBEBE;
	font-size: 16px;
}

.Sel
{
	position: relative;
}

.SelDecro
{
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	width: 32px;
	height: 31px;
}

.SelDecro::after
{
	border-top: 7px solid #BEBEBE;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	width: 0;
	height: 0;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
}

.Textarea textarea
{
	color: #434343;
	width: calc(100%);
	padding: 10px;
	min-height: 80px;
	resize: vertical;
}

/*     Top     */
.Top
{
	background: rgba(0,0,0,.8);
	width: 40px;
	height: 40px;
	border-radius: 999rem;
	position: fixed;
	bottom: 15px;
	right: 20px;
	text-align: center;
	z-index: 10;
	display: none;
	cursor: pointer;
}

.Top.active
{
	display: block;
}

.TopContainer
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.TopIcon
{
	color: white;
	font-size: 22px;
}

/*     箭頭 ( > )     */
.AfterArrow
{
	border-top: 2px solid white;
	border-right: 2px solid white;	
	display: inline-block;
	width: 10px;
	height: 10px;
}

.AfterArrow.right
{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

/*     彈窗     */
.WindowBox
{
	background: rgba(0,0,0,0.8);
	width: 100%;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 15;
	display: none;
}

.WindowBox.active
{
	display: block;
}

.WindowContainer
{
	background: #F5F4F1;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.6);
	position: absolute;
	width: calc(100% - 40px);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 13;
}

.WindowTop
{
	background: #837569;
	width: 100%;
	padding: 8px 20px;
	border-collapse: separate;
}

.WindowTit
{
	color: white;
	font-size: 16px;
	font-weight: 600;
}

.WindowX
{
	color: white;
	text-align: right;
	font-size: 15px;
	width: 15px;
}

.WindowContent
{
	width: calc(100% - 40px);
	padding: 20px 20px 0 20px;
	margin: 0 0 20px 0;
	word-break: break-all;
	max-height: 60vh;
	min-height: 25vh;
	overflow-y: scroll;
	display: none;
}

.WindowContent.active
{
	display: block;
}

.WindowBtnTable
{
	border-collapse: separate;
	width: 100%;
	padding: 0 20px;
	text-align: center;
}

.WindowBtnTd
{
	background: linear-gradient(to bottom, #F9D5B4 0%,#F5C79C 5%,#F0B479 10%,#EEAD6C 15%,#E18B49 45%,#DE8946 50%,#C2752D 100%);
	box-shadow: 0 2px 0 0 #A4511C;
}

.WindowBtnTxt
{
	
	color: white;
	text-shadow: 0 1px 0 #77370E;
	display: inline-block;
	min-width: 50px;
	font-size: 12px;
	font-weight: 600;
	padding: 20px 0;
	margin: -4px 0 0 0;
}

.WindowBg
{
	width: 100%;
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 12;
}

/*     按鈕     */
.BtnAny
{
	background: linear-gradient(to right, #EA76AC 0%,#7B73F2 100%);
	color: white;
	padding: 5px 0;
	min-width: 110px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	text-align: center;
}

/*     按鈕-查看更多     */
.BtnMoreBox
{
	padding: 50px 0 0 0;
	width: 100%;
	text-align: center;
}

.BtnMore , .BtnMoreTxt
{
	display: inline-block;
}

.BtnMore
{
	background: #E3919C;
	border-radius: 3px;
	padding: 10px 5px;
	min-width: 130px;	
	cursor: pointer;
}

.BtnMore:hover
{
	opacity: .8;
}

.BtnMoreTxt
{
	color: white;
	font-size: 16px;
	font-weight: 600;
}

/*     按鈕-返回     */
.BtnBackBox
{
	width: 100%;
	margin: 0 0 40px 0;
}

.BtnBack , .BtnBackTxt
{
	display: inline-block;
}

.BtnBack
{
	background: #E3919C;
	border-radius: 3px;
    	padding: 5px 10px;
	cursor: pointer;
	text-align: center;
}

.BtnBack:hover
{
	background: #e76473;
}

.BtnBackTxt
{
	color: white;
	font-size: 16px;
	font-weight: 600;
}

.BtnBackTxt i
{
	margin: 0 5px 0 0;
}

@keyframes fadeIn
{
	from
	{
		opacity: 0;
	}

	to
	{
		opacity: 1;
	}
}

/*     電腦/手機     */
.ModePc
{
	display: block;
}

.ModeMobile
{
	display: none;
}

/*     框架     */
.MainBox
{
	width: 100%;
}

.MainContainer
{
	width: 1000px;
	margin: 0 auto;
	padding: 80px 0;
}

.MainContent
{
	background: rgba(255,255,255,.5);
	padding: 90px;
	box-sizing: border-box;
	width: 100%;
	word-break: break-word;
}

/*     標題     */
.MainTopicBox
{
	width: 100%;
	margin: 0 0 10px 0;
}

.MainTopicTxt
{
	color: #2C2723;
	font-size: 60px;
	font-weight: 600;
	width: 100%;
}

/*     詳細內容     */
.DeatilImg
{
	max-width: 500px;
	width: auto;
	margin: 0 auto 90px auto;
}

.DeatilTit
{
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.DeatilTxt
{
	color: #4d4d4d;
	font-weight: 600;
	font-size: 15px;
}

/*     Coming soon     */
.ComingBox
{
	background: white;
	text-align: center;
	width: calc(100% - 180px);
	box-sizing: border-box;
	padding: 60px 0;
	margin: 130px auto;
}

.ComingTxt
{
	color: #333333;
	display: inline-block;	
	word-break: break-all;
	font-size: 60px;
}

.ComingTxt span
{
	display: inline-block;
}

.ComingTxt span:first-child
{
	margin: 0 10px 0 0;
}

/*****     Nav     *****/
nav
{
	background: rgba(0,0,0,.8);
	width: 100%;
}

nav.active
{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}

.navContainer
{
	width: calc(100% - 20px);
	margin: 0 auto 0 0;
}

.navTable
{
	width: 100%;
}

.navTable td
{
	padding: 0;
}

.navTdLogo
{
	padding: 0 0 0 20px !important;
}

.navTdLogo , .navLogo
{
	width: 180px;
}

.navLogo
{
	display: block;
}

.navTdMenu
{
	width: calc(100% - 120px);	
}

.navMenuTable
{
	margin: 0 auto 0 0;
	text-align: center;
}

nav.active .navMenuTable
{
	margin: 0 0 0 20px;
}

.navMenuTd
{
	min-width: 130px;
}

.navMenuBtn
{
	color: white;
	display: block;
	opacity: .5;
	padding: 10px 0;
}

nav.active .navMenuBtn
{
	opacity: .5;
}

.navMenuBtn:hover , .navMenuBtn.active ,
nav.active .navMenuBtn:hover , nav.active .navMenuBtn.active
{
	opacity: 1;
}

.navMenuBtnTxtEn
{
	font-size: 16px;
}

.navMenuBtnTxtTw
{
	font-size: 14px;
}

.navTdMedia
{
	width: 120px;
}

nav.active .navTdMedia
{
	display: none;
}

.navMediaBtn
{
	color: white;
	display: block;
	float: right;
	font-size: 24px;
	opacity: .7;
}

.navMediaBtn:not(:last-child)
{
	margin: 0 0 0 15px;
}

.navMediaBtn:hover
{
	opacity: 1;
}

/*****     index     *****/
.indexBox
{
	background-attachment: fixed;
	width: 100%;
	height: calc(100vh - 60px);
	background-size: auto 100%;
}

/*****     home     *****/
.homeBox
{
	padding: 40px 0 0 0;
}

/*****     演出陣容 & 系列活動     *****/
.AppearTable
{
	width: 100%;
	text-align: center;
}

.AppearTd:first-child
{
	padding: 0 60px 150px 0;
}

.AppearTd:last-child
{
	padding: 0 0 150px 60px;
}

.AppearTd.active
{
	animation: fadeIn 0.5s ease-in-out;
}

.AppearImg
{
	width: 100%;
	margin: 0 0 20px 0;
}

.AppearBtn , .AppearBtnTxt
{
	display: inline-block;
}

.AppearBtn
{
	background: rgba(0,0,0,.8);
	min-width: 170px;
	max-width: 100%;
	border-radius: 5px;
}

.AppearBtn:hover
{
	background: #FEE591;
}

.AppearBtnTxt
{
	color: white;
	font-weight: 600;
	padding: 5px 5px;
}

.AppearBtn:hover .AppearBtnTxt
{
	color: #2C2723;
}

/*****     演出陣容     *****/
.artistBox .BtnMoreBox
{
	padding: 0;
}

/*****     最新消息     *****/
.newsList
{
	background: white;
	display: block;
	border-radius: 999rem;
	box-sizing: border-box;
	padding: 15px 30px;
	width: 100%;
}

.newsList:hover
{
	opacity: .9;
}

.newsList:not(:last-child)
{
	margin: 0 0 20px 0;
}

.newsListTit
{
	color: #333333;
	font-size: 16px;
	margin: 0 0 5px 0;
	font-weight: 600;
}

.newsListDate
{
	color: #999999;
	font-size: 13px;
	padding: 0 0 0 5px;
}

/*****     交通方式     *****/
.accessTable
{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 50px;
}

.accessTable > div > div > div
{
	vertical-align: top !important;
}

.accessTdTit
{
	font-weight: 600;
	width: 200px;
	max-width: 200px;
}

.accessTdTxt
{
	width: calc(100% - 200px);
	font-size: 15px;
}

.accessTdTxt > div:not(:last-child)
{
	margin: 0 0 20px 0;
}

.accessTdTxt > div > div:not(:last-child)
{
	margin: 0 0 5px 0;
}

/*****     票價     *****/
.boxTicket
{
	width: 100%;
}

.ticketBlock
{
	width: 100%;
}

.ticketBlock:not(:last-child)
{
	margin-bottom: 40px;
}

.ticketTit
{
	color: white;
	background: #26504c;
	width: calc(100% - 30px);
	padding: 15px;
	word-break: break-all;
}

.ticketBot
{
	border: 1px solid #26504c;
	width: calc(100% - 32px);
	padding: 15px;
	font-size: 15px;
}

.ticketContent > div:not(:last-child) , .ticketNote > div:not(:last-child)
{
	margin-bottom: 20px;
	word-break: break-all;
}

.ticketHref
{
	margin-bottom: 50px;
	word-break: break-all;
}

.ticketNote
{
	margin-top: 50px;
	font-size: 14px;
}

/*****     合作單位     *****/
.sponsorsTable
{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 50px;
}

.sponsorsTable > tbody > tr > td
{
	vertical-align: top;
}

.sponsorsTdTit
{
	width: 100px;
	max-width: 100px;	
}

.sponsorsTit
{
	font-weight: 600;
}

.sponsorsTdUnit
{
	vertical-align: top;
	width: calc(100% - 100px);
}

.sponsorsUnit span
{
	display: inline-block;
}

.sponsorsUnitImg
{
	width: 140px;
	display: inline-block;
}

.sponsorsUnitImg:not(:last-child)
{
	margin: 0 20px 20px 0;
}

/*****     Footer     *****/
footer
{
	background: #2E948C;
	width: 100%;
}

.footerContainer
{
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
}

.footerTable
{
	width: 100%;
}

.footerTdInf
{
	width: calc(100% - 120px);
}

.footerInfBox
{
	width: 100%;
}

.footerInfBox > div
{
	color: white;
}

.footerInfBox > div:not(:last-child)
{
	margin: 0 0 5px 0;
}