app.scss 786 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body,
  2. ol,
  3. ul,
  4. h1,
  5. h2,
  6. h3,
  7. h4,
  8. h5,
  9. h6,
  10. p,
  11. th,
  12. td,
  13. dl,
  14. dd,
  15. form,
  16. fieldset,
  17. legend,
  18. input,
  19. textarea,
  20. select {
  21. margin: 0;
  22. padding: 0;
  23. }
  24. body {
  25. margin: 0px;
  26. font-size: 14px;
  27. font-family: 'Hiragino Sans GB', 'Microsoft YaHei', Helvetica, Tahoma, Arial, SimSun, Heiti,
  28. sans-serif;
  29. }
  30. a {
  31. text-decoration: none;
  32. }
  33. em {
  34. font-style: normal;
  35. }
  36. li {
  37. list-style: none;
  38. }
  39. img {
  40. border: 0;
  41. vertical-align: middle;
  42. }
  43. table {
  44. border-collapse: collapse;
  45. border-spacing: 0;
  46. }
  47. p {
  48. word-wrap: break-word;
  49. }
  50. .limit-line {
  51. display: -webkit-box;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. -webkit-line-clamp: 1;
  55. -webkit-box-orient: vertical;
  56. word-break: break-all;
  57. word-wrap: break-word;
  58. }
  59. .line-2 {
  60. -webkit-line-clamp: 2;
  61. }
  62. .line-3 {
  63. -webkit-line-clamp: 3;
  64. }