1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- body,html {
- margin:0px;
- padding:0px;
- height:100%;
- }
- body{
- position:relative;
- overflow:hidden;
- background: #f7f7f7;
- }
- .zone{
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- z-index:10;
- cursor:pointer;
- }
- .tip{
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- text-align:center;
- font-size:12px;
- z-index:1;
- }
- .icon{
- position:absolute;
- width:100%;
- left:0px;
- height:150px;
- overflow:hidden;
- top:50%;
- margin-top:-90px;
- }
- table input[type=text]{
- width:300px;
- margin:8px 0px 10px 8px;
- }
- .info{
- position:absolute;
- left:0px;
- color:#666;
- font-size:14px;
- height:350px;
- top:50%;
- width:100%;
- margin-top:-175px;
- }
- table{
- margin:0px auto;
- }
- .dz-preview{
- display:none;
- }
- #full{
- display:none;
- width:100%;
- height:100%;
- position:absolute;
- top:0px;
- left:0px;
- background:#000;
- opacity:0.5;
- z-index:100;
- }
- #loading{
- display:none;
- width:84px;
- height:84px;
- position:absolute;
- left:50%;
- top:50%;
- margin-left:-42px;
- margin-top:-42px;
- z-index:101;
- }
|