﻿/*================egAlert=================*/
#egAlertShadow {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10000;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: #000000;
}

.egAlert {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10001;
    width: 100%;
    height: 100%;
    display: none;
}

.egAlert_canvas {
    width: 400px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px;
    min-height: 120px;
    background-color: #FFFFFF;
    position: relative;
    padding: 20px;
}

.egAlert_close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #bfcbd9;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
    transition: all 0.3s;
}

.egAlert_close:hover {
    color: #20a0ff;
}

.egAlert_title {
    font-weight: bold;
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
}

.egAlert_inner {
    margin-top: 20px;
    overflow: auto;
}

.egAlert_innerTable {
    width: 100%;
}

.egAlert_content {
    line-height: 25px;
    font-size: 14px;
    text-align: left;
    color: #48576a;
}

.egAlert_tools {
    margin-top: 20px;
    height: 40px;
}

.egAlert_tools .EgButton {
    float: right;
    margin-left: 20px;
}

.egAlert_tools .EgButton[icon='cancel'] {
    /*background-color:#ff4949;*/
    background-color: #FFFFFF;
    color: #1f2d3d;
    border: solid 1px #bfcbd9;
    height: 34px;
    line-height: 34px;
}

.egAlert_tools .EgButton[icon='cancel']:before {
    color: #bfcbd9;
}

/*================EgNotify=================*/
#EgNotifyShadow {
    width: 320px;
    position: fixed;
    right: 0px;
    top: 0px;
    height: 100%;
    z-index: 20001;
}

.EgNotify {
    margin-top: 20px;
}

.EgNotifyCanvas {
    width: 260px;
    background-color: #FFFFFF;
    display: none;
    position: relative;
    left: 0px;
    top: 0px;
    overflow: auto;
    padding: 20px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px;
}

.EgNotify_close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #bfcbd9;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
    transition: all 0.3s;
}

.EgNotify_close:hover {
    color: #20a0ff;
}

.EgNotify_title {
    font-weight: bold;
    color: #333333;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
}

.EgNotify_content {
    line-height: 25px;
    font-size: 14px;
    text-align: left;
    color: #48576a;
    margin-top: 5px;
}

/*=========公共==========*/
.egMessage_icon {
    width: 50px;
    font-size: 40px;
    height: 45px;
    text-align: left;
    color: #50bfff;
    /*background-repeat:no-repeat;background-position:left top;background-size:40px 40px;*/
}

.egMessage_icon[icon='success'] {
    color: #13ce66;
}

.egMessage_icon[icon='warning'] {
    color: #f7ba2a;
}

.egMessage_icon[icon='info'] {
    color: #50bfff;
}

.egMessage_icon[icon='error'] {
    color: #ff4949;
}

.egMessage_icon[icon='ask'] {
    color: #f7ba2a;
}

.existInfoID {
    color: red;
    font-weight: bold;
    border-bottom: solid 1px red;
    margin: 0px 3px;
}