/* 图标 */
.iconfont {
	font-family: iconfont;
}

.disabled {
	opacity: 0.3;
}
/* 宽度 */
.w-100 {
	width: 750px;
}

.row {
	margin-right: -20px;
	margin-left: -20px;
	/* #ifndef APP-PLUS-NVUE */
	display: flex;
	/* #endif */
	flex-wrap: wrap;
	flex-direction: row;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	position: relative;
	padding-right: 20px;
	padding-left: 20px;
}

.col-12 {
	width: 750px;
}

.col-11 {
	width: 687.5px;
}

.col-10 {
	width: 625px;
}

.col-9 {
	width: 562.5px;
}

.col-8 {
	width: 500px;
}

.col-7 {
	width: 437.5px;
}

.col-6 {
	width: 375px;
}

.col-5 {
	width: 312.5px;
}

.col-4 {
	width: 250px;
}

.col-3 {
	width: 187.5px;
}

.col-2 {
	width: 125px;
}

.col-1 {
	width: 62.5px;
}

.col-offset-12 {
	margin-left: 750px;
}

.col-offset-11 {
	margin-left: 687.5px;
}

.col-offset-10 {
	margin-left: 625px;
}

.col-offset-9 {
	margin-left: 562.5px;
}

.col-offset-8 {
	margin-left: 500px;
}

.col-offset-7 {
	margin-left: 437.5px;
}

.col-offset-6 {
	margin-left: 375px;
}

.col-offset-5 {
	margin-left: 312.5px;
}

.col-offset-4 {
	margin-left: 250px;
}

.col-offset-3 {
	margin-left: 187.5px;
}

.col-offset-2 {
	margin-left: 125px;
}

.col-offset-1 {
	margin-left: 62.5px;
}

.col-offset-0 {
	margin-left: 0;
}

/* flex 布局 */
.flex {
	/* #ifndef APP-PLUS-NVUE */
	display: flex;
	/* #endif */
	flex-direction: row;
}

.flex-row {
	flex-direction: row !important;
}

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

.flex-row-reverse {
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	flex-direction: column-reverse !important;
}

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

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

