2023-10-14 10:16:41 +08:00

31 lines
620 B
Java

<div th:fragment="css">
<link rel="stylesheet" href="/mobile/layui/css/layui.css">
<style type="text/css">
.app {
display: none;
}
@media (max-width: 500px) {
.app {
display: block !important;
}
}
.pc {
display: block;
}
@media (max-width: 500px) {
.pc {
display: none;
}
}
#footer {
padding-top: 6px;
height: 60px;
line-height: 54px;
text-align: center;
}
</style>
</div>