﻿/*alert*/
.alertBox{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background-color:rgba(74,146,255,0.6);
	font-family:  "Helvetica Neue", Helvetica, Arial, "微軟正黑體", sans-serif;
	display:none;
    z-index: 99999;
}

.alertBox>div{
	position:absolute;
	width:320px;
	min-height:150px;
	background-color:#FFF;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	border-radius:20px;
	overflow:hidden;
	border:3px solid #fff;
	padding-bottom:10px;
    line-height: 20px;
}
.alertTitle{
	position:relative;
	width:100%;
	height:25px;
	background-color:#ffd23b;
	line-height:25px;
	text-align:center;
	font-size:18px;
	color:#fff;
	margin-top:0px;
	text-shadow: 1px 3px 2px rgba(255,78,0,0.5);
}

.alertFont{
	width:100%;
	padding:10px;
	padding-top:18px;
	padding-bottom:18px;
	text-align:center;
	font-size:16px;
	min-height:60px;
}

.alertBtnBox{
	position:relative;
	width:100%;
	overflow:hidden;
	width:205px;
	margin:auto;
}
.alertBtnBox>div{
	float:left;
	width:100px;
	line-height:40px;
	text-align:center;
	border-radius:20px;
	color:#FFF;
	cursor:pointer;
}
.alertBtnBox>div:nth-child(1){
	margin-right:5px;
	background-color:#4cbf00;
}
.alertBtnBox>div:nth-child(1):hover{
	background-color:#58de00;
}
.alertBtnBox>div:nth-child(2){
	background-color:#F60;
}
.alertBtnBox>div:nth-child(2):hover{
	background-color:#ff9c00;
}
