/* 图片集合九宫 */
.imgs {
	display: flex;
	justify-content: stretch;
	align-content: stretch;
	flex: 1;
}

.imgs>* {
	padding: 0 0.125rem;
	width: 100%;
}

/* 显示隐藏 */
.show {
	display: block !important;
}

.show-1 {
	opacity: 1 !important;
}

.show-0 {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.show_phone {
	display: none !important;
}

.show_pad {
	display: none !important;
}

.show_pc {
	display: none !important;
}

.hide {
	display: none !important;
}

@media (max-width:576px) {
	.show_phone {
		display: block !important;
	}

	.hide_phone {
		display: none !important;
	}
}

@media (min-width:576px) and (max-width:1199px) {
	.show_pad {
		display: block !important;
	}

	.hide_pad {
		display: none !important;
	}
}

@media (min-width:1200px) {
	.show_pc {
		display: block !important;
	}

	.hide_pc {
		display: none !important;
	}
}

/* 基本元素 */
/**
 * 卡片
 */
.card {
	border-radius: var(--radius_small);
	overflow: hidden;
}

.stroke {
	-webkit-background-clip: content-box;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px var(--font_base);
}

/* 
未完成
[class*=item_] {
	padding: var(--padding_mini) var(--padding_small);
} */
.arrow,
.item-arrow [class*=item_] {
	padding-right: var(--padding_larger) !important;
}

.arrow::after,
.item-arrow [class*=item_]::after {
	position: absolute;
	right: 1rem;
	top: calc(50% + 1px);
	transform: translateY(-50%) rotate(-45deg);
	content: "";
	padding: 3px;
	display: block;
	border: 1px solid var(--border_base_d);
	border-width: 0 1px 1px 0;
	transition: all 0.2s;
}

.title-right .content {
	text-align: right;
}

.content-right .content {
	text-align: right;
}


/* 栅格 */
.row {
	display: flex;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	align-items: stretch;
}

.row-auto>* {
	flex: 1;
}

.row-1>* {
	-ms-flex: 100%;
	flex-basis: 100%;
	width: 100%
}

.row-2>*,
.row-2 .mm_item {
	-ms-flex: 50%;
	flex-basis: 50%;
	width: 50%
}

.row-3>* {
	-ms-flex: 33.333333%;
	flex-basis: 33.333333%;
	width: 33.333333%
}

.row-4>* {
	-ms-flex: 25%;
	flex-basis: 25%;
	width: 25%
}

.row-5>* {
	-ms-flex: 20%;
	flex-basis: 20%;
	width: 20%
}

.row-6>* {
	-ms-flex: 16.666667%;
	flex-basis: 16.666667%;
	width: 16.666667%
}

.row-8>* {
	-ms-flex: 12.5%;
	flex-basis: 12.5%;
	width: 12.5%;
}

.row-10>* {
	-ms-flex: 10%;
	flex-basis: 10%;
	width: 10%;
}

.row-12>* {
	-ms-flex: 8.333333%;
	flex-basis: 8.333333%;
	width: 8.333333%;
}

.row-center {
	justify-content: center !important;
}

.row-left {
	justify-content: start !important;
}

.row-right {
	justify-content: end !important;
}

.row-middle {
	align-items: center !important;
}


/* ===  栅格对齐  === */
.row-tl {
	justify-content: left !important;
	align-items: flex-start !important;
}

.row-tc {
	justify-content: center !important;
	align-items: flex-start !important;
}

.row-tr {
	justify-content: right !important;
	align-items: flex-start !important;
}

.row-cl {
	justify-content: left !important;
	align-items: center !important;
}

.row-cc {
	justify-content: center !important;
	align-items: center !important;
}

.row-cr {
	justify-content: right !important;
	align-items: center !important;
}

.row-bl {
	justify-content: left !important;
	align-items: flex-end !important;
}

.row-bc {
	justify-content: center !important;
	align-items: flex-end !important;
}

.row-br {
	justify-content: right !important;
	align-items: flex-end !important;
}

/* ===  列表  === */
.list-auto>* {
	flex: 1;
}

.list-x>* {
	border-bottom: 1px solid var(--border_base);
	border-right: 1px solid var(--border_base);
}

.list-1>* {
	width: 100%;
	flex-basis: 100%
}

.list-2>* {
	width: 50%;
	flex-basis: 50%
}

.list-3>* {
	width: 33.333333%;
	flex-basis: 33.333333%
}

.list-4>* {
	width: 25%;
	flex-basis: 25%
}

.list-5>* {
	width: 20%;
	flex-basis: 20%
}

.list-6>* {
	width: 16.666666%;
	flex-basis: 16.666666%
}

.list-8>* {
	width: 12.5%;
	flex-basis: 12.5%
}

.list-10>* {
	width: 10%;
	flex-basis: 10%
}

.list-12>* {
	width: 8.333333%;
	flex-basis: 8.333333%
}

.grid {
	display: grid;
	grid-auto-rows: auto;
}

.grid-x>* {
	border-right: 1px solid var(--border_base);
	border-bottom: 1px solid var(--border_base);
}

.grid-auto>* {
	flex: 1;
}

.grid-img {
	padding-right: 0.125rem;
	padding-bottom: 0.125rem;
	overflow: hidden;
}

.grid-1 {
	grid-template-columns: auto;
}

.grid-2 {
	grid-template-columns: auto auto;
}

.grid-3>* {
	grid-template-columns: auto auto auto;
}

.grid-4>* {
	grid-template-columns: auto auto auto auto;
}

.grid-5>* {
	grid-template-columns: auto auto auto auto auto;
}

.grid-6>* {
	grid-template-columns: auto auto auto auto auto auto;
}

.grid-8>* {
	grid-template-columns: auto auto auto auto auto auto auto auto;
}

.grid-10>* {
	grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
}

.grid-12>* {
	grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
}

.y-1 {
	grid-row: span 1;
}

.y-2 {
	grid-row: span 2;
}

.y-3 {
	grid-row: span 3;
}

.y-4 {
	grid-row: span 4;
}

.y-5 {
	grid-row: span 5;
}

.y-6 {
	grid-row: span 6;
}

.y-8 {
	grid-row: span 8;
}

.y-10 {
	grid-row: span 10;
}

.y-12 {
	grid-row: span 12;
}

.x-1 {
	grid-column: span 1;
}

.x-2 {
	grid-column: span 2;
}

.x-3 {
	grid-column: span 3;
}

.x-4 {
	grid-column: span 4;
}

.x-5 {
	grid-column: span 5;
}

.x-6 {
	grid-column: span 6;
}

.x-8 {
	grid-column: span 8;
}

.x-10 {
	grid-column: span 10;
}

.x-12 {
	grid-column: span 12;
}

.mobile .list-2>*,
.mobile .list-3>*,
.mobile .list-4>*,
.mobile .list-5>*,
.mobile .list-6>*,
.mobile .list-8>*,
.mobile .list-10>*,
.mobile .list-12>* {
	border-right: 1px solid var(--border_base);
}

.mobile .list-2>*:nth-child(2n),
.mobile .list-3>*:nth-child(3n),
.mobile .list-4>*:nth-child(4n),
.mobile .list-5>*:nth-child(5n),
.mobile .list-6>*:nth-child(6n),
.mobile .list-8>*:nth-child(8n),
.mobile .list-10>*:nth-child(10n),
.mobile .list-12>*:nth-child(12n) {
	border-right: none;
}

@media (min-width:576px) {
	.container {
		max-width: 33.75rem
	}
}

@media (min-width:768px) {
	.container {
		max-width: 45rem
	}
}

@media (min-width:992px) {
	.container {
		max-width: 60rem
	}
}

@media (min-width:1200px) {
	.container {
		max-width: 71.25rem
	}
}

@media (min-width:1400px) {
	.container {
		max-width: 82.5rem
	}
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	max-width: initial;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width:576px) {

	.container,
	.container-sm {
		max-width: 33.75rem;
		margin-right: auto;
		margin-left: auto;
	}
}

@media (min-width:768px) {

	.container,
	.container-md,
	.container-sm {
		max-width: 45rem
	}
}

@media (min-width:992px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 60rem
	}
}

