| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- * {
- 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;
- }
- .viewer-canvas {
- & > img {
- pointer-events: none;
- }
- }
- @media screen and (max-width: 800px) {
- .viewer-footer {
- bottom: auto;
- top: 10px;
- }
- }
- @font-face {
- font-family: 'fzFont';
- /* 自定义字体名称 */
- src: url('./font/fzFont.TTF') format('truetype');
- }
|