css.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. body,html {
  2. margin:0px;
  3. padding:0px;
  4. height:100%;
  5. }
  6. body{
  7. position:relative;
  8. overflow:hidden;
  9. background: #f7f7f7;
  10. }
  11. .zone{
  12. position:absolute;
  13. top:0px;
  14. left:0px;
  15. width:100%;
  16. height:100%;
  17. z-index:10;
  18. cursor:pointer;
  19. }
  20. .tip{
  21. position:absolute;
  22. top:0px;
  23. left:0px;
  24. width:100%;
  25. height:100%;
  26. text-align:center;
  27. font-size:12px;
  28. z-index:1;
  29. }
  30. .icon{
  31. position:absolute;
  32. width:100%;
  33. left:0px;
  34. height:150px;
  35. overflow:hidden;
  36. top:50%;
  37. margin-top:-90px;
  38. }
  39. table input[type=text]{
  40. width:300px;
  41. margin:8px 0px 10px 8px;
  42. }
  43. .info{
  44. position:absolute;
  45. left:0px;
  46. color:#666;
  47. font-size:14px;
  48. height:350px;
  49. top:50%;
  50. width:100%;
  51. margin-top:-175px;
  52. }
  53. table{
  54. margin:0px auto;
  55. }
  56. .dz-preview{
  57. display:none;
  58. }
  59. #full{
  60. display:none;
  61. width:100%;
  62. height:100%;
  63. position:absolute;
  64. top:0px;
  65. left:0px;
  66. background:#000;
  67. opacity:0.5;
  68. z-index:100;
  69. }
  70. #loading{
  71. display:none;
  72. width:84px;
  73. height:84px;
  74. position:absolute;
  75. left:50%;
  76. top:50%;
  77. margin-left:-42px;
  78. margin-top:-42px;
  79. z-index:101;
  80. }