/*********************** loading ************************/
|
.loading_mask {
|
position: fixed;
|
z-index: 600;
|
top: 0px;
|
left: 0px;
|
width: 100%;
|
height: 100%;
|
transform: translateY(0);
|
background: rgba(255, 255, 255, 0.6);
|
}
|
|
.loading_area {
|
display: inline-block;
|
max-width: 240px;
|
margin: 200px 0px 0px 0px;
|
border-radius: 15px;
|
background-color: rgba(0, 0, 0, 0.6);
|
font-size: 14px;
|
padding-left: 20px;
|
padding-right: 20px;
|
padding: 10px 20px 10px 20px;
|
color: #FFFFFF;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
overflow: hidden;
|
}
|
|
.loading_image {
|
width: 32px;
|
height: 32px;
|
background-image: url(../image/loading.gif);
|
background-size: 32px 32px;
|
background-repeat: no-repeat;
|
background-position: 0px 0px;
|
margin-bottom: 10px;
|
}
|
|
.loading_text {
|
position: relative;
|
height: 24px;
|
line-height: 24px;
|
text-align: center;
|
font-size: 14px;
|
}
|