screen.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  1. body {
  2. font: Arial, Tahoma, Verdana;
  3. color: #777;
  4. font-family: '微软雅黑';
  5. font-size: 14px;
  6. margin: 0;
  7. padding: 0;
  8. }
  9. ul {
  10. list-style: none;
  11. padding: 0;
  12. }
  13. li {
  14. padding: 0;
  15. margin: 0;
  16. }
  17. a {
  18. margin: 0;
  19. padding: 0;
  20. }
  21. a, a:hover {
  22. text-decoration: none !important;
  23. }
  24. .top {
  25. width: 100%;
  26. height: 16px;
  27. background: #f14159;
  28. }
  29. .topbox {
  30. width: 1000px;
  31. margin: 0 auto;
  32. clear: both;
  33. height: 16px;
  34. border: 0px solid;
  35. }
  36. .china {
  37. color: #fff;
  38. background: #f14159;
  39. font-size: 12px;
  40. line-height: 16px;
  41. float: right;
  42. height: 16px;
  43. }
  44. .navbg {
  45. position: absolute;
  46. left: 0px;
  47. top: 0px;
  48. width: 100%;
  49. height: 76px;
  50. margin-left: 0px;
  51. transition: all 1s;
  52. border: 0px solid;
  53. background:/*#c70909*/ none;
  54. z-index: 9999;
  55. }
  56. .navbgbox {
  57. width: 100%;
  58. background: rgba(255, 255, 255, 0.9);
  59. height: 70px;
  60. border-bottom: 0px solid #c5c5c5;
  61. box-shadow: 0px 1px 3px #ccc; /*position:fixed;*/ /*background:rgba(192,192,192,0.5);*/
  62. display: block;
  63. background: #fafafa;
  64. }
  65. .nav {
  66. width: 1000px;
  67. margin: 0 auto;
  68. border: 0px solid #000;
  69. height: 70px;
  70. overflow: hiddden;
  71. }
  72. .nav_logo {
  73. display: block;
  74. float: left;
  75. }
  76. .nav_logo img {
  77. outline: 0;
  78. border: 0;
  79. display: block;
  80. }
  81. .nav_a {
  82. float: right;
  83. border: 0px solid;
  84. height: 68px;
  85. line-height: 68px;
  86. text-align: center;
  87. position: relative;
  88. }
  89. .guanggao {
  90. position: absolute;
  91. top: 27px;
  92. /* right: -120px; */
  93. left: 303px;
  94. }
  95. .nav_a a {
  96. margin-right: 16px;
  97. color: #fff;
  98. text-align: center;
  99. text-decoration: none;
  100. border: 0px solid;
  101. display: block;
  102. float: left;
  103. vertical-align: middle;
  104. min-width: 45px;
  105. font-size: 15px;
  106. font-weight: bold;
  107. color: #000;
  108. }
  109. .nav_a a:hover {
  110. border-bottom: 2px solid #330677;
  111. text-decoration: none;
  112. transition: all 1s;
  113. color: #666;
  114. transition-property: border;
  115. transition-duration: 0s;
  116. }
  117. .nav_a .cur {
  118. border-bottom: 2px solid #330677;
  119. transition: all 1s;
  120. /* color: #666; */
  121. transition-property: border;
  122. transition-duration: 0s;
  123. }
  124. /*.navbgbox .navbg .about_nav .nav_a a{ color:#000;}*/
  125. /*.nav_a a,.nav_a a:hover,.nav_a .cur{text-shadow: #fff 1px 1px 0px;}*/
  126. /*banner start*/
  127. .banner {
  128. width: 100%;
  129. background: #fff;
  130. border: 0px solid #f00;
  131. margin: 0 auto;
  132. }
  133. .bannerbg {
  134. background-size: 100%;
  135. margin: 0 auto;
  136. width: 100%;
  137. overflow: hidden;
  138. height: 270px;
  139. display: block;
  140. }
  141. .footer-bannerbg {
  142. margin: 0 auto;
  143. width: 100%;
  144. overflow: hidden;
  145. height: 250px;
  146. display: block;
  147. }
  148. .bannerbg a {
  149. padding: 0;
  150. display: block;
  151. }
  152. .bannerbg img {
  153. display: block;
  154. margin: 0 auto;
  155. border: 0;
  156. }
  157. .bannerwidth {
  158. background: url(../imgs/banner03.jpg) center center no-repeat;
  159. }
  160. .bannerwidth2 {
  161. background: url(../images/banner07.png) center center no-repeat;
  162. }
  163. .bannerwidth3 {
  164. background: url(../images/banner04.png) center center no-repeat;
  165. }
  166. .bannerwidth4 {
  167. background: url(../images/banner05.png) center center no-repeat;
  168. }
  169. .bannerwidth5 {
  170. background: url(../images/banner08.png) center center no-repeat;
  171. }
  172. .bannerwidth a {
  173. display: block;
  174. width: 100%;
  175. height: 100%;
  176. }
  177. .shade{
  178. height:100%;
  179. width:100%;
  180. background: rgba(0,0,0,.4);
  181. display: flex;
  182. align-items: center;
  183. }
  184. img {
  185. border: 0;
  186. }
  187. /* flexslider */
  188. .flexslider {
  189. margin: 0;
  190. margin: 0 auto;
  191. position: relative;
  192. height: 376px;
  193. overflow: hidden;
  194. /* background: url(../images/loading.gif) 50% no-repeat; */
  195. border: 0px solid;
  196. }
  197. .slides {
  198. margin: 0;
  199. position: relative;
  200. z-index: 1;
  201. }
  202. .slides li {
  203. margin: 0;
  204. height: 376px;
  205. }
  206. .flex-control-nav {
  207. margin: 0;
  208. padding: 0;
  209. position: absolute;
  210. bottom: 10px;
  211. z-index: 2;
  212. width: 100%;
  213. text-align: center;
  214. }
  215. .flex-control-nav li {
  216. margin: 0;
  217. padding: 0;
  218. display: inline-block;
  219. width: 14px;
  220. height: 14px;
  221. margin: 0 5px;
  222. *display: inline;
  223. zoom: 1;
  224. }
  225. .flex-control-nav a {
  226. margin: 0;
  227. padding: 0;
  228. display: inline-block;
  229. width: 14px;
  230. height: 14px;
  231. line-height: 40px;
  232. overflow: hidden;
  233. background: url(../images/dot.png) right 0 no-repeat;
  234. cursor: pointer;
  235. }
  236. .flex-control-nav .flex-active {
  237. margin: 0;
  238. background-position: 0 0;
  239. }
  240. .flex-direction-nav {
  241. margin: 0;
  242. position: absolute;
  243. z-index: 3;
  244. width: 100%;
  245. top: 45%;
  246. }
  247. .flex-direction-nav li a {
  248. margin: 0;
  249. display: block;
  250. width: 50px;
  251. height: 50px;
  252. overflow: hidden;
  253. cursor: pointer;
  254. position: absolute;
  255. }
  256. .flex-direction-nav li a.flex-prev {
  257. margin: 0;
  258. left: 40px;
  259. background: url(../images/prev.png) center center no-repeat;
  260. }
  261. .flex-direction-nav li a.flex-next {
  262. margin: 0;
  263. right: 40px;
  264. background: url(../images/next.png) center center no-repeat;
  265. }
  266. /*index_main start*/
  267. .index_main {
  268. width: 100%;
  269. margin: 0 auto;
  270. border: 0px solid;
  271. background: #f0f0f0;
  272. padding-top: 50px;
  273. padding-bottom: 60px;
  274. }
  275. .index_mainbg {
  276. width: 1000px;
  277. margin: 0 auto;
  278. clear: both;
  279. border: 0px solid;
  280. overflow: hidden;
  281. padding-left: 0px;
  282. }
  283. .index_dlbg {
  284. width: 208px;
  285. height: 315px;
  286. float: left;
  287. border: 0px solid;
  288. background: #f14144;
  289. }
  290. .in_zhi {
  291. margin-right: 56px;
  292. }
  293. .in_ji {
  294. margin-right: 56px;
  295. background: #56b303;
  296. }
  297. .in_jie {
  298. margin-right: 56px;
  299. background: #1ca697;
  300. }
  301. .in_qi {
  302. background: #ff7e19;
  303. }
  304. .in_h {
  305. color: #fff;
  306. font-size: 24px;
  307. text-align: center;
  308. margin: 20px 0 10px 0;
  309. }
  310. .in_iconbg {
  311. clear: both;
  312. overflow: hidden;
  313. width: 188px;
  314. margin: 30px 0 0px 20px;
  315. border: 0px solid;
  316. height: 140px;
  317. }
  318. .in_iconbg dt {
  319. float: left;
  320. width: 80px;
  321. height: 180px;
  322. border: 0px solid;
  323. margin-top: 10px;
  324. }
  325. .in_iconbg dd {
  326. margin: 0;
  327. padding: 0;
  328. line-height: 24px;
  329. float: left;
  330. border: 0px solid;
  331. width: 105px;
  332. display: block;
  333. }
  334. .in_iconbg dd a {
  335. color: #fff;
  336. text-decoration: none;
  337. font-size: 12px;
  338. border: 0px solid;
  339. display: block;
  340. }
  341. .line {
  342. height: 3px;
  343. border-bottom: 1px solid #fafafa;
  344. width: 80%;
  345. margin: 0 auto;
  346. }
  347. .in_more {
  348. border: 0px solid #fff;
  349. border-radius: 10px;
  350. margin: 0 auto;
  351. margin-top: 20px;
  352. width: 70%;
  353. height: 40px;
  354. }
  355. .in_more a {
  356. color: #fff;
  357. line-height: 40px;
  358. text-decoration: none;
  359. font-size: 18px;
  360. text-align: center;
  361. width: 100%;
  362. border: 1px solid;
  363. display: block;
  364. border-radius: 10px;
  365. }
  366. .in_more a:hover {
  367. color: #000;
  368. line-height: 40px;
  369. text-decoration: none;
  370. font-size: 18px;
  371. text-align: center;
  372. width: 100%;
  373. border: 0px solid;
  374. display: block;
  375. border-radius: 10px;
  376. background: #fff;
  377. }
  378. /*in_main2 start*/
  379. .in_main2 {
  380. width: 100%;
  381. margin: 0 auto;
  382. border: 0px solid;
  383. background: #fff;
  384. padding-top: 50px;
  385. padding-bottom: 80px;
  386. }
  387. .in_mian2bg {
  388. width: 1085px;
  389. margin: 0 auto;
  390. clear: both;
  391. border: 0px solid;
  392. overflow: hidden;
  393. height: 375px;
  394. }
  395. .in_h2 {
  396. width: 590px;
  397. height: 40px;
  398. line-height: 40px;
  399. color: #fff;
  400. background: #f14159;
  401. text-indent: 1em;
  402. }
  403. .in_left {
  404. float: left;
  405. }
  406. .in_news {
  407. margin-top: 20px;
  408. }
  409. .in_news dl {
  410. clear: both;
  411. margin-bottom: 15px;
  412. overflow: hidden;
  413. }
  414. .in_news dl dt {
  415. float: left;
  416. width: 159px;
  417. height: 72px;
  418. margin-right: 10px;
  419. }
  420. .in_news dl dd {
  421. float: left;
  422. width: 410px;
  423. border: 0px solid;
  424. margin: 0;
  425. padding: 0;
  426. }
  427. .in_news_h {
  428. font-weight: bold;
  429. }
  430. .in_news_h span {
  431. float: right;
  432. font-weight: 400;
  433. font-size: 12px;
  434. color: #666;
  435. }
  436. .in_news dl dd a {
  437. color: #000;
  438. text-decoration: none;
  439. }
  440. .in_news dl dd p {
  441. margin: 0;
  442. padding: 0;
  443. margin-top: 10px;
  444. border: 0px solid;
  445. word-wrap: break-word;
  446. word-break: break-all;
  447. }
  448. /*.in_left end*/
  449. .in_right {
  450. float: right;
  451. border: 0px solid;
  452. width: 470px;
  453. height: 300px;
  454. }
  455. .in_h3 {
  456. width: 465px;
  457. clear: both;
  458. }
  459. .in_ul {
  460. border: 0px solid;
  461. }
  462. .in_ul li {
  463. border: 0px solid;
  464. vertical-align: middle;
  465. margin-bottom: 10px;
  466. width: 470px;
  467. text-indent: 0.5em;
  468. word-break: break-all;
  469. }
  470. .in_ul li img {
  471. vertical-align: middle;
  472. margin-right: 4px;
  473. }
  474. .in_ul2 {
  475. width: 355px;
  476. }
  477. .footerbg {
  478. width: 100%;
  479. margin: 0px auto;
  480. background: #222;
  481. display: block;
  482. display: block;
  483. }
  484. .footer {
  485. display: flex;
  486. justify-content: center;
  487. align-items: center;
  488. width: 1200px;
  489. margin: 0 auto;
  490. height: 130px;
  491. text-align: center;
  492. padding-top: 20px;
  493. border: 0px solid #fff;
  494. padding-left: 30px;
  495. padding-bottom: 15px;
  496. }
  497. .footer .leftImg,.footer .leftImg img{
  498. height: 70px !important;
  499. }
  500. .footer span {
  501. margin-right: 20px;
  502. color: #666;
  503. text-align: center;
  504. }
  505. .footer a {
  506. font: 12px '微软雅黑';
  507. margin: 0 25px 0 0;
  508. color: #ccc;
  509. text-decoration: none;
  510. }
  511. .footer p {
  512. text-align: center;
  513. color: #ccc;
  514. padding-top: 20px;
  515. font-size: 12px;
  516. }
  517. .footer p span {
  518. color: #ccc;
  519. }
  520. /*wisdom start*/
  521. .main_se {
  522. /* width: 1000px; */
  523. overflow: hidden;
  524. border: 0px solid;
  525. margin: 0 auto;
  526. font-size: 16px;
  527. word-break: break-all;
  528. word-wrap: break-word;
  529. line-height: 25px;
  530. }
  531. .main_se .product {
  532. margin: 0 120px;
  533. }
  534. .main_se .product1 {
  535. margin: 0 120px;
  536. width: 80%;
  537. height: 80%;
  538. }
  539. .main_se .img {
  540. margin: 0 120px;
  541. }
  542. .main_se .p2 {
  543. text-align: center;
  544. }
  545. .main_se .pp {
  546. width: 1000px;
  547. text-align: center;
  548. }
  549. .main_se .p3 {
  550. text-align: center;
  551. }
  552. .wisdom_a {
  553. background: url(../images/wisdom01.png) no-repeat bottom left;
  554. width: 1000px;
  555. height: 362px;
  556. border: 0px solid #f0f;
  557. }
  558. .wisdom_b {
  559. width: 1000px;
  560. height: 362px;
  561. border: 0px solid #f0f;
  562. }
  563. .main_se h2 {
  564. font-size: 30px;
  565. border: 0px solid;
  566. margin: 0;
  567. padding: 0;
  568. margin: 50px 0 30px 0;
  569. font-weight: 400;
  570. clear: both;
  571. }
  572. .wisdom_a p {
  573. position: relative;
  574. left: 500px;
  575. top: -5px;
  576. width: 500px;
  577. line-height: 25px;
  578. font-size: 16px;
  579. word-break: break-all;
  580. word-wrap: break-word;
  581. border: 0px solid;
  582. }
  583. .wisdom_b p {
  584. position: relative;
  585. left: 500px;
  586. top: -5px;
  587. width: 500px;
  588. line-height: 25px;
  589. font-size: 16px;
  590. word-break: break-all;
  591. word-wrap: break-word;
  592. border: 0px solid;
  593. }
  594. .wisdom02 {
  595. background: url(../images/wisdom02.png) no-repeat;
  596. height: 470px;
  597. padding-top: 0px;
  598. border: 0px solid;
  599. overflow: hidden;
  600. }
  601. .wisdom02 .wisdom02_p1 {
  602. width: 466px;
  603. border: 0px solid;
  604. margin-top: 230px;
  605. border: 0px solid;
  606. }
  607. .wisdom02 .wisdom02_p2 {
  608. width: 466px;
  609. border: 0px solid;
  610. }
  611. .wisdom03 {
  612. background: url(../images/wisdom03.png) no-repeat;
  613. height: 450px;
  614. overflow: hidden;
  615. }
  616. .wisdom03 .wisdom03_p1 {
  617. width: 490px;
  618. margin-left: 510px;
  619. border: 0px solid;
  620. margin-top: 0px;
  621. }
  622. .wisdom03 .wisdom03_p2 {
  623. width: 490px;
  624. margin-left: 510px;
  625. margin-top: 180px;
  626. }
  627. .wisdom04 {
  628. width: 951px;
  629. height: 486px;
  630. background: url(../images/wisdom04.png) no-repeat;
  631. }
  632. .wisdom04_p1 {
  633. margin-top: 0px;
  634. }
  635. .wisdom05 {
  636. margin-bottom: 100px;
  637. }
  638. .wisdom05 img {
  639. margin: 0 auto;
  640. border: 0px solid;
  641. margin-left: 50px;
  642. }
  643. /*technology start*/
  644. .te_01 {
  645. background: url(../images/te_01.png) no-repeat;
  646. height: 703px;
  647. }
  648. .te_01 p {
  649. width: 470px;
  650. }
  651. .te_01 p .red {
  652. color: #f00;
  653. }
  654. .te_01 .p2 {
  655. margin: 100px 0 0 0;
  656. }
  657. .te_01 .p3 {
  658. margin: 206px 0 0 493px;
  659. border: 0px solid;
  660. width: 505px;
  661. }
  662. .te_02 {
  663. background: url(../images/te_02.png) no-repeat;
  664. height: 528px;
  665. margin-bottom: 100px;
  666. }
  667. .te_02 .te_02p {
  668. width: 460px;
  669. }
  670. .te_02 .te_02p2 {
  671. margin: 110px 0 0px 0;
  672. width: 460px;
  673. }
  674. /*product start*/
  675. .pro {
  676. width: 1000px;
  677. height: 4500px;
  678. border: 0px solid;
  679. }
  680. .product img {
  681. width: 800px;
  682. }
  683. .pro img {
  684. display: block;
  685. margin: 0 auto;
  686. margin-bottom: 00px;
  687. border: 0px solid;
  688. overflow: hidden;
  689. }
  690. .pro dl {
  691. width: 247px;
  692. overflow: hidden;
  693. border: 0px solid;
  694. float: left;
  695. margin: 0px 108px 40px 20px;
  696. }
  697. .pro .prodl_one {
  698. margin-left: 0;
  699. }
  700. .pro .prodl_three {
  701. margin-right: 0;
  702. }
  703. .pro .prodl_four {
  704. margin-left: 0;
  705. }
  706. .pro .prodl_six {
  707. margin-right: 0;
  708. }
  709. .prodlbg {
  710. background: url(../images/prodlbg.png) no-repeat;
  711. border: 0px solid;
  712. overflow: hidden;
  713. }
  714. .pro dl {
  715. text-align: left;
  716. border: 0px solid;
  717. }
  718. .pro dl img {
  719. margin: 0;
  720. }
  721. .pro dl dd {
  722. text-align: left;
  723. border: 0px solid;
  724. padding: 0;
  725. margin: 0;
  726. margin: 0 0 10px 0;
  727. }
  728. .pro dl dd span strong {
  729. color: #ccc;
  730. margin-right: 10px;
  731. font-size: 18px;
  732. font-weight: 400;
  733. }
  734. .pro dl dt {
  735. margin: 0 0 10px 0;
  736. }
  737. .pro .p2 {
  738. text-align: center;
  739. }
  740. .h3_bg2 {
  741. border-bottom: 1px solid #ef7474;
  742. }
  743. .h3_bg2 h3 {
  744. background: #ef7474;
  745. }
  746. .tab_01 {
  747. width: 1000px;
  748. border: 0px solid;
  749. margin: 40px 0 40px 0;
  750. }
  751. .t_width {
  752. width: 100px;
  753. }
  754. .tab_01 td {
  755. height: 70px;
  756. padding: 0;
  757. margin: 0;
  758. }
  759. .tab_01 img {
  760. margin-left: 10px;
  761. }
  762. h4 {
  763. color: #000;
  764. }
  765. /*about_us start*/
  766. .about_us {
  767. margin: 0 auto;
  768. }
  769. .about_us p {
  770. margin: 20px 0;
  771. }
  772. .about_us img {
  773. display: block;
  774. margin: 30px auto;
  775. }
  776. .about_us .partner {
  777. width: 60%;
  778. float: left;
  779. }
  780. .about_us .about_us-part {
  781. width: 40%;
  782. float: left;
  783. }
  784. .about_us .about_us-part img {
  785. width: 80%;
  786. margin-left: 20%;
  787. }
  788. /*kehu start*/
  789. .kehubg {
  790. width: 100%;
  791. margin: 0 auto;
  792. padding-top: 100px;
  793. }
  794. .kehubox {
  795. width: 1000px;
  796. margin: 0 auto;
  797. display: block;
  798. overflow: hidden;
  799. }
  800. .ke_tit {
  801. font-size: 28px;
  802. color: #ccc;
  803. text-align: center;
  804. margin: 20px 0;
  805. }
  806. .kehubox2 {
  807. width: 100%;
  808. background: url(../images/kehu02.jpg) no-repeat;
  809. height: 1000px;
  810. border: 0px solid;
  811. margin: 0 auto;
  812. }
  813. .ke_dlbg {
  814. width: 1000px;
  815. margin: 0 auto;
  816. border: 0px solid;
  817. overflow: hidden;
  818. padding-left: 20px;
  819. padding-top: 0px;
  820. }
  821. .ke_dlbg dl {
  822. float: left;
  823. margin: 5px 15px 10px 0;
  824. position: relative;
  825. padding: 0;
  826. border: 0px solid #ff0;
  827. width: 235px;
  828. height: 136px;
  829. }
  830. .ke_dlbg dl dt {
  831. padding: 0;
  832. width: 100%;
  833. height: 136px;
  834. border: 0px solid;
  835. }
  836. .ke_dlbg dl dd {
  837. position: absolute;
  838. top: 0;
  839. left: -40px;
  840. width: 100%;
  841. background: #000;
  842. background: rgba(0, 0, 0, 0.8);
  843. filter: Alpha(opacity=80); /*透明背景色,不透明其文字内容*/
  844. background: rgba(0, 0, 0, 0.8) none repeat scroll 0% 0%;
  845. filter: Alpha(opacity=80);
  846. }
  847. .ke_dlbg dl dd a {
  848. display: block;
  849. color: #fff;
  850. margin: 10px;
  851. }
  852. .ke_dlbg dl img {
  853. width: 235px;
  854. height: 136px;
  855. border: 0;
  856. }
  857. .kehubg2 {
  858. padding-top: 0px;
  859. }
  860. .kehubox3 {
  861. width: 1000px;
  862. margin: 20px auto;
  863. border: 0px solid;
  864. overflow: hidden;
  865. }
  866. .zhaopinbg {
  867. width: 100%;
  868. margin: 0 auto;
  869. background: url(../images/134.jpg) no-repeat top center;
  870. background-attachment: fixed;
  871. display: block;
  872. overflow: hidden;
  873. border: 0px solid;
  874. height: 720px;
  875. }
  876. .zhaopin2 h2 {
  877. color: #fff;
  878. margin: 20px 0 30px 20px;
  879. }
  880. .zhaopin2 {
  881. width: 990px;
  882. margin: 0 auto;
  883. margin-top: 200px;
  884. margin-bottom: 50px;
  885. overflow: hidden;
  886. border: 0px solid #0c0;
  887. padding-bottom: 100px;
  888. background: #000;
  889. background-color: rgba(0, 0, 0, 0.4);
  890. filter: Alpha(opacity=80);
  891. background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0 !important;
  892. }
  893. .zhaopin2 p {
  894. color: #fff;
  895. font: bold 18px '微软雅黑';
  896. width: 500px;
  897. margin: 0 auto;
  898. line-height: 50px;
  899. }
  900. /*contact start*/
  901. .conbg {
  902. background: url(../images/123.png) no-repeat;
  903. height: 600px;
  904. width: 1000px;
  905. margin-bottom: 50px;
  906. padding-top: 100px;
  907. }
  908. .conbg .con_ul {
  909. width: 850px;
  910. height: 350px;
  911. background: #000;
  912. background: rgba(0, 0, 0, 0.4);
  913. filter: Alpha(opacity=40); /*透明背景色,不透明其文字内容*/
  914. background: rgba(0, 0, 0, 0.4) none repeat scroll 0% 0%;
  915. filter: Alpha(opacity=40);
  916. margin: 0 auto;
  917. margin-top: 50px;
  918. overflow: hidden;
  919. }
  920. .conbg .con_ul {
  921. border: 0px solid;
  922. padding-left: 40px;
  923. padding-top: 50px;
  924. }
  925. .conbg .con_ul li {
  926. padding: 0;
  927. margin: 0;
  928. border: 0px dashed #ccc;
  929. text-indent: 0.5em;
  930. clear: both;
  931. height: 40px;
  932. line-height: 40px;
  933. font-size: 16px;
  934. margin-bottom: 20px;
  935. padding: 5px;
  936. color: #fff;
  937. }
  938. .conbg .con_ul li img {
  939. vertical-align: middle;
  940. margin: 0;
  941. padding: 0;
  942. margin-right: 20px;
  943. float: left;
  944. }
  945. .con_r {
  946. float: right;
  947. }
  948. .main-title::before {
  949. content: '';
  950. position: absolute;
  951. left: 30%;
  952. top: 16px;
  953. background-color: black;
  954. height: 1px;
  955. width: 120px;
  956. }
  957. .main-title::after {
  958. position: absolute;
  959. content: '';
  960. right: 30%;
  961. top: 16px;
  962. background-color: black;
  963. height: 1px;
  964. width: 120px;
  965. }
  966. .goTop {
  967. position: fixed;
  968. right: 0;
  969. bottom: 130px;
  970. width: 50px;
  971. height: 60px;
  972. background: rgba(0,0,0,.4);
  973. /* background-color: #004ea2; */
  974. z-index: 9999;
  975. display: flex;
  976. justify-content: center;
  977. align-items: center;
  978. border-radius: 10% 0 0 10%;
  979. cursor: pointer;
  980. }
  981. .goTop:hover {
  982. box-shadow: 0 0 7px rgb(0 0 0 / 50%);
  983. }
  984. .goTop span {
  985. font-size: 25px;
  986. color: #ffffff;
  987. }
  988. .bnv{
  989. font-size: 16px !important;
  990. margin-top: 25px !important;
  991. color: #000 !important;
  992. }
  993. .bnvMargin{
  994. margin: 0 !important;
  995. }
  996. .bnv a{
  997. color: #000 !important;
  998. }
  999. .bnv a:hover{
  1000. color: #666 !important;
  1001. }