@media (min-width:1200px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 71.25rem
	}
}

@media (min-width:1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 82.5rem
	}
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto,
.col-xxl,
.col-xxl-1,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-auto {
	position: relative;
	width: 100%;
}

.w-auto,
.col-auto {
	-ms-flex: auto !important;
	flex-basis: auto !important;
	width: auto !important;
	max-width: 100% !important;
	flex: 1;
}

.col-1 {
	-ms-flex: 8.333333% !important;
	flex-basis: 8.333333% !important;
	width: 8.333333 !important
}

.col-2 {
	-ms-flex: 16.666667% !important;
	flex-basis: 16.666667% !important;
	width: 16.666667% !important
}

.w-25,
.col-3 {
	-ms-flex: 25% !important;
	flex-basis: 25% !important;
	width: 25% !important
}

.w-33,
.col-4 {
	-ms-flex: 33.333333% !important;
	flex-basis: 33.333333% !important;
	width: 33.333333% !important
}

.col-5 {
	-ms-flex: 41.666667% !important;
	flex-basis: 41.666667% !important;
	width: 41.666667% !important
}

.w-50,
.col-6 {
	-ms-flex: 50% !important;
	flex-basis: 50% !important;
	width: 50% !important
}

.col-7 {
	-ms-flex: 58.333333% !important;
	flex-basis: 58.333333% !important;
	width: 58.333333% !important
}

.w-66,
.col-8 {
	-ms-flex: 66.666667% !important;
	flex-basis: 66.666667% !important;
	width: 66.666667% !important
}

.w-75,
.col-9 {
	-ms-flex: 75% !important;
	flex-basis: 75% !important;
	width: 75% !important
}

.col-10 {
	-ms-flex: 83.333333% !important;
	flex-basis: 83.333333% !important;
	width: 83.333333% !important
}

.col-11 {
	-ms-flex: 91.666667% !important;
	flex-basis: 91.666667% !important;
	width: 91.666667% !important
}

.w-100,
.col-12 {
	-ms-flex: 100% !important;
	flex-basis: 100% !important;
	width: 100% !important
}

.w-10 {
	-ms-flex: 10% !important;
	flex-basis: 10% !important;
	width: 10% !important;
}

.w-20 {
	-ms-flex: 20% !important;
	flex-basis: 20% !important;
	width: 20% !important;
}

.w-30 {
	-ms-flex: 30% !important;
	flex-basis: 30% !important;
	width: 30% !important;
}

.w-40 {
	-ms-flex: 40% !important;
	flex-basis: 40% !important;
	width: 40% !important;
}

.w-60 {
	-ms-flex: 60% !important;
	flex-basis: 60% !important;
	width: 60% !important;
}

.w-80 {
	-ms-flex: 80% !important;
	flex-basis: 80% !important;
	width: 80% !important;
}

@media (max-width:576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		min-width: 0;
		max-width: 100% !important
	}

	.row-mm-1>* {
		-ms-flex: 100%;
		flex-basis: 100%;
		width: 100%
	}

	.row-mm-2>* {
		-ms-flex: 50%;
		flex-basis: 50%;
		width: 50%
	}

	.row-mm-3>* {
		-ms-flex: 33.333333%;
		flex-basis: 33.333333%;
		width: 33.333333%
	}

	.row-mm-4>* {
		-ms-flex: 25%;
		flex-basis: 25%;
		width: 25%
	}

	.row-mm-5>* {
		-ms-flex: 20%;
		flex-basis: 20%;
		width: 20%
	}

	.row-mm-6>* {
		-ms-flex: 16.666667%;
		flex-basis: 16.666667%;
		width: 16.666667%
	}

	.row-mm-8>* {
		-ms-flex: 12.5%;
		flex-basis: 12.5%;
		width: 12.5%;
	}

	.row-mm-10>* {
		-ms-flex: 10%;
		flex-basis: 10%;
		width: 10%;
	}

	.row-mm-12>* {
		-ms-flex: 8.333333%;
		flex-basis: 8.333333%;
		width: 8.333333%;
	}

	.w-mm-auto,
	.col-mm-auto {
		-ms-flex: auto !important;
		flex-basis: auto !important;
		width: auto;
		max-width: 100% !important
	}

	.col-mm-1 {
		-ms-flex: 8.333333% !important;
		flex-basis: 8.333333% !important;
		width: 8.333333% !important
	}

	.col-mm-2 {
		-ms-flex: 16.666667% !important;
		flex-basis: 16.666667% !important;
		width: 16.666667% !important
	}

	.w-mm-25,
	.col-mm-3 {
		-ms-flex: 25% !important;
		flex-basis: 25% !important;
		width: 25% !important
	}

	.w-mm-33,
	.col-mm-4 {
		-ms-flex: 33.333333% !important;
		flex-basis: 33.333333% !important;
		width: 33.333333% !important
	}

	.col-mm-5 {
		-ms-flex: 41.666667% !important;
		flex-basis: 41.666667% !important;
		width: 41.666667% !important
	}

	.w-mm-50,
	.col-mm-6 {
		-ms-flex: 50% !important;
		flex-basis: 50% !important;
		width: 50% !important
	}

	.col-mm-7 {
		-ms-flex: 58.333333% !important;
		flex-basis: 58.333333% !important;
		width: 58.333333% !important
	}

	.w-mm-66,
	.col-mm-8 {
		-ms-flex: 66.666667% !important;
		flex-basis: 66.666667% !important;
		width: 66.666667% !important
	}

	.w-mm-75,
	.col-mm-9 {
		-ms-flex: 75% !important;
		flex-basis: 75% !important;
		width: 75% !important
	}

	.col-mm-10 {
		-ms-flex: 83.333333% !important;
		flex-basis: 83.333333% !important;
		width: 83.333333% !important
	}

	.col-mm-11 {
		-ms-flex: 91.666667% !important;
		flex-basis: 91.666667% !important;
		width: 91.666667% !important
	}

	.w-mm-100,
	.col-mm-12 {
		-ms-flex: 100% !important;
		flex-basis: 100% !important;
		width: 100% !important
	}

	.list-mm-1>* {
		width: 100%;
		flex-basis: 100%
	}

	.list-mm-2>* {
		width: 50%;
		flex-basis: 50%
	}

	.list-mm-3>* {
		width: 33.333333%;
		flex-basis: 33.333333%
	}

	.list-mm-4>* {
		width: 25%;
		flex-basis: 25%
	}

	.list-mm-5>* {
		width: 20%;
		flex-basis: 20%
	}

	.list-mm-6>* {
		width: 16.666666%;
		flex-basis: 16.666666%
	}

	.list-mm-8>* {
		width: 12.5%;
		flex-basis: 12.5%
	}

	.list-mm-10>* {
		width: 10%;
		flex-basis: 10%
	}

	.list-mm-12>* {
		width: 8.333333%;
		flex-basis: 8.333333%
	}

	.mobile .list-mm-2>*,
	.mobile .list-mm-3>*,
	.mobile .list-mm-4>*,
	.mobile .list-mm-5>*,
	.mobile .list-mm-6>*,
	.mobile .list-mm-8>*,
	.mobile .list-mm-10>*,
	.mobile .list-mm-12>* {
		border-right: 1px solid var(--border_base);
	}

	.mobile .list-mm-2>*:nth-child(2n),
	.mobile .list-mm-3>*:nth-child(3n),
	.mobile .list-mm-4>*:nth-child(4n),
	.mobile .list-mm-5>*:nth-child(5n),
	.mobile .list-mm-6>*:nth-child(6n),
	.mobile .list-mm-8>*:nth-child(8n),
	.mobile .list-mm-10>*:nth-child(10n),
	.mobile .list-mm-12>*:nth-child(12n) {
		border-right: none;
	}
}

