1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@charset "UTF-8";
/*查询条件中关键字查询文本框样式*/
.hidden {
    visibility: hidden;
}
#searchOpt table tbody .search-by-txt{
    width: 70% !important;
}
 
/*页面弹出框样式*/
#bombBox {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    margin-left: -260px;
    z-index: 9999999;
    width: 520px;
    background-color: #FFFFFF;
}
#bombBox .box-head {
    width: 100%;
    height: 34px;
    line-height: 34px;
    text-indent: 1.5em;
    font-size: 16px;
    font-weight: bold;
    background-color: #E1EDFB;
    background-image:url(../image/cell.png);
    background-repeat: no-repeat;
    background-position: 6px 6px;
}
#bombBox .box-list {
    width: 100%;
    margin-top: 8px;
}
#bombBox .box-list .ttl {
    margin-left: 8px;
}
#bombBox .box-list textarea {
    float: right;
    width: 82%;
    height: 200px;
    vertical-align: middle;
    border:1px solid #C6C4C4;
    font-size: 16px;
    margin-right: 4%;
    resize: none;
}
#bombBox .box-list input[type="text"] {
    float: right;
    width: 82%;
    height: 30px;
    border: 1px solid #C6C4C4;
    margin-right: 4%;
    vertical-align: middle;
}
#bombBox .btn-con{
    width:100%;
    background-color: #F1F6FC;
}
#bombBox .btn-con .right{
    float: right;
    margin: 14px 12px; 
}
#bombBox .btn-con input[type="button"] {
    /*初始化按钮*/
    font-size: 12px;
    text-decoration: none!important;
    font-family: Helvetica, Arial, sans serif;
    padding: 6px 16px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: inset 0px 0px 2px #fff;
    -o-box-shadow: inset 0px 0px 2px #fff;
    -webkit-box-shadow: inset 0px 0px 2px #fff;
    -moz-box-shadow: inset 0px 0px 2px #fff;
    /*定义颜色和样式*/
    color: #41788c;
    border: 1px solid #6fb1c7;
    background-image: -moz-linear-gradient(#aae5f7, #73d0f1);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#73d0f1), to(#aae5f7));
    background-image: -webkit-linear-gradient(#aae5f7, #73d0f1);
    background-image: -o-linear-gradient(#aae5f7, #73d0f1);
    text-shadow: 1px 1px 1px #bfeafb;
    background-color: #73d0f1;
    margin-right: 16px;
}
#bombBox .btn-con input[type="button"]:hover {
    border: 1px solid #4690ad;
    background-image: -moz-linear-gradient(#73d0f1, #aae5f7);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#aae5f7), to(#73d0f1));
    background-image: -webkit-linear-gradient(#73d0f1, #aae5f7);
    background-image: -o-linear-gradient(#73d0f1, #aae5f7);
    background-color: #aae5f7;
}
/*页面整体的遮罩层*/
#allShade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background-color:#000000;
    filter:alpha(opacity = 40);     /*IE滤镜*/
    -moz-opacity: 0.4;    /*Firfox私有*/
    opacity: 0.4;    
}