/*
	2021/01/18 V01
*/
/*****     彈跳視窗     *****/
.jumpMsgBox
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 200;
	display: none;
}

.jumpMsgBox.active
{
	display: block;
}

.jumpMsgContainer /*     整個背景顏色     */
{
	background: linear-gradient(to bottom, #EBEBEB 0%,#CCCCCC 100%);
	border: 2px solid white;
	width: 400px;
	max-height: 600px;
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 10px;
}

.jumpMsgInner
{
	width: 100%;
}

.jumpMsgTop /*     標題背景顏色     */
{
	border-bottom: 1px solid #808080;
	background: transparent;	
	width: calc(100% - 40px);
	margin: 0 auto;
	text-align: center;
	border-radius: 10px 10px 0 0;
}

.jumpMsgTit /*     標題文字顏色     */
{
	color: #393939;
	width: calc(100% - 20px);
	padding: 20px 10px;
	font-size: 16px;
}

.jumpMsgContent
{
	width: calc(100% - 40px);
	margin: 20px;
	max-height: 422px;
	overflow-y: scroll;
	word-break: break-all;
}

.jumpMsgContent::-webkit-scrollbar
{
	/* background-color: #333333; */
	width: 6px;	
}

.jumpMsgContent::-webkit-scrollbar-thumb
{
	background-color: #081836;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);	
	width: 6px;
	border-radius: 999rem;	
}

.jumpMsgContent img
{
	width: 60%;
	margin: 0 auto;
}

.jumpMsgIcon
{
	width: 100%;
	font-size: 40px;
	text-align: center;
}

.jumpMsgContentTxt /* 訊息文字 */
{
	color: #393939;
	width: 100%;
	text-align: center;
	padding: 30px 0;
}

.jumpMsgContentArticle /* 多文字訊息 */
{
	color: #393939;
	word-break: break-all;
}

.jumpMsgContentArticle > div:not(:last-child)
{
	margin: 0 0 5px 0;
}

.jumpMsgBtnBox
{
	width: 100%;
	padding: 15px 20px;
	border-collapse: separate;
	border-spacing: 10px 0;
}

.jumpMsgBtnCell
{
	width: 50%;
	min-width: 50%;
	max-width: 50%;
}

.jumpMsgBtn /*     一般按鈕背景顏色     */
{
	background: linear-gradient(to bottom, #DE5B5B 0%,#FFBBBB 5%,#EB5959 45%,#B42727 100%);
	border: 1px solid #C94545;
	border-radius: 5px;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.jumpMsgBtn.cancel /*     取消,否定...按鈕背景顏色     */
{
	background: linear-gradient(to bottom, #9A9A9A 0%,#FFFFFF 5%,#B7B7B7 80%,#9D9D9D 100%);
	border: 1px solid #ACACAC;
}

.jumpMsgBtnTxt /*     一般按鈕文字顏色     */
{
	color: white;
	display: block;
	padding: 10px 0;
	width: 100%;
	font-size: 15px;
}

.jumpMsgBtn.cancel .jumpMsgBtnTxt /*     取消,否定...按鈕文字顏色     */
{
	color: #393939;
}

.jumpMsgBg
{
	background: rgba(0,0,0,0.7);
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

@media screen and (max-width:1179px)
{
	.jumpMsgContainer
	{
		width: calc(100% - 30px);
		max-height: 90vh;
	}

	.jumpMsgContent
	{
		max-height: 350px;
	}

	.jumpMsgContent img
	{
		width: 90%;
	}
}

@media screen and (max-width:1179px)
{
	.jumpMsgContent
	{
		max-height: 300px;
	}
}