| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* 引用样式 */
- blockquote {
- padding: 20px;
- margin: 20px 0;
- border: 1px solid #eee;
- border-left-width: 5px;
- border-left-color: #ce4844;
- border-radius: 3px;
- }
- blockquote, q {
- quotes: none;
- }
- /* 表格样式 */
- table {
- border-spacing: 0;
- border-collapse: collapse;
- }
- td,
- th {
- padding: 0;
- }
- .table {
- border-collapse: collapse !important;
- }
- .table td,
- .table th {
- background-color: #fff !important;
- border: 1px solid #ddd;
- }
- .table-bordered th,
- .table-bordered td {
- border: 1px solid #ddd !important;
- }
- .table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 20px;
- }
- .table > thead > tr > th,
- .table > tbody > tr > th,
- .table > tfoot > tr > th,
- .table > thead > tr > td,
- .table > tbody > tr > td,
- .table > tfoot > tr > td {
- padding: 8px;
- line-height: 1.42857143;
- vertical-align: top;
- border-top: 1px solid #ddd;
- }
- .table > thead > tr > th {
- vertical-align: bottom;
- border-bottom: 2px solid #ddd;
- }
- .table > caption + thead > tr:first-child > th,
- .table > colgroup + thead > tr:first-child > th,
- .table > thead:first-child > tr:first-child > th,
- .table > caption + thead > tr:first-child > td,
- .table > colgroup + thead > tr:first-child > td,
- .table > thead:first-child > tr:first-child > td {
- border-top: 0;
- }
- .table > tbody + tbody {
- border-top: 2px solid #ddd;
- }
- .table .table {
- background-color: #fff;
- }
- table col[class*="col-"] {
- position: static;
- display: table-column;
- float: none;
- }
- table td[class*="col-"],
- table th[class*="col-"] {
- position: static;
- display: table-cell;
- float: none;
- }
- .ke-content img {
- max-width: 100%;
- }
|