@media (min-width:576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		min-width: 0;
		max-width: 100% !important
	}

	.row-sm-1>* {
		-ms-flex: 100%;
		flex-basis: 100%;
		width: 100%
	}

	.row-sm-2>* .mm_item {
		-ms-flex: 50%;
		flex-basis: 50%;
		width: 50%
	}

	.row-sm-3>* {
		-ms-flex: 33.333333%;
		flex-basis: 33.333333%;
		width: 33.333333%
	}

	.row-sm-4>*,
	.row-sm-4 .mm_item {
		-ms-flex: 25%;
		flex-basis: 25%;
		width: 25%
	}

	.row-sm-5>* {
		-ms-flex: 20%;
		flex-basis: 20%;
		width: 20%
	}

	.row-sm-6>* {
		-ms-flex: 16.666667%;
		flex-basis: 16.666667%;
		width: 16.666667%
	}

	.row-sm-8>* {
		-ms-flex: 12.5%;
		flex-basis: 12.5%;
		width: 12.5%;
	}

	.row-sm-10>* {
		-ms-flex: 10%;
		flex-basis: 10%;
		width: 10%;
	}

	.row-sm-12>* {
		-ms-flex: 8.333333%;
		flex-basis: 8.333333%;
		width: 8.333333%;
	}

	.w-sm-auto,
	.col-sm-auto {
		-ms-flex: auto !important;
		flex-basis: auto !important;
		width: auto !important;
		max-width: 100% !important
	}

	.col-sm-1 {
		-ms-flex: 8.333333% !important;
		flex-basis: 8.333333% !important;
		width: 8.333333% !important
	}

	.col-sm-2 {
		-ms-flex: 16.666667% !important;
		flex-basis: 16.666667% !important;
		width: 16.666667% !important
	}

	.w-sm-25,
	.col-sm-3 {
		-ms-flex: 25% !important;
		flex-basis: 25% !important;
		width: 25% !important
	}

	.w-sm-33,
	.col-sm-4 {
		-ms-flex: 33.333333% !important;
		flex-basis: 33.333333% !important;
		width: 33.333333% !important
	}

	.col-sm-5 {
		-ms-flex: 41.666667% !important;
		flex-basis: 41.666667% !important;
		width: 41.666667% !important
	}

	.w-sm-50,
	.col-sm-6 {
		-ms-flex: 50% !important;
		flex-basis: 50% !important;
		width: 50% !important
	}

	.col-sm-7 {
		-ms-flex: 58.333333% !important;
		flex-basis: 58.333333% !important;
		width: 58.333333% !important
	}

	.w-sm-66,
	.col-sm-8 {
		-ms-flex: 66.666667% !important;
		flex-basis: 66.666667% !important;
		width: 66.666667% !important
	}

	.w-sm-75,
	.col-sm-9 {
		-ms-flex: 75% !important;
		flex-basis: 75% !important;
		width: 75% !important
	}

	.col-sm-10 {
		-ms-flex: 83.333333% !important;
		flex-basis: 83.333333% !important;
		width: 83.333333% !important
	}

	.col-sm-11 {
		-ms-flex: 91.666667% !important;
		flex-basis: 91.666667% !important;
		width: 91.666667% !important
	}

	.w-sm-100,
	.col-sm-12 {
		-ms-flex: 100% !important;
		flex-basis: 100% !important;
		width: 100% !important
	}

	.w-sm-10 {
		-ms-flex: 10% !important;
		flex-basis: 10% !important;
		width: 10% !important;
	}

	.w-sm-20 {
		-ms-flex: 20% !important;
		flex-basis: 20% !important;
		width: 20% !important;
	}

	.w-sm-30 {
		-ms-flex: 30% !important;
		flex-basis: 30% !important;
		width: 30% !important;
	}

	.w-sm-40 {
		-ms-flex: 40% !important;
		flex-basis: 40% !important;
		width: 40% !important;
	}

	.w-sm-60 {
		-ms-flex: 60% !important;
		flex-basis: 60% !important;
		width: 60% !important;
	}

	.w-sm-80 {
		-ms-flex: 80% !important;
		flex-basis: 80% !important;
		width: 80% !important;
	}

	.list-sm-1>* {
		width: 100%;
		flex-basis: 100%
	}

	.list-sm-2>* {
		width: 50%;
		flex-basis: 50%
	}

	.list-sm-3>* {
		width: 33.333333%;
		flex-basis: 33.333333%
	}

	.list-sm-4>* {
		width: 25%;
		flex-basis: 25%
	}

	.list-sm-5>* {
		width: 20%;
		flex-basis: 20%
	}

	.list-sm-6>* {
		width: 16.666666%;
		flex-basis: 16.666666%
	}

	.list-sm-8>* {
		width: 12.5%;
		flex-basis: 12.5%
	}

	.list-sm-10>* {
		width: 10%;
		flex-basis: 10%
	}

	.list-sm-12>* {
		width: 8.333333%;
		flex-basis: 8.333333%
	}

	.mobile .list-sm-2>*,
	.mobile .list-sm-3>*,
	.mobile .list-sm-4>*,
	.mobile .list-sm-5>*,
	.mobile .list-sm-6>*,
	.mobile .list-sm-8>*,
	.mobile .list-sm-10>*,
	.mobile .list-sm-12>* {
		border-right: 1px solid var(--border_base);
	}

	.mobile .list-sm-2>*:nth-child(2n),
	.mobile .list-sm-3>*:nth-child(3n),
	.mobile .list-sm-4>*:nth-child(4n),
	.mobile .list-sm-5>*:nth-child(5n),
	.mobile .list-sm-6>*:nth-child(6n),
	.mobile .list-sm-8>*:nth-child(8n),
	.mobile .list-sm-10>*:nth-child(10n),
	.mobile .list-sm-12>*:nth-child(12n) {
		border-right: none;
	}
}

