contact.scss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. body {
  2. background-color: #f7f7f7;
  3. }
  4. .banner {
  5. width: 100%;
  6. height: 530px;
  7. img {
  8. width: 100%;
  9. height: 100%;
  10. display: block;
  11. }
  12. }
  13. .contact-content {
  14. width: 100%;
  15. min-height: 1127px;
  16. position: relative;
  17. &.consult {
  18. min-height: 1340px;
  19. }
  20. .contact-main {
  21. width: 100%;
  22. min-height: 1224px;
  23. padding: 0 58px 58px 58px;
  24. box-sizing: border-box;
  25. background-color: #ffffff;
  26. position: absolute;
  27. top: -110px;
  28. left: 0;
  29. &.consult {
  30. min-height: 1440px;
  31. }
  32. .contact-title {
  33. width: 100%;
  34. height: 110px;
  35. float: left;
  36. .contact-title-l {
  37. float: left;
  38. position: relative;
  39. &::before {
  40. content: '';
  41. width: 24px;
  42. height: 4px;
  43. background-color: #0688d2;
  44. position: absolute;
  45. top: 50%;
  46. left: 0;
  47. }
  48. p {
  49. font-size: 24px;
  50. color: #505050;
  51. line-height: 110px;
  52. padding-left: 48px;
  53. position: relative;
  54. }
  55. }
  56. .contact-title-r {
  57. box-sizing: border-box;
  58. padding: 40px 0;
  59. float: right;
  60. a {
  61. display: block;
  62. float: left;
  63. margin: 0 10px;
  64. font-size: 16px;
  65. color: #505050;
  66. line-height: 30px;
  67. text-align: center;
  68. &:hover {
  69. color: #0688d2;
  70. text-decoration: underline;
  71. }
  72. }
  73. }
  74. }
  75. .contact-image {
  76. width: 100%;
  77. height: 316px;
  78. float: left;
  79. img {
  80. width: 100%;
  81. height: 316px;
  82. display: block;
  83. }
  84. }
  85. // 联系我们CSS样式
  86. .contact-tell {
  87. width: 100%;
  88. height: 56px;
  89. float: left;
  90. margin-top: 120px;
  91. margin-bottom: 79px;
  92. .contact-tell-item {
  93. float: left;
  94. &.mid {
  95. width: 254px;
  96. box-sizing: border-box;
  97. padding-left: 64px;
  98. position: relative;
  99. margin: 0 50px;
  100. &::before {
  101. content: '';
  102. width: 1px;
  103. height: 56px;
  104. background-color: #e3e6eb;
  105. position: absolute;
  106. left: 0;
  107. top: 0;
  108. }
  109. &::after {
  110. content: '';
  111. width: 1px;
  112. height: 56px;
  113. background-color: #e3e6eb;
  114. position: absolute;
  115. right: 0;
  116. top: 0;
  117. }
  118. }
  119. h1 {
  120. font-weight: normal;
  121. font-size: 16px;
  122. line-height: 21px;
  123. margin-bottom: 16px;
  124. color: #999999;
  125. }
  126. p {
  127. font-weight: normal;
  128. font-size: 16px;
  129. line-height: 21px;
  130. color: #272727;
  131. }
  132. }
  133. }
  134. .contact-maps {
  135. width: 100%;
  136. height: 430px;
  137. float: left;
  138. .contact-maps-Baidu {
  139. width: 100%;
  140. height: 100%;
  141. background-color: #000;
  142. text-align: center;
  143. font-size: 50px;
  144. font-weight: bold;
  145. line-height: 430px;
  146. color: #ffff;
  147. }
  148. }
  149. // 人才招聘CSS样式
  150. .contact-join {
  151. width: 100%;
  152. height: auto;
  153. h1 {
  154. line-height: 100px;
  155. font-size: 24px;
  156. color: #272727;
  157. text-align: left;
  158. font-weight: normal;
  159. }
  160. .contact-join-cell {
  161. width: 100%;
  162. height: 48px;
  163. box-sizing: border-box;
  164. border: 1px solid #dedede;
  165. padding: 8px 16px;
  166. position: relative;
  167. cursor: pointer;
  168. margin-bottom: 24px;
  169. &.on {
  170. background-color: #0688d2;
  171. p {
  172. color: #fff;
  173. }
  174. span {
  175. background: url(./img/contact-icon-down.png);
  176. }
  177. }
  178. p {
  179. font-size: 16px;
  180. line-height: 32px;
  181. color: #505050;
  182. }
  183. span {
  184. display: block;
  185. width: 32px;
  186. height: 32px;
  187. background: url(./img/contact-icon-up.png);
  188. background-size: cover;
  189. position: absolute;
  190. right: 8px;
  191. top: 8px;
  192. }
  193. }
  194. .contact-join-main {
  195. width: 100%;
  196. height: auto;
  197. box-sizing: border-box;
  198. padding: 0 10px 32px 10px;
  199. display: none;
  200. p {
  201. font-size: 16px;
  202. line-height: 33px;
  203. color: #505050;
  204. }
  205. }
  206. }
  207. // 在线咨询CSS样式
  208. .contact-consult {
  209. width: 100%;
  210. height: auto;
  211. float: left;
  212. margin-top: 80px;
  213. .contact-form {
  214. width: 100%;
  215. min-height: 48px;
  216. padding: 0 16px;
  217. box-sizing: border-box;
  218. border: 1px solid #dedede;
  219. line-height: 48px;
  220. font-size: 16px;
  221. color: #505050;
  222. margin-bottom: 24px;
  223. &.none {
  224. border: none;
  225. }
  226. .label {
  227. width: 100px;
  228. line-height: 48px;
  229. float: left;
  230. }
  231. .form-input {
  232. border: none;
  233. width: 940px;
  234. height: 44px;
  235. line-height: 44px;
  236. float: left;
  237. }
  238. .form-select {
  239. border: none;
  240. width: 940px;
  241. height: 44px;
  242. line-height: 44px;
  243. float: left;
  244. }
  245. .textarea {
  246. width: 948px;
  247. height: 161px;
  248. padding: 20px 0;
  249. border: none;
  250. resize: none;
  251. outline: none;
  252. }
  253. .btn {
  254. width: 526px;
  255. height: 48px;
  256. line-height: 48px;
  257. display: block;
  258. margin: 0 auto;
  259. background-color: #0688d2;
  260. color: #fff;
  261. font-size: 16px;
  262. text-align: center;
  263. }
  264. }
  265. }
  266. }
  267. }