1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**
- * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
- * http://cssreset.com
- */
- html, body, div, span, applet, object, iframe,
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
- a, abbr, acronym, address, big, cite, code,
- del, dfn, em, img, ins, kbd, q, s, samp,
- small, strike, strong, sub, sup, tt, var,
- b, u, i, center,
- dl, dt, dd, ol, ul, li,
- fieldset, form, label, legend,
- table, caption, tbody, tfoot, thead, tr, th, td,
- article, aside, canvas, details, embed,
- figure, figcaption, footer, header, hgroup,
- menu, nav, output, ruby, section, summary,
- time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size:100%;
- font:inherit;
- vertical-align: baseline;
- }
- /* HTML5 display-role reset for older browsers */
- article, aside, details, figcaption, figure,
- footer, header, hgroup, menu, nav, section {
- display: block;
- }
- body {
- line-height: 1;
- }
- ol, ul {
- list-style: none;
- }
- blockquote, q {
- quotes: none;
- }
- blockquote:before, blockquote:after,
- q:before, q:after {
- content: '';
- content: none;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- .hide_div
- {
- width:100%;
- height:100%;
- z-index:102;
- position:fixed;
- top:0;
- left:0;
- font-family:SimSun,sans-serif;
- font-size:14px;
- background-image:url(../images/opacity.png);
- }
- .hide_div>div>.table_th{width:100%;height:33px;border-bottom:2px solid #284360;background-color:#3b5a80;font-size:12px;color:#ffffff;position:relative;z-index:12;}
- .hide_div>div>.table_th p{line-height:33px;display:inline;margin-left:16px;}
- .hide_div>div>.table_th img{float:right;}
- .button_style
- {
- width:70px;
- height:24px;
- color:#FFF;
- font-size:12px;
- background-color:#487aa8;
- line-height:24px;
- cursor:pointer;
- border:0;
- position:absolute;
- bottom:10px;
- box-shadow:2px 1px 2px 2px #d3d3d3;
- }
- #quit{width:330px;height:100px;position:absolute;top:20%;left:40%;}
- #quit_main{height:104px;background-color:#FFFFFF;border:1px solid #f6f8fb;border-top:1px solid #284360;color:#004da2;text-align:center;position:relative;font-weight:bold;}
- #quit_main p{position:absolute;bottom:65px;left:130px;}
|