body {
	margin: 0 auto;
	font-family: Helvetica, Tahoma, Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", SimSun, "宋体", sans-serif;
	color: #333;
}
* {
	/* width包含border和padding, 参考: https://developer.mozilla.org/zh-CN/docs/Web/CSS/box-sizing */
	box-sizing: border-box;
}

.small {
	font-size: 0.9em
}
.bold {
	font-weight: bold
}
.gray {
	color: #555
}
.red {
	color: red
}
.green {
	color: green
}
.orange {
	color: orange
}
.orangered {
	color: orangered
}
.blue {
	color: blue
}
.dodgerblue {
	color: DodgerBlue
}

/*
 Symbol引用iconfont必须 https://www.iconfont.cn/
*/
.icon {
	width: 1em; height: 1em;
	vertical-align: -0.15em;
	fill: currentColor;
	overflow: hidden;
	font-size: 1.1em;
}

.table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.table th, .table td {
	vertical-align: top;
	text-align: left;
	border-bottom: 1px solid #ddd;
	padding: 0.6em;
}
.table th {
	background-color: #eee;
	font-size: 0.95em;
}
.table tr:hover {
	background-color: #f8f8f8;
}
.button-bar {
	margin: 20px auto;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.flex-space-between {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}
.flex-flex-start {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.flex-slide {
	display: flex;
    white-space: nowrap;
    overflow-x: auto;
    padding: 5px 0;
    gap: 10px;
}
.slide {
	width: 100%;
	white-space: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}
@media screen and (max-width: 600px) {
	.slide::-webkit-scrollbar {
		display: none;
	}
}

.form-line {
	padding: 10px 0;
}

.blue-btn {
	box-shadow:inset 0px -3px 7px 0px #29bbff;
	background:linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);
	background-color: #2dabf9;
	border-radius: 3px;
	border: 1px solid #2dabf9;
	display: inline-block;
	cursor: pointer;
	color: #fff;
	font-family: Arial;
	padding: 2px 20px;
	text-decoration: none;
	text-shadow: 0px 1px 0px #263666;
}
.blue-btn:hover {
	background:linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);
	background-color:#0688fa;
}
.blue-btn:disabled {
	background-color: #ddd;
}

/* 把多个 el-form-item 放在 inline-form-items 中让它们在同一行 */
.inline-form-items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0 20px;
}

