common.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. @charset "utf-8";
  2. /* CSS Document */
  3. * {
  4. -webkit-box-sizing: border-box;
  5. -moz-box-sizing: border-box;
  6. box-sizing: border-box;
  7. }
  8. *,
  9. body {
  10. padding: 0px;
  11. margin: 0px;
  12. /* color: #222; */
  13. font-family: "微软雅黑";
  14. }
  15. @font-face {
  16. font-family: electronicFont;
  17. src: url(../font/DS-DIGIT.TTF);
  18. }
  19. li {
  20. list-style-type: none;
  21. }
  22. i {
  23. margin: 0px;
  24. padding: 0px;
  25. text-indent: 0px;
  26. }
  27. img {
  28. border: none;
  29. max-width: 100%;
  30. }
  31. a {
  32. text-decoration: none;
  33. color: #399bff;
  34. }
  35. a.active,
  36. a:focus {
  37. outline: none !important;
  38. text-decoration: none;
  39. }
  40. ol,
  41. ul,
  42. p,
  43. h1,
  44. h2,
  45. h3,
  46. h4,
  47. h5,
  48. h6 {
  49. padding: 0;
  50. margin: 0;
  51. }
  52. a:hover {
  53. color: #06c;
  54. text-decoration: none !important;
  55. }
  56. .clearfix:after,
  57. .clearfix:before {
  58. display: table;
  59. content: " ";
  60. }
  61. .clearfix:after {
  62. clear: both;
  63. }
  64. /*谷哥滚动条样式*/
  65. ::-webkit-scrollbar {
  66. width: 5px;
  67. height: 5px;
  68. position: absolute;
  69. }
  70. ::-webkit-scrollbar-thumb {
  71. background-color: #5bc0de;
  72. }
  73. ::-webkit-scrollbar-track {
  74. background-color: #ddd;
  75. }
  76. .loading {
  77. position: fixed;
  78. left: 0;
  79. top: 0;
  80. font-size: 18px;
  81. z-index: 100000000;
  82. width: 100%;
  83. height: 100%;
  84. background: #1a1a1c;
  85. text-align: center;
  86. }
  87. .load_box {
  88. position: absolute;
  89. width: 190px;
  90. height: 150px;
  91. color: #aaa;
  92. left: 50%;
  93. top: 50%;
  94. margin-top: -100px;
  95. margin-left: -75px;
  96. }
  97. .load_box img {
  98. margin: 10px auto;
  99. display: block;
  100. width: 40px;
  101. }