news.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186
  1. @charset "UTF-8";
  2. /*主色调*/
  3. /*文字文本*/
  4. /*单行省略号*/
  5. /*多行省略号*/
  6. /*箭头*/
  7. /**a标签hoverboder效果**/
  8. /**使用vw适配**/
  9. .banner {
  10. position: relative;
  11. }
  12. .banner a {
  13. display: block;
  14. position: absolute;
  15. left: 0;
  16. right: 0;
  17. margin: 0 auto;
  18. bottom: 15%;
  19. width: 150px;
  20. height: 38px;
  21. line-height: 38px;
  22. font-size: 14px;
  23. text-align: center;
  24. color: #fff;
  25. border: 1px solid #fff;
  26. z-index: 1;
  27. overflow: hidden;
  28. }
  29. @media (min-width: 768px) {
  30. .banner a {
  31. width: 180px;
  32. height: 48px;
  33. line-height: 48px;
  34. font-size: 18px;
  35. }
  36. }
  37. .banner a:after {
  38. content: '';
  39. position: absolute;
  40. z-index: -1;
  41. -webkit-transition: width 0.3s, opacity 0.3s;
  42. transition: width 0.3s, opacity 0.3s;
  43. width: 0;
  44. height: 530px;
  45. top: 50%;
  46. left: 50%;
  47. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  48. opacity: 0;
  49. background: #000000;
  50. background: rgba(0, 0, 0, 0.2);
  51. -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  52. transform: translate3d(-50%, -50%, 0) rotate(45deg);
  53. -webkit-backface-visibility: hidden;
  54. backface-visibility: hidden;
  55. }
  56. .banner a:hover:after, .banner a:active:after {
  57. width: 100%;
  58. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  59. opacity: 1;
  60. }
  61. .banner img {
  62. width: 100%;
  63. }
  64. h2.title {
  65. color: #333;
  66. font-size: 24px;
  67. text-align: center;
  68. }
  69. @media (min-width: 768px) {
  70. h2.title {
  71. font-size: 36px;
  72. }
  73. }
  74. @media (min-width: 1200px) {
  75. h2.title {
  76. font-size: 46px;
  77. }
  78. }
  79. .media-review {
  80. padding: 50px 0;
  81. }
  82. @media (min-width: 768px) {
  83. .media-review {
  84. padding: 70px 0;
  85. }
  86. }
  87. @media (min-width: 1200px) {
  88. .media-review {
  89. padding: 100px 0;
  90. }
  91. }
  92. .media-review .row {
  93. margin-top: 30px;
  94. }
  95. @media (min-width: 768px) {
  96. .media-review .row {
  97. margin-top: 50px;
  98. }
  99. }
  100. @media (min-width: 1200px) {
  101. .media-review .row {
  102. margin-top: 80px;
  103. }
  104. }
  105. .media-review .img a {
  106. display: block;
  107. overflow: hidden;
  108. }
  109. .media-review .img a img {
  110. width: 100%;
  111. -webkit-transition: all .5s ease;
  112. transition: all .5s ease;
  113. }
  114. .media-review .img a:hover img, .media-review .img a:active img {
  115. -webkit-transform: scale(1.05);
  116. transform: scale(1.05);
  117. }
  118. .media-review .txt {
  119. margin-top: 16px;
  120. }
  121. .media-review .txt:after {
  122. content: '';
  123. display: block;
  124. clear: both;
  125. }
  126. @media (min-width: 768px) {
  127. .media-review .txt {
  128. margin-top: 26px;
  129. }
  130. }
  131. .media-review .txt h2 {
  132. float: left;
  133. color: #111;
  134. font-size: 16px;
  135. }
  136. @media (min-width: 768px) {
  137. .media-review .txt h2 {
  138. font-size: 22px;
  139. }
  140. }
  141. @media (min-width: 1200px) {
  142. .media-review .txt h2 {
  143. font-size: 26px;
  144. }
  145. }
  146. .media-review .txt a {
  147. float: right;
  148. color: #ed4747;
  149. font-size: 14px;
  150. }
  151. @media (min-width: 768px) {
  152. .media-review .txt a {
  153. margin-top: 5px;
  154. }
  155. }
  156. .media-review .txt a i {
  157. display: inline-block;
  158. width: 30px;
  159. height: 10px;
  160. -webkit-transition: all .5s ease;
  161. transition: all .5s ease;
  162. background: url("/assets/image/arrow-color.png") no-repeat center;
  163. }
  164. .media-review .txt a:hover i, .media-review .txt a:active i {
  165. background-position: center right;
  166. }
  167. .media-review ul {
  168. padding-left: 0;
  169. padding-top: 25px;
  170. }
  171. @media (min-width: 768px) {
  172. .media-review ul {
  173. padding-top: 0;
  174. padding-left: 50px;
  175. }
  176. }
  177. @media (min-width: 1200px) {
  178. .media-review ul {
  179. padding-left: 100px;
  180. }
  181. }
  182. .media-review ul li {
  183. padding-top: 20px;
  184. padding-bottom: 20px;
  185. border-bottom: 1px solid #ddd;
  186. }
  187. @media (min-width: 768px) {
  188. .media-review ul li {
  189. padding-top: 0;
  190. padding-bottom: 28px;
  191. }
  192. }
  193. .media-review ul li h2 {
  194. line-height: 1.4;
  195. color: #111;
  196. -webkit-transition: all .5s ease;
  197. transition: all .5s ease;
  198. overflow: hidden;
  199. text-overflow: ellipsis;
  200. display: -webkit-box;
  201. -webkit-box-orient: vertical;
  202. -webkit-line-clamp: 2;
  203. font-size: 16px;
  204. }
  205. @media (min-width: 768px) {
  206. .media-review ul li h2 {
  207. font-size: 22px;
  208. }
  209. }
  210. @media (min-width: 1200px) {
  211. .media-review ul li h2 {
  212. font-size: 26px;
  213. }
  214. }
  215. .media-review ul li span {
  216. display: inline-block;
  217. margin-top: 10px;
  218. color: #ed4747;
  219. font-size: 14px;
  220. }
  221. .media-review ul li span i {
  222. display: inline-block;
  223. width: 30px;
  224. height: 10px;
  225. -webkit-transition: all .5s ease;
  226. transition: all .5s ease;
  227. background: url("/assets/image/arrow-color.png") no-repeat center;
  228. }
  229. .media-review ul li:hover h2, .media-review ul li:active h2 {
  230. color: #ed4747;
  231. }
  232. .media-review ul li:hover span i, .media-review ul li:active span i {
  233. background-position: center right;
  234. }
  235. .media-review ul li ~ li {
  236. padding-top: 20px;
  237. }
  238. @media (min-width: 768px) {
  239. .media-review ul li ~ li {
  240. padding-top: 28px;
  241. }
  242. }
  243. .social {
  244. height: 220px;
  245. background: url("/assets/image/banner-social.jpg") no-repeat center;
  246. background-size: cover;
  247. }
  248. @media (min-width: 768px) {
  249. .social {
  250. height: 400px;
  251. }
  252. }
  253. @media (min-width: 1200px) {
  254. .social {
  255. height: 610px;
  256. }
  257. }
  258. .social .container {
  259. height: 100%;
  260. font-size: 0;
  261. }
  262. .social .container:after {
  263. content: "";
  264. display: inline-block;
  265. vertical-align: middle;
  266. height: 100%;
  267. }
  268. .social .txt {
  269. display: inline-block;
  270. vertical-align: middle;
  271. }
  272. .social .txt span {
  273. color: #ed4747;
  274. font-size: 14px;
  275. }
  276. @media (min-width: 768px) {
  277. .social .txt span {
  278. font-size: 16px;
  279. }
  280. }
  281. .social .txt h2 {
  282. color: #fff;
  283. line-height: 1.5;
  284. font-size: 18px;
  285. margin: 20px 0 30px;
  286. }
  287. @media (min-width: 768px) {
  288. .social .txt h2 {
  289. margin: 30px 0 70px;
  290. font-size: 36px;
  291. }
  292. }
  293. @media (min-width: 1200px) {
  294. .social .txt h2 {
  295. margin: 50px 0 100px;
  296. font-size: 46px;
  297. }
  298. }
  299. .social .txt a {
  300. font-size: 14px;
  301. color: #ed4747;
  302. }
  303. @media (min-width: 768px) {
  304. .social .txt a {
  305. font-size: 16px;
  306. }
  307. }
  308. .social .txt a:hover, .social .txt a:active {
  309. text-decoration: underline;
  310. }
  311. .industry {
  312. padding: 50px 0;
  313. }
  314. @media (min-width: 768px) {
  315. .industry {
  316. padding: 70px 0;
  317. }
  318. }
  319. @media (min-width: 1200px) {
  320. .industry {
  321. padding: 100px 0;
  322. }
  323. }
  324. .industry h2.title {
  325. margin-bottom: 10px;
  326. }
  327. @media (min-width: 768px) {
  328. .industry h2.title {
  329. margin-bottom: 20px;
  330. }
  331. }
  332. @media (min-width: 1200px) {
  333. .industry h2.title {
  334. margin-bottom: 50px;
  335. }
  336. }
  337. .industry ul li {
  338. padding: 15px 0;
  339. border-bottom: 1px solid #e0e0e0;
  340. -webkit-transition: all .5s ease;
  341. transition: all .5s ease;
  342. }
  343. .industry ul li:after {
  344. content: '';
  345. display: block;
  346. clear: both;
  347. }
  348. @media (min-width: 768px) {
  349. .industry ul li {
  350. padding: 30px 0;
  351. }
  352. }
  353. .industry ul li .time {
  354. width: 80%;
  355. float: left;
  356. font-size: 14px;
  357. color: #666;
  358. margin-top: 5px;
  359. margin-bottom: 5px;
  360. }
  361. @media (min-width: 768px) {
  362. .industry ul li .time {
  363. margin-top: 8px;
  364. width: 20%;
  365. }
  366. }
  367. .industry ul li .txt {
  368. float: left;
  369. width: 100%;
  370. }
  371. @media (min-width: 768px) {
  372. .industry ul li .txt {
  373. width: 80%;
  374. }
  375. }
  376. .industry ul li .txt a {
  377. display: inline-block;
  378. -webkit-transition: all .5s ease;
  379. transition: all .5s ease;
  380. }
  381. .industry ul li .txt a:hover h2, .industry ul li .txt a:active h2 {
  382. display: inline-block;
  383. color: #ed4747;
  384. }
  385. .industry ul li .txt h2 {
  386. color: #111;
  387. line-height: 1.6;
  388. -webkit-transition: all .5s ease;
  389. transition: all .5s ease;
  390. font-size: 16px;
  391. }
  392. @media (min-width: 768px) {
  393. .industry ul li .txt h2 {
  394. font-size: 22px;
  395. }
  396. }
  397. @media (min-width: 1200px) {
  398. .industry ul li .txt h2 {
  399. font-size: 24px;
  400. }
  401. }
  402. .industry ul li .txt span {
  403. display: block;
  404. margin-top: 5px;
  405. color: #999;
  406. font-size: 14px;
  407. }
  408. .industry ul li:hover, .industry ul li:active {
  409. background: #eee;
  410. }
  411. .view-industry:after {
  412. content: '';
  413. display: block;
  414. clear: both;
  415. }
  416. .view-industry a {
  417. display: block;
  418. float: right;
  419. color: #ed4747;
  420. margin-top: 15px;
  421. }
  422. .view-industry a i {
  423. display: inline-block;
  424. width: 30px;
  425. height: 10px;
  426. -webkit-transition: all .5s ease;
  427. transition: all .5s ease;
  428. background: url("/assets/image/arrow-color.png") no-repeat center;
  429. }
  430. .view-industry a:hover i, .view-industry a:active i {
  431. background-position: center right;
  432. }
  433. .dynamic {
  434. background: #fff;
  435. max-width: 940px;
  436. padding: 0 15px;
  437. margin: 0 auto 60px;
  438. }
  439. @media (min-width: 768px) {
  440. .dynamic {
  441. margin: 0 auto 100px;
  442. }
  443. }
  444. @media (min-width: 1200px) {
  445. .dynamic {
  446. margin: 0 auto 120px;
  447. }
  448. }
  449. .dynamic h2.title {
  450. margin-bottom: 30px;
  451. }
  452. @media (min-width: 768px) {
  453. .dynamic h2.title {
  454. margin-bottom: 50px;
  455. }
  456. }
  457. @media (min-width: 1200px) {
  458. .dynamic h2.title {
  459. margin-bottom: 80px;
  460. }
  461. }
  462. .dynamic ul li {
  463. margin-top: 20px;
  464. -webkit-transition: all .5s ease;
  465. transition: all .5s ease;
  466. }
  467. .dynamic ul li:after {
  468. content: '';
  469. display: block;
  470. clear: both;
  471. }
  472. @media (min-width: 768px) {
  473. .dynamic ul li {
  474. margin-top: 30px;
  475. }
  476. }
  477. .dynamic ul li:hover {
  478. -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  479. box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  480. }
  481. .dynamic ul li .left {
  482. float: left;
  483. padding: 0 8px;
  484. background: #f86363;
  485. color: #fff;
  486. text-align: center;
  487. width: 100%;
  488. }
  489. @media (min-width: 768px) {
  490. .dynamic ul li .left {
  491. width: 22%;
  492. }
  493. }
  494. .dynamic ul li .left .time {
  495. padding: 10px 0;
  496. }
  497. @media (min-width: 768px) {
  498. .dynamic ul li .left .time {
  499. padding: 20px 0;
  500. min-height: 180px;
  501. }
  502. }
  503. @media (min-width: 1200px) {
  504. .dynamic ul li .left .time {
  505. min-height: 210px;
  506. }
  507. }
  508. .dynamic ul li .left .time .day {
  509. font-family: "Publico-Headline-Medium";
  510. font-size: 40px;
  511. }
  512. @media (min-width: 768px) {
  513. .dynamic ul li .left .time .day {
  514. font-size: 72px;
  515. }
  516. }
  517. @media (min-width: 1200px) {
  518. .dynamic ul li .left .time .day {
  519. font-size: 94px;
  520. }
  521. }
  522. .dynamic ul li .left .time .year {
  523. font-size: 14px;
  524. }
  525. @media (min-width: 768px) {
  526. .dynamic ul li .left .time .year {
  527. font-size: 20px;
  528. }
  529. }
  530. .dynamic ul li .left .from {
  531. font-size: 14px;
  532. width: auto;
  533. overflow: hidden;
  534. text-overflow: ellipsis;
  535. white-space: nowrap;
  536. word-wrap: normal;
  537. height: 50px;
  538. line-height: 50px;
  539. border-top: 1px solid #fff;
  540. }
  541. .dynamic ul li .right {
  542. float: right;
  543. padding: 0 20px;
  544. width: 100%;
  545. background: #f2f2f2;
  546. }
  547. @media (min-width: 768px) {
  548. .dynamic ul li .right {
  549. width: 78%;
  550. padding: 0 30px;
  551. }
  552. }
  553. .dynamic ul li .right .operate {
  554. line-height: 50px;
  555. height: 50px;
  556. }
  557. .dynamic ul li .right .operate:after {
  558. content: '';
  559. display: block;
  560. clear: both;
  561. }
  562. .dynamic ul li .right .operate .share {
  563. float: left;
  564. font-size: 0;
  565. }
  566. .dynamic ul li .right .operate .share > span {
  567. cursor: pointer;
  568. color: #ed4747;
  569. display: inline-block;
  570. vertical-align: middle;
  571. font-size: 14px;
  572. padding-left: 25px;
  573. background: url("/assets/image/share.png") no-repeat left;
  574. -webkit-transition: all .5s ease;
  575. transition: all .5s ease;
  576. }
  577. .dynamic ul li .right .operate .share .share-box {
  578. display: inline-block;
  579. vertical-align: middle;
  580. display: none;
  581. -webkit-transition: all .5s ease;
  582. transition: all .5s ease;
  583. }
  584. .dynamic ul li .right .operate .share .share-box.showIn {
  585. display: inline-block;
  586. }
  587. .dynamic ul li .right .operate .detail {
  588. display: block;
  589. float: right;
  590. color: #ed4747;
  591. font-size: 14px;
  592. }
  593. .dynamic ul li .right .operate .detail i {
  594. display: inline-block;
  595. width: 30px;
  596. height: 10px;
  597. -webkit-transition: all .5s ease;
  598. transition: all .5s ease;
  599. background: url("/assets/image/arrow-color.png") no-repeat center;
  600. }
  601. .dynamic ul li .right .operate .detail:hover i, .dynamic ul li .right .operate .detail:active i {
  602. background-position: center right;
  603. }
  604. .dynamic ul li .right .txt {
  605. padding: 15px 0;
  606. }
  607. @media (min-width: 768px) {
  608. .dynamic ul li .right .txt {
  609. min-height: 180px;
  610. padding: 26px 0;
  611. }
  612. }
  613. @media (min-width: 1200px) {
  614. .dynamic ul li .right .txt {
  615. min-height: 210px;
  616. }
  617. }
  618. .dynamic ul li .right .txt span {
  619. display: block;
  620. color: #ed4747;
  621. font-size: 14px;
  622. margin-bottom: 14px;
  623. width: auto;
  624. overflow: hidden;
  625. text-overflow: ellipsis;
  626. white-space: nowrap;
  627. word-wrap: normal;
  628. }
  629. .dynamic ul li .right .txt a:hover h2, .dynamic ul li .right .txt:active h2 {
  630. color: #ed4747;
  631. }
  632. .dynamic ul li .right .txt h2 {
  633. color: #111;
  634. line-height: 1.4;
  635. -webkit-transition: all .5s ease;
  636. transition: all .5s ease;
  637. overflow: hidden;
  638. text-overflow: ellipsis;
  639. display: -webkit-box;
  640. -webkit-box-orient: vertical;
  641. -webkit-line-clamp: 2;
  642. font-size: 18px;
  643. margin-bottom: 5px;
  644. }
  645. @media (min-width: 768px) {
  646. .dynamic ul li .right .txt h2 {
  647. font-size: 24px;
  648. margin-bottom: 15px;
  649. }
  650. }
  651. @media (min-width: 1200px) {
  652. .dynamic ul li .right .txt h2 {
  653. font-size: 28px;
  654. }
  655. }
  656. .dynamic ul li .right .txt .p1, .dynamic ul li .right .txt p {
  657. display: block;
  658. color: #333;
  659. font-size: 14px;
  660. width: auto;
  661. overflow: hidden;
  662. text-overflow: ellipsis;
  663. white-space: nowrap;
  664. word-wrap: normal;
  665. }
  666. @media (min-width: 768px) {
  667. .dynamic ul li .right .txt .p1, .dynamic ul li .right .txt p {
  668. font-size: 18px;
  669. }
  670. }
  671. .social-share a {
  672. border: 0 !important;
  673. color: #ed4747 !important;
  674. }
  675. .social-share a:hover, .social-share a:active {
  676. background: #ed4747 !important;
  677. color: #fff !important;
  678. }
  679. @media (min-width: 768px) {
  680. .repository {
  681. background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, #eeeeee), to(#eeeeee));
  682. background: linear-gradient(to right, #ffffff 50%, #eeeeee 50%, #eeeeee);
  683. }
  684. }
  685. .repository .dynamic {
  686. padding: 0;
  687. }
  688. @media (min-width: 768px) {
  689. .repository .dynamic {
  690. padding-right: 15px;
  691. }
  692. }
  693. .repository .industry {
  694. padding-top: 0;
  695. }
  696. @media (max-width: 767px) {
  697. .repository .industry {
  698. padding-bottom: 60px;
  699. }
  700. .repository .industry .list-title {
  701. padding-top: 10px;
  702. margin-bottom: 0;
  703. }
  704. }
  705. @media (min-width: 768px) {
  706. .repository .industry {
  707. padding-bottom: 100px;
  708. }
  709. }
  710. @media (min-width: 1200px) {
  711. .repository .industry {
  712. padding-bottom: 120px;
  713. }
  714. }
  715. .repository .industry ul li {
  716. -webkit-transition: all .5s ease;
  717. transition: all .5s ease;
  718. }
  719. .repository .industry ul li:hover, .repository .industry ul li:active {
  720. padding-left: 8px;
  721. }
  722. @media (min-width: 768px) {
  723. .repository .industry ul li:hover, .repository .industry ul li:active {
  724. padding-left: 38px;
  725. }
  726. }
  727. @media (min-width: 768px) {
  728. .repository .industry ul {
  729. margin-right: -15px;
  730. }
  731. .repository .industry ul li {
  732. padding-left: 30px;
  733. padding-right: 30px;
  734. }
  735. }
  736. .repository .list {
  737. background: #fff;
  738. padding-top: 20px;
  739. }
  740. @media (min-width: 768px) {
  741. .repository .list {
  742. padding-top: 50px;
  743. }
  744. }
  745. .repository .list-title {
  746. font-size: 24px;
  747. color: #111;
  748. border-bottom: 1px solid #eee;
  749. padding: 40px 0 20px;
  750. margin-bottom: 20px;
  751. }
  752. @media (min-width: 768px) {
  753. .repository .list-title {
  754. margin-bottom: 20px;
  755. font-size: 36px;
  756. padding: 50px 0;
  757. margin-right: -15px;
  758. }
  759. }
  760. @media (min-width: 1200px) {
  761. .repository .list-title {
  762. font-size: 44px;
  763. margin-bottom: 30px;
  764. }
  765. }
  766. .repository .back-nav {
  767. color: #ed4747;
  768. font-size: 14px;
  769. cursor: pointer;
  770. display: inline-block;
  771. }
  772. @media (max-width: 767px) {
  773. .repository .back-nav {
  774. margin-bottom: 30px;
  775. }
  776. }
  777. .repository .back-nav i {
  778. display: inline-block;
  779. width: 30px;
  780. height: 10px;
  781. -webkit-transition: all .5s ease;
  782. transition: all .5s ease;
  783. background: url("/assets/image/arrow-color-left.png") no-repeat center;
  784. }
  785. .repository .back-nav:hover i, .repository .back-nav:active i {
  786. background-position: center left;
  787. }
  788. .repository .category {
  789. position: fixed;
  790. top: 0;
  791. left: 0;
  792. right: 0;
  793. bottom: 0;
  794. background: #f8f8f8;
  795. z-index: 1010;
  796. padding: 30px;
  797. overflow: auto;
  798. background: #eee;
  799. -webkit-transform: translateX(100%);
  800. transform: translateX(100%);
  801. -webkit-transition: all .5s ease;
  802. transition: all .5s ease;
  803. -webkit-overflow-scrolling: touch;
  804. }
  805. .repository .category.showIn {
  806. -webkit-transform: translateX(0);
  807. transform: translateX(0);
  808. }
  809. @media (min-width: 768px) {
  810. .repository .category {
  811. position: relative;
  812. top: auto;
  813. left: auto;
  814. right: auto;
  815. bottom: auto;
  816. -webkit-transform: translateX(0);
  817. transform: translateX(0);
  818. z-index: 1;
  819. }
  820. }
  821. .repository .category .total {
  822. padding: 30px 0 20px;
  823. border-bottom: 1px solid #e0e0e0;
  824. }
  825. @media (min-width: 768px) {
  826. .repository .category .total {
  827. padding: 36px 0;
  828. }
  829. }
  830. .repository .category .total span {
  831. color: #333;
  832. font-size: 16px;
  833. }
  834. .repository .category .total p {
  835. color: #c6c6c6;
  836. font-family: "Publico-Headline-Medium";
  837. font-weight: lighter;
  838. margin-top: 5px;
  839. font-size: 50px;
  840. }
  841. @media (min-width: 768px) {
  842. .repository .category .total p {
  843. font-size: 60px;
  844. }
  845. }
  846. .repository .category ul {
  847. margin: 0 -15px;
  848. margin-top: 30px;
  849. }
  850. @media (min-width: 768px) {
  851. .repository .category ul {
  852. margin-top: 65px;
  853. }
  854. }
  855. .repository .category ul li {
  856. margin: 15px 0;
  857. }
  858. .repository .category ul li a {
  859. display: inline-block;
  860. color: #666;
  861. padding: 10px 30px;
  862. font-size: 16px;
  863. border-left: 2px solid #eee;
  864. -webkit-transition: all .5s ease;
  865. transition: all .5s ease;
  866. }
  867. @media (min-width: 768px) {
  868. .repository .category ul li a {
  869. font-size: 14px;
  870. }
  871. }
  872. .repository .category ul li a:hover, .repository .category ul li a.active, .repository .category ul li a.cur {
  873. color: #ed4747;
  874. border-color: #ed4747;
  875. }
  876. .service-main {
  877. padding-bottom: 60px;
  878. }
  879. @media (min-width: 768px) {
  880. .service-main {
  881. padding-bottom: 100px;
  882. }
  883. }
  884. @media (min-width: 768px) {
  885. .service-main {
  886. padding-bottom: 120px;
  887. }
  888. }
  889. .service-main .tit {
  890. font-size: 24px;
  891. color: #333;
  892. padding: 50px 0;
  893. }
  894. @media (max-width: 1920px) {
  895. .service-main .tit {
  896. font-size: 24px;
  897. }
  898. }
  899. @media (max-width: 1200px) {
  900. .service-main .tit {
  901. font-size: 20px;
  902. }
  903. }
  904. @media (max-width: 768px) {
  905. .service-main .tit {
  906. font-size: 18px;
  907. }
  908. }
  909. .service-main .srv-list {
  910. font-size: 16px;
  911. line-height: 2;
  912. }
  913. @media (max-width: 1920px) {
  914. .service-main .srv-list {
  915. font-size: 16px;
  916. }
  917. }
  918. @media (max-width: 1200px) {
  919. .service-main .srv-list {
  920. font-size: 15px;
  921. }
  922. }
  923. @media (max-width: 768px) {
  924. .service-main .srv-list {
  925. font-size: 14px;
  926. }
  927. }
  928. .service-main .srv-list li ~ li {
  929. padding-top: 30px;
  930. }
  931. .service-main .complaint-inline-list li {
  932. display: inline-block;
  933. margin-right: 50px;
  934. }
  935. @media (max-width: 768px) {
  936. .service-main .complaint-inline-list li {
  937. display: block;
  938. margin-right: 0px;
  939. }
  940. .service-main .complaint-inline-list br {
  941. display: none;
  942. }
  943. }
  944. .service-main .img {
  945. width: 100%;
  946. text-align: center;
  947. padding-bottom: 30px;
  948. }
  949. .service-main .img img {
  950. max-width: 100%;
  951. }
  952. .service-main .insure {
  953. width: 70%;
  954. margin: 0 auto;
  955. }
  956. @media (max-width: 768px) {
  957. .service-main .insure {
  958. width: 90%;
  959. }
  960. }
  961. .service-main .ash {
  962. font-size: 14px;
  963. color: #666666;
  964. line-height: 30px;
  965. }
  966. @media (max-width: 768px) {
  967. .service-main .ash {
  968. font-size: 13px;
  969. }
  970. }
  971. .service-main .srv-table {
  972. width: 100% !important;
  973. margin: 50px 0 30px;
  974. text-align: center;
  975. line-height: 1.8;
  976. }
  977. .service-main .srv-table tr p {
  978. padding: 30px 10px;
  979. }
  980. .table-compensate td[rowspan] {
  981. vertical-align: top;
  982. }
  983. .table-compensate td[rowspan] p {
  984. font-weight: bold;
  985. text-align: left;
  986. }
  987. .table-well td:first-child {
  988. text-align: left;
  989. }
  990. .table-well .td-h {
  991. vertical-align: top;
  992. }
  993. .table-well .td-r {
  994. padding-left: 100px !important;
  995. }
  996. @media (max-width: 768px) {
  997. .table-well .td-r {
  998. padding-left: 10px !important;
  999. }
  1000. }