dareway-rui
Version:
69 lines (56 loc) • 1.23 kB
CSS
.rui-appexception{
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 70%;
height: 75%;
margin: auto;
background-color: #fff;
line-height: 40px;
font-family: "Microsoft YaHei";
text-align: center;
color: #818181;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
z-index: 7777;
display: flex;
flex-direction: column;
}
.rui-appexception-hidden{
display: none;
}
.rui-appexception-closebtn{
float: right;
font-size: 25px;
padding: 5px 10px;
cursor: pointer;
text-align: right;
}
.rui-appexception-logo{
flex-shrink: 0;
margin: 50px auto 20px;
width: 223px;
height: 175px;
background: url(logo.png) center center no-repeat;
}
.rui-appexception-title{
flex-shrink: 0;
font-size: 20px;
}
.rui-appexception-showdetail{
flex-shrink: 0;
font-size: 12px;
cursor: pointer;
}
.rui-appexception-errordetail{
flex: 1 1 auto;
margin: 10px 10%;
text-align: left;
color: rgba(0,0,0,.65);
background-color: #EAF0FD;
overflow: auto;
font-size: 13px;
line-height: 1.3;
}