

/* CSS Document */
body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font: 12px/2 微软雅黑, Verdana, Arial, Helvetica, sans-serif;
	position: relative;
}

p {
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
}

img {
	border: 0;
}

.c-b,
.clear {
	clear: both;
}

a {
	text-decoration: none;
	color: #404040;
}

.hide {
	display: none !important;
}

.pointer-none {
	pointer-events: none;
}

*::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 4px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 4px;
}

*::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.1);
}



/*主框架*/
.diy-form {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #F9FAFC;
}

.diy-head {
	position: relative;
}

.diy-body {
	display: flex;
	flex: 1;
	width: 100%;
	overflow: auto;
	background: #F9FAFC;
}

.diy-left {
	width: 275px;
	overflow: auto;
	background: #FFFFFF;
}

.diy-center {
	display: flex;
	flex: 1;
	justify-content: center;
	height: 100%;
	padding: 15px;
	overflow: auto;
	transition: all ease .2s;
}

.diy-right {
	width: 265px;
	overflow: auto;
	background: #FFFFFF;
	transition: all ease .2s;
	animation-duration: .2s;
}

/*头部工具栏*/
.diy-head {
	background: #fff;
	height: 50px;
	line-height: 50px;
}

	.diy-head .back,
	.diy-head .diy-nav,
	.diy-head .diy-tools {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		height: 100%;
	}

	.diy-head .back {
		font-size: 20px;
		font-weight: 600;
	}

		.diy-head .back:before {
			margin: 0 10px;
			font-weight: 100;
		}

	.diy-head .diy-tools {
		position: absolute;
		top: 0;
		right: 0;
	}

		.diy-head .diy-tools span {
			margin: 0 5px;
		}

/*左侧工具栏*/
/*标签组*/
.field-tips {
	padding: 20px;
}

	.field-tips .title {
		font-size: 16px;
		font-weight: 600;
	}

.field-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 14px;
}

.field {
	display: flex;
	align-items: center;
	width: 108px;
	padding: 3px 0;
	margin-top: 12px;
	border: 1px solid #e6eaf0;
	border-radius: 4px;
	color: #494f57;
	cursor: pointer;
	background: #F9FAFC;
}

	.field.selected {
		cursor: not-allowed;
	}

	.field span.text {
		width: 80%;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.field span.fa-check {
		visibility: hidden;
	}

	.field.selected span.fa-check {
		visibility: visible;
		width: 10%;
		color: #4caf50;
	}

.field-block {
	width: 100%;
}

.field i {
	padding: 0 10px;
	text-align: center;
}

.field:hover {
	color: #000;
	border: 1px solid #ccc;
	background: #f9f9f9;
}

/*右侧工具栏*/
.diy-right {
	padding: 20px;
}

	.diy-right .menu {
		font-size: 16px;
		font-weight: 600;
	}

		.diy-right .menu i {
			margin: 0 10px 0 0;
			font-weight: 100;
			color: #999;
		}

.field-nature {
	padding: 20px 0;
}

.layout {
	margin-bottom: 20px;
}

/*移动表单*/
.choseClass {
	background: #f2f2f2;
}

	.choseClass:after {
		display: block;
		content: '';
		clear: both
	}

	.choseClass.ghost {
		opacity: 0.2;
		background: none;
	}

/*表单框架按钮*/
.diy-mode .panel {
	position: absolute;
	top: 0;
	right: 10px;
	z-index: 9;
	padding: 10px 0;
}

	.diy-mode .panel i {
		display: none;
		cursor: pointer;
		color: #999;
	}

.form-box:hover .panel i {
	font-size: 16px;
	display: inline-block;
}

.diy-mode .panel i:hover {
	color: #333;
}

.form-box .drag {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	text-align: center;
	z-index: 3;
	cursor: move;
}



/*后台框架部分结束*/

/********前后台表单部分********/

/*按钮*/
.btn {
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 2px;
	cursor: pointer;
	background: #f9f9f9;
	transition: all 0.2s;
	font-size: 12px;
	padding: 5px 12px;
	max-height: 36px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

	.btn:hover {
		background: #fff;
	}

.btn-default {
	background: #f9f9f9;
}

	.btn-default:hover {
		background: #fff;
	}

.btn-danger {
	border: 1px solid #d97313;
	background: #f38416;
	color: #fff;
}

	.btn-danger:hover {
		background: #ff8717;
	}

.btn-primary {
	border: 1px solid #0b98d9;
	background: #1E9FFF;
	color: #fff;
}

	.btn-primary:hover {
		background: #4cb3ff;
	}

.btn-small {
	font-size: 12px;
	padding: 3px 6px;
	line-height: 1;
}

.btn-big {
	font-size: 14px;
	padding: 10px 20px;
	font-weight: 600;
	line-height: 1;
}

/*表单公用部分*/
.form-content {
	width: 100%;
}

.form-head {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0 0 0/10%);
	padding: 15px;
	margin-bottom: 15px;
}

.form-head-title {
	margin-bottom: 15px;
}

	.form-head-title span {
		font-size: 18px;
		font-weight: bold;
	}

	.form-head-title input {
		border: 0;
		outline: none;
		font-size: 18px;
		font-weight: bold;
	}

.form-head-intro {
}

	.form-head-intro span {
		font-size: 14px;
		color: #999;
	}

	.form-head-intro textarea {
		border: 0;
		outline: none;
		font-size: 14px;
		color: #999;
	}

.form-body {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0 0 0/10%);
	padding: 10px;
	margin-bottom: 15px;
}

