.press-debug {
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: env(safe-area-inset-bottom);

  &__tab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
  }
  
  &__tab {
    margin-right: 13px;
    padding: 2px 8px;

    &--active {
      color: #0ca168;
      border-bottom: 2px solid #0ca168;
    }
  }

  &__container {
    box-sizing: border-box;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  &__button {
    width: 200px;
    height: 44px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(0, 5, 10, .04);
  }
  
  &__button-image {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    bottom: 0;
  }

  &__text-center {
    width: 100%;
    color: #666;
    text-align: center;
  }

  &__hover-text {
    background: #eee;
  }

  &__form-item {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 16px;
    text-align: left;
    color: #333;
  }

  &__label {
    margin-right: 8px;
    max-width: 100px;
    display: inline-block;
    // text-align: right;
    color: #666;
  }

  &__user-value {
    word-break: break-all;
    flex: 1;
  }

  &__gm-grid {
    display: grid;

    /** 平铺宽度/为100px的单元格 */
    // grid-template-columns: repeat(auto-fill,100px);

    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: 50px;
    grid-auto-rows: 50px;
    justify-content: center;

    grid-gap: 20px;
    padding: 5px 20px;
  }

  &__gm-button {
    border: 1px solid #e5e4e9;
    background: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &__gm-line {
    display: block;
    text-align: center;
  }
  
  &__gm-input {
    margin: 6px auto 6px;
    height: 44px;
    width: 80%;
    border: 1px solid #efefef;
  }
}