@media (min-width:768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		min-width: 0;
		max-width: 100% !important
	}

	.row-md-1>* {
		-ms-flex: 100%;
		flex-basis: 100%;
		width: 100%
	}

	.row-md-2>* {
		-ms-flex: 50%;
		flex-basis: 50%;
		width: 50%
	}

	.row-md-3>* {
		-ms-flex: 33.333333%;
		flex-basis: 33.333333%;
		width: 33.333333%
	}

	.row-md-4>*,
	.row-md-4 .mm_item {
		-ms-flex: 25%;
		flex-basis: 25%;
		width: 25%
	}

	.row-md-5>* {
		-ms-flex: 20%;
		flex-basis: 20%;
		width: 20%
	}

	.row-md-6>* {
		-ms-flex: 16.666667%;
		flex-basis: 16.666667%;
		width: 16.666667%
	}

	.row-md-8>*,
	.row-md-8 .mm_item {
		-ms-flex: 12.5%;
		flex-basis: 12.5%;
		width: 12.5%;
	}

	.row-md-10>* {
		-ms-flex: 10%;
		flex-basis: 10%;
		width: 10%;
	}

	.row-md-12>* {
		-ms-flex: 8.333333%;
		flex-basis: 8.333333%;
		width: 8.333333%;
	}

	.w-md-auto,
	.col-md-auto {
		-ms-flex: auto !important;
		flex-basis: auto !important;
		width: auto;
		max-width: 100% !important
	}

	.col-md-1 {
		-ms-flex: 8.333333% !important;
		flex-basis: 8.333333% !important;
		width: 8.333333% !important
	}

	.col-md-2 {
		-ms-flex: 16.666667% !important;
		flex-basis: 16.666667% !important;
		width: 16.666667% !important
	}

	.w-md-25,
	.col-md-3 {
		-ms-flex: 25% !important;
		flex-basis: 25% !important;
		width: 25% !important
	}

	.w-md-33,
	.col-md-4 {
		-ms-flex: 33.333333% !important;
		flex-basis: 33.333333% !important;
		width: 33.333333% !important
	}

	.col-md-5 {
		-ms-flex: 41.666667% !important;
		flex-basis: 41.666667% !important;
		width: 41.666667% !important
	}

	.w-md-50,
	.col-md-6 {
		-ms-flex: 50% !important;
		flex-basis: 50% !important;
		width: 50% !important
	}

	.col-md-7 {
		-ms-flex: 58.333333% !important;
		flex-basis: 58.333333% !important;
		width: 58.333333% !important
	}

	.w-md-66,
	.col-md-8 {
		-ms-flex: 66.666667% !important;
		flex-basis: 66.666667% !important;
		width: 66.666667% !important
	}

	.w-md-75,
	.col-md-9 {
		-ms-flex: 75% !important;
		flex-basis: 75% !important;
		width: 75% !important
	}

	.col-md-10 {
		-ms-flex: 83.333333% !important;
		flex-basis: 83.333333% !important;
		width: 83.333333% !important
	}

	.col-md-11 {
		-ms-flex: 91.666667% !important;
		flex-basis: 91.666667% !important;
		width: 91.666667% !important
	}

	.w-md-100,
	.col-md-12 {
		-ms-flex: 100% !important;
		flex-basis: 100% !important;
		width: 100% !important
	}

	.w-md-10 {
		-ms-flex: 10% !important;
		flex-basis: 10% !important;
		width: 10% !important;
	}

	.w-md-20 {
		-ms-flex: 20% !important;
		flex-basis: 20% !important;
		width: 20% !important;
	}

	.w-md-30 {
		-ms-flex: 30% !important;
		flex-basis: 30% !important;
		width: 30% !important;
	}

	.w-md-40 {
		-ms-flex: 40% !important;
		flex-basis: 40% !important;
		width: 40% !important;
	}

	.w-md-60 {
		-ms-flex: 60% !important;
		flex-basis: 60% !important;
		width: 60% !important;
	}

	.w-md-80 {
		-ms-flex: 80% !important;
		flex-basis: 80% !important;
		width: 80% !important;
	}

	.list-md-1>* {
		width: 100%;
		flex-basis: 100%
	}

	.list-md-2>* {
		width: 50%;
		flex-basis: 50%
	}

	.list-md-3>* {
		width: 33.333333%;
		flex-basis: 33.333333%
	}

	.list-md-4>* {
		width: 25%;
		flex-basis: 25%
	}

	.list-md-5>* {
		width: 20%;
		flex-basis: 20%
	}

	.list-md-6>* {
		width: 16.666666%;
		flex-basis: 16.666666%
	}

	.list-md-8>* {
		width: 12.5%;
		flex-basis: 12.5%
	}

	.list-md-10>* {
		width: 10%;
		flex-basis: 10%
	}

	.list-md-12>* {
		width: 8.333333%;
		flex-basis: 8.333333%
	}

	.mobile .list-md-2>*,
	.mobile .list-md-3>*,
	.mobile .list-md-4>*,
	.mobile .list-md-5>*,
	.mobile .list-md-6>*,
	.mobile .list-md-8>*,
	.mobile .list-md-10>*,
	.mobile .list-md-12>* {
		border-right: 1px solid var(--border_base);
	}

	.mobile .list-md-2>*:nth-child(2n),
	.mobile .list-md-3>*:nth-child(3n),
	.mobile .list-md-4>*:nth-child(4n),
	.mobile .list-md-5>*:nth-child(5n),
	.mobile .list-md-6>*:nth-child(6n),
	.mobile .list-md-8>*:nth-child(8n),
	.mobile .list-md-10>*:nth-child(10n),
	.mobile .list-md-12>*:nth-child(12n) {
		border-right: none;
	}
}

@media (min-width:992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		min-width: 0;
		max-width: 100% !important
	}

	.row-lg-1>* {
		-ms-flex: 100%;
		flex-basis: 100%;
		width: 100%
	}

	.row-lg-2>* {
		-ms-flex: 50%;
		flex-basis: 50%;
		width: 50%
	}

	.row-lg-3>* {
		-ms-flex: 33.333333%;
		flex-basis: 33.333333%;
		width: 33.333333%
	}

	.row-lg-4>* {
		-ms-flex: 25%;
		flex-basis: 25%;
		width: 25%
	}

	.row-lg-5>* {
		-ms-flex: 20%;
		flex-basis: 20%;
		width: 20%
	}

	.row-lg-6>* {
		-ms-flex: 16.666667%;
		flex-basis: 16.666667%;
		width: 16.666667%
	}

	.row-lg-8>* {
		-ms-flex: 12.5%;
		flex-basis: 12.5%;
		width: 12.5%;
	}

	.row-lg-10>* {
		-ms-flex: 10%;
		flex-basis: 10%;
		width: 10%;
	}

	.row-lg-12>* {
		-ms-flex: 8.333333%;
		flex-basis: 8.333333%;
		width: 8.333333%;
	}

	.w-lg-auto,
	.col-lg-auto {
		-ms-flex: auto !important;
		flex-basis: auto !important;
		width: auto;
		max-width: 100% !important
	}

	.col-lg-1 {
		-ms-flex: 8.333333% !important;
		flex-basis: 8.333333% !important;
		width: 8.333333% !important
	}

	.col-lg-2 {
		-ms-flex: 16.666667% !important;
		flex-basis: 16.666667% !important;
		width: 16.666667% !important
	}

	.w-lg-25,
	.col-lg-3 {
		-ms-flex: 25% !important;
		flex-basis: 25% !important;
		width: 25% !important
	}

	.w-lg-33,
	.col-lg-4 {
		-ms-flex: 33.333333% !important;
		flex-basis: 33.333333% !important;
		width: 33.333333% !important
	}

	.col-lg-5 {
		-ms-flex: 41.666667% !important;
		flex-basis: 41.666667% !important;
		width: 41.666667% !important
	}

	.w-lg-50,
	.col-lg-6 {
		-ms-flex: 50% !important;
		flex-basis: 50% !important;
		width: 50% !important
	}

	.col-lg-7 {
		-ms-flex: 58.333333% !important;
		flex-basis: 58.333333% !important;
		width: 58.333333% !important
	}

	.w-lg-66,
	.col-lg-8 {
		-ms-flex: 66.666667% !important;
		flex-basis: 66.666667% !important;
		width: 66.666667% !important
	}

	.w-lg-75,
	.col-lg-9 {
		-ms-flex: 75% !important;
		flex-basis: 75% !important;
		width: 75% !important
	}

	.col-lg-10 {
		-ms-flex: 83.333333% !important;
		flex-basis: 83.333333% !important;
		width: 83.333333% !important
	}

	.col-lg-11 {
		-ms-flex: 91.666667% !important;
		flex-basis: 91.666667% !important;
		width: 91.666667% !important
	}

	.w-lg-100,
	.col-lg-12 {
		-ms-flex: 100% !important;
		flex-basis: 100% !important;
		width: 100% !important
	}

	.w-lg-10 {
		-ms-flex: 10% !important;
		flex-basis: 10% !important;
		width: 10% !important;
	}

	.w-lg-20 {
		-ms-flex: 20% !important;
		flex-basis: 20% !important;
		width: 20% !important;
	}

	.w-lg-30 {
		-ms-flex: 30% !important;
		flex-basis: 30% !important;
		width: 30% !important;
	}

	.w-lg-40 {
		-ms-flex: 40% !important;
		flex-basis: 40% !important;
		width: 40% !important;
	}

	.w-lg-60 {
		-ms-flex: 60% !important;
		flex-basis: 60% !important;
		width: 60% !important;
	}

	.w-lg-80 {
		-ms-flex: 80% !important;
		flex-basis: 80% !important;
		width: 80% !important;
	}

	.list-lg-1>* {
		width: 100%;
		flex-basis: 100%
	}

	.list-lg-2>* {
		width: 50%;
		flex-basis: 50%
	}

	.list-lg-3>* {
		width: 33.333333%;
		flex-basis: 33.333333%
	}

	.list-lg-4>* {
		width: 25%;
		flex-basis: 25%
	}

	.list-lg-5>* {
		width: 20%;
		flex-basis: 20%
	}

	.list-lg-6>* {
		width: 16.666666%;
		flex-basis: 16.666666%
	}

	.list-lg-8>* {
		width: 12.5%;
		flex-basis: 12.5%
	}

	.list-lg-10>* {
		width: 10%;
		flex-basis: 10%
	}

	.list-lg-12>* {
		width: 8.333333%;
		flex-basis: 8.333333%
	}

	.mobile .list-lg-2>*,
	.mobile .list-lg-3>*,
	.mobile .list-lg-4>*,
	.mobile .list-lg-5>*,
	.mobile .list-lg-6>*,
	.mobile .list-lg-8>*,
	.mobile .list-lg-10>*,
	.mobile .list-lg-12>* {
		border-right: 1px solid var(--border_base);
	}

	.mobile .list-lg-2>*:nth-child(2n),
	.mobile .list-lg-3>*:nth-child(3n),
	.mobile .list-lg-4>*:nth-child(4n),
	.mobile .list-lg-5>*:nth-child(5n),
	.mobile .list-lg-6>*:nth-child(6n),
	.mobile .list-lg-8>*:nth-child(8n),
	.mobile .list-lg-10>*:nth-child(10n),
	.mobile .list-lg-12>*:nth-child(12n) {
		border-right: none;
	}
}

