app.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* 引用样式 */
  2. blockquote {
  3. padding: 20px;
  4. margin: 20px 0;
  5. border: 1px solid #eee;
  6. border-left-width: 5px;
  7. border-left-color: #ce4844;
  8. border-radius: 3px;
  9. }
  10. blockquote, q {
  11. quotes: none;
  12. }
  13. /* 表格样式 */
  14. table {
  15. border-spacing: 0;
  16. border-collapse: collapse;
  17. }
  18. td,
  19. th {
  20. padding: 0;
  21. }
  22. .table {
  23. border-collapse: collapse !important;
  24. }
  25. .table td,
  26. .table th {
  27. background-color: #fff !important;
  28. border: 1px solid #ddd;
  29. }
  30. .table-bordered th,
  31. .table-bordered td {
  32. border: 1px solid #ddd !important;
  33. }
  34. .table {
  35. width: 100%;
  36. max-width: 100%;
  37. margin-bottom: 20px;
  38. }
  39. .table > thead > tr > th,
  40. .table > tbody > tr > th,
  41. .table > tfoot > tr > th,
  42. .table > thead > tr > td,
  43. .table > tbody > tr > td,
  44. .table > tfoot > tr > td {
  45. padding: 8px;
  46. line-height: 1.42857143;
  47. vertical-align: top;
  48. border-top: 1px solid #ddd;
  49. }
  50. .table > thead > tr > th {
  51. vertical-align: bottom;
  52. border-bottom: 2px solid #ddd;
  53. }
  54. .table > caption + thead > tr:first-child > th,
  55. .table > colgroup + thead > tr:first-child > th,
  56. .table > thead:first-child > tr:first-child > th,
  57. .table > caption + thead > tr:first-child > td,
  58. .table > colgroup + thead > tr:first-child > td,
  59. .table > thead:first-child > tr:first-child > td {
  60. border-top: 0;
  61. }
  62. .table > tbody + tbody {
  63. border-top: 2px solid #ddd;
  64. }
  65. .table .table {
  66. background-color: #fff;
  67. }
  68. table col[class*="col-"] {
  69. position: static;
  70. display: table-column;
  71. float: none;
  72. }
  73. table td[class*="col-"],
  74. table th[class*="col-"] {
  75. position: static;
  76. display: table-cell;
  77. float: none;
  78. }
  79. .ke-content img {
  80. max-width: 100%;
  81. }