contact.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. body {
  2. background: #f7f7f7;
  3. }
  4. .main {
  5. .container {
  6. position: relative;
  7. background: #fff;
  8. padding: 48px 58px;
  9. margin-top: -117px;
  10. box-sizing: border-box;
  11. .head {
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. color: #505050;
  16. h3 {
  17. position: relative;
  18. font-size: 24px;
  19. font-weight: normal;
  20. padding-left: 48px;
  21. &::before {
  22. content: '';
  23. display: block;
  24. width: 24px;
  25. height: 4px;
  26. background: #0688d2;
  27. position: absolute;
  28. left: 0;
  29. top: 50%;
  30. transform: translateY(-50%);
  31. }
  32. }
  33. ul > li {
  34. float: left;
  35. margin-right: 20px;
  36. & > a {
  37. display: block;
  38. font-size: 16px;
  39. }
  40. }
  41. }
  42. .cover {
  43. margin-top: 32px;
  44. img {
  45. display: block;
  46. width: 100%;
  47. }
  48. }
  49. .content {
  50. .form-title {
  51. padding: 40px 0;
  52. .title {
  53. font-size: 24px;
  54. }
  55. .line {
  56. width: 100%;
  57. height: 1px;
  58. margin-top: 18px;
  59. background: #e8e8e8;
  60. position: relative;
  61. &::before {
  62. content: '';
  63. display: block;
  64. width: 32px;
  65. height: 2px;
  66. background: #0688d2;
  67. position: absolute;
  68. left: 0;
  69. bottom: 0;
  70. }
  71. }
  72. }
  73. .contact {
  74. margin-top: 80px;
  75. margin-bottom: 80px;
  76. .item {
  77. float: left;
  78. &:nth-child(1) {
  79. padding-right: 68px;
  80. }
  81. &:nth-child(2) {
  82. padding-left: 68px;
  83. padding-right: 68px;
  84. border-left: 1px solid #e8e8e8;
  85. border-right: 1px solid #e8e8e8;
  86. }
  87. &:nth-child(3) {
  88. padding-left: 68px;
  89. }
  90. .label {
  91. font-size: 16px;
  92. color: #999999;
  93. }
  94. .text {
  95. font-size: 16px;
  96. font-weight: bold;
  97. margin-top: 16px;
  98. }
  99. }
  100. }
  101. .map {
  102. width: 100%;
  103. height: 430px;
  104. background: #f7f7f7;
  105. }
  106. .consult {
  107. margin-top: 80px;
  108. .form-item {
  109. &:nth-child(-n + 6) {
  110. .form-control {
  111. input {
  112. padding-left: 66px;
  113. }
  114. }
  115. }
  116. &:nth-child(7) {
  117. .form-control {
  118. input {
  119. padding-left: 80px;
  120. }
  121. }
  122. }
  123. &:nth-child(8) {
  124. .form-control {
  125. input {
  126. padding-left: 100px;
  127. }
  128. }
  129. }
  130. .form-control {
  131. position: relative;
  132. .form-label {
  133. position: absolute;
  134. left: 16px;
  135. top: 0;
  136. min-width: auto;
  137. color: #505050;
  138. }
  139. textarea::placeholder {
  140. color: #999;
  141. }
  142. }
  143. }
  144. .form-submit {
  145. margin-top: 68px;
  146. button {
  147. width: 526px;
  148. }
  149. }
  150. }
  151. .title {
  152. font-size: 24px;
  153. margin: 40px 0 29px;
  154. }
  155. .collapse {
  156. .collapse-wrapper {
  157. overflow: hidden;
  158. }
  159. }
  160. .job-list {
  161. .job {
  162. margin-top: 24px;
  163. &.active {
  164. .name {
  165. background-color: #0688d2;
  166. color: #fff;
  167. background-image: url(/img/contact-icon-down.png);
  168. }
  169. }
  170. .name {
  171. line-height: 48px;
  172. padding: 0 16px;
  173. border: 1px solid #dedede;
  174. box-sizing: border-box;
  175. cursor: pointer;
  176. transition: background-color 0.2s;
  177. background-repeat: no-repeat;
  178. background-position: 99% center;
  179. background-image: url(/img/contact-icon-up.png);
  180. background-color: #fff;
  181. }
  182. .requirements {
  183. font-size: 16px;
  184. line-height: 36px;
  185. padding: 16px;
  186. margin: 16px 0;
  187. }
  188. .link {
  189. padding: 0 16px;
  190. margin-bottom: 24px;
  191. a {
  192. font-size: 16px;
  193. color: #0688d2;
  194. }
  195. }
  196. }
  197. }
  198. }
  199. }
  200. }
  201. .footer {
  202. margin-top: 80px;
  203. }