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

.jumpMsgBox.active
{
	display: block;
}

.jumpMsgContainer /*     整個背景顏色     */
{
	background: white;
	width: 440px;
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 5px;
}

.jumpMsgInner
{
	width: 100%;
}

.jumpMsgTop /*     標題背景顏色     */
{
	border-bottom: 1px solid #CCCCCC;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

/* .jumpMsgTop::after
{
	background: linear-gradient(to right, #FDE8B3 0%,#CA9B47 20%,#EDD793 60%,#735638 100%);
	text-shadow: 1px 1px black;
	content: '';
	display: block;
	width: 100%;
	height: 3px;
} */

.jumpMsgTit /*     標題文字顏色     */
{
	color: #333333;
	word-break: break-all;
	width: calc(100% - 20px);
	padding: 11px 10px;
	font-size: 16px;
	font-weight: 600;
}

.jumpMsgContent
{
	width: calc(100% - 20px);
	margin: 10px auto;
	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: #a5a5a5;
	-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: #6b6b6b;
	width: 100%;
	font-size: 40px;
	text-align: center;
}

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

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

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

.jumpMsgBtnBox
{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.jumpMsgBtnCell
{}

.jumpMsgBtn /*     一般按鈕背景顏色     */
{
	background: #E08C44;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: center;
	border-radius: 0 0 5px 5px;
	box-sizing: border-box;
}

.jumpMsgBtnCell .jumpMsgBtn.noOne
{
	border-radius: 0;
}

.jumpMsgBtnCell:first-child .jumpMsgBtn.noOne
{
	border-radius: 0 0 0 5px;
}

.jumpMsgBtnCell:last-child .jumpMsgBtn.noOne
{
	border-radius: 0 0 5px 0;
}

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

.jumpMsgBtnTxt /*     一般按鈕文字顏色     */
{
	color: white;
	display: block;
	padding: 15px 0;
	width: 100%;
	font-size: 15px;
	font-weight: 600;
}

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

.jumpMsgBg
{
	background: rgba(0,0,0,0.4);
	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;
	}
}