feat: 竖屏适配 #54

Manually merged
remilia merged 8 commits from feat/media-layout into master 2025-11-01 16:38:38 +08:00
5 changed files with 295 additions and 14 deletions
Showing only changes of commit 3b6857637b - Show all commits

View File

@ -1,6 +1,6 @@
<template>
<footer class="jinshen-footer">
<div class="footer-container">
<div class="footer-container hide-on-mobile">
<!-- Logo 和公司信息 -->
<div class="footer-section">
<div class="footer-logo">
@ -250,6 +250,10 @@
/* 响应式设计 */
@media (max-width: 768px) {
.hide-on-mobile {
display: none;
}
.footer-container {
grid-template-columns: 1fr;
padding: 1.5rem 1rem;

View File

@ -34,10 +34,4 @@
.page-footer {
padding: 0px;
}
@media (max-width: 768px) {
.page-footer {
display: none;
}
}
</style>