body {
	margin: 0;
	background-color: #F0F3F5;
	width: 100%;
	min-width: 1400px;
	margin: 0 auto;
}
input{
	outline: none;
	border: none;
}
a{
	text-decoration: none;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.flex-align-center{
    display: flex;
    align-items: center;
}
.flex-between{
    display: flex;
    justify-content: space-between;
}
.flex-between-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-around{
    display: flex;
    justify-content: space-around;
}
.flex-around-center{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flex-justify-center{
    display: flex;
    justify-content: center;
}
.flex-both-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}
.text-nowarp-ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.text-two-row{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
[v-cloak] {
    display:none!important;
}
/* .hover-scale8{
	transition:transform 200ms;
}
.hover-scale8:hover{
	transform: scale(1.08);
	box-shadow: 0px 26px 36px 0px rgba(0,0,0,0.20); 
} */