@media (min-width:1200px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		min-width: 0;
		max-width: 100% !important
	}

	.row-xl-1>* {
		-ms-flex: 100%;
		flex-basis: 100%;
		width: 100%
	}

	.row-xl-2>* {
		-ms-flex: 50%;
		flex-basis: 50%;
		width: 50%
	}

	.row-xl-3>* {
		-ms-flex: 33.333333%;
		flex-basis: 33.333333%;
		width: 33.333333%
	}

	.row-xl-4>* {
		-ms-flex: 25%;
		flex-basis: 25%;
		width: 25%
	}

	.row-xl-5>* {
		-ms-flex: 20%;
		flex-basis: 20%;
		width: 20%
	}

	.row-xl-6>* {
		-ms-flex: 16.666667%;
		flex-basis: 16.666667%;
		width: 16.666667%
	}

	.row-xl-8>* {
		-ms-flex: 12.5%;
		flex-basis: 12.5%;
		width: 12.5%;
	}

	.row-xl-10>* {
		-ms-flex: 10%;
		flex-basis: 10%;
		width: 10%;
	}

	.row-xl-12>* {
		-ms-flex: 8.333333%;
		flex-basis: 8.333333%;
		width: 8.333333%;
	}

	.w-xl-auto,
	.col-xl-auto {
		-ms-flex: auto !important;
		flex-basis: auto !important;
		width: auto;
		max-width: 100% !important
	}

	.col-xl-1 {
		-ms-flex: 8.333333% !important;
		flex-basis: 8.333333% !important;
		width: 8.333333% !important
	}

	.col-xl-2 {
		-ms-flex: 16.666667% !important;
		flex-basis: 16.666667% !important;
		width: 16.666667% !important
	}

	.w-xl-25,
	.col-xl-3 {
		-ms-flex: 25% !important;
		flex-basis: 25% !important;
		width: 25% !important
	}

	.w-xl-33,
	.col-xl-4 {
		-ms-flex: 33.333333% !important;
		flex-basis: 33.333333% !important;
		width: 33.333333% !important
	}

	.col-xl-5 {
		-ms-flex: 41.666667% !important;
		flex-basis: 41.666667% !important;
		width: 41.666667% !important
	}

	.w-xl-50,
	.col-xl-6 {
		-ms-flex: 50% !important;
		flex-basis: 50% !important;
		width: 50% !important
	}

	.col-xl-7 {
		-ms-flex: 58.333333% !important;
		flex-basis: 58.333333% !important;
		width: 58.333333% !important
	}

	.w-xl-66,
	.col-xl-8 {
		-ms-flex: 66.666667% !important;
		flex-basis: 66.666667% !important;
		width: 66.666667% !important
	}

	.w-xl-75,
	.col-xl-9 {
		-ms-flex: 75% !important;
		flex-basis: 75% !important;
		width: 75% !important
	}

	.col-xl-10 {
		-ms-flex: 83.333333% !important;
		flex-basis: 83.333333% !important;
		width: 83.333333% !important
	}

	.col-xl-11 {
		-ms-flex: 91.666667% !important;
		flex-basis: 91.666667% !important;
		width: 91.666667% !important
	}

	.w-xl-100,
	.col-xl-12 {
		-ms-flex: 100% !important;
		flex-basis: 100% !important;
		width: 100% !important
	}

	.w-xl-10 {
		-ms-flex: 10% !important;
		flex-basis: 10% !important;
		width: 10% !important;
	}

	.w-xl-20 {
		-ms-flex: 20% !important;
		flex-basis: 20% !important;
		width: 20% !important;
	}

	.w-xl-30 {
		-ms-flex: 30% !important;
		flex-basis: 30% !important;
		width: 30% !important;
	}

	.w-xl-40 {
		-ms-flex: 40% !important;
		flex-basis: 40% !important;
		width: 40% !important;
	}

	.w-xl-60 {
		-ms-flex: 60% !important;
		flex-basis: 60% !important;
		width: 60% !important;
	}

	.w-xl-80 {
		-ms-flex: 80% !important;
		flex-basis: 80% !important;
		width: 80% !important;
	}

	.list-xl-1>* {
		width: 100%;
		flex-basis: 100%
	}

	.list-xl-2>* {
		width: 50%;
		flex-basis: 50%
	}

	.list-xl-3>* {
		width: 33.333333%;
		flex-basis: 33.333333%
	}

	.list-xl-4>* {
		width: 25%;
		flex-basis: 25%
	}

	.list-xl-5>* {
		width: 20%;
		flex-basis: 20%
	}

	.list-xl-6>* {
		width: 16.666666%;
		flex-basis: 16.666666%
	}

	.list-xl-8>* {
		width: 12.5%;
		flex-basis: 12.5%
	}

	.list-xl-10>* {
		width: 10%;
		flex-basis: 10%
	}

	.list-xl-12>* {
		width: 8.333333%;
		flex-basis: 8.333333%
	}

	.mobile .list-xl-2>*,
	.mobile .list-xl-3>*,
	.mobile .list-xl-4>*,
	.mobile .list-xl-5>*,
	.mobile .list-xl-6>*,
	.mobile .list-xl-8>*,
	.mobile .list-xl-10>*,
	.mobile .list-xl-12>* {
		border-right: 1px solid var(--border_base);
	}

	.mobile .list-xl-2>*:nth-child(2n),
	.mobile .list-xl-3>*:nth-child(3n),
	.mobile .list-xl-4>*:nth-child(4n),
	.mobile .list-xl-5>*:nth-child(5n),
	.mobile .list-xl-6>*:nth-child(6n),
	.mobile .list-xl-8>*:nth-child(8n),
	.mobile .list-xl-10>*:nth-child(10n),
	.mobile .list-xl-12>*:nth-child(12n) {
		border-right: none;
	}
}

