article.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 article {
  12. -ms-flex-negative: 0;
  13. flex-shrink: 0;
  14. width: 1200px;
  15. padding-top: 70px;
  16. }
  17. .main article h1 {
  18. width: 890px;
  19. font-size: 37px;
  20. font-family: PingFangSC-Semibold, PingFang SC;
  21. }
  22. .main article .article-infos {
  23. padding: 30px 0;
  24. display: -ms-flexbox;
  25. display: flex;
  26. color: #999999;
  27. font-size: 18px;
  28. width: 890px;
  29. }
  30. .main article .article-infos span {
  31. margin-right: 100px;
  32. }
  33. .main article img {
  34. max-width: 100%;
  35. }
  36. .main article p {
  37. text-indent: 2em;
  38. color: #999999;
  39. line-height: 34px;
  40. }
  41. .main article .article-content {
  42. width: 890px;
  43. }
  44. .main article .news-cont {
  45. display: -ms-flexbox;
  46. display: flex;
  47. -ms-flex-pack: justify;
  48. justify-content: space-between;
  49. -ms-flex-align: start;
  50. align-items: flex-start;
  51. width: 100%;
  52. }
  53. .main .float-shares .prev img, .main .float-shares .next img {
  54. width: 48px;
  55. height: 48px;
  56. }