| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- @charset "utf-8";
- html {font-size: 62.5%;}
- @media only screen and (min-width: 481px){
- html {
- font-size: 94%!important;
- }
- }
- @media only screen and (min-width: 561px){
- html {
- font-size: 109%!important;
- }
- }
- @media only screen and (min-width: 641px){
- html {
- font-size: 125%!important;
- }
- }
- body,div,table,ul,ol,li,form,input,textarea,p,tr,td,button,img,a,tr,td {
- margin: 0px;
- padding: 0px;
- }
- a,a:link,a:visited,a:hover {
- text-decoration: none;
- }
- IMG {
- border: none;
- margin: 0px;
- padding: 0px;
- }
- ol,ul {
- list-style: none;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- html,body {
- text-align: center;
- }
- .clear {
- clear: both;
- }
- .round {
- padding: 0px;
- border: none;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- color: #fff;
- }
- #footer-fix {
- width: 100%;
- position: fixed;
- z-index: 999;
- bottom: 0;
- left: 0;
- background: #e7e3e3;
- }
- #footer-fix table {
- width: 100%;
- }
- #footer-fix table td {
- width: 25%;
- padding: 8px 0px;
- text-align: center;
- }
- #footer-fix-occupying {
- width: 100%;
- background: none;
- }
- #footer-fix-occupying table {
- width: 100%;
- }
- #footer-fix-occupying table td {
- width: 25%;
- padding: 8px 0px;
- text-align: center;
- }
- /*通用弹出层*/
- .tanchu_div {
- width: 100%;
- height: 100%;
- margin: 0px;
- padding: 0px;
- position: absolute;
- z-index: 10000;
- top: 0;
- left: 0;
- background: url(../images/keepout1.png) repeat;
- text-align: center;
- vertical-align: middle;
- display: none;
- }
- input:focus {outline:none;}
|