.canvas {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	/* border: solid 1px red; */
	position: absolute;
	left: 0;
}
.canvas #x_axie,.canvas #y_axie {
	width: 100%;
	height: 0.5px;
	border: none;
	position: absolute;
	left: 0%;
	top: 40%;
	transform: translate(-50%,-50%);
	transform-origin: 50% 50%;
	background-color: rgba(0, 0, 0, 0.2);
}
.canvas #x_axie {
	/* background-color: #ff0000; */
	transform: rotate(0deg);
}
.canvas #y_axie {
	/* background-color: #0000ff; */
	transform: rotate(90deg);
}
/* 点 */
.dot {
	width: 2px;
	height: 2px;
	background-color: #00ff00;
	/* border-radius: 5px; */
	border: 1px solid #00aaff;
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%);
	z-index: 0;
}

/* 傅里叶指令输出面板 */
.fuliye_cmdOut {
	width: 50%;
	height: 50px;
	position: fixed;
	bottom: 0;
	border: solid 1px red;
}

.canvas button {
	width: 48%;
	height: 40px;
	border: solid 1px #e5e5e5;
	transition: 500ms;
	background-color: transparent;
	/* box-shadow: 0 0 0 5px rgba(0, 170, 255, 0.0); */
	border: none;
	background-color: #e5e5e5;
	position: absolute;
}


.Fourier_copyBtn:nth-of-type(1) {
	bottom: 1%;
	left: 1%;
}
.Fourier_copyBtn:nth-of-type(2) {
	bottom: 1%;
	right: 1%;
}
.Fourier_copyBtn:hover {
	/* box-shadow: 0 0 0 0px rgba(0, 170, 255, 0.8); */
	background-color: #d3e9ff;
	border: solid 1px #00aaff;
}


/* 预设参数面板 */
.preinstall {
	width: 340px;
	height: 450px;
	background-color: #FFF;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border: solid 1px #d3d3d3;
	border-radius: 5px;
	position: fixed;
	top: 15%;
	left: 1%;
	z-index: 999;
	/* display: none; */
	transform:scale(0.9);
	pointer-events: none;
	opacity: 0;
}

.preinstall p {
	text-align: center;
	line-height: 20px;
	font-size: 13px;
	margin-left: 5%;
	margin-right: 5%;
	color: #ababab;
}


.title {
	color: #353261;
	background-color: rgba(63, 64, 81, 0.1);
	border-bottom: solid 1px #d3d3d3;
	text-align: center;
	line-height: 40px;
}

.preinstall table {
	border-collapse: collapse;
	border: 1px solid black;
	color: #717171;
	font-size: 14px;
	margin-top: 5px;
}

.preinstall table tr td {
	/* border: 1px solid black; */

}
.preinstall table tr:hover {
	background-color: rgba(0, 0, 0, 0.1);
}
.preinstall table tr td:nth-of-type(1) {
	color: #000000;
	text-shadow: 0.3px 0.3px 0px rgba(0, 0, 0, 0.5);
	font-weight: 700;
}

.preinstall table tr td:nth-of-type(2) {
	width: 15px;
}
.preinstall table tr td button {
	width: 85%;
	border: solid 1px #ababab;
	transition: 300ms;
}
.preinstall table tr td button:hover {
	background-color: rgba(0, 170, 255, 0.2);
	border: solid 1px #00aaff;
}
.preinstall table tr td p {
	width: 200px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}




.addRotor, .deleteRotor {
	width: 93%;
}

#Fourier_prompt {
	margin-left: 20%;
}