index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. body,
  2. div,
  3. span,
  4. header,
  5. footer,
  6. nav,
  7. section,
  8. aside,
  9. article,
  10. ul,
  11. dl,
  12. dt,
  13. dd,
  14. li,
  15. a,
  16. p,
  17. h1,
  18. h2,
  19. h3,
  20. h4,
  21. h5,
  22. h6,
  23. em,
  24. i,
  25. b,
  26. button,
  27. input,
  28. select,
  29. figure,
  30. figcaption {
  31. padding: 0;
  32. margin: 0;
  33. list-style-type: none;
  34. font-style: normal;
  35. text-decoration: none;
  36. border: none;
  37. background: none;
  38. font-weight: normal;
  39. font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei,
  40. Source Han Sans SC, Noto Sans CJK SC, sans-serif;
  41. box-sizing: border-box;
  42. -webkit-tap-highlight-color: transparent;
  43. -webkit-font-smoothing: antialiased;
  44. }
  45. a:link {
  46. color: var(--el-color-primary);
  47. }
  48. a:visited {
  49. color: var(--t-btn-focus);
  50. }
  51. a:hover {
  52. color: var(--t-btn-hover);
  53. }
  54. a:active {
  55. color: var(--t-btn-active);
  56. }
  57. [v-cloak] {
  58. display: none
  59. }
  60. label {
  61. font-weight: normal;
  62. margin-bottom: 0;
  63. }
  64. /* fast open样式重置 */
  65. .is-dialog .content {
  66. padding: 0;
  67. padding-left: 0;
  68. padding-right: 0;
  69. }
  70. .is-dialog .content .panel-block {
  71. height: 100vh;
  72. }
  73. /* 修复css 弹窗 */
  74. .layui-layer-content {
  75. height: calc(100% - 45px);
  76. }
  77. .layui-layer-iframe iframe {
  78. height: 100% !important;
  79. }