.diy-tips {
	padding: 30px 0;
	text-align: center;
}

	.diy-tips span {
		display: block;
		margin-bottom: 15px;
		color: #999;
		font-size: 16px;
	}

	.diy-tips a {
		display: inline-block;
		font-size: 14px;
		font-weight: bold;
	}

.diy-mode {
}

.Component {
	display: flex;
	flex-wrap: wrap;
}

.form-box {
	display: flex;
	flex-wrap: wrap;
	border-radius: 5px;
	position: relative;
	width: 100%;
}

	.form-box:hover {
		background: #f9f9f9;
	}

	.form-box.act {
		background: #eff3fd;
	}

.lg-form-item {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	margin: 0;
}

.lg-form-item-25 {
	width: 25%;
}

.lg-form-item-50 {
	width: 50%;
}

.lg-form-item-75 {
	width: 75%;
}

.lg-form-item.act {
	background: #eff3fd;
}

/*默认表单样式*/
.lg-form-default {
}

/*表单*/
.lg-form-item {
	position: relative;
}

.lg-form-title {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 600;
}

	.lg-form-title span.text font {
		color: #F43838;
		padding: 0 6px;
	}

	.lg-form-title i {
		color: #F43838;
		padding: 0 6px;
		font-style: unset;
	}

	.lg-form-title span.tip-btn {
		margin: 0 10px;
		color: #aaa;
		cursor: pointer;
	}

