news.scss 21 KB

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