﻿.alert-mask
{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .5;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    z-index: 1000;
}
.alert-modal
{
    width: 400px;
    position: fixed;
    display: none;
    z-index: 1005;
}
.alert-modal .head
{
    border-radius: 8px 8px 0 0;
    background-color: #008cd4;
    border: 1px solid #008cd4;
    border-bottom: 0;
    color: #fff;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    padding-left: 10px;
}
.alert-modal .body
{
    border-left: 1px solid #008cd4;
    border-right: 1px solid #008cd4;
    background-color: #fff;
    padding: 20px;
}
.alert-modal .foot
{
    border: 1px solid #008cd4;
    border-top: 0;
    padding: 10px;
    height: 30px;
    text-align: right;
    background-color: #fff;
}
.alert-modal .foot button
{
    padding: 0 30px;
    height: 30px;
    border-radius: 3px;
    margin: 0 auto;
    cursor: pointer;
}
.alert-modal .foot button.blue
{
    background-color: #008cd4;
    border: 1px solid #008cd4;
    color: #fff;
}
.alert-modal .foot button.white
{
    border: 1px solid #ccc;
    background-color: #fff;
}
.alert-modal .head a
{
    float: right;
    color: #fff;
    font-size: 22px;
}
.alert-modal input
{
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 8px 0;
}