@media (min-width:1400px) {
	.col-xxl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		min-width: 0;
		max-width: 100% !important
	}

	.row-xxl-1>* {
		-ms-flex: 100%;
		flex-basis: 100%;
		width: 100%
	}

	.row-xxl-2>* {
		-ms-flex: 50%;
		flex-basis: 50%;
		width: 50%
	}

	.row-xxl-3>* {
		-ms-flex: 33.333333%;
		flex-basis: 33.333333%;
		width: 33.333333%
	}

	.row-xxl-4>* {
		-ms-flex: 25%;
		flex-basis: 25%;
		width: 25%
	}

	.row-xxl-5>* {
		-ms-flex: 20%;
		flex-basis: 20%;
		width: 20%
	}

	.row-xxl-6>* {
		-ms-flex: 16.666667%;
		flex-basis: 16.666667%;
		width: 16.666667%
	}

	.row-xxl-8>* {
		-ms-flex: 12.5%;
		flex-basis: 12.5%;
		width: 12.5%;
	}

	.row-xxl-10>* {
		-ms-flex: 10%;
		flex-basis: 10%;
		width: 10%;
	}

	.row-xxl-12>* {
		-ms-flex: 8.333333%;
		flex-basis: 8.333333%;
		width: 8.333333%;
	}

	.w-xxl-auto,
	.col-xxl-auto {
		-ms-flex: auto !important;
		flex-basis: auto !important;
		width: auto;
		max-width: 100% !important
	}

	.col-xxl-1 {
		-ms-flex: 8.333333% !important;
		flex-basis: 8.333333% !important;
		width: 8.333333% !important
	}

	.col-xxl-2 {
		-ms-flex: 16.666667% !important;
		flex-basis: 16.666667% !important;
		width: 16.666667% !important
	}

	.w-xxl-25,
	.col-xxl-3 {
		-ms-flex: 25% !important;
		flex-basis: 25% !important;
		width: 25% !important
	}

	.w-xxl-33,
	.col-xxl-4 {
		-ms-flex: 33.333333% !important;
		flex-basis: 33.333333% !important;
		width: 33.333333% !important
	}

	.col-xxl-5 {
		-ms-flex: 41.666667% !important;
		flex-basis: 41.666667% !important;
		width: 41.666667% !important
	}

	.w-xxl-50,
	.col-xxl-6 {
		-ms-flex: 50% !important;
		flex-basis: 50% !important;
		width: 50% !important
	}

	.col-xxl-7 {
		-ms-flex: 58.333333% !important;
		flex-basis: 58.333333% !important;
		width: 58.333333% !important
	}

	.w-xxl-66,
	.col-xxl-8 {
		-ms-flex: 66.666667% !important;
		flex-basis: 66.666667% !important;
		width: 66.666667% !important
	}

	.w-xxl-75,
	.col-xxl-9 {
		-ms-flex: 75% !important;
		flex-basis: 75% !important;
		width: 75% !important
	}

	.col-xxl-10 {
		-ms-flex: 83.333333% !important;
		flex-basis: 83.333333% !important;
		width: 83.333333% !important
	}

	.col-xxl-11 {
		-ms-flex: 91.666667% !important;
		flex-basis: 91.666667% !important;
		width: 91.666667% !important
	}

	.w-xxl-100,
	.col-xxl-12 {
		-ms-flex: 100% !important;
		flex-basis: 100% !important;
		width: 100% !important
	}

	.w-xxl-10 {
		-ms-flex: 10% !important;
		flex-basis: 10% !important;
		width: 10% !important;
	}

	.w-xxl-20 {
		-ms-flex: 20% !important;
		flex-basis: 20% !important;
		width: 20% !important;
	}

	.w-xxl-30 {
		-ms-flex: 30% !important;
		flex-basis: 30% !important;
		width: 30% !important;
	}

	.w-xxl-40 {
		-ms-flex: 40% !important;
		flex-basis: 40% !important;
		width: 40% !important;
	}

	.w-xxl-60 {
		-ms-flex: 60% !important;
		flex-basis: 60% !important;
		width: 60% !important;
	}

	.w-xxl-80 {
		-ms-flex: 80% !important;
		flex-basis: 80% !important;
		width: 80% !important;
	}

	.list-xxl-1>* {
		width: 100%;
		flex-basis: 100%
	}

	.list-xxl-2>* {
		width: 50%;
		flex-basis: 50%
	}

	.list-xxl-3>* {
		width: 33.333333%;
		flex-basis: 33.333333%
	}

	.list-xxl-4>* {
		width: 25%;
		flex-basis: 25%
	}

	.list-xxl-5>* {
		width: 20%;
		flex-basis: 20%
	}

	.list-xxl-6>* {
		width: 16.666666%;
		flex-basis: 16.666666%
	}

	.list-xxl-8>* {
		width: 12.5%;
		flex-basis: 12.5%
	}

	.list-xxl-10>* {
		width: 10%;
		flex-basis: 10%
	}

	.list-xxl-12>* {
		width: 8.333333%;
		flex-basis: 8.333333%
	}

	.mobile .list-xxl-2>*,
	.mobile .list-xxl-3>*,
	.mobile .list-xxl-4>*,
	.mobile .list-xxl-5>*,
	.mobile .list-xxl-6>*,
	.mobile .list-xxl-8>*,
	.mobile .list-xxl-10>*,
	.mobile .list-xxl-12>* {
		border-right: 1px solid var(--border_base);
	}

	.mobile .list-xxl-2>*:nth-child(2n),
	.mobile .list-xxl-3>*:nth-child(3n),
	.mobile .list-xxl-4>*:nth-child(4n),
	.mobile .list-xxl-5>*:nth-child(5n),
	.mobile .list-xxl-6>*:nth-child(6n),
	.mobile .list-xxl-8>*:nth-child(8n),
	.mobile .list-xxl-10>*:nth-child(10n),
	.mobile .list-xxl-12>*:nth-child(12n) {
		border-right: none;
	}
}

/* ===  对齐  === */
.fr {
	float: right !important;
}

.fl {
	float: left !important;
}