.lines-1 {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
	line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.lines-2 {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
	line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.lines-3 {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
	line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

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

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

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

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

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

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

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

/* #ifndef APP-PLUS-NVUE */
.content-start {
	align-content: flex-start;
}

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

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

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

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

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

/* #endif */
.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.flex-4 {
	flex: 4;
}

.flex-5 {
	flex: 5;
}

.flex-6 {
	flex: 6;
}

.flex-7 {
	flex: 7;
}

.flex-8 {
	flex: 8;
}

.flex-9 {
	flex: 9;
}

.flex-10 {
	flex: 10;
}

.flex-shrink {
	flex-shrink: 0;
}


.container {
	padding: 0;
}

/*  -- 内外边距 -- */
.m-0 {
	margin: 0;
}

/* #ifndef APP-PLUS-NVUE */
.m-auto {
	margin: auto;
}

/* #endif */
.m-1 {
	margin: 10px;
}

.m-1-5 {
	margin: 15px;
}
.m-2 {
	margin: 20px;
}

.m-3 {
	margin: 30px;
}

.m-4 {
	margin: 40px;
}

.m-4-5 {
	margin: 45px;
}
.m-5 {
	margin: 50px;
}

.mt-0 {
	margin-top: 0;
}

.mt-0-1 {
	margin-top: 1px;
}
.mt-0-2 {
	margin-top: 2px;
}
.mt-0-3 {
	margin-top: 3px;
}
.mt-0-4 {
	margin-top: 4px;
}
.mt-0-5 {
	margin-top: 5px;
}

.mt-0--1 {
	margin-top: -1px;
}

.mb-0--1 {
	margin-bottom: -1px;
}

/* #ifndef APP-PLUS-NVUE */
.mt-auto {
	margin-top: auto;
}

/* #endif */
.mt-1 {
	margin-top: 10px;
}

.mt-1-5 {
	margin-top: 15px;
}

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

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

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

.mt-5 {
	margin-top: 50px;
}

.mt-6 {
	margin-top: 60px;
}

.mt-7 {
	margin-top: 70px;
}

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

.mt-9 {
	margin-top: 90px;
}

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

.mb-0 {
	margin-bottom: 0;
}

/* #ifndef APP-PLUS-NVUE */
.mb-auto {
	margin-bottom: auto;
}

/* #endif */
.mb-0-5 {
	margin-bottom: 5px;
}

.mb-0-6 {
	margin-bottom: 6px;
}
.mb-1 {
	margin-bottom: 10px;
}

.mb-1-5 {
	margin-bottom: 15px;
}

.mb-2 {
	margin-bottom: 20px;
}

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

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

.mb-5 {
	margin-bottom: 50px;
}

.mb-6 {
	margin-bottom: 60px;
}

.mb-7 {
	margin-bottom: 70px;
}
.mb-8 {
	margin-bottom: 8ch;
}
.mb-9 {
	margin-bottom: 90px;
}
.mb-10 {
	margin-bottom: 100px;
}

.mb-11 {
	margin-bottom: 110px;
}
.mb-12 {
	margin-bottom: 120px;
}
.mb-13 {
	margin-bottom: 130px;
}
.mb-14 {
	margin-bottom: 140px;
}
.mb-20 {
	margin-bottom: 200px;
}


.ml-0 {
	margin-left: 0;
}
.ml-0-6 {
	margin-left: 6px;
}
/* #ifndef APP-PLUS-NVUE */
.ml-auto {
	margin-left: auto;
}

/* #endif */
.ml-1 {
	margin-left: 10px;
}

.ml-1-5 {
	margin-left: 15px;
}

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

.ml-3 {
	margin-left: 30px;
}

.ml-4 {
	margin-left: 40px;
}

.ml-5 {
	margin-left: 50px;
}

.ml-6 {
	margin-left: 60px;
}

.ml-7 {
	margin-left: 70px;
}

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

.ml-9 {
	margin-left: 90px;
}

.ml-10 {
	margin-left: 100px;
}

.mr-0 {
	margin-right: 0;
}
.mr-0-5 {
	margin-right: 5px;
}
.mr-0-6 {
	margin-right: 6px;
}
/* #ifndef APP-PLUS-NVUE */
.mr-auto {
	margin-right: auto;
}

/* #endif */
.mr-1 {
	margin-right: 10px;
}

.mr-1-5 {
	margin-right: 15px;
}

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

.mr-3 {
	margin-right: 30px;
}

.mr-4 {
	margin-right: 40px;
}

.mr-5 {
	margin-right: 50px;
}

.mr-8 {
	margin-right: 80px;
}
.mr-15 {
	margin-right: 150px;
}

.my-0 {
	margin-top: 0;
	margin-bottom: 0;
}

/* #ifndef APP-PLUS-NVUE */
.my-auto {
	margin-top: auto;
	margin-bottom: auto;
}

/* #endif */
.my-1 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.my-2 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.my-3 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.my-4 {
	margin-top: 40px;
	margin-bottom: 40px;
}

.my-5 {
	margin-top: 50px;
	margin-bottom: 50px;
}
.my-6 {
	margin-top: 60px;
	margin-bottom: 60px;
}

.mx-0 {
	margin-left: 0;
	margin-right: 0;
}

/* #ifndef APP-PLUS-NVUE */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

/* #endif */
.mx-1 {
	margin-left: 10px;
	margin-right: 10px;
}

.mx-2 {
	margin-left: 20px;
	margin-right: 20px;
}

.mx-3 {
	margin-left: 30px;
	margin-right: 30px;
}

.mx-4 {
	margin-left: 40px;
	margin-right: 40px;
}

.mx-5 {
	margin-left: 50px;
	margin-right: 50px;
}

.mx-5-5 {
	margin-left: 55px;
	margin-right: 55px;
}
.mx-6 {
	margin-left: 60px;
	margin-right: 60px;
}
.p-0 {
	padding: 0;
}

.p {
	padding: 5px;
}

.p-1 {
	padding: 10px;
}
.p-1-5 {
	padding: 15px;
}
.p-2 {
	padding: 20px;
}

.p-3 {
	padding: 30px;
}

.p-4 {
	padding: 40px;
}

.p-5 {
	padding: 50px;
}

.pt-0 {
	padding-top: 0;
}

.pt {
	padding-top: 5px;
}

.pt-1 {
	padding-top: 10px;
}

.pt-2 {
	padding-top: 20px;
}

.pt-3 {
	padding-top: 30px;
}

.pt-4 {
	padding-top: 40px;
}

.pt-5 {
	padding-top: 50px;
}

.pt-7 {
	padding-top: 70px;
}

.pt-8 {
	padding-top: 80px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-1 {
	padding-bottom: 10px;
}

.pb {
	padding-bottom: 5px;
}

.pb-2 {
	padding-bottom: 20px;
}

.pb-3 {
	padding-bottom: 30px;
}

.pb-4 {
	padding-bottom: 40px;
}

.pb-5 {
	padding-bottom: 50px;
}
.pb-6 {
	padding-bottom: 60px;
}
.pb-7 {
	padding-bottom: 70px;
}
.pb-8 {
	padding-bottom: 80px;
}
.pb-9 {
	padding-bottom: 90px;
}

.pb-10 {
	padding-bottom: 100px;
}
.pl-0 {
	padding-left: 0;
}

.pl {
	padding-left: 5px;
}

.pl-1 {
	padding-left: 10px;
}

.pl-2 {
	padding-left: 20px;
}

.pl-3 {
	padding-left: 30px;
}

.pl-4 {
	padding-left: 40px;
}

.pl-5 {
	padding-left: 50px;
}

.pr-0 {
	padding-right: 0;
}

.pr {
	padding-right: 5px;
}

.pr-1 {
	padding-right: 10px;
}

.pr-2 {
	padding-right: 20px;
}

.pr-3 {
	padding-right: 30px;
}

.pr-4 {
	padding-right: 40px;
}

.pr-5 {
	padding-right: 50px;
}

.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}

.py {
	padding-top: 5px;
	padding-bottom: 5px;
}

.py-1 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.py-2 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.py-3 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.py-4 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.py-5 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.py-6 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.py-7 {
	padding-top: 70px;
	padding-bottom: 70px;
}

.px-0 {
	padding-left: 0;
	padding-right: 0;
}

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

.px {
	padding-left: 5px;
	padding-right: 5px;
}

.px-2 {
	padding-left: 20px;
	padding-right: 20px;
}

.px-3 {
	padding-left: 30px;
	padding-right: 30px;
}

.px-4 {
	padding-left: 40px;
	padding-right: 40px;
}

.px-5 {
	padding-left: 50px;
	padding-right: 50px;
}

.px-6 {
	padding-left: 60px;
	padding-right: 60px;
}

.px-10 {
	padding-left: 100px;
	padding-right: 100px;
}
/* 文字大小 */
.font-small {
	font-size: 20px;
}

.font-sm {
	font-size: 25px;
}

.font {
	font-size: 30px;
}

.font-md {
	font-size: 35px;
}

.font-lg {
	font-size: 40px;
}

.font-llg {
	font-size: 45px;
}

.font-vlg {
	font-size: 50px;
}

.font-slg {
	font-size: 55px;
}

.font-sslg {
	font-size: 60px;
}

.h1 {
	font-size: 80px;
	line-height: 1.8;
}

.h2 {
	font-size: 60px;
	line-height: 1.8;
}

.h3 {
	font-size: 45px;
	line-height: 1.8;
}

.h4 {
	font-size: 32px;
	line-height: 1.8;
}

.h5 {
	font-size: 30px;
	line-height: 1.8;
}

.h6 {
	font-size: 28px;
	line-height: 1.8;
}

/* 文字缩进 */
/* #ifndef APP-PLUS-NVUE */
.text-indent {
	text-indent: 2;
}

/* #endif */
/* 文字划线 */
.text-through {
	text-decoration: line-through;
}

/* 文字对齐 */
.text-left {
	text-align: left;
}

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

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

/* 文字换行溢出处理 */
.text-ellipsis {
	/* #ifndef APP-PLUS-NVUE */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	/* #endif */
	/* #ifdef APP-PLUS-NVUE */
	lines: 1;
	/* #endif */
}

/* 文字粗细和斜体 */
.font-weight-light {
	font-weight: 300;
}

/*细*/
.font-weight-lighter {
	font-weight: 100;
}

/*更细*/
.font-weight-normal {
	font-weight: 400;
}

/*正常*/
.font-weight-bold {
	font-weight: 700;
}

/*粗*/
.font-weight-bolder {
	font-weight: bold;
}

/*更粗*/
.font-italic {
	font-style: italic;
}

.font-weight-500 {
	font-weight: 500;
}

/*斜体*/
/* 文字颜色 */
.text-white {
	color: #ffffff;
}

.text-primary {
	color: #007bff;
}

.text-hover-primary {
	color: #0056b3;
}

.text-secondary {
	color: #6c757d;
}

.text-hover-secondary {
	color: #494f54;
}

.text-success {
	color: #28a745;
}

.text-hover-success {
	color: #19692c;
}

.text-info {
	color: #17a2b8;
}

.text-hover-info {
	color: #0f6674;
}

.text-warning {
	color: #ffc107;
}

.text-hover-warning {
	color: #ba8b00;
}

.text-danger {
	color: #f12f0e;
}
.text-red {
	color: #ff0000;
}

.text-hover-danger {
	color: #a71d2a;
}

.text-light {
	color: #f8f9fa;
}

.text-hover-light {
	color: #cbd3da;
}

.text-dark {
	color: #343a40;
}

.text-hover-dark {
	color: #121416;
}

.text-body {
	color: #212529;
}

.text-muted {
	color: #cccccc;
}

.text-light-muted {
	color: #A9A5A0;
}

.text-222 {
	color: #222222;
}

.text-333 {
	color: #333333;
}

.text-444 {
	color: #444444;
}

.text-555 {
	color: #555555;
}

.text-666 {
	color: #666666;
}

.text-777 {
	color: #777777;
}

.text-888 {
	color: #888888;
}

.text-999 {
	color: #999999;
}

.text-ddd {
	color: #DDDDDD;
}

.text-cbcbcb{
	color: #CBCBCB;
}

.text-1373EC{
	color: #1373EC;
}

.text-light-black {
	color: rgba(0, 0, 0, 0.5);
}

.text-light-white {
	color: rgba(255, 255, 255, 0.5);
}

/* 背景颜色 */
.bg-white {
	background-color: #ffffff;
}

.bg-transparent {
	background-color: transparent;
}

.bg-primary {
	background-color: #007bff;
}

.bg-hover-primary:hover {
	background-color: #0062cc;
}

.bg-secondary {
	background-color: #6c757d;
}

.bg-hover-secondary:hover {
	background-color: #545b62;
}

.bg-success {
	background-color: #28a745;
}
.bg-d5d5d5{
	background-color: #d5d5d5;
}
.bg-555{
	background-color: #555555;
}
.bg-hover-success {
	background-color: #1e7e34;
}

.bg-info {
	background-color: #17a2b8;
}

.bg-hover-info {
	background-color: #117a8b;
}

.bg-warning {
	background-color: #ffc107;
}

.bg-hover-warning {
	background-color: #d39e00;
}

.bg-danger {
	background-color: #dc3545;
}

.bg-hover-danger {
	background-color: #bd2130;
}

.bg-light {
	background-color: #f8f9fa !important;
}

.bg-hover-light {
	background-color: #dae0e5 !important;
}

.bg-light-grey {
	background-color: #f5f5f5 !important;
}

.bg-dark {
	background-color: #343a40;
}

.bg-hover-dark {
	background-color: #1d2124;
}
.bg-red{
	background-color: #FF0000;
}

.bg-hover-grey {
	/* background-color: #f7f7f7 !important; */
	background-color: #eee !important;
}
.bg-long-grey{
	background-color: #eee !important;
}

.bg-orange {
	background-color: #ff5b00;
}

.bg-eee {
	background-color: #eeeeee;
}

.bg-333 {
	background-color: #333333;
}

.bg-999 {
	background-color: #999999;
}

.bg-f8f8f8 {
	background-color: #f8f8f8;
}

.bg-cbcbcb{
	background: #CBCBCB;
}

.bg-ccc {
	background: #CCCCCC;
}

.bg-f8 {
	background: #F8F8F8;
}
.bg-ic {
	background-color: #1c1c1c;
}
.bg-000 {
	background-color: #000000;
}


/* 边框 */
.border {
	border-width: 1px;
	border-style: solid;
	border-color: #dddddd;
}

.border-top {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dddddd;
}

.border-right {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #dddddd;
}

.border-bottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dddddd;
}

.border-left {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #dddddd;
}

.border-0 {
	border-width: 0 !important;
}

.border-top-0 {
	border-top-width: 0 !important;
}

.border-right-0 {
	border-right-width: 0 !important;
}

.border-bottom-0 {
	border-bottom-width: 0 !important;
}

.border-left-0 {
	border-left-width: 0 !important;
}

.border-primary {
	border-color: #007bff;
}

.border-secondary {
	border-color: #6c757d;
}

.border-light-secondary {
	border-color: #E9E8E5;
}

.border-success {
	border-color: #28a745;
}

.border-info {
	border-color: #17a2b8;
}

.border-warning {
	border-color: #ffc107;
}

.border-danger {
	border-color: #dc3545;
}

.border-light {
	border-color: #f8f9fa;
}

.border-dark {
	border-color: #343a40;
}

.border-white {
	border-color: #FFFFFF;
}

/*头像边框*/
.avater-boder {
	border-width: 6px;
	border-style: solid;
	border-color: #FFFFFF;
}

/* 圆角 */
.rounded {
	border-radius: 4px;
}

.rounded-big {
	border-radius: 6px;
}

.rounded-10 {
	border-radius: 5px;
}

.rounded-vbig {
	border-radius: 10px;
}

.rounded-t-l-0 {
	border-top-left-radius: 0;
}

.rounded-t-r-0 {
	border-top-right-radius: 0;
}

.rounded-b-l-0 {
	border-bottom-left-radius: 0;
}

.rounded-b-r-0 {
	border-bottom-right-radius: 0;
}

.rounded-b-l-8 {
	border-bottom-left-radius: 40px;
}

.rounded-b-r-8 {
	border-bottom-right-radius: 40px;
}

.rounded-b-l-9 {
	border-bottom-left-radius: 45px;
}

.rounded-b-r-9 {
	border-bottom-right-radius: 45px;
}
.rounded-b-l-0 {
	border-bottom-left-radius: 0;
}
.rounded-b-r-0 {
	border-bottom-right-radius: 0;
}

.rounded-t-0 {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.rounded-b-0 {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.rounded-b-6 {
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}


/* lzj 开始 */
.text-222 {
	color: #222222;
}

.text-666 {
	color: #666666;
}

.text-ccc {
	color: #cccccc;
}

.text-aaa {
	color: #AAAAAA
}

.text-ff342a {
	color: #ff342a;
}

.text-fff {
	color: #FFFFFF;
}

.text-orange {
	color: #ff6600;
}

.text-blue {
	color: #1373ec;
}
.text-ff0 {
	color: #ffff00;
}

.bg-main-blue {
	background-color: #1373ec;
}

.bg-2953fd {
	background-color: #295efd;
}
.bg-222 {
	background-color: #222222;
}
.bg-ee0000 {
	background-color: #ee0000;
}
.bg-ff342a {
	background-color: #ff342a;
}

.bg-dddddd {
	background-color: #dddddd;
}

.bg-grey {
	background-color: #E5E5E5;
}

.bg-ff342a {
	background-color: #ff342a;
}

.bg-warning {
	background-color: #ff5555;
}

.rounded-50 {
	border-radius: 50%;
}

.bg-orange {
	background-color: #fc6500;
}

/* 阴影 */
.b-shadow {
	box-shadow: 10px 12px 50px 0px rgba(0, 0, 0, 0.08);
}

.text-main-blue {
	color: #1373ec;
}

/* #ifndef APP-PLUS-NVUE */
.position-absolute-centerX {
	position: absolute;
	left: 50%;
	/* -webkit-transform: scaleY(.5); */
}

/* #endif*/
.font-38 {
	font-size: 38px;
}

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

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

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

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

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

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

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

.font-18 {
	font-size: 18px;
}
.font-16 {
	font-size: 16px;
}
.font-14 {
	font-size: 14px;
}
.font-13 {
	font-size: 13px;
}
.font-12 {
	font-size: 12px;
}

.font-48 {
	font-size: 48px;
}
.font-50 {
	font-size: 50px;
}

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

.font-family-SHS {
	font-family: SourceHanSansCN;	
}

.font-family-SHSC-R {
	font-family: SourceHanSansCN-Regular
}

/* .font-family-SSB {
	font-family: SKSans-Bold;	
} */

/* .font-weight-bold {
	font-weight: bold;
} */

.mx-1-5 {
	margin-left: 15px;
	margin-right: 15px;
}

.mx-2-5 {
	margin-left: 25px;
	margin-right: 25px;
}

.mx-3-5 {
	margin-left: 35px;
	margin-right: 35px;
}

.mx-4-5 {
	margin-left: 45px;
	margin-right: 45px;
}
.mx-10{
	margin-left: 100px;
	margin-right: 100px;
}
.my-1-5 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.my-2-5 {
	margin-top: 25px;
	margin-bottom: 25px;
}

.my-3-5 {
	margin-top: 35px;
	margin-bottom: 35px;
}

.my-4-5 {
	margin-top: 45px;
	margin-bottom: 45px;
}

.mt-1-5 {
	margin-top: 15px;
}

.mt-2-5 {
	margin-top: 25px;
}

.mt-3-5 {
	margin-top: 35px;
}

.mt-4-5 {
	margin-top: 45px;
}

.mb-1-5 {
	margin-bottom: 15px;
}

.mb-2-5 {
	margin-bottom: 25px;
}

.mb-3-5 {
	margin-bottom: 35px;
}

.mb-4-5 {
	margin-bottom: 45px;
}

.ml-1-5 {
	margin-left: 15px;
}

.ml-2-5 {
	margin-left: 25px;
}

.ml-3-5 {
	margin-left: 35px;
}

.ml-4-5 {
	margin-left: 45px;
}

.ml-5-5 {
	margin-left: 55px;
}
.ml-15{
	margin-left: 150px;
}
.mr-1-5 {
	margin-right: 15px;
}

.mr-2-5 {
	margin-right: 25px;
}

.mr-3-5 {
	margin-right: 35px;
}

.mr-4-5 {
	margin-right: 45px;
}

.mr-5-5 {
	margin-right: 55px;
}

.px-1-5 {
	padding-left: 15px;
	padding-right: 15px;
}

.px-2-5 {
	padding-left: 25px;
	padding-right: 25px;
}

.px-3-5 {
	padding-left: 35px;
	padding-right: 35px;
}

.px-4-5 {
	padding-left: 45px;
	padding-right: 45px;
}

.px-5-5 {
	padding-left: 55px;
	padding-right: 55px;
}

.py-1-5 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.py-2-5 {
	padding-top: 25px;
	padding-bottom: 25px;
}

.py-3-5 {
	padding-top: 35px;
	padding-bottom: 35px;
}

.py-4-5 {
	padding-top: 45px;
	padding-bottom: 45px;
}

.py-5-5 {
	padding-top: 55px;
	padding-bottom: 55px;
}

.pt-1-5 {
	padding-top: 15px;
}

.pt-2-5 {
	padding-top: 25px;
}

.pt-3-5 {
	padding-top: 35px;
}

.pt-4-5 {
	padding-top: 45px;
}

.pt-5-5 {
	padding-top: 55px;
}

.pb-1-5 {
	padding-bottom: 15px;
}

.pb-2-5 {
	padding-bottom: 25px;
}

.pb-3-5 {
	padding-bottom: 35px;
}

.pb-4-5 {
	padding-bottom: 45px;
}

.pb-5-5 {
	padding-bottom: 55px;
}

.pl-1-5 {
	padding-left: 15px;
}

.pl-2-5 {
	padding-left: 25px;
}

.pl-3-5 {
	padding-left: 35px;
}

.pl-4-5 {
	padding-left: 45px;
}

.pl-5-5 {
	padding-left: 55px;
}

.pr-1-5 {
	padding-right: 15px;
}

.pr-2-5 {
	padding-right: 25px;
}

.pr-3-5 {
	padding-right: 35px;
}

.pr-4-5 {
	padding-right: 45px;
}

.pr-5-5 {
	padding-right: 55px;
}

/* lzj 结束 */
.rounded-top {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.rounded-right {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.rounded-bottom {
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

.rounded-left {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

.rounded-circle {
	border-radius: 500px;
}

.rounded-0 {
	border-radius: 0;
}

/* 显示 */
/* #ifndef APP-PLUS-NVUE */
.d-none {
	display: none;
}

.d-inline-block {
	display: inline-block;
}

.d-block {
	display: block;
}

/* #endif */
/* 内容溢出 */
.overflow-hidden {
	overflow: hidden;
}

/* 定位 */
.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.position-fixed {
	position: fixed;
}

/* 定位 - 固定顶部 */
.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

/* 定位 - 固定底部 */
.fixed-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
}

.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.right-0 {
	right: 0;
}

.bottom-0 {
	bottom: 0;
}

.bottom-7 {
	bottom: 70px;
}

/* 阴影 */
/* #ifndef APP-PLUS-NVUE */
.shadow {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
	box-shadow: 0px 40px 100px 0px rgba(0, 0, 0, 0.175);
}

.shadow-none {
	box-shadow: none !important;
}

/* #endif */

.overflow-y{
	overflow-y: auto;
}