/* 主容器样式 */
.container {
  /* 设置容器大小和间距 */
  width: 95%;
  height: 95%;
  position: relative;
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  /* 毛玻璃效果 */
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 左侧区域布局 */
.left-section {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 右侧容器布局 */
.right-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
  height: 100%;
}

/* 右侧上下区域布局 */
.top-right-section,
.bottom-right-section {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 移动端响应式布局 */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 1rem;
  }

  .left-section {
    height: 40vh;
    min-height: 300px;
  }

  .right-container {
    width: 100%;
    height: auto;
  }

  .top-right-section,
  .bottom-right-section {
    height: 25vh;
    min-height: 200px;
  }

  .section-content h1 {
    font-size: 1.8em;
  }

  .section-content h2 {
    font-size: 1.4em;
  }

  .section-content p {
    font-size: 1em;
  }
}

/* 小屏幕设备的优化 */
@media screen and (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0.8rem;
    gap: 0.8rem;
    border-radius: 1.5rem;
  }

  .section {
    border-radius: 1.2rem;
  }

  .section-content {
    padding: 1.5em;
  }

  .section-content h1 {
    font-size: 1.6em;
    margin-bottom: 0.6em;
  }

  .section-content h2 {
    font-size: 1.2em;
    margin-bottom: 0.8em;
  }
}
