style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /** 初始化 **/
  2. html,
  3. body {
  4. width: 100%;
  5. height: 100%;
  6. }
  7. body,
  8. div,
  9. dl,
  10. dt,
  11. dd,
  12. ul,
  13. ol,
  14. li,
  15. h1,
  16. h2,
  17. h3,
  18. h4,
  19. h5,
  20. h6,
  21. input,
  22. button,
  23. textarea,
  24. p,
  25. blockquote,
  26. th,
  27. td,
  28. form,
  29. pre {
  30. margin: 0;
  31. padding: 0;
  32. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  33. color: #fff;
  34. }
  35. body {
  36. -webkit-font-feature-settings: 'kern' 1;
  37. -moz-font-feature-settings: 'kern' 1;
  38. -o-font-feature-settings: 'kern' 1;
  39. text-rendering: geometricPrecision;
  40. font-family: "Microsoft YaHei";
  41. }
  42. a:active,
  43. a:hover {
  44. outline: 0
  45. }
  46. img {
  47. display: inline-block;
  48. border: none;
  49. vertical-align: middle;
  50. }
  51. li {
  52. list-style: none;
  53. }
  54. table {
  55. border-collapse: collapse;
  56. border-spacing: 0;
  57. }
  58. h1,
  59. h2,
  60. h3 {
  61. font-size: 14px;
  62. font-weight: 400;
  63. }
  64. h4,
  65. h5,
  66. h6 {
  67. font-size: 100%;
  68. font-weight: 400;
  69. }
  70. button,
  71. input,
  72. select,
  73. textarea {
  74. font-size: 100%;
  75. }
  76. input,
  77. button,
  78. textarea,
  79. select,
  80. optgroup,
  81. option {
  82. font-family: inherit;
  83. font-size: inherit;
  84. font-style: inherit;
  85. font-weight: inherit;
  86. outline: 0;
  87. }
  88. pre {
  89. white-space: pre-wrap;
  90. white-space: -moz-pre-wrap;
  91. white-space: -pre-wrap;
  92. white-space: -o-pre-wrap;
  93. word-wrap: break-word;
  94. }
  95. /** 滚动条 **/
  96. ::-webkit-scrollbar {
  97. width: 5px;
  98. height: 10px;
  99. }
  100. ::-webkit-scrollbar-button:vertical {
  101. display: none;
  102. }
  103. ::-webkit-scrollbar-track,
  104. ::-webkit-scrollbar-corner {
  105. background-color: rgba(14, 148, 234, 0.2);
  106. }
  107. ::-webkit-scrollbar-thumb {
  108. border-radius: 0;
  109. background-color: rgba(0, 0, 0, .3);
  110. }
  111. ::-webkit-scrollbar-thumb:vertical:hover {
  112. background-color: rgba(0, 0, 0, .35);
  113. }
  114. ::-webkit-scrollbar-thumb:vertical:active {
  115. background-color: rgba(0, 0, 0, .38);
  116. }
  117. .container-flex {
  118. width: 100%;
  119. height: 100%;
  120. background: url(../images/index_bg.png) left top no-repeat;
  121. background-size: 100% 100%;
  122. display: flex;
  123. flex-direction: column;
  124. outline: none;
  125. }
  126. .ljxqdp-container {
  127. width: 100vw;
  128. height: 100vh;
  129. }