index.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. min-width: 1200px;
  5. overflow-x: hidden;
  6. }
  7. .main .wrapper {
  8. position: relative;
  9. z-index: 1;
  10. }
  11. .main:before {
  12. position: absolute;
  13. display: block;
  14. content: '';
  15. width: 150%;
  16. background: linear-gradient(134deg, #02AB79 0%, #CBFFAC 100%);
  17. height: 484px;
  18. border-radius: 0 0 50% 50%;
  19. left: -25%;
  20. top: 0;
  21. }
  22. .main .video h3 {
  23. padding: 80px 0 30px;
  24. text-align: center;
  25. color: #ffffff;
  26. font-size: 0;
  27. font-family: YouSheBiaoTiHei;
  28. width: 260px;
  29. height: 44px;
  30. background: url(../img/tit2.png) no-repeat center 80px;
  31. background-size: 260px 44px;
  32. margin: 0 auto;
  33. }
  34. .main .video p {
  35. font-size: 18px;
  36. color: #ffffff;
  37. text-align: center;
  38. margin-bottom: 50px;
  39. }
  40. .main .video .poster {
  41. width: 1200px;
  42. height: 675px;
  43. position: relative;
  44. }
  45. .main .video .poster img {
  46. display: block;
  47. width: 100%;
  48. height: 100%;
  49. background-color: #eeeeee;
  50. border-radius: 10px;
  51. }
  52. .main .video .poster video {
  53. width: 100%;
  54. height: 100%;
  55. background-color: #000;
  56. display: none;
  57. }
  58. .main .video .poster span {
  59. position: absolute;
  60. top: 50%;
  61. left: 50%;
  62. transform: translate(-50%, -50%);
  63. background-color: rgba(255, 255, 255, 0.8);
  64. border-radius: 29px;
  65. font-size: 14px;
  66. line-height: 20px;
  67. padding: 8px 16px;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. }
  72. .main .video .poster span:after {
  73. content: '';
  74. width: 30px;
  75. height: 30px;
  76. background: url(../img/icon-play.png) no-repeat;
  77. background-size: 30px 30px;
  78. margin-left: 8px;
  79. cursor: pointer;
  80. }
  81. .main .services {
  82. padding-bottom: 84px;
  83. }
  84. .main .services h3 {
  85. font-size: 26px;
  86. font-family: PingFangSC-Semibold, PingFang SC;
  87. text-align: center;
  88. padding: 100px 0 50px;
  89. }
  90. .main .services ul {
  91. display: -ms-flexbox;
  92. display: flex;
  93. -ms-flex-pack: justify;
  94. justify-content: space-between;
  95. }
  96. .main .services ul li {
  97. list-style: none;
  98. }
  99. .main .services ul li img {
  100. display: block;
  101. width: 180px;
  102. margin-bottom: 26px;
  103. }
  104. .main .services ul li > div {
  105. display: -ms-flexbox;
  106. display: flex;
  107. -ms-flex-pack: center;
  108. justify-content: center;
  109. -ms-flex-direction: column;
  110. flex-direction: column;
  111. -ms-flex-align: center;
  112. align-items: center;
  113. background-color: #F5F5F5;
  114. border-radius: 50%;
  115. width: 270px;
  116. height: 270px;
  117. transition-property: all;
  118. transition-duration: 0.3s;
  119. }
  120. .main .services ul li > div span {
  121. font-family: PingFangSC-Semibold, PingFang SC;
  122. font-weight: 600;
  123. }
  124. .main .services ul li:hover > div {
  125. transform: translateY(-20px);
  126. background-color: #02AB79;
  127. color: #ffffff;
  128. }
  129. .main .services ul li p {
  130. color: #999999;
  131. margin-top: 30px;
  132. line-height: 22px;
  133. text-align: center;
  134. }
  135. .main .cities {
  136. background: #F5F5F5;
  137. padding-bottom: 50px;
  138. }
  139. .main .cities h3 {
  140. font-size: 26px;
  141. font-family: PingFangSC-Semibold, PingFang SC;
  142. text-align: center;
  143. padding: 50px 0;
  144. }
  145. .main .cities ul {
  146. display: -ms-flexbox;
  147. display: flex;
  148. -ms-flex-pack: justify;
  149. justify-content: space-between;
  150. margin-bottom: 30px;
  151. flex-wrap: wrap;
  152. }
  153. .main .cities ul li {
  154. list-style: none;
  155. width: 224px;
  156. height: 75px;
  157. line-height: 75px;
  158. text-align: center;
  159. background-color: #ffffff;
  160. margin-bottom: 20px;
  161. }
  162. .main .cities .button {
  163. display: block;
  164. color: #ffffff;
  165. background-color: #02AB79;
  166. border-radius: 37.5px;
  167. line-height: 60px;
  168. width: 224px;
  169. text-align: center;
  170. margin: 0 auto;
  171. }
  172. .main .news {
  173. padding-bottom: 50px;
  174. }
  175. .main .news h3 {
  176. font-size: 26px;
  177. font-family: PingFangSC-Semibold, PingFang SC;
  178. text-align: center;
  179. padding: 50px 0;
  180. position: relative;
  181. }
  182. .main .news h3 .more {
  183. position: absolute;
  184. right: 0;
  185. bottom: 30px;
  186. font-size: 14px;
  187. font-weight: normal;
  188. font-family: PingFangSC-Regular, PingFang SC;
  189. }
  190. .main .news .news-list {
  191. display: -ms-flexbox;
  192. display: flex;
  193. -ms-flex-pack: justify;
  194. justify-content: space-between;
  195. }
  196. .main .news .news-list dl {
  197. list-style: none;
  198. width: 380px;
  199. border-radius: 10px;
  200. }
  201. .main .news .news-list dl dt img {
  202. display: block;
  203. width: 100%;
  204. border-radius: 10px 10px 0 0;
  205. }
  206. .main .news .news-list dl dd {
  207. background-color: #F5F5F5;
  208. padding: 20px;
  209. font-size: 16px;
  210. line-height: 30px;
  211. border-radius: 0 0 10px 10px;
  212. }
  213. .main .contact {
  214. padding-bottom: 50px;
  215. }
  216. .main .contact h3 {
  217. font-size: 26px;
  218. font-family: PingFangSC-Semibold, PingFang SC;
  219. text-align: center;
  220. padding: 50px 0;
  221. position: relative;
  222. }
  223. .main .contact .acounts {
  224. display: -ms-flexbox;
  225. display: flex;
  226. -ms-flex-pack: distribute;
  227. justify-content: space-around;
  228. -ms-flex-align: end;
  229. align-items: flex-end;
  230. }
  231. .main .contact .acounts .gzh dt {
  232. background-color: #02AB79;
  233. width: 160px;
  234. height: 160px;
  235. border-radius: 50%;
  236. display: -ms-flexbox;
  237. display: flex;
  238. -ms-flex-align: center;
  239. align-items: center;
  240. -ms-flex-pack: center;
  241. justify-content: center;
  242. }
  243. .main .contact .acounts .gzh dt img {
  244. display: block;
  245. width: 102px;
  246. }
  247. .main .contact .acounts .minip img {
  248. width: 160px;
  249. height: 160px;
  250. }
  251. .main .contact .acounts dd {
  252. margin-top: 30px;
  253. color: #02AB79;
  254. font-size: 18px;
  255. text-align: center;
  256. }