|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<head>
|
|
|
<meta charset="utf-8" />
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
<title>MedBench static Space</title>
|
|
|
<style>
|
|
|
body {
|
|
|
margin: 0;
|
|
|
}
|
|
|
|
|
|
.space {
|
|
|
max-width: 100%;
|
|
|
max-height: 100%;
|
|
|
width: 100vw;
|
|
|
height: 100vh;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.iframe {
|
|
|
min-width: 100%;
|
|
|
min-height: calc(100% + 64px);
|
|
|
margin-top: -64px;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
<div class="space">
|
|
|
<iframe
|
|
|
class="iframe"
|
|
|
allowfullscreen="true"
|
|
|
frameborder="0"
|
|
|
src="https://medbench.opencompass.org.cn/leaderboard"
|
|
|
>
|
|
|
</iframe>
|
|
|
</div>
|
|
|
</body>
|
|
|
</html>
|
|
|
|