|
@@ -290,4 +290,12 @@ header a{
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 481px) {
|
|
@media only screen and (max-width: 481px) {
|
|
|
-}
|
|
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* 表头内边距调整 */
|
|
|
|
|
+.table th {
|
|
|
|
|
+ padding: 8px 12px; /* 缩小内边距,默认可能是 12px 16px */
|
|
|
|
|
+ white-space: nowrap; /* 防止文字换行导致行高增加 */
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ text-overflow: ellipsis; /* 超出显示省略号 */
|
|
|
|
|
+}
|