/* 一行内显示，从左到右: */
.flex {display: -webkit-flex;display: flex;}
/* 左右居中 */
.flex_center {display: -webkit-flex;display: flex;-webkit-justify-content: center;justify-content: center;}
/*右对齐，从后往前排，最后一项排在最前面。 */
.flex-row {display: -webkit-flex;display: flex;-webkit-flex-direction: row-reverse;flex-direction: row-reverse;}
/* 上下顶头 */
.flex-column-between {display: -webkit-flex;display: flex;-webkit-flex-direction: column;flex-direction: column;-webkit-justify-content: space-between;justify-content: space-between;}
/* 左右分开 */
.flex-between {display: -webkit-flex;display: flex;-webkit-justify-content: space-between;justify-content: space-between;}
/* 上下居中 */
.flex_column_center {display: -webkit-flex;display: flex;-webkit-flex-direction: column;flex-direction: column;-webkit-justify-content: center;justify-content: center;}
/* 纵向靠下 */
.flex-column-end {display: -webkit-flex;display: flex;-webkit-flex-direction: column;flex-direction: column;-webkit-justify-content: flex-end;justify-content: flex-end;}
/* 左右居中 */
.flex-around {display: -webkit-flex;display: flex;-webkit-justify-content: space-around;justify-content: space-around;}
/* 上下适中分开 */
.flex-column-around {display: -webkit-flex;display: flex;-webkit-justify-content: space-around;justify-content: space-around;-webkit-flex-direction: column;flex-direction: column;}
/* 横排靠右 */
.flex-end {display: -webkit-flex;display: flex;-webkit-justify-content: flex-end;justify-content: flex-end;}

/* 图片百分百 */
.full {width: 100%;height: 100%;}
/* 字体加粗 */
.bold{font-weight: bold!important;}


/* pc端 */
@media only screen and (min-width: 1024px) {
.max-flex_center {display: -webkit-flex;display: flex;-webkit-justify-content: center;justify-content: center;}
.max-flex{display: -webkit-flex;display: flex;}	
.max-flex-column-between {display: -webkit-flex;display: flex;-webkit-flex-direction: column;flex-direction: column;-webkit-justify-content: space-between;justify-content: space-between;}
.max-flex-between {display: -webkit-flex;display: flex;-webkit-justify-content: space-between;justify-content: space-between;}
.max-flex_column_center {display: -webkit-flex;display: flex;-webkit-flex-direction: column;flex-direction: column;-webkit-justify-content: center;justify-content: center;}
.max-flex-row {display: -webkit-flex;display: flex;-webkit-flex-direction: row-reverse;flex-direction: row-reverse;}
.max-flex-end {display: -webkit-flex;display: flex;-webkit-justify-content: flex-end;justify-content: flex-end;}
}
/* 手机端 */
@media only screen and (max-width: 1023px){
.min-flex-row {display: -webkit-flex;display: flex;-webkit-flex-direction: row-reverse;flex-direction: row-reverse;}
.min-flex {display: -webkit-flex;display: flex;}
.min-flex-between {display: -webkit-flex;display: flex;-webkit-justify-content: space-between;justify-content: space-between;}
}