@font-face {
	font-family: 'PingFang Medium';
	src: url('../path/PingFang Medium.ttf') format('truetype');
}

* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none !important;
	color: inherit;
}

body {
	font-family: 'PingFang Medium', 'sans-serif' !important;
	color: #333334;
	min-width: 1000px;
}

ul,
li {
	margin: 0;
	padding: 0;
}

.block-hide{
	display: none;
}

.color-main {
	color: #D1060F;
}

.color-ff {
	color: #fff;
}

.color-33 {
	color: #333334;
}

.bg-main {
	background: #D1060F;
}

.bg-ff {
	background: #fff;
}

/* ==================
  字体大小
 ==================== */
.font-12 {
	font-size: 12px;
}

.font-13 {
	font-size: 13px;
}

.font-14 {
	font-size: 14px;
}

.font-15 {
	font-size: 15px;
}

.font-16 {
	font-size: 16px;
}

.font-17 {
	font-size: 17px;
}

.font-18 {
	font-size: 18px;
}

.font-20 {
	font-size: 20px;
}

.font-22 {
	font-size: 22px;
}

.font-24 {
	font-size: 24px;
}


.font-26 {
	font-size: 26px;
}

.font-28 {
	font-size: 28px;
}

/* ==================
  外边距
 ==================== */
.margin-14 {
	margin: 14px;
}

.margin-top-2 {
	margin-top: 2px;
}

.margin-top-4 {
	margin-top: 4px;
}

.margin-top-8 {
	margin-top: 8px;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-14 {
	margin-top: 14px;
}

.margin-top-16 {
	margin-top: 16px;
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-24 {
	margin-top: 24px;
}

.margin-top-30 {
	margin-top: 30px;
}

.margin-top-40 {
	margin-top: 40px;
}

.margin-top-120 {
	margin-top: 120px;
}

.margin-left-8 {
	margin-left: 8px;
}

.margin-left-14 {
	margin-left: 14px;
}

.margin-left-20 {
	margin-left: 20px;
}

.margin-right-10 {
	margin-right: 10px;
}

.margin-right-20 {
	margin-right: 20px;
}

.margin-bottom-4 {
	margin-bottom: 4px;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}

.margin-bottom-14 {
	margin-bottom: 14px;
}

.margin-bottom-24 {
	margin-bottom: 24px;
}

.margin-bottom-30 {
	margin-bottom: 30px;
}

.margin-bottom-40 {
	margin-bottom: 40px;
}

.margin-lr-6 {
	margin-left: 6px;
	margin-right: 6px;
}

.margin-lr-14 {
	margin-left: 14px;
	margin-right: 14px;
}

.margin-lr-20 {
	margin-left: 20px;
	margin-right: 20px;
}

.margin-lr-30 {
	margin-left: 30px;
	margin-right: 30px;
}



/* ==================
   内边距
  ==================== */
.padding-14 {
	padding: 14px;
}

.padding-bottom-12 {
	padding-bottom: 12px;
}

.padding-lr-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.padding-lr-12 {
	padding-left: 12px;
	padding-right: 12px;
}

.padding-lr-14 {
	padding-left: 14px;
	padding-right: 14px;
}

.padding-tb-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.padding-tb-16 {
	padding-top: 16px;
	padding-bottom: 16px;
}

/* ==================
  flex弹性布局
 ==================== */
.flex {
	display: -webkit-flex;
	display: flex;
}

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

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

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

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

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

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

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

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

.self-center {
	align-self: flex-center;
}

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

.self-stretch {
	align-self: stretch;
}

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

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

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

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

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

.basis-10 {
	flex-basis: 10%;
}

.basis-20 {
	flex-basis: 20%;
}

.basis-30 {
	flex-basis: 30%;
}

.basis-40 {
	flex-basis: 40%;
}

.basis-50 {
	flex-basis: 50%;
}

.basis-60 {
	flex-basis: 60%;
}

.basis-70 {
	flex-basis: 70%;
}

.basis-80 {
	flex-basis: 80%;
}

.flex-one {
	flex: 1;
}

.flex-two {
	flex: 2;
}

.flex-three {
	flex: 3;
}


/* ==================
  文本(colorui后续补充)
 ==================== */
.word-nowrap {
	white-space: nowrap;
}

.text-cut-one {
	text-overflow: ellipsis;
	white-space: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.text-cut-two {
	text-overflow: ellipsis;
	white-space: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.text-cut-three {
	text-overflow: ellipsis;
	white-space: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.text-cut-four {
	text-overflow: ellipsis;
	white-space: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.text-through {
	text-decoration: line-through;
}

.text-underline {
	text-decoration: underline;
}

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

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

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

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

.position-relative {
	position: relative;
}

/* ldt add */
.img_box {
	display: block;
	width: 100%;
}

.text-html-box img{
	max-width: 100%;
}