.line-height {
  line-height: 1 !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.vertical-top {
  vertical-align: top !important;
}
.vertical-middle {
  vertical-align: middle !important;
}
.underline {
  text-decoration: underline !important;
}
.line-through {
  text-decoration: line-through !important;
}
.break-all {
  word-break: break-all !important;
}
.word-wrap-break-word {
  word-wrap: break-word;
}
.whitespace-nowrap {
  white-space: nowrap !important;
}
.ellipsis {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.line-ellipsis-2 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-ellipsis-3 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line-ellipsis-4 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.italic {
  font-style: italic !important;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.flex,
.flex-center {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.hidden {
  display: hidden;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear-fix:after {
  content: '';
  display: block;
  clear: both;
}
.clear-left {
  clear: left;
}
.clear-right {
  clear: right;
}
.clear-both {
  clear: both;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-visible {
  overflow-x: visible;
}
.overflow-y-visible {
  overflow-y: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-auto {
  overflow: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overscroll-contain {
  overscroll-behavior: contain;
}
.overscroll-x-contain {
  overscroll-behavior-x: contain;
}
.overscroll-y-contain {
  overscroll-behavior-y: contain;
}
.scrolling-touch {
  -webkit-overflow-scrolling: touch;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex1 {
  flex: 1 1;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-shrink-1 {
  flex-shrink: 1;
}
.flex-grow-2 {
  flex-grow: 2;
}
.flex-shrink-2 {
  flex-shrink: 2;
}
.flex-grow-3 {
  flex-grow: 3;
}
.flex-shrink-3 {
  flex-shrink: 3;
}
.flex-grow-4 {
  flex-grow: 4;
}
.flex-shrink-4 {
  flex-shrink: 4;
}
.flex-justify-start {
  justify-content: flex-start;
}
.flex-justify-center,
.flex-center,
.justify-center {
  justify-content: center;
}
.flex-justify-end {
  justify-content: flex-end;
}
.flex-justify-between,
.justify-between {
  justify-content: space-between;
}
.flex-justify-around {
  justify-content: space-around;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-center,
.items-center,
.flex-center {
  align-items: center;
}
.flex-align-end {
  align-items: flex-end;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-align-stretch {
  align-items: stretch;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-center {
  align-content: center;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-between {
  align-content: space-between;
}
.align-content-around {
  align-content: space-around;
}
.align-content-evenly {
  align-content: space-evenly;
}
.align-content-stretch {
  align-content: stretch;
}
.align-self-auto {
  align-self: auto;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-center {
  align-self: center;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-stretch {
  align-self: stretch;
}
.table-fixed {
  table-layout: fixed;
}
.static {
  position: static !important;
}
.relative {
  position: relative !important;
}
.absolute,
.cover {
  position: absolute !important;
}
.fixed {
  position: fixed !important;
}
.sticky {
  position: sticky !important;
}
.t-0,
.lt-0,
.rt-0,
.tb,
.cover-0,
.cover {
  top: 0 !important;
}
.t-auto {
  top: auto !important;
}
.r-0,
.rt-0,
.rb-0,
.lr-0,
.cover-0,
.cover {
  right: 0 !important;
}
.r-auto {
  right: auto !important;
}
.b-0,
.lb-0,
.rb-0,
.tb,
.cover-0,
.cover {
  bottom: 0 !important;
}
.b-auto {
  bottom: auto !important;
}
.l-0,
.lt-0,
.lb-0,
.lr-0,
.cover-0,
.cover {
  left: 0 !important;
}
.l-auto {
  left: auto !important;
}
.absolute-center {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
.margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-auto {
  margin-top: auto;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mb-auto {
  margin-bottom: auto;
}
.border-box {
  box-sizing: border-box;
}
.content-box {
  box-sizing: content-box;
}
.border-w-1 {
  border-width: 1rpx !important;
}
.border-w-t-1 {
  border-top-width: 1rpx !important;
}
.border-w-r-1 {
  border-right-width: 1rpx !important;
}
.border-w-b-1 {
  border-bottom-width: 1rpx !important;
}
.border-w-l-1 {
  border-left-width: 1rpx !important;
}
.border-w-2 {
  border-width: 2rpx !important;
}
.border-w-t-2 {
  border-top-width: 2rpx !important;
}
.border-w-r-2 {
  border-right-width: 2rpx !important;
}
.border-w-b-2 {
  border-bottom-width: 2rpx !important;
}
.border-w-l-2 {
  border-left-width: 2rpx !important;
}
.border-w-3 {
  border-width: 3rpx !important;
}
.border-w-t-3 {
  border-top-width: 3rpx !important;
}
.border-w-r-3 {
  border-right-width: 3rpx !important;
}
.border-w-b-3 {
  border-bottom-width: 3rpx !important;
}
.border-w-l-3 {
  border-left-width: 3rpx !important;
}
.border-w-4 {
  border-width: 4rpx !important;
}
.border-w-t-4 {
  border-top-width: 4rpx !important;
}
.border-w-r-4 {
  border-right-width: 4rpx !important;
}
.border-w-b-4 {
  border-bottom-width: 4rpx !important;
}
.border-w-l-4 {
  border-left-width: 4rpx !important;
}
.border-s-dashed {
  border-style: dashed;
}
.border-s-t-dashed {
  border-top-style: dashed;
}
.border-s-r-dashed {
  border-right-style: dashed;
}
.border-s-b-dashed {
  border-bottom-style: dashed;
}
.border-s-l-dashed {
  border-left-style: dashed;
}
.border-s-dotted {
  border-style: dotted;
}
.border-s-t-dotted {
  border-top-style: dotted;
}
.border-s-r-dotted {
  border-right-style: dotted;
}
.border-s-b-dotted {
  border-bottom-style: dotted;
}
.border-s-l-dotted {
  border-left-style: dotted;
}
.border-collapse {
  border-collapse: collapse;
}
border-1_black .w-0 {
  width: 0;
}
.w-px {
  width: 1px;
}
.w-1__2 {
  width: calc(100% / 2);
}
.w-1__3 {
  width: calc(100% / 3);
}
.w-1__4 {
  width: calc(100% / 4);
}
.w-1__5 {
  width: calc(100% / 5);
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-0 {
  min-width: 0;
}
.min-w-full {
  min-width: 100%;
}
.h-0 {
  height: 0;
}
.h-px {
  height: 1px;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.visible {
  visibility: visible;
}
.visible-hidden {
  visibility: hidden;
}
.opacity-0 {
  opacity: 0;
}
.opacity-03 {
  opacity: 0.3;
}
.opacity-06 {
  opacity: 0.6;
}
.opacity-1 {
  opacity: 1;
}
.cursor-pointer {
  cursor: none ;
}
.cursor-move {
  cursor: move;
}
.cursor-text {
  cursor: text;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor {
  cursor: pointer;
}
.pointer-event-none {
  pointer-events: none;
}
.select-none {
  user-select: none;
}
