/*********************** window ************************/
|
.win_mask {
|
position: fixed;
|
z-index: 1000;
|
top: 0px;
|
left: 0px;
|
width: 100%;
|
height: 100%;
|
transform: translateY(0);
|
background-color: rgba(0, 0, 0, 0.5);
|
background: #000\9;
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
|
}
|
|
.win {
|
position: fixed;
|
z-index: 500;
|
color: blue;
|
top: 0px;
|
left: 0px;
|
right: 0px;
|
bottom: 0px;
|
max-width: 420px;
|
display: none;
|
text-align: center;
|
display: none;
|
}
|
|
.win-content {
|
position: fixed;
|
z-index: 1001;
|
height: 100%;
|
width: 100%;
|
}
|
|
.win-iframe {
|
width: 100%;
|
height: 100%;
|
border: 0px;
|
border-radius:4px;
|
}
|
|
/************************ dialog *************************/
|
.dialog_mask {
|
position: fixed;
|
z-index: 900;
|
top: 0px;
|
left: 0px;
|
width: 100%;
|
height: 100%;
|
transform: translateY(0);
|
background: rgba(0, 0, 0, 0.5);
|
}
|
|
.dialog {
|
background-color: white;
|
width: 80%;
|
max-width: 400px;
|
min-width: 250px;
|
margin-top: 5%;
|
text-align: left;
|
overflow: auto;
|
}
|
|
.dialog_databox {
|
background-color: white;
|
margin-top: 100px;
|
text-align: left;
|
overflow: auto;
|
width: 80%;
|
width: max-content;
|
width: -webkit-max-content;
|
width: -moz-max-content;
|
max-width: 80%;
|
}
|
.dialog_header {
|
height: 28px;
|
line-height: 28px;
|
background-color: #EFEFEF;
|
color: #1366CB;
|
font-size: 14px;
|
font-weight: bold;
|
border-bottom: #C7B2B2 1px dotted;
|
border-top: #C7B2B2 1px dotted;
|
padding-left: 10px;
|
|
}
|
|
.dialog_body {
|
height: 55px;
|
}
|
|
.databox_body {
|
/* height: 95px; */
|
min-height: 90px;
|
max-height: 200px;
|
min-width: 250px;
|
overflow: auto;
|
}
|
|
.dialog_content {
|
margin: 15px 0px 20px 20px;
|
width: 90%;
|
height: 40px;
|
/*line-height: 40px; */
|
}
|
|
.databox_content {
|
margin: 0px 20px 10px 20px;
|
|
/* height: 40px;
|
width: 90%;
|
line-height: 40px; */
|
}
|
|
.dialog_image {
|
float: left;
|
width: 28px;
|
height: 28px;
|
background-size: 100%;
|
margin: 4px 10px 0px 0px
|
}
|
|
.databox_image {
|
/* float: left; */
|
width: 28px;
|
height: 28px;
|
-moz-background-size: 100% 100%;
|
-o-background-size: 100% 100%;
|
-webkit-background-size: 100% 100%;
|
background-size: 100% 100%;
|
margin: 4px 10px 0px 0px;
|
background-image: url("../image/dialog/confirm.png");
|
}
|
|
.icon_confirm {
|
background-image: url("../image/dialog/confirm.png");
|
background-repeat: no-repeat;
|
-moz-background-size: 28px 28px;
|
-o-background-size: 28px 28px;
|
-webkit-background-size: 28px 28px;
|
background-size: 28px 28px;
|
}
|
|
.icon_alert {
|
background-image: url("../image/dialog/alert.png");
|
background-repeat: no-repeat;
|
-moz-background-size: 28px 28px;
|
-o-background-size: 28px 28px;
|
-webkit-background-size: 28px 28px;
|
background-size: 28px 28px;
|
}
|
|
.dialog_text {
|
color: #1366CB;
|
font-size: 14px;
|
}
|
|
.databox_text {
|
color: #1366CB;
|
font-size: 14px;
|
/* text-align: center; */
|
}
|
|
.dialog_footer {
|
padding: 8px 50px 8px 0px;
|
text-align: right;
|
border-top: #C7B2B2 1px dotted;
|
}
|
|
|
/*********************** 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;
|
}
|
|
/*********************** scroll ************************/
|
.scroll-x {
|
position: absolute;
|
left: 0px;
|
right: 0px;
|
bottom: 30px;
|
height: 13px;
|
background-color: #f6e9e9;
|
}
|
|
.scroll-x-slider {
|
position: absolute;
|
right: 0px;
|
width: 50px;
|
top: 0px;
|
bottom: 0px;
|
background-color: #c1c1c1;
|
cursor: pointer;
|
}
|
|
.scroll-x-slider:HOVER {
|
background-color: #b8b2b2;
|
}
|
|
.scroll-y {
|
position: absolute;
|
right: 0px;
|
width: 13px;
|
top: 0px;
|
bottom: 0px;
|
background-color: #f6e9e9;
|
}
|
|
.scrolly-y-slider {
|
position: absolute;
|
left: 0px;
|
right: 0px;
|
top: 0px;
|
height: 50px;
|
background-color: #c1c1c1;
|
cursor: pointer;
|
}
|
|
.scroll-y-slider:HOVER {
|
background-color: #b8b2b2;
|
}
|