.mobile {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  /* 水平居中 */
  /*  align-items: center; /* 垂直居中 */
}

.container {
  position: relative;
  width: 90%;
  max-width: 600px; /* 设置最大宽度，防止在大屏幕上过大 */
  margin: auto; /* 自动水平居中 */
  height: auto;
  display: flex;
  flex-direction: column;
  /* 垂直排列子元素 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;

  /* 垂直居中对齐子元素 */
  .title {
    width: 100%;
    font-size: 20px;
    text-align: center;
    padding: 10px;
  }

  .section-title {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .item {
    width: 100%;
    border-bottom: solid 1px #ccc;
    padding: 10px;
  }
}

.cotent-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 100px);
  /* 计算高度 */
  background: red;

  /* 水平居中 */
  .box-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
}

.btns-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: rebeccapurple;
  display: flex;
  /* 垂直排列子元素 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  .button {
    width: 50%; /* 每个子元素宽度占父容器的一半 */
    text-align: center; /* 内容居中对齐 */
  }
}