.lg-form-title {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

	.lg-form-title span.cn {
		color: #333;
		font-size: 15px;
		margin-right: 10px;
	}

	.lg-form-title span.en {
		color: #999;
		font-weight: normal;
		font-size: 12px;
	}


.lg-required {
	display: inline-block;
	height: 20px;
	line-height: 20px;
	margin-left: 10px;
	font-size: 12px;
	font-weight: normal;
	background: #f19311;
	color: #fff;
	padding: 0 6px;
	position: relative;
}

	.lg-required:before {
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-top: 10px solid transparent;
		border-right: 8px solid #f19311;
		border-bottom: 10px solid transparent;
		position: absolute;
		left: -8px;
		top: 0;
	}

.lg-form-tips {
	margin-bottom: 8px;
	color: #999;
}

.lg-form-control {
	position: relative;
	border-radius: 5px;
	margin-bottom: 10px;
}

.lg-form-fa-item {
	position: relative;
}

	.lg-form-fa-item .lg-form-control input {
		padding-left: 30px;
	}

	.lg-form-fa-item .lg-form-control .fa {
		position: absolute;
		top: 12px;
		left: 10px;
		color: #999;
	}

.lg-input {
	width: 100%;
}

.lg-input-text {
	border: 1px solid #eee;
	border-radius: 2px;
	height: 36px;
	line-height: 36px;
	padding: 0 0 0 10px;
}

	.lg-input-text:focus {
		outline: 1px solid #9ad9f3;
		box-shadow: 0 0 6px #9ad9f3;
	}

.lg-form-inputs {
}

.relation {
	padding-left: 5px;
	margin-top: 15px;
}

.lg-form-inputs {
	display: flex;
	align-items: center;
}

	.lg-form-inputs span.break {
		margin: 0 5px;
	}

.lg-textarea {
	width: 100%;
	border: 1px solid #eee;
	border-radius: 2px;
	padding: 7px;
	max-width: 100%;
	height: auto;
	min-height: 36px;
	line-height: 1.5715;
	vertical-align: bottom;
}

	.lg-textarea:focus {
		outline: 1px solid #9ad9f3;
		box-shadow: 0 0 6px #9ad9f3;
	}

.lg-relation-text {
	margin-top: 10px;
}

.lg-like-input {
	min-height: 36px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}

	.lg-like-input span {
		max-width: 100%;
		height: 28px;
		border-radius: 4px;
		background: #F4F6F9;
		line-height: 28px;
		margin-top: 3px;
		margin-bottom: 3px;
		margin-inline-end: 4px;
		padding-inline-start: 8px;
		padding-inline-end: 4px;
		-webkit-user-select: none;
		user-select: none;
		cursor: default;
	}

/*表单渲染*/
.lg-form-group {
	display: flex;
	flex-wrap: wrap;
}

.lg-form-block {
	display: flex;
	flex-direction: column;
}

.lg-form-inline {
	display: inline-flex;
	position: relative;
}

	.lg-form-inline * {
		width: auto;
	}

	.lg-form-inline .lg-input {
		margin-right: 10px;
	}

	.lg-form-inline .lb-txt {
		padding: 5px 0;
	}

/*多行文本框*/
.lg-form-list {
	display: flex;
	flex-direction: column;
}

.lg-form-list-item {
	display: flex;
	flex-direction: column;
}

.lg-form-list-title {
	padding: 0 10px;
	line-height: 36px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #777;
}

.lg-form-list-item .lg-input-text {
	width: auto;
}

.lg-form-showText {
	border: 1px solid #f0f0f0;
	padding: 6px 10px;
	background: #fff;
	margin-bottom: 10px;
}

	.lg-form-showText pre {
		color: #565656;
		font-family: inherit
	}

/*复选框*/
.checkbox {
	display: none;
}

.lg-form-checkbox {
	display: inline-flex;
	margin: 6px 6px 6px 0;
	cursor: pointer;
}

	.lg-form-checkbox i {
		display: inline-block;
		flex-shrink: 0;
		width: 16px;
		height: 16px;
		margin: 0 6px;
		text-align: center;
		line-height: 16px;
		border: 1px solid #d2d2d2;
		font-size: 12px;
		border-radius: 2px;
	}

		.lg-form-checkbox i:before {
			opacity: 0;
		}

.lg-form-checked i {
	border: 1px solid #007DDB;
	background: #0095ff;
	color: #fff;
}

	.lg-form-checked i:before {
		opacity: 1;
	}

.lg-form-checkbox span {
	display: inline-block;
	line-height: 16px;
	font-size: 14px;
}

.lg-form-checkbox-box {
	border: 1px solid #eee;
	margin-left: 30px;
	border-radius: 5px;
	padding-left: 0px;
}

	.lg-form-checkbox-box .lg-form-checkbox {
		border-bottom: 1px solid #eee;
		margin: 0;
		padding: 10px;
	}

		.lg-form-checkbox-box .lg-form-checkbox:last-child {
			border: 0;
		}

/*单选按钮*/
.lg-form-radio {
	display: inline-flex;
	margin: 6px 6px 6px 0;
	cursor: pointer;
}

	.lg-form-radio input[type='radio'] {
		display: inline-block;
		margin: 1.5px;
	}

	.lg-form-radio i {
		display: inline-block;
		width: 16px;
		height: 16px;
		margin: 0 6px;
		text-align: center;
		line-height: 16px;
		border: 1px solid #d2d2d2;
		font-size: 8px;
		border-radius: 50%;
	}

		.lg-form-radio i:before {
			display: none;
			content: "";
			width: 6px;
			height: 6px;
			margin: 4px auto;
			border-radius: 50%;
			background: #fff;
		}

	.lg-form-radio.lg-form-checked i:before {
		display: block;
	}

	.lg-form-radio span {
		display: inline-block;
		line-height: 16px;
		font-size: 14px;
	}

/*下拉选项*/
.lg-form-select,
.lg-form-dress {
	position: relative;
}

.lg-select {
	position: relative;
}

	.lg-select .lg-input {
		cursor: pointer;
		padding: 0 36px 0 10px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.lg-select label {
		position: absolute;
		top: 5px;
		right: 5px;
		display: block;
		width: 26px;
		height: 26px;
		text-align: center;
		line-height: 26px;
		color: #999;
		cursor: pointer;
	}

.lg-form-select .select {
	min-width: 100%;
	background: #fff;
	box-shadow: 1px 1px 4px rgb(0 0 0 / 8%);
	border-radius: 2px;
	border: 1px solid #eee;
	margin: 1px 0;
	padding: 5px;
	max-height: 200px;
	overflow: auto;
}

	.lg-form-select .select .option {
		display: flex;
		align-items: center;
		min-height: 36px;
		line-height: 1.5;
		padding: 9px 10px;
		margin: 1px 0;
		border-radius: 2px;
		cursor: pointer;
		white-space: nowrap;
	}

		.lg-form-select .select .option:hover {
			background: #f9f9f9;
		}

		.lg-form-select .select .option.selected {
			background: #29b4ff;
			color: #fff;
		}

.lg-form-select .lg-select-position {
	min-width: 100%;
}

/*选项位置公用*/
.lg-select-position {
	display: none;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 9;
	animation: lg-select-upbit 0.3s forwards;
}

@keyframes lg-select-upbit {
	from {
		margin-top: 10px;
		opacity: 0;
	}

	to {
		margin-top: 0;
		opacity: 1;
	}
}

/*地址*/
.lg-form-dress {
	position: relative;
}

.lg-dress {
	margin-top: 10px;
}

/*地址公用*/

.dressBox {
	background: #fff;
	box-shadow: 0 3px 6px rgba(0 0 0/18%);
	pointer-events: auto;
	display: inline-flex;
	flex-direction: column;
	border: 1px solid #eee;
	border-radius: 2px;
}

.dress-tab {
	display: flex;
	flex-direction: row;
	justify-content: fex-start;
}

	.dress-tab span {
		align-self: auto;
		display: block;
		width: 100%;
		padding: 3px 6px;
		border-bottom: 1px solid #eee;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		cursor: pointer;
	}

		.dress-tab span.act {
			border-bottom: 1px solid #008000;
			color: #008200;
		}

.dress-btn {
	display: flex;
	justify-content: space-between;
}

	.dress-btn span {
		color: #737373;
		padding: 1px 10px;
		margin: 3px 5px;
		border-radius: 2px;
		cursor: pointer;
	}

		.dress-btn span:hover {
			background: rgba(0 0 0/3%);
			color: #000;
		}

.dress-list {
	display: flex;
	flex-direction: row;
	border-top: 1px solid #eee;
}

.dress-depth {
	flex: 1;
}

.dress-list ul {
	height: 160px;
	overflow: auto;
	overflow-x: hidden;
}

	.dress-list ul li {
		min-width: 111px;
	}

.dressBox .dress-depth:nth-child(2),
.dressBox .dress-depth:nth-child(3) {
	border-left: 1px solid #eee;
}

.dressBox ul li {
	font-size: 14px;
	padding: 5px 24px 5px 8px;
	overflow: hidden;
	line-height: 22px;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
	transition: all .3s;
	position: relative;
}

	.dressBox ul li:hover {
		background: #f2f2f2;
	}

	.dressBox ul li.selected {
		background: #fff9f0;
	}

	.dressBox ul li span {
	}

		.dressBox ul li span.fa {
			position: absolute;
			right: 8px;
			color: rgba(0, 0, 0, .45);
			font-size: 10px;
			line-height: 22px;
		}

	.dressBox ul li.act span.txt {
		font-weight: bold;
	}

.dressBox .dress-depth:nth-child(3) ul li span.fa {
	display: none;
}

/*带下拉框的可填单行文本*/
.lg-select-input {
	position: relative;
}

	.lg-select-input > .lg-input-text {
		padding-left: 60px;
	}

.flag-dropdown-icon {
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #eee;
	width: 50px;
	height: 36px;
	background: #f9f9f9;
	display: flex;
	justify-content: space-evenly;
	color: #777;
	cursor: pointer;
	transition: all 0.2s;
}

	.flag-dropdown-icon span,
	.flag-dropdown-icon i {
		line-height: 34px;
	}

	.flag-dropdown-icon span {
		margin: 0 5px;
	}

	.flag-dropdown-icon:hover {
		background: #fff;
	}

.lg-form-select .lg-select-position.flag-dropdown-list {
	max-width: 400px;
	width: 100%;
}

	.lg-form-select .lg-select-position.flag-dropdown-list .select {
		position: relative;
		padding: 0 10px 10px 10px;
		height: 211px;
		max-height: 211px;
		overflow: auto;
	}

.flag-dropdown-list .search {
	display: flex;
	flex-direction: row;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 1px;
	left: 0;
	width: 100%;
	background: #fff;
}

	.flag-dropdown-list .search span.fa {
		width: 36px;
		height: 36px;
		margin-right: 5px;
		text-align: center;
		line-height: 36px;
		font-size: 18px;
		color: #688bdb;
	}

@media screen and (max-width:480px) {
	.dressBox {
		width: 100%;
		height: 180px;
		position: fixed;
		bottom: 0;
		left: 0;
	}

	.dress-list ul {
		min-width: none;
	}

		.dress-list ul li {
			min-width: 0;
		}

	.dress-depth {
		width: 25%
	}

		.dress-depth.act {
			width: 50%;
		}
}

/*附件上传*/
.fileUpBox {
	border: 1px dashed #eee;
	display: flex;
	height: 48px;
	align-items: center;
	border-radius: 2px;
	margin-bottom: 10px;
	background: #fff;
	cursor: pointer;
}

	.fileUpBox .btn-file {
		width: 80px;
		text-align: center;
		line-height: 48px;
		font-size: 14px;
		cursor: pointer;
	}

		.fileUpBox .btn-file:before {
			color: #999;
			margin-right: 10px;
		}

.fileUp-item {
	margin-bottom: 10px;
}

.fileUp-item-control {
	border: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
	height: 48px;
	padding: 0 8px;
	align-items: center;
	border-radius: 2px;
	background: #fff;
	cursor: pointer;
	position: relative;
}

	.fileUp-item-control .file-icon {
		width: 32px;
		height: 32px;
		text-align: center;
		line-height: 32px;
		font-size: 18px;
		color: #737373;
		margin: 0 8px 0 0;
		border-radius: 2px;
	}

	.fileUp-item-control .file-img {
		background: #f2f2f2;
		overflow: hidden;
	}

		.fileUp-item-control .file-img img {
			width: 100%;
		}

	.fileUp-item-control .file-name {
		flex-shrink: 1;
		max-width: 60%;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden
	}

	.fileUp-item-control .file-tips {
		flex-shrink: 1
	}

	.fileUp-item-control .file-tools {
		display: flex;
		flex: 1 0;
		align-items: center;
		color: #737373;
	}

		.fileUp-item-control .file-tools .file-name {
			flex: 1 0;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
		}

		.fileUp-item-control .file-tools .file-del {
			opacity: 0;
			transition: all 0.3s;
			padding: 0 10px;
			cursor: pointer;
			font-size: 18px;
		}

			.fileUp-item-control .file-tools .file-del:hover {
				color: #007DDB;
			}

	.fileUp-item-control:hover .file-del {
		opacity: 1;
	}

	.fileUp-item-control .file-state.fa-check {
		color: #008000;
	}

	.fileUp-item-control .file-state.fa-close {
		color: #f19311;
	}

.file-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #f2f2f2;
	border-radius: 2px;
}

	.file-progress .file-progress-bar {
		width: auto;
		height: 2px;
		border-radius: 2px;
		background: #008000;
		transition: all 0.2s;
	}

.file-fail .file-progress .file-progress-bar {
	background: #f19311;
}

.file-wait .file-progress .file-progress-bar {
	background: #f2f2f2;
}

.file-fail .file-tips {
	color: #F19311;
}

.showImgBox {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	background: rgba(0 0 0/50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

	.showImgBox .fa-close {
		position: absolute;
		top: 20px;
		right: 20px;
		color: #fff;
		font-size: 20px;
		width: 50px;
		height: 50px;
		text-align: center;
		line-height: 50px;
		background: rgba(0 0 0/50%);
		border-radius: 50%;
	}

	.showImgBox img {
		max-width: 80%;
		max-height: 80%;
	}

/*上传图片*/
.fileImg {
	display: flex;
}

	.fileImg .img {
		position: relative;
		border: 1px dashed #ccc;
		margin: 0 10px 10px 0;
		cursor: pointer;
	}

		.fileImg .img:before {
			display: block;
			content: "";
			width: 30px;
			height: 2px;
			background: #999;
			position: absolute;
			top: 50%;
			left: 50%;
			margin-left: -15px;
			margin-top: -1px;
		}

		.fileImg .img:after {
			display: block;
			content: "";
			width: 2px;
			height: 30px;
			background: #999;
			position: absolute;
			top: 50%;
			left: 50%;
			margin-top: -15px;
			margin-left: -1px;
		}

		.fileImg .img.Wimg {
			width: 175px;
			height: 125px;
		}

		.fileImg .img.Himg {
			width: 125px;
			height: 175px;
		}

		.fileImg .img.WHimg {
			width: 150px;
			height: 150px;
		}

		.fileImg .img:hover {
			background: #fff;
		}

/*短信验证码*/
.code-btn {
}

/*描述字段*/
.lg-form-text {
	padding: 10px;
	color: #333;
	background: #f9f9f9;
	border-left: 5px solid #1e9fff;
}

/*段落标题*/
.lg-section {
	border-bottom: 1px solid #eee;
}

.lg-section-title {
	font-size: 20px;
	font-weight: bold;
}

	.lg-section-title span.cn {
		margin-right: 10px;
	}

	.lg-section-title span.en {
		font-size: 18px;
	}

.lg-section-tips {
	font-size: 12px;
	color: #999;
}

/*添加选项渲染*/
.lg-form-input {
	margin-bottom: 10px;
	position: relative;
}

	.lg-form-input input {
		width: 100%;
		padding: 0 40px 0 10px;
	}

.item-tool {
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	height: 36px;
	line-height: 36px;
	padding: 0 6px;
}

	.item-tool i {
		padding: 3px 6px;
		font-size: 18px;
		color: #999;
		border-radius: 2px;
		cursor: pointer;
	}

		.item-tool i:hover {
			background: #f2f2f2;
		}

/*逻辑配置下拉*/
.item-option {
	color: #999;
}

	.item-option span {
		font-weight: bold;
		color: #333;
	}

.item-group {
	display: none;
	color: #999;
}

	.item-group span {
		background: #f2f2f2;
		padding: 0 6px;
		margin: 0 5px 0 0;
		border-radius: 5px;
		color: #333;
	}

		.item-group span i {
			cursor: pointer;
			margin-left: 5px;
			font-size: 10px;
		}

.item-select {
	width: 100%;
}

	.item-select ul {
	}

		.item-select ul li {
			display: flex;
			justify-content: space-between;
			align-items: center;
			cursor: pointer;
			padding: 0 5px;
			border-radius: 2px;
			height: 30px;
		}

			.item-select ul li span {
				color: #333;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}

			.item-select ul li i {
				display: inline-block;
				flex-shrink: 0;
				width: 16px;
				height: 16px;
				margin: 0 6px;
				text-align: center;
				line-height: 16px;
				border: 1px solid #d2d2d2;
				font-size: 12px;
				border-radius: 2px;
			}

				.item-select ul li i:before {
					display: none;
				}

			.item-select ul li:hover {
				background: #f9f9f9;
			}

			.item-select ul li.act i:before {
				display: block;
			}

			.item-select ul li.act i {
				border: 1px solid #007DDB;
				background: #0095ff;
				color: #fff;
			}


.addoption {
	width: 100%;
	height: 36px;
	font-size: 14px;
	border: 1px dashed #ccc
}

	.addoption:before {
		margin: 0 10px 0 0;
	}

/*ul渲染*/
.choseWidth {
}

.lg-form-ul {
	display: flex;
	width: 100%;
	border-left: 1px solid #ccc;
	border-radius: 2px;
	margin-bottom: 10px;
}

	.lg-form-ul li {
		flex: 1;
		font-size: 14px;
		line-height: 34px;
		text-align: center;
		border: 1px solid #ccc;
		border-left: 0;
		cursor: pointer;
	}

		.lg-form-ul li:first-child {
			border-radius: 3px 0 0 3px;
		}

		.lg-form-ul li:last-child {
			border-radius: 0 3px 3px 0;
		}

		.lg-form-ul li.checked {
			background: #29b4ff;
			border: 1px solid #29b4ff;
			color: #fff;
		}

/*弹窗*/
.lg-popup-shadow {
	position: fixed;
	top: 0;
	left: 0;
	z-index:999;
	width: 100%;
	height: 100%;
	background: rgba(0 0 0/50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.lg-popup-container {
	background: #fff;
	box-shadow: 0 3px 6px rgba(0 0 0/18%);
	border-radius: 10px;
	width: 600px;
	min-height: 300px;
	padding: 15px;
}

.lg-popup-title {
	font-size: 20px;
	height: 40px;
	line-height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

	.lg-popup-title span.fa-close {
		color: #666;
		padding: 3px 6px;
		border-radius: 5px;
		cursor: pointer;
	}

		.lg-popup-title span.fa-close:hover {
			background: #f2f2f2;
		}

.lg-popup-tips {
	padding: 3px 6px;
	font-size: 14px;
	color: #999;
	background: #f9f9f9;
}

	.lg-popup-tips i {
		color: #f00;
	}

.lg-popup-content {
	background: #fff;
	margin: 10px 0;
	font-size: 14px;
	max-height: 240px;
	overflow: auto;
}

.lg-popup-sticky {
	position: sticky;
	top: 0;
	left: 0;
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}

.lg-popup-tools {
	text-align: center;
}
	.lg-popup-tools span{
		margin:0 10px;
	}
	/*表单验证提示*/
	.lg-ver {
		margin-top: -10px;
	}

.lg-ver-text {
	font-size: 12px;
	line-height: 26px;
	padding: 6px;
}

	.lg-ver-text span {
		margin-right: 10px;
	}

.lg-ver-success .lg-ver .lg-ver-text {
	color: #008000;
}

.lg-ver-error .lg-ver .lg-ver-text {
	color: #f19311;
}

.lg-ver-success .lg-form-control .fa-check {
	position: absolute;
	bottom: unset;
	left: unset;
	top: 12px;
	right: 10px;
	color: #008000;
}

.lg-ver-error .lg-form-control .fa-close {
	position: absolute;
	bottom: unset;
	left: unset;
	top: 12px;
	right: 10px;
	color: #f19311;
}

.lg-ver-success .lg-form-control {
	/* border: 1px solid #008000; */
}

.lg-ver-error .lg-form-control {
	/* border: 1px solid #f19311; */
}

.lg-ver-success .lg-input-text,
.lg-ver-success .lg-relation-text {
	border: 1px solid #008000;
}

.lg-ver-error .lg-input-text,
.lg-ver-error .lg-relation-text {
	border: 1px solid #f19311;
}

.lg-ver-error .lg-form-control .lg-form-option-ver .fa {
	position: unset;
}

	.lg-ver-error .lg-form-control .lg-form-option-ver .fa:before {
		width: 16px;
		margin: 0 6px;
	}

.lg-ver-error .lg-form-control.lg-form-select span.fa {
	right: 30px;
}


@media screen and (max-width:768px) {
	.lg-form-item {
		width: 100% !important
	}
}

@media screen and (max-width:480px) {
	.form-content {
		width: 100% !important;
	}

	.lg-form-inline {
		width: 100%;
		flex-wrap: wrap;
		flex-direction: column;
	}

		.lg-form-inline .lg-input {
			margin-right: 10px;
		}

	.code-btn {
		width: 100px;
		text-align: center;
		margin: 10px 0 0 0;
	}

	.lg-form-list-item .lg-input-text {
		width: 70%;
		min-width: 200px;
	}
}


/*行级表单*/
div[skin=lg-form-inline] {
	display: flex;
	flex-wrap:wrap;
}

	div[skin=lg-form-inline] .lg-form-item {
		display: flex;
		padding: 0;
	}

		div[skin=lg-form-inline] .lg-form-item .lg-form-title,
		div[skin=lg-form-inline] .lg-form-item .lg-form-control {
			margin-bottom: 0;
		}

		div[skin=lg-form-inline] .lg-form-item .lg-form-title {
			flex-shrink: 0;
		}

			div[skin=lg-form-inline] .lg-form-item .lg-form-title span.cn {
				font-weight: normal;
				font-size: 12px;
			}

		div[skin=lg-form-inline] .lg-form-item .lg-form-tips {
		}

		div[skin=lg-form-inline] .lg-form-item .lg-ver {
		}

	/*搜索表单样式*/
	div[skin=lg-form-inline] .lg-search-item .lg-form-item .lg-form-control .lg-input-text {
		height: 38px;
		line-height: 38px;
		border-radius: 0;
		transition: all 0.2s;
	}

		div[skin=lg-form-inline] .lg-search-item .lg-form-item .lg-form-control .lg-input-text:focus {
			border: 1px solid #ccc;
			outline: none;
			box-shadow: none;
		}

	div[skin=lg-form-inline] .lg-search-item .lg-form-item .lg-form-tips,
	div[lay-skin=primary] .lg-search-item .lg-form-item .lg-ver {
		display: none;
		opacity: 0;
	}


/*皮肤设置*/



