12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- body,
- html,
- #cesiumContainer {
- width: 100%;
- height: 100%;
- overflow: hidden;
- margin: 0;
- padding: 0;
- position: absolute;
- }
- .el-button {
- position: relative;
- }
- .terrainground {
- z-index: 900;
- right: 10px;
- left: initial;
- top: 10px;
- width: 300px;
- position: absolute;
- padding: 10px;
- border-radius: 4px;
- background-image: url(./images/bg.png);
- background-size: 100% 100%;
- background-repeat: no-repeat;
- box-sizing: border-box;
- }
- .block {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- color: #fff;
- font-size: 14px;
- font-variant: tabular-nums;
- line-height: 1.5715;
- list-style: none;
- font-feature-settings: "tnum";
- display: flex;
- margin-top: 20px;
- }
- .el-slider {
- margin-top: -11px;
- position: absolute;
- right: 14px;
- display: inline;
- width: 200px;
- }
|