/* Sticky Footer 布局 */
html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  box-sizing: border-box;
  margin: 0;
  overflow-x: hidden;
}

.main-wrapper {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

/* Header 固定顶部 + 毛玻璃效果 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

/* Footer 样式优化 */
.home-company {
  margin-top: auto;
  flex-shrink: 0;
  background: #2c2a3e;
  width: 100%;
  height: auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: PingFangSC-Semibold;
  font-size: 14px;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

