base.css 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* 一行显示 */
  2. .clamp {
  3. overflow: hidden;
  4. text-overflow: ellipsis;
  5. white-space: nowrap;
  6. display: block;
  7. }
  8. /* 二行显示 */
  9. .ellipsis{
  10. overflow:hidden;
  11. text-overflow:ellipsis;
  12. display:-webkit-box;
  13. -webkit-box-orient:vertical;
  14. -webkit-line-clamp:2;
  15. }
  16. html {
  17. overflow-y: scroll;
  18. }
  19. /* 鼠标显示为手 */
  20. .hand {
  21. cursor:pointer;
  22. }
  23. .moren {
  24. cursor: default;
  25. }
  26. .content-img {
  27. max-width: 100%;
  28. }
  29. .new-detail {
  30. max-width: 100%;
  31. }
  32. .new-detail * {
  33. max-width: 100%;
  34. }
  35. .new-detail table {
  36. min-width: 100%;
  37. }
  38. .new-detail td {
  39. display:table-cell;
  40. vertical-align:middle;
  41. }
  42. .new-detail table,th,td {
  43. border: 1px solid #000;
  44. text-align: center;
  45. }
  46. .flex {
  47. display: flex;
  48. }
  49. .content {
  50. img {
  51. max-width: 100%;
  52. }
  53. }
  54. h1 {
  55. font-weight: bold;
  56. }