index.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. body,
  2. div,
  3. dl,
  4. dt,
  5. dd,
  6. ul,
  7. ol,
  8. li,
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6,
  15. pre,
  16. form,
  17. fieldset,
  18. input,
  19. p,
  20. blockquote,
  21. table,
  22. th,
  23. td,
  24. embed,
  25. object {
  26. padding: 0;
  27. margin: 0;
  28. }
  29. table {
  30. border-collapse: collapse;
  31. border-spacing: 0;
  32. }
  33. fieldset,
  34. img,
  35. abbr {
  36. border: 0;
  37. }
  38. address,
  39. caption,
  40. cite,
  41. code,
  42. dfn,
  43. em,
  44. h1,
  45. h2,
  46. h3,
  47. h4,
  48. h5,
  49. h6,
  50. strong,
  51. th,
  52. var {
  53. font-weight: normal;
  54. font-style: normal;
  55. }
  56. ul {
  57. list-style: none;
  58. }
  59. caption,
  60. th {
  61. text-align: left;
  62. }
  63. h1,
  64. h2,
  65. h3,
  66. h4,
  67. h5,
  68. h6 {
  69. font-size: 1em;
  70. }
  71. q:before,
  72. q:after {
  73. content: ”;
  74. }
  75. a,
  76. ins {
  77. text-decoration: none;
  78. }
  79. .contain {
  80. width: 100%;
  81. min-width: 1200px;
  82. }
  83. .contain img {
  84. width: 100%;
  85. line-height: 0;
  86. display: block;
  87. }
  88. #head {
  89. width: 100%;
  90. height: 81px;
  91. position: fixed;
  92. left: 0;
  93. right: 0;
  94. margin: auto;
  95. background-color: rgba(0, 0, 0, 0.5) !important;
  96. transition: background-color 0.3s;
  97. }
  98. .header {
  99. width: 1200px;
  100. margin: 0 auto;
  101. overflow: hidden;
  102. display: flex;
  103. justify-content: space-between;
  104. align-items: center;
  105. }
  106. .header .logo {
  107. width: 147px;
  108. height: 43px;
  109. margin: 19px 0;
  110. cursor: pointer;
  111. }
  112. .header .nav {
  113. display: flex;
  114. justify-content: space-between;
  115. }
  116. .header .nav li a {
  117. padding: 0 40px;
  118. font-weight: 400;
  119. font-size: 16px;
  120. cursor: pointer;
  121. width: 64px;
  122. text-align: center;
  123. }
  124. .header .nav li a:hover {
  125. color: #fff;
  126. }
  127. .active {
  128. color: #fff !important;
  129. }
  130. .header .nav li a {
  131. color: rgba(255, 255, 255, 0.5);
  132. }
  133. .foot {
  134. display: flex;
  135. flex-direction: column;
  136. align-items: center;
  137. background: #121821;
  138. padding: 30px 0;
  139. font-weight: 400;
  140. font-size: 13px;
  141. color: #71747A;
  142. border-bottom: 1px solid #2b374a;
  143. }
  144. .foot a {
  145. color: #71747A;
  146. }
  147. .foot2 {
  148. padding: 20px 0;
  149. }