@charset 'utf-8';

@keyframes layerFadeIn {
    0% {
        opacity: 0;
        transform: scale(.5)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@-webkit-keyframes layerFadeIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes layerFadeIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.5)
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1)
    }
}

@-ms-keyframes layerFadeIn {
    0% {
        opacity: 0;
        -ms-transform: scale(.5);
        filter: Alpha(opacity=0)
    }

    100% {
        opacity: 1;
        -ms-transform: scale(1);
        filter: Alpha(opacity=100)
    }
}

@-o-keyframes layerFadeIn {
    0% {
        opacity: 0;
        -o-transform: scale(.5)
    }

    100% {
        opacity: 1;
        -o-transform: scale(1)
    }
}

@keyframes hideFadeIn {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    100% {
        transform: scale(.5);
        opacity: 0
    }
}

@-webkit-keyframes hideFadeIn {
    0% {
        opacity: 1;
        -webkit-transform: scale(1)
    }

    100% {
        -webkit-transform: scale(.5);
        opacity: 0
    }
}

@-moz-keyframes hideFadeIn {
    0% {
        opacity: 1;
        -moz-transform: scale(1)
    }

    100% {
        -moz-transform: scale(.5);
        opacity: 0
    }
}

@-ms-keyframes hideFadeIn {
    0% {
        opacity: 1;
        -ms-transform: scale(1)
    }

    100% {
        -ms-transform: scale(.5);
        opacity: 0;
        filter: Alpha(opacity=0)
    }
}

@-o-keyframes hideFadeIn {
    0% {
        opacity: 1;
        -webkit-transform: scale(1)
    }

    100% {
        -webkit-transform: scale(.5);
        opacity: 0
    }
}

.showAlert[data-animation=layerFadeIn] {
    animation: layerFadeIn .3s;
    -webkit-animation: layerFadeIn .3s;
    -moz-animation: layerFadeIn .3s;
    -ms-animation: layerFadeIn .3s;
    -o-animation: layerFadeIn .3s
}

.showAlert[data-animation=none] {
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none
}

.hideAlert[data-animation=layerFadeIn] {
    animation: hideFadeIn .2s forwards;
    -webkit-animation: hideFadeIn .2s forwards;
    -moz-animation: hideFadeIn .2s forwards;
    -ms-animation: hideFadeIn .2s forwards;
    -o-animation: hideFadeIn .2s forwards
}

.box {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Microsoft YaHei', '微软雅黑', 'Lantinghei SC', 'Open Sans', Arial, 'Hiragino Sans GB', 'STHeiti', 'WenQuanYi Micro Hei', SimSun, sans-serif;
    background-color: #fff;
    position: fixed;
    left: 50%;
    top: 50%;
    min-width: 500px;
    border: 1px solid #666;
    border-radius: 4px;
	overflow: hidden;
}

.box-title i {
    position: absolute;
    right: 10px;
    top: 4px;
    font-size: 25px;
    color: #999;
    cursor: pointer;
    font-style: normal
}

.box-title i:hover {
    color: #222
}

.box-title {
    position: relative;
    width: 100%;
    padding: 10px 0;
    min-height: 10px;
    text-indent: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    box-sizing: border-box;
	border-bottom: 1px solid #eee;
    background: #f4f4f4;
}

.box-content {
    width: 100%;
    padding: 20px 30px;
    font-size: 14px;
    box-sizing: border-box;
    background: url(../images/check_alt.png) no-repeat 20px 24px;
    padding-left: 65px;
	vertical-align:middle;
    line-height:1.5;
}

.full-html .box-content{
	background: none;
	padding: 20px 30px;
}

.pop-message .box-content{
	padding: 10px 20px 10px 60px;
	background-position: 15px 14px;
}

.box-button {
    width: 100%;
    padding: 10px 15px 13px 15px;
    text-align: right;
    box-sizing: border-box
}

.box-button span {
    margin: 0 5px
}

.box .btn {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid transparent
}

.box .btn:hover {
    filter: alpha(Opacity=80);
    -moz-opacity: .8;
    opacity: .8
}

.box .btn-blue {
    color: #fff;
    background-color: #6ebbf3;
}

.box .btn-blue:hover {
    background-color: #2ba8ff;
}

.box .btn-red {
    color: #fff;
    background-color: red
}

.box .btn-gray {
    color: #333;
    background-color: #eee;
	border:1px solid #ddd;
}

.box .btn-white{
    color: #333;
    background-color: #fff;
	border:1px solid #ddd;
}

.box .btn-disable {
    border: 1px solid #e6e6e6!important;
    background-color: #FBFBFB!important;
    color: #C9C9C9;
    cursor: not-allowed!important;
    box-shadow: 0 0 0 #888!important
}

.box .btn-disable:hover {
    filter: alpha(Opacity=100)!important;
    -moz-opacity: 1!important;
    opacity: 1!important;
    box-shadow: 0 0 0 #888!important
}

.box-button{
	text-align: center;
}

div.box{
    min-width:140px;
    max-width:480px;
}

div.full-html{
    min-width: 300px;
}

div.box .btn{
    border-radius:4px;
}

div.box .btn a{color: #fff}
div.warning .box-content{
    background-image: url(../images/warning_alt.png);
}
div.error .box-content{
    background-image: url(../images/error_alt.png);
}
div.loading .box-content{
    background-image: url(../images/loading.gif);
}
div.loading2 .box-content{
   background: url(../images/loading2.gif) no-repeat 20px;
}
div.pop-single-line .box-content{
	line-height:40px;	
}