pc.css 551 B

12345678910111213141516171819202122232425262728293031323334353637
  1. body[adapt='pc']>*{
  2. display: none !important;
  3. }
  4. body[adapt='pc']>uni-adapt-pc{
  5. display: block !important;
  6. }
  7. body[adapt='pc'] {
  8. margin: 0;
  9. background-color: #fff;
  10. width: 100vw;
  11. height: 100vh;
  12. }
  13. body[adapt='pc'] uni-adapt-pc .container{
  14. position: fixed;
  15. width: 375px;
  16. height: 100%;
  17. z-index: 1;
  18. top: 0;
  19. right: 0;
  20. bottom: 0;
  21. left: 0;
  22. margin: auto;
  23. max-height: 680px;
  24. box-sizing: border-box;
  25. border: 1px solid #ddd;
  26. box-shadow: 0 0 10px #ddd;
  27. }
  28. body[adapt='pc'] uni-adapt-pc iframe{
  29. width: 100%;
  30. height: 100%;
  31. border: none;
  32. }