main.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. [v-cloak] {
  6. display: none;
  7. }
  8. a {
  9. text-decoration: none;
  10. color: #000;
  11. }
  12. a:link {
  13. text-decoration: none;
  14. }
  15. a:visited {
  16. text-decoration: none;
  17. }
  18. a:hover {
  19. text-decoration: none;
  20. }
  21. a:active {
  22. text-decoration: none;
  23. }
  24. .nav{
  25. position: fixed;
  26. width: 100%;
  27. background: #fff;
  28. border-bottom:1px solid #ccc;
  29. z-index:1000;
  30. }
  31. .nav-bottom{
  32. padding-top: 74px;
  33. box-sizing: border-box;
  34. background-position: left;
  35. background-size: cover;
  36. }
  37. .nav-a {
  38. display: flex;
  39. justify-content: center;
  40. padding: 15px;
  41. align-items: center;
  42. }
  43. .nav-logo {
  44. flex: 0 0 180px;
  45. }
  46. .nav-logo img {
  47. max-width: 163px;
  48. height: 40px;
  49. }
  50. .nav-li {
  51. margin: 0 15px;
  52. text-align: center;
  53. line-height: 40px;
  54. padding: 0 10px;
  55. font-weight: 600;
  56. cursor: pointer;
  57. }
  58. .nav-selected {
  59. border-bottom: 3px solid #00a2ff;
  60. color: #00a2ff;
  61. }
  62. .nav-login {
  63. background: #00a2ff;
  64. border-radius: 5px;
  65. color: #fff;
  66. width: 150px;
  67. text-align: center;
  68. padding: 10px 0;
  69. cursor: pointer;
  70. margin-left:100px;
  71. }
  72. .banner {
  73. height: 670px;
  74. background-image: url(./../images/index_bannerbg.png);
  75. background-repeat: no-repeat;
  76. }
  77. .banner-a {
  78. width: 100%;
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: center;
  82. align-items: center;
  83. height: 100%;
  84. color: #fff;
  85. }
  86. .banner-title {
  87. font-size: 56px;
  88. letter-spacing: 8px;
  89. font-weight: 600;
  90. }
  91. .banner-title-en {
  92. font-size: 22px;
  93. font-weight: 300;
  94. line-height: 80px;
  95. }
  96. .banner-slogan {
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .banner-slogan-a {
  102. flex: 0 0 150px;
  103. text-align: center;
  104. font-size: 30px;
  105. border-right: 3px solid #fff;
  106. }
  107. .banner-btn {
  108. background: #fff;
  109. border-radius: 5px;
  110. color: #00a2ff;
  111. width: 200px;
  112. text-align: center;
  113. padding: 10px 0;
  114. margin-top: 40px;
  115. cursor: pointer;
  116. }
  117. .tradition {
  118. text-align: center;
  119. overflow: hidden;
  120. }
  121. .tradition-title {
  122. padding: 50px 0;
  123. color: #666666;
  124. font-size: 32px;
  125. }
  126. .tradition-con {
  127. max-width: 1200px;
  128. overflow-x: hidden;
  129. margin: 30px auto;
  130. display: flex;
  131. justify-content: space-between;
  132. }
  133. .tradition-one {
  134. flex: 0 0 200px;
  135. text-align: center;
  136. }
  137. .tradition-one img {
  138. width: 85px;
  139. height: 85px;
  140. }
  141. .tradition-one-title {
  142. font-size: 18px;
  143. height: 18px;
  144. padding: 10px;
  145. overflow: hidden;
  146. text-overflow: ellipsis;
  147. display: -webkit-box;
  148. -webkit-line-clamp: 1;
  149. -webkit-box-orient: vertical;
  150. }
  151. .tradition-one-content {
  152. font-size: 14px;
  153. padding: 10px;
  154. color: #999;
  155. line-height: 24px;
  156. height: 134px;
  157. overflow: hidden;
  158. text-overflow: ellipsis;
  159. display: -webkit-box;
  160. -webkit-line-clamp: 6;
  161. -webkit-box-orient: vertical;
  162. text-align: justify;
  163. text-justify: inter-ideograph;
  164. }
  165. .advantage img {
  166. width: 40px;
  167. height: 40px;
  168. padding-top: 20px;
  169. }
  170. .advantage .tradition-one {
  171. height: 200px;
  172. overflow: hidden;
  173. background: #f7f7f7;
  174. cursor: pointer;
  175. }
  176. .advantage .tradition-one-selected {
  177. box-shadow: #ccc 0px 0px 10px 2px;
  178. background: #fff;
  179. }
  180. .advantage .tradition-one-content {
  181. height: 90px;
  182. text-align: center;
  183. }
  184. .serve {
  185. height: 600px;
  186. background-image: url(./../images/index_part4_bg.png);
  187. background-repeat: no-repeat;
  188. text-align: center;
  189. color: #fff;
  190. }
  191. .serve-con {
  192. max-width: 1200px;
  193. overflow-x: hidden;
  194. margin: 0 auto;
  195. display: flex;
  196. justify-content: center;
  197. height: 350px;
  198. padding-top: 50px;
  199. }
  200. .serve-one {
  201. flex: 0 0 220px;
  202. height: 300px;
  203. overflow: hidden;
  204. background: #1fadff;
  205. border-radius: 7px;
  206. margin: 0 2px;
  207. cursor: pointer;
  208. }
  209. .serve-one-selected {
  210. position: relative;
  211. top: 0;
  212. left: 0;
  213. /* flex:0 0 230px; */
  214. /* height:310px; */
  215. z-index: 999;
  216. box-shadow: #ccc 0px 0px 10px 2px;
  217. transform: scale(1.2);
  218. background-image: linear-gradient(to top, #1fadff, #16d0fd);
  219. }
  220. .serve-one img {
  221. width: 40px;
  222. height: 40px;
  223. padding-top: 20px;
  224. }
  225. .serve-title {
  226. line-height: 36px;
  227. font-size: 16px;
  228. font-weight: 600;
  229. border-bottom: 3px solid #fff;
  230. display: inline-block;
  231. padding-top: 5px;
  232. letter-spacing: 2px;
  233. }
  234. .serve-content {
  235. font-size: 14px;
  236. padding-top: 40px;
  237. line-height: 24px;
  238. height: 134px;
  239. overflow: hidden;
  240. text-overflow: ellipsis;
  241. display: -webkit-box;
  242. -webkit-line-clamp: 4;
  243. -webkit-box-orient: vertical;
  244. }
  245. .industry {
  246. text-align: center;
  247. margin: 0 auto;
  248. }
  249. .industry-con {
  250. max-width: 1200px;
  251. overflow: hidden;
  252. display: flex;
  253. justify-content: start;
  254. align-items: center;
  255. margin: 0 auto;
  256. }
  257. .industry-one::-webkit-scrollbar {
  258. width: 0px;
  259. height: 0px;
  260. background-color: #f5f5f5;
  261. }
  262. .industry-one {
  263. flex: 0 0 1080px;
  264. display: flex;
  265. height: 300px;
  266. overflow-x: scroll;
  267. scrollbar-width: none;
  268. -ms-overflow-style: none;
  269. margin: 0 auto;
  270. }
  271. .industry-icon {
  272. flex: 0 0 50px;
  273. color: #666666;
  274. font-size: 50px;
  275. cursor: pointer;
  276. }
  277. .industry-one-a {
  278. flex: 0 0 250px;
  279. margin: 10px;
  280. }
  281. .industry-one-a {
  282. width: 250px;
  283. height: 250px;
  284. text-align: center;
  285. line-height: 250px;
  286. height: 250px;
  287. overflow: hidden;
  288. color: #fff;
  289. }
  290. .industry-one-a-yh {
  291. background-image: url(./../images/index_part4_1.png);
  292. background-repeat: no-repeat;
  293. }
  294. .industry-one-a-jy {
  295. background-image: url(./../images/index_part4_2.png);
  296. background-repeat: no-repeat;
  297. }
  298. .industry-one-a-wl {
  299. background-image: url(./../images/index_part4_3.png);
  300. background-repeat: no-repeat;
  301. }
  302. .industry-one-a-ly {
  303. background-image: url(./../images/index_part4_4.png);
  304. background-repeat: no-repeat;
  305. }
  306. .bottom {
  307. height: 388px;
  308. background-image: url(./../images/contact_part1.png);
  309. background-position: left;
  310. background-size: cover;
  311. width: 100%;
  312. color: #fff;
  313. }
  314. .bottom-a {
  315. max-width: 1200px;
  316. margin: 0px auto;
  317. display: flex;
  318. overflow: hidden;
  319. padding-top: 30px;
  320. }
  321. .bottom-left {
  322. border-right: 1px solid #ccc;
  323. margin: 30px 0;
  324. flex: 3;
  325. display: flex;
  326. justify-content: start;
  327. }
  328. .bottom-left-one {
  329. display: flex;
  330. width: 100%;
  331. }
  332. .bottom-left-title {
  333. flex: 1;
  334. margin-right: 30px;
  335. }
  336. .bottom-left-title1 {
  337. padding-bottom: 15px;
  338. display: inline-block;
  339. border-bottom: 2px solid #fff;
  340. margin-bottom: 30px;
  341. cursor: pointer;
  342. }
  343. .bottom-left-title2 a{
  344. color:#fff;
  345. }
  346. .bottom-left-title2 {
  347. font-size: 14px;
  348. line-height: 28px;
  349. cursor: pointer;
  350. }
  351. .bottom-right {
  352. flex: 2;
  353. display: flex;
  354. justify-content: center;
  355. margin: 30px 0;
  356. /* border: 1px solid #ccc; */
  357. }
  358. .bottom-right-img {
  359. flex: 1;
  360. margin-left: 30px;
  361. text-align: center;
  362. height: 150px;
  363. }
  364. .bottom-right-img img {
  365. width: 150px;
  366. height: 150px;
  367. }
  368. .bottom-right-tip {
  369. padding-top: 20px;
  370. font-size: 14px;
  371. }
  372. .bottom-b {
  373. text-align: center;
  374. line-height: 28px;
  375. font-size: 14px;
  376. }
  377. .all-relation{
  378. position: fixed;
  379. top: 200px;
  380. right: -210px;
  381. transition: all .3s;
  382. }
  383. .all-relation-hover{
  384. right: 35px;
  385. }
  386. .relation-btn{
  387. /* position: absolute; */
  388. display: inline-block;
  389. width: 100px;
  390. text-align: center;
  391. color: #fff;
  392. }
  393. .relation-btn-one{
  394. border-radius: 10px;
  395. background-color: #7ec0fe;
  396. padding:20px 10px;
  397. cursor: pointer;
  398. margin: 10px 0;
  399. }
  400. .relation-btn-one img{
  401. width: 36px;
  402. height: 36px;
  403. }
  404. .relation {
  405. display: inline-block;
  406. width: 200px;
  407. min-height: 350px;
  408. border: 1px solid #cfcfcf;
  409. border-radius: 15px;
  410. background: #fff;
  411. }
  412. .relation-title {
  413. border-top-left-radius: 15px;
  414. border-top-right-radius: 15px;
  415. font-size: 14px;
  416. text-align: center;
  417. font-weight: 600;
  418. padding: 10px 0;
  419. background: #f5f5f5;
  420. }
  421. .relation-tel {
  422. padding: 15px 0px;
  423. align-items: center;
  424. display: flex;
  425. width: 100%;
  426. border-bottom: 1px solid #efefef;
  427. cursor: pointer;
  428. }
  429. .relation-tel1 {
  430. padding: 5px 0px;
  431. border: 0;
  432. }
  433. .relation-tel-img {
  434. flex: 0 0 50px;
  435. text-align: center;
  436. }
  437. .relation-tel img {
  438. width: 25px;
  439. height: 25px;
  440. }
  441. .relation-tel-word {
  442. font-size: 14px;
  443. }
  444. .qr-img {
  445. width: 150px;
  446. height: 150px;
  447. overflow: hidden;
  448. margin: 0 auto 15px auto;
  449. }
  450. #close-btn{
  451. position: absolute;
  452. top:-15px;
  453. right:-25px;
  454. }
  455. .qr-img img {
  456. width: 150px;
  457. height: 150px;
  458. }
  459. .detail-content{
  460. padding:30px 0;
  461. overflow: hidden;
  462. }
  463. .detail-content img{
  464. max-width: 100%;
  465. }
  466. .detail-title{
  467. font-size: 24px;
  468. font-weight: 600;
  469. text-align: center;
  470. padding:15px;
  471. }
  472. .menu {
  473. max-width: 1200px;
  474. margin: 0 auto;
  475. padding: 30px 0;
  476. }