Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.css 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. body {
  2. width: 100%;
  3. height: 100%;
  4. background: rgb(178 204 246);
  5. }
  6. .tl {
  7. text-align: left;
  8. }
  9. .tc {
  10. text-align: center;
  11. }
  12. .tr {
  13. text-align: right;
  14. }
  15. .h100 {
  16. height: 100%;
  17. }
  18. .clear {
  19. clear: both;
  20. }
  21. .hide {
  22. display: none !important;
  23. }
  24. .content {
  25. width: 100%;
  26. float: left;
  27. height: auto;
  28. }
  29. .box {
  30. width: 1050px;
  31. margin: 0 auto;
  32. }
  33. /*
  34. 美化滚动条
  35. */
  36. /* 美化整个滚动条 */
  37. ::-webkit-scrollbar {
  38. width: 4px;
  39. /* 滚动条宽度 */
  40. }
  41. /* 美化滚动条轨道 */
  42. ::-webkit-scrollbar-track {
  43. background: #f1f1f1;
  44. /* 轨道颜色 */
  45. border-radius: 5px;
  46. }
  47. /* 美化滚动条滑块 */
  48. ::-webkit-scrollbar-thumb {
  49. background: #888;
  50. /* 滑块颜色 */
  51. border-radius: 5px;
  52. }
  53. /* 当滑块悬停或活动时的样式 */
  54. ::-webkit-scrollbar-thumb:hover {
  55. background: #555;
  56. /* 滑块悬停颜色 */
  57. border-radius: 5px;
  58. }
  59. /* 单行省略 ZMH 2024-01-28 */
  60. .singe-line {
  61. text-overflow: ellipsis;
  62. overflow: hidden;
  63. word-break: break-all;
  64. white-space: nowrap;
  65. display: inline-block;
  66. }