*{
    box-sizing: border-box;
}
body{
    width: 100%;
    background-color: #F7FAFF;
    margin: 0;
    padding: 0;
}
img{
    width: 100%;
    max-width: 100%;
    vertical-align: top;
}



.bold{
    font-weight: bold;
}
.fw500{
    font-weight: 500;
}
.textc{
    text-align: center;
}


.c-3d{
    color: #3D3D3D;
}
.c-80{
    color: #808080;
}
.c-4{
    color: #444444;
}
.c-f03c{
    color: #F03CA2;
}

.bg-f{
    background-color: #fff;
}


/* 
.fs12{
    font-size: 12px;
}
.fs14{
    font-size: 14px;
}
.fs16{
    font-size: 16px;
}
.fs18{
    font-size: 18px;
}
.fs20{
    font-size: 20px;
}
.fs24{
    font-size: 24px;
}
.fs30{
    font-size: 30px;
}

.ml20{
    margin-left: 20px;
}
.mt8{
    margin-top: 8px;
}
.mt12{
    margin-top: 12px;
}
.mt16{
    margin-top: 16px;
}
.mt20{
    margin-top: 20px;
}
.mt32{
    margin-top: 32px;
}
.mt50{
    margin-top: 50px;
}
.mt100{
    margin-top: 100px;
}

/* flex */
.block{
	display: block;
}
.flex{
	display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}
.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}
.flex1{
	flex:1
}