article.css 818 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @charset "utf-8";
  2. li{list-style:none}
  3. /**
  4. * PC端
  5. */
  6. @media screen and (min-width:768px){
  7. .title{
  8. background-color:#fef6f3;
  9. height:40px;
  10. line-height: 40px;
  11. text-indent: 16px;
  12. color:#E15616;
  13. font-size: 16px;
  14. }
  15. .labelWrap .count{
  16. background-color:#FFF;
  17. padding-bottom:16px;
  18. line-height: 32px;
  19. max-height: 96px;
  20. overflow: hidden;
  21. }
  22. .labelWrap .count a{
  23. display: inline-block;
  24. height: 32px;
  25. line-height: 32px;
  26. white-space: nowrap;
  27. background-color:#f94b4b;
  28. color:#FFF;
  29. padding:0 14px;
  30. border-radius: 2px;
  31. margin: 16px 0 0 16px;
  32. }
  33. .articleWrap{
  34. float: left;
  35. width:885px;
  36. margin-top: 16px;
  37. }
  38. .wrapAside{
  39. float: right;
  40. width:284px;
  41. margin-top: 16px;
  42. }
  43. }
  44. /**
  45. * 移动端
  46. */
  47. @media screen and (max-width:768px){
  48. }