12345678910111213141516171819202122232425262728293031323334353637 |
- body[adapt='pc']>*{
- display: none !important;
- }
-
- body[adapt='pc']>uni-adapt-pc{
- display: block !important;
- }
-
- body[adapt='pc'] {
- margin: 0;
- background-color: #fff;
- width: 100vw;
- height: 100vh;
- }
-
- body[adapt='pc'] uni-adapt-pc .container{
- position: fixed;
- width: 375px;
- height: 100%;
- z-index: 1;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- margin: auto;
- max-height: 680px;
- box-sizing: border-box;
- border: 1px solid #ddd;
- box-shadow: 0 0 10px #ddd;
- }
-
- body[adapt='pc'] uni-adapt-pc iframe{
- width: 100%;
- height: 100%;
- border: none;
- }
|