.text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-justify {
    text-align: justify;
  }
  
  .underline {
    text-decoration: underline;
  }
  
  .pointer-events-none {
    pointer-events: none;
  }
  
  .overflow-auto {
    overflow: auto;
  }
  .fr,.float-right{
    float: right;
  }
  .fl,.float-left{
    float: left;
  }
  
  .overflow-hide,
  .overflow-hidden {
    overflow: hidden;
  }
  
  .appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .break-normal {
    overflow-wrap: normal;
    word-break: normal;
  }
  .break-words {
    overflow-wrap: break-word;
  }
  .break-all {
    word-break: break-all;
  }
  
  .align-baseline {
    vertical-align: baseline;
  }
  .align-top {
    vertical-align: top;
  }
  .align-middle {
    vertical-align: middle;
  }
  .align-bottom {
    vertical-align: bottom;
  }
  .align-text-top {
    vertical-align: text-top;
  }
  .align-text-bottom {
    vertical-align: text-bottom;
  }
  
  .flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-nowrap {
    flex-wrap: nowrap;
  }
  
  .justify-start {
    justify-content: flex-start;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-around {
    justify-content: space-around;
  }
  .justify-evenly {
    justify-content: space-evenly;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-end {
    align-items: flex-end;
  }
  .items-center {
    align-items: center;
  }
  .items-baseline {
    align-items: baseline;
  }
  .items-stretch {
    align-items: stretch;
  }
  
  .flex-1 {
    flex: 1 1 0%;
  }
  .flex-auto {
    flex: 1 1 auto;
  }
  .flex-initial {
    flex: 0 1 auto;
  }
  .flex-none {
    flex: none;
  }
  
  .flex-grow-0 {
    flex-grow: 0;
  }
  .flex-grow,
  .flex-grow-1 {
    flex-grow: 1;
  }
  .flex-shrink-0,.shrink-0 {
    flex-shrink: 0;
  }
  .flex-shrink,
  .flex-shrink-1 {
    flex-shrink: 1;
  }
  .min-h-0 {
    min-height: 0px;
  }
  .min-h-full {
    min-height: 100%;
  }
  .min-h-screen {
    min-height: 100vh;
  }
  
  .max-h-0 {
    max-height: 0px;
  }
  .max-h-full {
    max-height: 100%;
  }
  .max-h-screen {
    max-height: 100vh;
  }
  
  .bg-fixed{background-attachment: fixed;}
  .bg-local{background-attachment: local;}
  .bg-scroll{background-attachment: scroll;}
  
  .cursor-pointer,
  .pointer {
    cursor: pointer;
  }
  
  .g-bold,
  .font-bold {
    font-weight: bold;
  }
  .g-normal,.font-normal{
    font-weight: normal;
  }
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .fixed {
    position: fixed;
  }
  
  .sticky {
    position: sticky;
  }
  .g-font-bold {
    font-weight: bold;
  }
  .g-btn {
    border-radius: 12rpx;
    padding: 0 30rpx;
    height: 72rpx;
    line-height: 72rpx;
    font-size: 28rpx;
    min-width: 140rpx;
    max-width: 100%;
    text-align: center;
  
  
 
    width: 100%;
  }
  
  .h-full {
    height: 100%;
  }
  
  .g-fz-12,
  .g-font-12 {
    font-size: 24rpx;
  }
  
  .g-c-333,
  .g-color-333,.c333 {
    color: #333;
  }
  
  .g-c-666,
  .g-color-666,.c666 {
    color: #666;
  }
  
  .g-c-999,
  .g-color-999,.c999 {
    color: #999;
  }