@class-prefix-button: ~'amh-tab';

.@{class-prefix-button} {
    &-tabBox {
        width: 100%;
        display: flex;
        height: 88px;
        background: #ffffff;
        // position: fixed;
        // top: 0;
        // left: 0;
        // z-index: 100000;
        justify-content: space-between;
        border-bottom: 1px solid #ebedf5;
      }
      &-tabItem {
        flex: 1;
        font-size: 32px;
        color: #03081a;
        font-weight: bolder;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
      }
      &-tabItemActive {
        font-size: 36px;
        color: var(--amh-color-primary);
      }
      &-line {
        width: 112px;
        height: 6px;
        background: var(--amh-color-primary);
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -56px;
      }
}

  