common.css 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. }