| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <router-view />
- </template>
- <style>
- html,
- body {
- padding: 0 0;
- margin: 0 0;
- width: 100% !important;
- height: 100%;
- overflow: hidden;
- }
- #app {
- width: 100%;
- height: 100%;
- /* min-height: 945px;
- max-height: 1080px; */
- }
- .el-tooltip {
- max-width: 200px;
- /* 根据需要调整宽度 */
- white-space: pre-line;
- /* 允许换行 */
- }
- .viewer-text-label {
- position: absolute;
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
- /* -webkit-user-select: none; */
- /* Chrome, Safari, Opera */
- /* -moz-user-select: none; */
- /* Firefox */
- /* -ms-user-select: none; */
- /* Internet Explorer/Edge */
- /* user-select: none; */
- /* 标准语法 */
- }
- .el-scrollbar__thumb {
- background-color: #eeeeee !important;
- opacity: 0.7 !important;
- }
- .el-scrollbar__thumb:hover {
- opacity: 1 !important;
- background-color: #ffffff !important;
- }
- .yhfkInfoDialogHeader {
- height: 30px;
- }
- </style>
|