.text-medium {
  font-weight: 500;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.text-normal {
  font-weight: 400;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-grey-1 {
  color: #4E5969;
}

/* font */
.text-16 {
  font-size: 0.16rem;
}

/* padding */
.px-32 {
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
  box-sizing: border-box;
}

.px-40 {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  box-sizing: border-box;
}

.px-48 {
  padding-left: 0.48rem;
  padding-right: 0.48rem;
  box-sizing: border-box;
}
.px-68 {
  padding-left: 0.68rem;
  padding-right: 0.68rem;
  box-sizing: border-box;
}

.ml-24 {
  margin-left: 0.24rem !important;
}

.mt-24 {
  margin-top: 0.24rem;
}

.py-40 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.my-32 {
  margin-top: 0.32rem;
  margin-bottom: 0.32rem;
}

/* background */
.bg-page {
  background: #f3f3f5;
}
.bg-black {
  background: #1D2129;
}

.bg-grey-700 {
  background: #4E5969;
}

.bg-white {
  background: #ffffff;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #1D2129;
}

.text-green {
  color: #19A15F;
}

.text-yellow-800 {
  color: #FEB744;
}

.text-grey {
  color: #86909C;
}

.text-48 {
  font-size: 0.48rem;
  line-height: 1.5;
}

.text-32 {
  font-size: 0.32rem;
  line-height: 1.5;
}

.text-30 {
  font-size: 0.3rem;
  line-height: 1.5;
}

.text-18 {
  font-size: 0.18rem;
}

.text-24 {
  font-size: 0.24rem;
}

.leading-1-5 {
  line-height: 1.5;
}

/* flex */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-1 {
  flex: 1;
}

.flex-none {
  flex: none;
}

.flex-auto {
  flex: auto;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

/* position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.static {
  position: static;
}

/* top */
.top-0 {
  top: 0;
}

.left-0 { 
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.object-cover {
  object-fit: cover;
}

.mb-32 {
  margin-bottom: 0.32rem;
}

.text-center {
  text-align: center;
}

.w-20 {
  width: 0.2rem;
}

.h-20 {
  height: 0.2rem;
}

.box-border {
  box-sizing: border-box;
}
