/* manquxingqiu/assets/css/base.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #E6EDE3;
  margin: 0;
  padding: 0;
}




:root {
  --primary-color: #23d5ab;
  --secondary-color: #1890ff;
  --text-dark: #333;
}



.page-container {
  padding-bottom: 72px; /* 导航栏高度+安全边距 */
  min-height: 100vh;
}



.page {
    padding: 15px;
    min-height: calc(100vh - 60px);
    display: none;
    animation: fadeIn 0.3s ease-in;
}
.page.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.page-container {
  padding-bottom: 72px; /* 导航栏高度+安全边距 */
  min-height: 100vh;
}

.main-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
}

.page-content {
    display: none;
    padding: 20px;
}

.page-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
