| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- @charset "utf-8";
- /* CSS Document */
- * {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- *,
- body {
- padding: 0px;
- margin: 0px;
- /* color: #222; */
- font-family: "微软雅黑";
- }
- @font-face {
- font-family: electronicFont;
- src: url(../font/DS-DIGIT.TTF);
- }
- li {
- list-style-type: none;
- }
- i {
- margin: 0px;
- padding: 0px;
- text-indent: 0px;
- }
- img {
- border: none;
- max-width: 100%;
- }
- a {
- text-decoration: none;
- color: #399bff;
- }
- a.active,
- a:focus {
- outline: none !important;
- text-decoration: none;
- }
- ol,
- ul,
- p,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- padding: 0;
- margin: 0;
- }
- a:hover {
- color: #06c;
- text-decoration: none !important;
- }
- .clearfix:after,
- .clearfix:before {
- display: table;
- content: " ";
- }
- .clearfix:after {
- clear: both;
- }
- /*谷哥滚动条样式*/
- ::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- position: absolute;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #5bc0de;
- }
- ::-webkit-scrollbar-track {
- background-color: #ddd;
- }
- .loading {
- position: fixed;
- left: 0;
- top: 0;
- font-size: 18px;
- z-index: 100000000;
- width: 100%;
- height: 100%;
- background: #1a1a1c;
- text-align: center;
- }
- .load_box {
- position: absolute;
- width: 190px;
- height: 150px;
- color: #aaa;
- left: 50%;
- top: 50%;
- margin-top: -100px;
- margin-left: -75px;
- }
- .load_box img {
- margin: 10px auto;
- display: block;
- width: 40px;
- }
|