
hr{
	margin: 17px 0;
}

input, textarea{
	-webkit-appearance: none;
	border: none;
	outline: none;
	border-radius: 0;
	background-color: var(--a0);
}
.inpBox{
	display: flex;
	/* flex-direction: row-reverse; */
	justify-content: space-between;
}
	.inpLog{
		tab-size: 4;
		resize: none; /*vertical*/
		width: 100%;
		height: 74px; /*加上上传box的边框*/
		font-size: 0.75rem;
		max-width: 200px;
		border: 1px dashed var(--t);
	}
	.___{
		padding: 10px;
	}
	.upLogBox{
		border: 1px dashed var(--t);
		width: 100%;
	}
		.upLog{
			width: 100%;
			height: 72px;
			opacity: 0;
			padding: 0;
			margin: 0;
		}
	.upLogBox p{
		position: absolute;
		text-align: center;
		margin: 2px;
		font-size: 0.75rem;
	}
/* .configBox{

} */
	.configBox .inpRegular{
		tab-size: 4;
		font-size: 0.75rem;
		width: 100%;
		resize: vertical;
		height: 128px;
	}
	.configBox .toolBox{
		display: flex;
		flex-direction: row;
	}
	.toolBox .toolBox_Fn{
		display: flex;
		flex-direction: column;
		margin-right: 14px;
	}
		.configBox .toolBox input{
			width:12px;
			height:12px;
			margin:-0.5px;
			margin-left: 10px;
			border:1px double var(--t)
		}
		.configBox .toolBox label{
			padding-left: 5px;
		}
			.configBox .toolBox input:checked{border:6px double var(--t)}
.startBox{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
	.startBox p code{
		padding: 1px 5px;
		background-color: #AFB8C114;
		font-size: 0.75rem;
	}

.chartBox{
	display: flex;
	flex-wrap: wrap;
	background-color: #2c343c;
	overflow: hidden;
}
	.chartBox .chart{
		width: 100%;
		height: 400px;
		margin: 32px 0;
	}
		/* @media(min-width: 1920px){
			.chartBox .chart{
				width: 50%;
			}
		} */
		.chart:nth-last-child(1):first-child{
            width:100%;
        }
	.toolBox{
		width: 100%;
	}
		.toolBox label a{
			font-size: 0.75rem;
			/* color: #7f7f7f; */
		}
	.outBox{
		display: flex;
		flex-direction: column;
		min-width: 200px;
	}
	.outBox textarea:first-child{
		margin-bottom: 10px;
	}
.popup{
	position: fixed; /*屏幕的相对位置, 而不是页面*/
	left: 50%;
	top: -50px;
	transform: translate(-50%, 0);
	transition: top 1s cubic-bezier(0.42, 0, 0, 1.35);

	width: 210px;
	height: 32px;
	background-color: var(--c);
	border-radius: 10px;
}
	.popup p{
		text-align: center;
		color: white;
	}
.popup.-join{
	top: 20px;
}



	

