header.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /* logo */
  2. .headerTop{
  3. display: flex;
  4. padding: 28px 0 21px 0;
  5. }
  6. .logoTxt{
  7. width: 200px;
  8. text-align: center;
  9. }
  10. .logoTxt h1{
  11. font-size: 22px;
  12. color: #fd9907;
  13. font-weight: bold;
  14. }
  15. .logoTxt p{
  16. font-weight: bold;
  17. font-size: 12px;
  18. color: #38b952;
  19. letter-spacing: 2px;
  20. }
  21. /* 定位 */
  22. .LocateCover{
  23. width: 155px;
  24. position: relative;
  25. text-align: center;
  26. }
  27. .LocateCover .currCity{
  28. display: inline-block;
  29. font-size: 14px;
  30. margin: 0 auto;
  31. margin-top: 5px;
  32. min-width: 88px;
  33. height: 28px;
  34. line-height: 25px;
  35. text-align: center;
  36. cursor: pointer;
  37. background-color: #fdfdfd;
  38. color: #61a830;
  39. border: 1px solid #f5f5f5;
  40. }
  41. .LocateCover .currCity:hover{
  42. background-color: #fff;
  43. position: relative;
  44. z-index: 9999;
  45. border-bottom: 0;
  46. }
  47. .LocateCover .currCity:hover .selectCityCover{
  48. display: block;
  49. }
  50. .LocateCover .currCity:hover .maskLine{
  51. display: block;
  52. }
  53. .LocateCover .currCity .maskLine{
  54. display: none;
  55. height: 6px;
  56. width: 100%;
  57. background-color: #fff;
  58. z-index: 10;
  59. top: 21px;
  60. left: 0;
  61. position: absolute;
  62. background: white;
  63. }
  64. .LocateCover .currCity i.fa-map-marker{
  65. margin-left: 5px;
  66. font-size: 14px;
  67. color: #61a830;
  68. }
  69. .LocateCover .currCity:hover .fa-chevron-down{
  70. color: #61a830;
  71. }
  72. .LocateCover .currCity i.fa-chevron-down{
  73. color: #cfcfcf;
  74. margin-left: 13px;
  75. font-size: 12px;;
  76. }
  77. .selectCityCover{
  78. position: absolute;
  79. z-index: 9;
  80. display: none;
  81. position: absolute;
  82. top: 25px;
  83. left: -1px;
  84. width: 426px;
  85. background-color: #fff;
  86. border: 1px solid #f1f1f1;
  87. -webkit-box-shadow: 2px 4px 10px rgba(0,0,0,.15);
  88. -moz-box-shadow: 2px 4px 10px rgba(0,0,0,.15);
  89. -o-box-shadow: 2px 4px 10px rgba(0,0,0,.15);
  90. box-shadow: 2px 4px 10px rgba(0,0,0,.15);
  91. padding: 20px;
  92. border-radius: 12px;
  93. z-index: 9;
  94. border-top-left-radius: 0;
  95. cursor: default;
  96. }
  97. .selectCityCover .hot_address{
  98. border-bottom: 1px solid #ececec;
  99. padding: 0 5px 6px;
  100. text-align: left;
  101. }
  102. .selectCityCover .hot_address a{
  103. color: #fd9907;
  104. font-size: 12px;
  105. padding-right: 11px;
  106. }
  107. .selectCityCover .hot_address_er{
  108. padding: 7px 5px 5px;
  109. overflow: hidden;
  110. }
  111. .selectCityCover .hot_address_er .left{
  112. float: left;
  113. width: 40px;
  114. line-height: 22px;
  115. font-size: 12px;
  116. font-weight: 700;
  117. cursor: default;
  118. }
  119. .selectCityCover .hot_address_er .right{
  120. overflow: hidden;
  121. float: left;
  122. width: 332px;
  123. }
  124. .selectCityCover .hot_address_er .right a{
  125. float: left;
  126. margin-right: 16px;
  127. line-height: 22px;
  128. font-size: 12px;
  129. }
  130. /* 搜素 */
  131. .searchCover{
  132. width: 555px;
  133. }
  134. .searchCover .searchBoxBj{
  135. font-size: 0px;
  136. width: 460px;
  137. height: 40px;
  138. margin: 0 auto;
  139. background: #61a830;
  140. }
  141. .searchCover .searchBoxBj input{
  142. font-size: 14px;
  143. width: 357px;
  144. height: 36px;
  145. outline: none;
  146. margin: 2px 0 2px 2px;
  147. border: none;
  148. border-radius: 0;
  149. padding-left: 20px;
  150. }
  151. .searchCover .searchBoxBj button{
  152. font-size: 14px;
  153. width: 101px;
  154. height: 40px;
  155. border: none;
  156. background: #61a830;
  157. color: #fff;
  158. letter-spacing: 5px;
  159. text-align: center;
  160. vertical-align: middle;
  161. }
  162. .searchCover .searchBoxBj button:active{
  163. background: #3c7b10;
  164. }
  165. /* 登录 */
  166. .not_loginCover{
  167. flex: 1;
  168. text-align: center;
  169. }
  170. .not_loginCover a{
  171. width: 118px;
  172. height: 38px;
  173. line-height: 34px;
  174. border: 1px solid #f5ae1e;
  175. background-color: #fff;
  176. margin: 0 8px;
  177. display: inline-block;
  178. }
  179. .not_loginCover a:active{
  180. background-color: #ffe8bb;
  181. }
  182. .yet_loginCover{
  183. flex: 1;
  184. }
  185. .yet_loginCover .person{
  186. display: flex;
  187. align-items: center;
  188. float: right;
  189. }
  190. .yet_loginCover .person .userHeadImg{
  191. width: 40px;
  192. height: 40px;
  193. overflow: hidden;
  194. border-radius: 50%;
  195. /* background: red; */
  196. margin-right: 10px;
  197. }
  198. .yet_loginCover .person .userHeadImg img{
  199. width: 100%;
  200. height: 100%;
  201. }
  202. .userCtrl .userCtrlTop{
  203. position: relative;
  204. }
  205. .userCtrl .userCtrlTop .userInfo{
  206. display: flex;
  207. align-items: baseline;
  208. cursor: pointer;
  209. }
  210. .userCtrlTop .userInfo >div{
  211. max-width: 83px;
  212. white-space: nowrap;
  213. overflow: hidden;
  214. text-overflow: ellipsis;
  215. margin-bottom: 3px;
  216. }
  217. .userCtrl .userCtrlBtm a{
  218. color: #3c7b10;
  219. }
  220. .yet_loginCover .person .exit a{
  221. font-size: 24px;
  222. margin-left: 10px;
  223. border-left: 1px solid #d3d3d3;
  224. padding-left: 10px;
  225. color: #4fa414;
  226. cursor: pointer;
  227. }
  228. /* 内容-合作伙伴 */
  229. .partnerCover{
  230. margin-top: 30px;
  231. border: 1px solid #e3e3e3;
  232. border-top: 1px solid #327eca;
  233. }
  234. .partnerCover .title{
  235. line-height: 40px;
  236. border-bottom: 1px solid #e3e3e3;
  237. font-size: 18px;
  238. padding-left: 20px;
  239. }
  240. .partnerCover .title i{
  241. color: #b0b0b0;
  242. font-size: 22px;
  243. vertical-align: middle;
  244. }
  245. .partnerCover .title span{
  246. font-weight: 700;
  247. /* margin-left: 10px; */
  248. }
  249. .partnerCover .partnerInner{
  250. /* padding: 20px; */
  251. height: 112px;
  252. overflow: hidden;
  253. }
  254. .partnerCover .partnerInner .partnerInnerList{
  255. width: 1500px;
  256. }
  257. .partnerCover .partnerInner .partnerInnerItem{
  258. float: left;
  259. }
  260. .partnerCover .partnerInner img{
  261. width: 89px;
  262. height: 83px;
  263. margin: 13px 10px;
  264. }
  265. /* 橘黄标题 */
  266. .orangTitle{
  267. border-left: 3px solid #ff6a28;
  268. padding-left: 8px;
  269. font-size: 16px;
  270. }