@CHARSET "UTF-8";
.machine_main{
	width: 97.6%;
    background-color: white;
    margin:30px 20px 30px 20px;
	padding: 20px;
}
.machine_main .machine_top,
.machine_main .machine_bottom{
	width: 100%;
	border: 1px solid #e2e2e7;
	font-size: 16px;
	margin-bottom: 50px;
}
.machine_main .machine_top .top,
.machine_main .machine_bottom .top{
	background-color: #e2e2e7;
	padding: 10px;
}
.machine_main .machine_top .bottom,
.machine_main .machine_bottom .bottom{
	padding: 10px;
}
.machine_main .machine_top .bottom table{
	width: 100%;
}
.machine_main .machine_top .bottom table input{
	width: 300px;
	height: 30px;
}
.machine_main .machine_top .bottom table td{
	padding:5px;
}
.machine_main .machine_top .bottom table .textright{
	text-align: right;
}
.machine_main .machine_bottom .bottom .workmodecss{
	width: 80px;
    height: 30px;
}
.machine_main .machine_foot{
	width: 100%;
	font-size: 16px;
	margin-bottom: 50px;
	text-align: right;
}
.machine_main .machine_foot .machine_save{
	background-color: #337ab7;
    color: white;
    border-color: #337ab7;
    border-radius: 5px 5px 5px 5px;
    height: 40px;
    font-size: 16px;
    /* width: 500px; */
}

.machine_main .machine_foot1{
	width: 100%;
	font-size: 16px;
	margin-bottom: 50px;
	text-align: right;
}

.machine_main .machine_foot1 .machine_save{
	background-color: #337ab7;
    color: white;
    border-color: #337ab7;
    border-radius: 5px 5px 5px 5px;
    height: 40px;
    font-size: 16px;
    /* width: 500px; */
}


.switch_adjust {
	position: relative;
	display: inline-block;
	width: 56px;
	height: 24px;
	margin-bottom: -2px;
	padding-left: 10px;
  }
   
  .switch_adjust input {
	display: none;
	
  }
   
  .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 12px;
  }
   
  .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	background-color: #eeeeee;
	transition: 0.4s;
	border-radius: 10px;
  }
   
  input:checked + .slider {
	background-color: #76d26b;
  }
   
  input:checked + .slider:before {
	transform: translateX(32px);
  }
   
  .slider.round {
	border-radius: 34px;
  }
   
  .slider.round:before {
	border-radius: 50%;
  }







  .modal_div {
	display: none; 
	position: fixed; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); 
	z-index: 999; 
}


.modal-content_div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
	padding: 20px;
	background-color: white;
	width: 300px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

/* 关闭按钮 */
.close {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	color: #aaa;
}

/* 输入框 */
#username_ad{
	margin: 10px 0;
	padding: 8px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 4px;
}

#password_ad{
	margin: 10px 0;
	padding: 8px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 4px;
}





	.show_font {
	position: fixed;
	left: 35%;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	z-index: 9999;
	/* background-color: hsl(230, 50%, 15%); */
  }

  .show_h1 {
	font-size: 3rem;
	letter-spacing: 15px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1em;
	color: hsl(190, 80%, 50%);
	outline: none;
	
	-webkit-box-reflect: below 10px linear-gradient(transparent, #0005);
	animation: animate 5s linear alternate infinite;

  }

  @keyframes animate {
	0%,
	30%,
	70% {
	  color: hsl(190, 80%, 50%);
	  text-shadow: none;
	}
	20%,
	40%,
	80%,
	100% {
	  color: hsl(0, 0%, 100%);
	  text-shadow: 0 0 5px hsl(190, 80%, 50%),
		0 0 10px hsl(190, 80%, 50%),
		0 0 20px hsl(190, 80%, 50%),
		0 0 40px hsl(190, 80%, 50%);
	}
  }


/* 功率模式容器配置样式 */
.power_bottom {
    width: 100%;
    border: 1px solid #e2e2e7;
    font-size: 16px;
    margin-bottom: 50px; /* 与 .machine_bottom 底部边距一致 */
}

/* 功率模式标题样式配置 */
.power_bottom .top {
    background-color: #e2e2e7; /* 与 .machine_bottom .top 背景色一致 */
    padding: 10px; /* 与 .machine_bottom .top 内边距一致 */
}

/* 功率模式内容区域内边距配置 */
.power_bottom .bottom {
    padding: 10px; /* 与 .machine_bottom .bottom 内边距一致 */
}

/* 功率模式下拉框使用配置的样式类 */
.power_bottom select.workmodecss {
    width: 240px; /* 工作模式下拉框宽度 */
    height: 30px; /* 工作模式下拉框高度*/
}

/* 功率模式保存按钮容器样式与硬件配置保存按钮容器一致 */
.machine_foot2 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 50px;
    text-align: right; /* 与 .machine_foot1 文本右对齐一致 */
}

/* 功率模式保存按钮样式与硬件配置保存按钮一致 */
.machine_foot2 .machine_save {
    background-color: #337ab7; /* 与硬件配置保存按钮背景色一致 */
    color: white;
    border-color: #337ab7;
    border-radius: 5px 5px 5px 5px;
    height: 40px; /* 与硬件配置保存按钮高度一致 */
    font-size: 16px; /* 与硬件配置保存按钮字体大小一致 */
    cursor: pointer;
}