.fc {
	display: block !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.fn {
	float: none !important;
	clear: both;
}

.cl {
	clear: left !important;
}

.cr {
	clear: right !important;
}

.cc {
	clear: both !important;
}

.cn {
	clear: none !important;
}

/* ===  文本对齐  === */
.center {
	text-align: center !important;
}

.left {
	text-align: left !important;
}

.right {
	text-align: right !important;
}

/* ===  填充  === */
/* 基础 */
.pa {
	padding: var(--padding_small) var(--padding_base) !important;
}

.pb {
	padding-bottom: var(--padding_small) !important;
}

.pl {
	padding-left: var(--padding_base) !important;
}

.plr {
	padding-left: var(--padding_base);
	padding-right: var(--padding_base) !important;
}

.pr {
	padding-right: var(--padding_base) !important;
}

.pt {
	padding-top: var(--padding_small) !important;
}

.ptb {
	padding-top: var(--padding_small);
	padding-bottom: var(--padding_small) !important;
}

.pn {
	padding: 0 !important;
}

.pn-t {
	padding-top: 0 !important;
}

.pn-b {
	padding-bottom: 0 !important;
}

.pn-l {
	padding-left: 0 !important;
}

.pn-r {
	padding-right: 0 !important;
}

.pn-tb {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.pn-lr {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* 拓展 */
.pa-0 {
	padding: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pr-0 {
	padding-right: 0 !important;
}

.pl-0 {
	padding-left: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pa-1 {
	padding: var(--padding_mini) !important;
}

.pt-1 {
	padding-top: var(--padding_mini) !important;
}

.pr-1 {
	padding-right: var(--padding_mini) !important;
}

.pl-1 {
	padding-left: var(--padding_mini) !important;
}

.pb-1 {
	padding-bottom: var(--padding_mini) !important;
}

.pa-2 {
	padding: var(--padding_small) !important;
}

.pt-2 {
	padding-top: var(--padding_small) !important;
}

.pr-2 {
	padding-right: var(--padding_small) !important;
}

.pl-2 {
	padding-left: var(--padding_small) !important;
}

.pb-2 {
	padding-bottom: var(--padding_small) !important;
}

.pa-3 {
	padding: var(--padding_base) !important;
}

.pt-3 {
	padding-top: var(--padding_base) !important;
}

.pr-3 {
	padding-right: var(--padding_base) !important;
}

.pl-3 {
	padding-left: var(--padding_base) !important;
}

.pb-3 {
	padding-bottom: var(--padding_base) !important;
}

.pa-4 {
	padding: var(--padding_larger) !important;
}

.pt-4 {
	padding-top: var(--padding_larger) !important;
}

.pr-4 {
	padding-right: var(--padding_larger) !important;
}

.pl-4 {
	padding-left: var(--padding_larger) !important;
}

.pb-4 {
	padding-bottom: var(--padding_larger) !important;
}

.pa-5 {
	padding: var(--padding_huge) !important;
}

.pt-5 {
	padding-top: var(--padding_huge) !important;
}

.pr-5 {
	padding-right: var(--padding_huge) !important;
}

.pl-5 {
	padding-left: var(--padding_huge) !important;
}

.pb-5 {
	padding-bottom: var(--padding_huge) !important;
}

.ptb-1 {
	padding-top: var(--padding_mini) !important;
	padding-bottom: var(--padding_mini) !important;
}

.ptb-2 {
	padding-top: var(--padding_small) !important;
	padding-bottom: var(--padding_small) !important;
}

.ptb-3 {
	padding-top: var(--padding_base) !important;
	padding-bottom: var(--padding_base) !important;
}

.ptb-4 {
	padding-top: var(--padding_larger) !important;
	padding-bottom: var(--padding_larger) !important;
}

.ptb-5 {
	padding-top: var(--padding_huge) !important;
	padding-bottom: var(--padding_huge) !important;
}

.plr-1 {
	padding-left: var(--padding_mini) !important;
	padding-right: var(--padding_mini) !important;
}

.plr-2 {
	padding-left: var(--padding_small) !important;
	padding-right: var(--padding_small) !important;
}

.plr-3 {
	padding-left: var(--padding_base) !important;
	padding-right: var(--padding_base) !important;
}

.plr-4 {
	padding-left: var(--padding_larger) !important;
	padding-right: var(--padding_larger) !important;
}

.plr-5 {
	padding-left: var(--padding_huge) !important;
	padding-right: var(--padding_huge) !important;
}


/* ===  间距  === */
.ma {
	margin: var(--margin_base) !important;
}

.mb {
	margin-bottom: var(--margin_base) !important;
}

.mc {
	margin-left: auto !important;
	margin-right: auto !important;
	display: block;
}

.ml {
	margin-left: var(--margin_base) !important;
}

.mlr {
	margin-left: var(--margin_base);
	margin-right: var(--margin_base) !important;
}

.mr {
	margin-right: var(--margin_base) !important;
}

.mt {
	margin-top: var(--margin_base) !important;
}

.mtb {
	margin-top: var(--margin_base);
	margin-bottom: var(--margin_base) !important;
}

.mn {
	margin: 0 !important;
}

.mn-t {
	margin-top: 0 !important;
}

.mn-r {
	margin-right: 0 !important;
}

.mn-b {
	margin-bottom: 0 !important;
}

.mn-l {
	margin-left: 0 !important;
}

.mx {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.my {
	position: absolute;
	transform: translateY(-50%);
}

.mxy {
	position: absolute;
	transform: translate(-50%, -50%);
}

/* 拓展 */
.ma-0 {
	margin: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.ml-0 {
	margin-left: 0 !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.ma-1 {
	margin: var(--margin_mini) !important;
}

.mt-1 {
	margin-top: var(--margin_mini) !important;
}

.mr-1 {
	margin-right: var(--margin_mini) !important;
}

.ml-1 {
	margin-left: var(--margin_mini) !important;
}

.mb-1 {
	margin-bottom: var(--margin_mini) !important;
}

.ma-2 {
	margin: var(--margin_small) !important;
}

.mt-2 {
	margin-top: var(--margin_small) !important;
}

.mr-2 {
	margin-right: var(--margin_small) !important;
}

.ml-2 {
	margin-left: var(--margin_small) !important;
}

.mb-2 {
	margin-bottom: var(--margin_small) !important;
}

.ma-3 {
	margin: var(--margin_base) !important;
}

.mt-3 {
	margin-top: var(--margin_base) !important;
}

.mr-3 {
	margin-right: var(--margin_base) !important;
}

.ml-3 {
	margin-left: var(--margin_base) !important;
}

.mb-3 {
	margin-bottom: var(--margin_base) !important;
}

.ma-4 {
	margin: var(--margin_larger) !important;
}

.mt-4 {
	margin-top: var(--margin_larger) !important;
}

.mr-4 {
	margin-right: var(--margin_larger) !important;
}

.ml-4 {
	margin-left: var(--margin_larger) !important;
}

.mb-4 {
	margin-bottom: var(--margin_larger) !important;
}

.ma-5 {
	margin: var(--margin_huge) !important;
}

.mt-5 {
	margin-top: var(--margin_huge) !important;
}

.mr-5 {
	margin-right: var(--margin_huge) !important;
}

.ml-5 {
	margin-left: var(--margin_huge) !important;
}

.mb-5 {
	margin-bottom: var(--margin_huge) !important;
}

.mtb-1 {
	margin-top: var(--margin_mini) !important;
	margin-bottom: var(--margin_mini) !important;
}

.mtb-2 {
	margin-top: var(--margin_small) !important;
	margin-bottom: var(--margin_small) !important;
}

.mtb-3 {
	margin-top: var(--margin_base) !important;
	margin-bottom: var(--margin_base) !important;
}

.mtb-4 {
	margin-top: var(--margin_larger) !important;
	margin-bottom: var(--margin_larger) !important;
}

.mtb-5 {
	margin-top: var(--margin_huge) !important;
	margin-bottom: var(--margin_huge) !important;
}

.mlr-1 {
	margin-left: var(--margin_mini) !important;
	margin-right: var(--margin_mini) !important;
}

.mlr-2 {
	margin-left: var(--margin_small) !important;
	margin-right: var(--margin_small) !important;
}

.mlr-3 {
	margin-left: var(--margin_base) !important;
	margin-right: var(--margin_base) !important;
}

.mlr-4 {
	margin-left: var(--margin_larger) !important;
	margin-right: var(--margin_larger) !important;
}

.mlr-5 {
	margin-left: var(--margin_huge) !important;
	margin-right: var(--margin_huge) !important;
}

/* ===  边框  === */
.ba {
	border: 1px solid var(--border_base) !important;
}

.bb {
	border-bottom: 1px solid var(--border_base) !important;
}

.bl {
	border-left: 1px solid var(--border_base) !important;
}

.blr {
	border-left: 1px solid var(--border_base) !important;
	border-right: 1px solid var(--border_base) !important;
}

.bn {
	border: none !important;
}

.br {
	border-right: 1px solid var(--border_base) !important;
}

.bt {
	border-top: 1px solid var(--border_base) !important;
}

.btb {
	border-top: 1px solid var(--border_base) !important;
	border-bottom: 1px solid var(--border_base) !important;
}

/* ===  圆角  === */
.b-a {
	border-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-b {
	border-bottom-right-radius: var(--radius_small) !important;
	border-bottom-left-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-c {
	border-radius: 50% !important;
	overflow: hidden;
}

.b-l {
	border-bottom-left-radius: var(--radius_small) !important;
	border-top-left-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-n {
	border-radius: 0 !important;
	overflow: hidden;
}

.b-r {
	border-bottom-right-radius: var(--radius_small) !important;
	border-top-right-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-t {
	border-top-left-radius: var(--radius_small) !important;
	border-top-right-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-lb {
	border-bottom-left-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-lt {
	border-top-left-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-rb {
	border-bottom-right-radius: var(--radius_small) !important;
	overflow: hidden;
}

.b-rt {
	border-top-right-radius: var(--radius_small) !important;
	overflow: hidden;
}

/** 图片 **/
.icon-radius .mm_icon {
	border-radius: var(--radius_base);
}

.icon-x .mm_icon {
	border: 1px solid var(--border_base);
	padding: .5rem;
	background-color: var(--bg_main) !important;
}

.size-huge,
.icon-huge img,
.img-huge .img {
	width: var(--img_size_huge);
	height: var(--img_size_huge);
}

.size-larger,
.icon-larger img,
.img-larger .img {
	width: var(--img_size_larger);
	height: var(--img_size_larger);
}

.size-big,
.icon-big img,
.img-big .img {
	width: var(--img_size_big);
	height: var(--img_size_big);
}

.size-base,
.icon-base img,
.img-base .img {
	width: var(--img_size_base);
	height: var(--img_size_base);
}

.size-small,
.icon-small img,
.img-small .img {
	width: var(--img_size_small);
	height: var(--img_size_small);
}

.size-mini,
.icon-mini img,
.img-mini .img {
	width: var(--img_size_mini);
	height: var(--img_size_mini);
}

.img_w-huge .img {
	width: var(--img_size_huge);
}

.img_w-larger .img {
	width: var(--img_size_larger);
}

.img_w-big .img {
	width: var(--img_size_big);
}

.img_w-base .img {
	width: var(--img_size_base);
}

.img_w-small .img {
	width: var(--img_size_small);
}

.img_w-mini .img {
	width: var(--img_size_mini);
}

.img_h-huge .img {
	height: var(--img_size_huge);
}

.img_h-larger .img {
	height: var(--img_size_larger);
}

.img_h-big .img {
	height: var(--img_size_big);
}

.img_h-base .img {
	height: var(--img_size_base);
}

.img_h-small .img {
	height: var(--img_size_small);
}

.img_h-mini .img {
	height: var(--img_size_mini);
}

.invert {
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.disabled {
	pointer-events: none;
	cursor: not-allowed;
	/* 	-webkit-filter: grayscale(100%);
	filter: grayscale(100%); */
}

.required {
	position: relative;
}

.required::before {
	content: "*";
	color: var(--font_error);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -30%);
	line-height: 1;
}

.font-i {
	font-style: italic;
}

.font-b {
	font-weight: 600;
}

.font-b2 {
	font-weight: bold;
}

.font-big {
	font-size: var(--text_big);
}

.font-small {
	font-size: var(--text_small);
}

.font-mini {
	font-size: var(--text_mini);
}

.jl {
	justify-content: start !important;
}

.jc {
	justify-content: center !important;
}

.jc-2 {
	justify-content: space-around !important;
}

.jr {
	justify-content: end !important;
}

.jlr {
	justify-content: space-between !important;
}

.flex {
	display: flex !important;
}

@media (max-width: 576px) {
	.flex_phone {
		display: flex !important;
	}
}

@media (min-width: 577px and max-width: 1199px) {
	.flex_pad {
		display: flex !important;
	}
}

@media (min-width: 1200px) {
	.flex_pc {
		display: flex !important;
	}
}

.btn_mini {
	height: 1.25rem !important;
	line-height: 1.25rem !important;
	font-size: 0.625rem !important;
	padding: 0 0.25rem !important;
}

.btn_small {
	height: 1.5rem !important;
	line-height: 1.5rem !important;
	font-size: 0.75rem !important;
	padding: 0 0.5rem !important;
}

.btn_big {
	height: 2rem !important;
	line-height: 2rem !important;
	font-size: 1rem !important;
	padding: 0 1rem !important;
}

.tip-top,
.tip-right,
.tip-bottom,
.tip-left {
	position: relative;
}

.tip_hover:hover::before {
	position: absolute;
	content: attr(data-tip);
	background-color: var(--bg_black);
	color: var(--font_white);
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.325rem 0.5rem;
	border-radius: var(--radius_small);
	z-index: 100;
	white-space: nowrap;
}

.tip_hover:hover::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	z-index: 100;
}

.tip-left:hover::before {
	top: 50%;
	left: -100%;
	transform: translate(0, -50%);
}

.tip-right:hover::before {
	top: 50%;
	left: calc(100% + 0.325rem);
	transform: translate(0, -50%);
}

.tip-right:hover::after {
	top: 50%;
	left: 100%;
	transform: translate(0, -50%);
	border-right: 0.5rem solid var(--bg_black);
	border-top: 0.325rem solid transparent;
	border-bottom: 0.325rem solid transparent;
}

.tip-bottom:hover::before {
	top: calc(100% + 0.325rem);
	left: 50%;
	transform: translate(-50%, 0);
}

.tip-bottom:hover::after {
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	border-left: 0.325rem solid transparent;
	border-right: 0.325rem solid transparent;
	border-bottom: 0.5rem solid var(--bg_black);
}

.tip-left-bottom:hover::before {
	position: absolute;
	top: calc(100% + 0.325rem);
	right: 0;
}

.tip-left-bottom:hover::after {
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	border-left: 0.325rem solid transparent;
	border-right: 0.325rem solid transparent;
	border-bottom: 0.5rem solid var(--bg_black);
}

/* 定位 */
.pos {
	position: absolute !important;
}

.pos-a {
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
}

.pos-lr {
	left: 0 !important;
	right: 0 !important;
}

.pos-l {
	left: 0 !important;
}

.pos-lt {
	left: 0 !important;
	top: 0 !important;
}

.pos-lb {
	left: 0 !important;
	bottom: 0 !important;
}

.pos-r {
	right: 0 !important;
}

.pos-rt {
	right: 0 !important;
	top: 0 !important;
}

.pos-rb {
	right: 0 !important;
	bottom: 0 !important;
}

.pos-tb {
	top: 0 !important;
	bottom: 0 !important;
}

.pos-t {
	top: 0 !important;
}

.pos-b {
	bottom: 0 !important;
}

.pos-c {
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

/* 透明度 */
.op-0 {
	opacity: 0 !important;
}

.op-1 {
	opacity: 0.1 !important;
}

.op-2 {
	opacity: 0.2 !important;
}

.op-3 {
	opacity: 0.3 !important;
}

.op-4 {
	opacity: 0.4 !important;
}

.op-5 {
	opacity: 0.5 !important;
}

.op-6 {
	opacity: 0.6 !important;
}

.op-7 {
	opacity: 0.7 !important;
}

.op-8 {
	opacity: 0.8 !important;
}

.op-9 {
	opacity: 0.9 !important;
}

.op-10 {
	opacity: 1 !important;
}

/* 间距 */
.lp-0 {
	letter-spacing: 0 !important;
}

.lp-1 {
	letter-spacing: 0.1rem !important;
}

.lp-5 {
	letter-spacing: 0.5rem !important;
}

.lp-10 {
	letter-spacing: 1rem !important;
}