/* 去除图片空白 */

.gui-img-in {
	font-size: 0;
}

/* flex 布局 */

.gui-flex {
	display: flex;
}

.gui-border-box {
	box-sizing: border-box;
}

/* flex 布局 */

.gui-rows {
	flex-direction: row;
}

.gui-columns {
	flex-direction: column;
}

.gui-wrap {
	flex-direction: row;
	flex-wrap: wrap;
}

.gui-nowrap {
	flex-direction: row;
	flex-wrap: nowrap;
}

.gui-space-around {
	justify-content: space-around;
}

.gui-space-between {
	justify-content: space-between;
}

.gui-justify-content-start {
	justify-content: flex-start;
}

.gui-justify-content-center {
	justify-content: center;
}

.gui-justify-content-end {
	justify-content: flex-end;
}

.gui-align-items-start {
	align-items: flex-start;
}

.gui-align-items-center {
	align-items: center;
}

.gui-align-items-end {
	align-items: flex-end;
}

.gui-flex1 {
	flex: 1;
}

/* 文本对齐 */

.gui-text-left {
	text-align: left !important;
}

.gui-text-center {
	text-align: center !important;
}

.gui-text-right {
	text-align: right !important;
}

.gui-ellipsis {
	overflow: hidden;
}

/* 定位 */

.gui-relative {
	position: relative;
}

.gui-absolute-lt {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
}

.gui-absolute-rt {
	position: absolute;
	z-index: 2;
	right: 0;
	top: 0;
}

.gui-absolute-lb {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
}

.gui-absolute-rb {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
}

.gui-fixed-lt {
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
}

.gui-fixed-rt {
	position: fixed;
	z-index: 2;
	right: 0;
	top: 0;
}

.gui-fixed-lb {
	position: fixed;
	z-index: 2;
	left: 0;
	bottom: 0;
}

.gui-fixed-rb {
	position: fixed;
	z-index: 2;
	right: 0;
	bottom: 0;
}

/* 背景色 */

.gui-bg-red {
	background-color: #EE0A25 !important;
}

.gui-bg-green {
	background-color: #07C160 !important;
}

.gui-bg-blue {
	background-color: #008AFF !important;
}

.gui-bg-orange {
	background-color: #ED6A0C !important;
}

.gui-bg-yellow {
	background-color: #FBDE4E !important;
}

.gui-bg-purple {
	background-color: #8A3FD4 !important;
}

.gui-bg-white {
	background-color: #FFFFFF !important;
}

.gui-bg-black {
	background-color: #2B2E3D !important;
}

.gui-bg-black {
	background-color: #2B2E3D !important;
}

.gui-bg-black2 {
	background-color: #656565 !important;
}

.gui-bg-black3 {
	background-color: #969799 !important;
}

.gui-bg-black4 {
	background-color: #C8C9CC !important;
}

.gui-bg-black-opacity7 {
	background-color: rgba(0, 0, 0, 0.7);
}

.gui-bg-black-opacity5 {
	background-color: rgba(0, 0, 0, 0.5);
}

.gui-bg-black-opacity3 {
	background-color: rgba(0, 0, 0, 0.3) !important;
}

.gui-bg-f2 {
	background-color: #f2f2f2 !important;
}

.gui-bg-f4 {
	background-color: #f4f4f4 !important;
}

.gui-gtbg-red {
	background-image: linear-gradient(45deg, #FF0066, #D50000) !important;
}

.gui-gtbg-blue {
	background-image: linear-gradient(45deg, #5887DF, #008AFF) !important;
}

.gui-gtbg-green {
	background-image: linear-gradient(45deg, #39B55A, #8DC63E) !important;
}

.gui-bg-gray {
	background-color: #F7F8FA !important;
}

.gui-bg-white {
	background-color: #FFFFFF !important;
}

/* 内置颜色 */

.gui-color-black {
	color: #2B2E3D !important;
}

.gui-color-white {
	color: #FFFFFF !important;
}

.gui-color-gray {
	color: rgba(69, 90, 100, 0.6) !important;
}

.gui-color-gray-light {
	color: rgba(69, 90, 100, 0.3) !important;
}

.gui-color-blue {
	color: #008AFF !important;
}

.gui-color-red {
	color: #EE0A25 !important;
}

.gui-color-orange {
	color: #ff6600 !important;
}

.gui-color-purple {
	color: #8A3FD4 !important;
}

.gui-color-green {
	color: #39B55A !important;
}

.gui-color-yellow {
	color: #FBDE4E !important;
}

.gui-mid {
	display: inline-block;
	height: 16px;
	width: 1px;
	margin: 0 10px;
	vertical-align: middle;
	background-color: #e2e2e2;
}

/* 字体大小 */

.gui-font-12 {
	font-size: 12px;
}

.gui-font-14 {
	font-size: 14px;
}

.gui-font-16 {
	font-size: 16px;
}

.gui-font-18 {
	font-size: 18px;
}

.gui-font-20 {
	font-size: 20px;
}

.ppp {
	background-image: -webkit-linear-gradient(left, #ff3300, #E6D205 25%, #ff6600 50%, #E6D205 75%, #ff9900);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-background-size: 200% 100%;
	-webkit-animation: maskedAnimation 4s infinite linear;
}

@keyframes maskedAnimation {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: -100% 0;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.line-1 {
	width: 100%;
	white-space: nowrap;
	/* 防止文本换行 */
	overflow: hidden;
	/* 隐藏超出容器的文本 */
	text-overflow: ellipsis;
	/* 当文本超出容器宽度时显示省略号 */
}