12345678910111213141516171819202122232425262728293031323334353637383940 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- user-select: none;
- }
- .viewer-title {
- display: none !important;
- }
- .viewer-prev {
- display: none !important;
- }
- .viewer-next {
- display: none !important;
- }
- .viewer-navbar {
- display: none !important;
- }
- .viewer-close {
- display: none !important;
- }
- @media screen and (max-width: 800px) {
- .viewer-footer {
- bottom: auto;
- top: 10px;
- }
- }
- @font-face {
- font-family: 'fzFont';
- /* 自定义字体名称 */
- src: url('./font/fzFont.TTF') format('truetype');
- }
|