/*
	2021/10/28 V01
*/
/*****     彈跳視窗     *****/
.jumpMsgBox
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 200;
	display: none;
}

.jumpMsgBox.active
{
	display: block;
}

.jumpMsgContainer /*     整個背景顏色     */
{
	background: #212428;
	border: 1px solid #707070;
	width: 440px;
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 15px;
	/* animation: jumpMsgPop .4s; */
}

@keyframes jumpMsgPop
{
	from
	{
		transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		opacity: 0;
	}

	to
	{
		transform: scale3d(1,1,1) translate3d(-50%,-50%,0);
		opacity: 1;
	}
}

.jumpMsgInner
{
	width: 100%;
}

.jumpMsgTop /*     標題背景顏色     */
{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	border-radius: 10px 10px 0 0;
}

.jumpMsgTit /*     標題文字顏色     */
{
	color: #FFFFFF;
	word-break: break-all;
	width: 100%;
	padding: 15px 10px;
	font-size: 30px;
}

.jumpMsgContent
{
	width: calc(100% - 40px);
	margin: 15px 20px;
	max-height: 422px;
	overflow-y: scroll;
	word-break: break-all;
	position: relative;
}

.jumpMsgContent::-webkit-scrollbar
{
	/* background-color: #333333; */
	width: 6px;	
}

.jumpMsgContent::-webkit-scrollbar-thumb
{
	background-color: #646464;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);	
	width: 6px;
	border-radius: 999rem;	
}

.jumpMsgContent img
{
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}

.jumpMsgIcon
{
	color: #FFFFFF;
	width: 100%;
	font-size: 40px;
	text-align: center;
}

.jumpMsgContentTxt /* 訊息文字 */
{
	color: #FFFFFF;
	width: 100%;
	text-align: center;
	padding: 30px 0;
	font-size: 17px;
}

.jumpMsgContentArticle /* 多文字訊息 */
{
	color: #FFFFFF;
	word-break: break-all;
	padding: 10px 0;
	font-size: 16px;
}

.jumpMsgContentArticle > div:not(:last-child)
{
	margin: 0 0 5px 0;
}

.jumpMsgBtnBox
{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	word-break: break-all;
	padding: 20px 50px;
}

.jumpMsgBtnCell
{
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.jumpMsgBtnCell:not(:last-child)
{
	margin: 0 10px 0 0;
}

.jumpMsgBtn /*     一般按鈕背景顏色     */
{
	background: #00AB06;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	word-break: break-all;
}

.jumpMsgBtn.cancel /*     取消,否定...按鈕背景顏色     */
{
	background: #707070;
}

.jumpMsgBtnTxt /*     一般按鈕文字顏色     */
{
	color: #FFFFFF;
	display: block;
	text-align: center;
	padding: 5px 16px;
	width: 100%;
	font-size: 21px;
}

.jumpMsgBtn.cancel .jumpMsgBtnTxt /*     取消,否定...按鈕文字顏色     */
{
	color: #FFFFFF;
}

.jumpMsgBg
{
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

@media screen and (max-width:767px)
{
	.jumpMsgContainer
	{
		width: calc(100% - 20px);
	}

	.jumpMsgContent
	{
		max-height: 350px;
	}

	.jumpMsgBtn /*     一般按鈕背景顏色     */
	{
		cursor: unset;
	}
}