contact.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .contact-banner {
  2. height: 670px;
  3. background-image: url(./../images/contact_bannerbg.png);
  4. background-repeat: no-repeat;
  5. color: #fff;
  6. }
  7. .contact-banner-a {
  8. max-width: 1200px;
  9. margin: 0 auto;
  10. display: flex;
  11. justify-content: start;
  12. height: 100%;
  13. flex-direction: column;
  14. align-items: start;
  15. width: 100%;
  16. }
  17. .contact-banner-left {
  18. width: 100%;
  19. flex: 1;
  20. text-align: center;
  21. display: flex;
  22. justify-content: center;
  23. flex-direction: column;
  24. }
  25. .contact-banner-left-one {
  26. font-size: 56px;
  27. letter-spacing: 8px;
  28. font-weight: 600;
  29. }
  30. .contact-banner-left-two {
  31. font-size: 22px;
  32. font-weight: 300;
  33. line-height: 80px;
  34. }
  35. .contact-banner-right {
  36. flex: 0 0 300px;
  37. width: 100%;
  38. text-align: center;
  39. }
  40. .contact-banner-right img {
  41. margin: 0;
  42. padding: 0;
  43. transform: translatey(5px);
  44. width: 597px;
  45. height: 308px;
  46. }
  47. .brief {
  48. max-width: 1200px;
  49. margin: 0 auto;
  50. text-align: center;
  51. }
  52. .brief-con {
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. }
  57. .brief-left {
  58. flex: 1;
  59. margin: 0 50px;
  60. text-align: left;
  61. text-indent: 30px;
  62. line-height: 36px;
  63. }
  64. .brief-right {
  65. flex: 0 0 578px;
  66. }
  67. .culture {
  68. max-width: 1200px;
  69. margin: 0 auto;
  70. text-align: center;
  71. }
  72. .culture-con {
  73. display: flex;
  74. justify-content: space-between;
  75. text-align: center;
  76. flex-wrap: wrap;
  77. width: 100%;
  78. margin: 30px 0;
  79. }
  80. .culture-one {
  81. width: 48%;
  82. /* height: 150px; */
  83. box-shadow: #eee 0px 0px 10px 1px;
  84. margin: 10px 0;
  85. padding: 15px 0;
  86. display: flex;
  87. align-items: center;
  88. border-radius: 5px;
  89. }
  90. .culture-one-img {
  91. width: 170px;
  92. }
  93. .culture-one-img img {
  94. width: 150px;
  95. height: 150px;
  96. text-align: center;
  97. }
  98. .culture-one-word {
  99. flex: 1;
  100. text-align: left;
  101. margin-left: 50px;
  102. margin-right: 10px;
  103. line-height: 36px;
  104. }
  105. .culture-one-word-one {
  106. font-size: 20px;
  107. font-weight: 600;
  108. }
  109. .contactus {
  110. max-width: 1200px;
  111. margin: 0 auto;
  112. text-align: center;
  113. }
  114. .contactus-con {
  115. display: flex;
  116. justify-content: center;
  117. align-items: center;
  118. }
  119. .contactus-left {
  120. flex: 0 0 578px;
  121. }
  122. .contactus-right {
  123. flex: 0 0 578px;
  124. flex: 1;
  125. margin: 0 50px;
  126. text-align: left;
  127. line-height: 42px;
  128. font-size: 20px;
  129. }
  130. @media screen and (max-width: 900px) {
  131. .brief-con {
  132. flex-direction: column;
  133. }
  134. .contactus-con {
  135. flex-direction: column;
  136. }
  137. }