common.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. .header {
  2. width: 100%;
  3. /*height: 90px;*/
  4. position: relative;
  5. overflow: hidden;
  6. z-index:3;
  7. }
  8. .header:after {
  9. content: '';
  10. display: block;
  11. position: absolute;
  12. bottom: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 1px;
  16. background: rgba(255, 255, 255, 0.14);
  17. }
  18. .header_left {
  19. float: left;
  20. height: 90px;
  21. overflow: hidden;
  22. }
  23. .header_left .logo {
  24. width: 246px;
  25. height: 71px;
  26. border-right: 1px solid rgba(255, 255, 255, 0.14);
  27. text-align: center;
  28. padding-top: 18px;
  29. }
  30. .header_left .logo p {
  31. font-size: 12px;
  32. color: rgba(254, 254, 254, 0.5);
  33. font-weight: normal;
  34. margin-top: 2px;
  35. letter-spacing: 2px;
  36. }
  37. .header_left .nav {
  38. padding-left: 56px;
  39. height: 90px;
  40. overflow: hidden;
  41. }
  42. .header_left .nav a {
  43. display: block;
  44. float: left;
  45. font-size: 16px;
  46. color: rgba(254, 254, 254, 0.5);
  47. margin-left: 56px;
  48. line-height: 87px;
  49. transition: 0.2s;
  50. }
  51. .header_left .nav a.on {
  52. font-size: 16px;
  53. color: #3380ea;
  54. font-weight: bold;
  55. border-bottom: 2px solid #3e83e2;
  56. }
  57. .header_right {
  58. height: 90px;
  59. }
  60. .header_right .login {
  61. display: block;
  62. height: 90px;
  63. line-height: 90px;
  64. position: relative;
  65. font-size: 14px;
  66. color: #ffffff;
  67. margin-right: 31px;
  68. transition: 0.2s;
  69. }
  70. .header_right .login:hover {
  71. color: #3380ea;
  72. }
  73. .header_right .login i {
  74. display: block;
  75. width: 20px;
  76. height: 20px;
  77. background: url("../images/common/login.png") no-repeat center;
  78. position: absolute;
  79. top: 50%;
  80. left: -25px;
  81. margin-top: -10px;
  82. transition: 0.2s;
  83. }
  84. .header_right .login:hover i {
  85. display: block;
  86. width: 20px;
  87. height: 20px;
  88. background: url("../images/common/login_h.png") no-repeat center;
  89. position: absolute;
  90. top: 50%;
  91. left: -25px;
  92. margin-top: -10px;
  93. }
  94. .header_right .login:after {
  95. content: '';
  96. display: block;
  97. width: 1px;
  98. height: 14px;
  99. background: rgba(255, 255, 255, 0.26);
  100. position: absolute;
  101. top: 50%;
  102. right: -17px;
  103. margin-top: -7px;
  104. }
  105. .header_right .register {
  106. display: block;
  107. height: 90px;
  108. line-height: 90px;
  109. font-size: 14px;
  110. color: #ffffff;
  111. font-size: 14px;
  112. color: #ffffff;
  113. margin-right: 38px;
  114. transition: 0.2s;
  115. }
  116. .header_right .register:hover {
  117. color: #3380ea;
  118. }
  119. .crumbs {
  120. width: 1200px;
  121. height: 50px;
  122. margin: auto;
  123. }
  124. .crumbs .a1 {
  125. font-size: 12px;
  126. color: rgba(255, 255, 255, 0.4);
  127. line-height: 50px;
  128. position: relative;
  129. margin-left: 18px;
  130. }
  131. .crumbs .a1:after {
  132. content: '';
  133. display: block;
  134. width: 12px;
  135. height: 7px;
  136. background: url("../images/common/point_1.png") no-repeat center;
  137. position: absolute;
  138. top: 50%;
  139. left: -18px;
  140. margin-top: -3.5px;
  141. }
  142. .crumbs .a2 {
  143. font-size: 12px;
  144. color: rgba(255, 255, 255, 0.4);
  145. line-height: 50px;
  146. position: relative;
  147. margin: 0 17px 0 7px;
  148. }
  149. .crumbs .a2:after {
  150. content: '';
  151. display: block;
  152. position: absolute;
  153. top: 50%;
  154. right: -17px;
  155. width: 8px;
  156. height: 5px;
  157. margin-top: -2.5px;
  158. background: url("../images/common/point_2.png") no-repeat center;
  159. }
  160. .crumbs .a2:last-child:after {
  161. content: none;
  162. }