@cmstops/pro-compo
Version:
[物料平台文档中心](https://arco.design/docs/material/guide)
37 lines (32 loc) • 640 B
text/less
.iframe-container {
position: relative;
height: 95vh;
max-height: 750px;
overflow: hidden;
aspect-ratio: 390 / 750;
&::-webkit-scrollbar {
display: none;
}
img {
position: absolute;
width: 100%;
height: 100%;
}
.iframe-content {
position: absolute;
top: calc(100% / 8);
left: 19px;
z-index: 1000;
width: calc(100% - 38px);
height: calc(100% - 100% / 8 - 16px);
overflow: hidden;
border-bottom-right-radius: 40px;
border-bottom-left-radius: 40px;
iframe {
width: calc(100% + 20px);
height: 100%;
border: none;
outline: none;
}
}
}