@charset "UTF-8";
/* CSS Document */

/*=================================================================================

* Common

=================================================================================*/
.text-basic {
	color: #F37021 !important;
}
.text-second {
	color: #3B3938;
}
.text-third {
	color: #049DE1;
}
.text-info {
	color: #5cb85c;
}
.text-red {
	color: #FF2442 !important;
}
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.underline {
	text-decoration: underline;
}
.line-through {
	text-decoration: line-through;
}
.tip-text {
	font-size: 14px;
	color: #666;
}
.hr_line {
	display: block;
	width: 100%;
	border-bottom: 1px dashed #f1f1f1;
	background: transparent;
	margin: 12px 0 24px;
}
@media screen and (max-width:1200px) {}
/*=================================================================================

* margin padding

=================================================================================*/
.mb4 {
	margin-bottom: 4px !important;
}
.mb8 {
	margin-bottom: 8px;
}
.mb16 {
	margin-bottom: 16px;
}
.mb32 {
	margin-bottom: 32px;
}
.mr8 {
	margin-right: 8px;
}
.mt4 {
	margin-top: 4px !important;
}
/*=================================================================================

* Flex

=================================================================================*/
.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.justify-start {
	justify-content: flex-start !important;
}
.justify-end {
	justify-content: flex-end !important;
}
.space-between {
	justify-content: space-between;
}
.align-center {
	align-items: center !important;
}

