﻿/*******对话框*******/
.layer{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    box-sizing: border-box;
    display: none;
}
.mask{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: rgba(0,0,0,.6);
    box-sizing: border-box;
}
.j-dialog{
    width: 220px;
    position: absolute;
    background-color: #FFFFFF;
    left: 50%;
    margin-left: -110px;
    top: 50%;
    margin-top: -80px;
    border-radius: 4px;
    overflow: hidden;
    animation: alert 0.2s ease-in-out;
    -webkit-animation: alert 0.2s ease-in-out;
    box-sizing: border-box;
}
.dg-title{
    width: 100%;
    height: 40px;
}
.dg-title h1{
    width: 92%;
    height: 100%;
    text-align: center;
    line-height: 40px;
    color: #666666;
    border-bottom: 1px solid #e8e8e8;
    margin: 0 auto;
    font-weight: normal;
    font-size: 120%;
    box-sizing: border-box;
}
.dg-msg{
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #000000;
    box-sizing: border-box;
}
.dg-btn{
    width: 100%;
    height: 40px;
    box-sizing: border-box;
}
.dg-btn a{
    display: block;
    text-decoration: none;
    width: 50%;
    height: 100%;
    float: left;
    text-align: center;
    line-height: 40px;
    color: #999999;
    box-sizing: border-box;
    background: #f8f8f8;
}
.dg-btn a:hover{
    background: #e8e8e8;
}
.cancel{
    box-sizing: border-box;
}
@keyframes alert{
	from{
		opacity: 0.4;
		transform: scale(0.2);
	}
	to{
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes alert{
	from{
		opacity: 0.4;
		-webkit-transform: scale(0.2);
	}
	to{
		opacity: 1;
		-webkit-transform: scale(1);
	}
}