| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- @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;
- }
|