html, body {
  color:#FFF;
  background-color:#000;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size:10pt;
  margin:0px;
}

body {
  position:relative;
}

a{
  color:#4FED94;
}

a:visited {
  color:#777;
}

.vec-table::-webkit-scrollbar {
  width:10px;
}

.vec-table::-webkit-scrollbar-thumb {
  background:#4FED94;
  border-radius:10px;
}

.vec-table::-webkit-scrollbar-track {
  background:#444;
  border-radius:10px;
}

select.vec-field{
  width:240px;
}

.chrome-img {
  width:128px;
  margin:20px;
}

.vec-instruction{
  display:flex;
  height:120px;
}

.vec-instruction > div{
  line-height:120px;
}

.vec-row {
    display: flex;
    justify-content: center; /* 让图片在水平方向居中对齐 */
    align-items: center;
}

.firefox-img {
    width: 120px; /* 设置合适的图片宽度，可根据实际情况改变 */
    height: auto;
}

.vec-card {
  width:100px;
  padding:10px;
}

.vec-wifi-signal {
  width:40px;
}

.vec-icon {
  width:30px;
  filter: opacity(25%);
  transition: filter 0.5s;
  margin:5px;
}

#iconTerminal{
  cursor: pointer;
}

#iconComplete{
  filter: hue-rotate(50deg);
}

#wifiScanTable{
  max-height: 300px;
  overflow-y: auto;
}

.vec-icon-done {
  filter: opacity(100%) brightness(0.8) sepia(1) saturate(10000%) hue-rotate(76deg);
}

/*蓝色*/
.vec-icon-done1 {
  color: #4169E1;
}

/*青柠绿色*/
.vec-icon-done2 {
  color: #00FF7F;
}

/*橙色*/
.vec-icon-done3 {
  color: #FFA500;
}

/*渐变 深蓝 浅蓝 绿 橙*/
.vec-icon-done4 {
  background-image: radial-gradient(circle at center,#4169E1, #87CEEB, #00FF7F,#FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vec-icon-active {
  animation-name: vec-icon-anim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}

/*图标位置*/
.vec-status {
  position:absolute;
  top:130px;
  display: flex;
  height: 50px;
}

.vec-info2 {
  position:absolute;
  top:580px;
  display: flex;
  height: auto;
}

/*图标文字位置*/
.vec-statuss {
  position:absolute;
  top:175px;
  display: flex;
  height: 25px;
  gap: 12px;
}

/*图标文字位置*/
.vec-statusss {
  position:absolute;
  top:10px;
  display: flex;
  height: 100px;
}

.vec-statussss {
  position:absolute;
  bottom: 10px; /* 关键是设置bottom为0，使其位于底部 */
  display: flex;
  height: 22px;
}

/* 音乐播放器 */
.vec-status6 {
  position:absolute;
  bottom: 90px;
  display: flex;
}

/* 更新图片 */
.vec-statusssss {
  position:absolute;
  bottom: 65px;
  display: flex;
  height: 20px;
}

/* 联系我们 */
.vec-status7 {
  position:absolute;
  bottom: 25px;
  display: flex;
  height: 50px;
  width: 120px;
}

.pmd {
    font-size: 25px;
    font-weight: normal;
    text-transform: uppercase;
    fill: none;
    stroke: #B0E0E6;
    stroke-width: 1px; /* 设置描边粗细 */
    stroke-dasharray: 90 310; /* 变色变化 */
    animation: stroke 12s infinite linear; /* 将动画时长延长到12秒 */
}

.pmd-2 {
    stroke: #FFEC8B;
    animation-delay: -3s; /* 延迟时间根据新时长调整 */
    text-shadow: 5px 5px 5px #FFEC8B;
	fill: none;
}

.pmd-3 {
    stroke: #AEEEEE;
    animation-delay: -6s;
    text-shadow: 5px 5px 5px #7FFFD4;
	fill: none;
}

.pmd-4 {
    stroke: #EEE0E5;
    animation-delay: -9s;
    text-shadow: 5px 5px 5px #7FFFD4;
	fill: none;
}

.pmd-5 {
    stroke: #FFC1C1;
    animation-delay: -12s;
    text-shadow: 5px 5px 5px #7FFFD4;
	fill: none;
}

@keyframes stroke {
	from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -400;
    }
}

/*选项位置*/
.vec-select-firmware{
  position:absolute;
  top:220px;
  display: flex;
  height: 50px;
    grid-template: 1fr / 1fr 1fr;
    align-items: center;
    gap: 2px;
}

.logo-anki {
  position:absolute;
  bottom:0px;
  left:0px;
  width:100px;
  padding:10px;
}

.logo-vector {
  position:absolute;
  bottom:0px;
  right:0px;
  width:150px;
  padding:4px;
}

.vec-spinner {
  height:34px;
  width:34px;
  border-radius:100%;
  background: -webkit-linear-gradient(left top, #000 40%, #4FED94 100%);
  padding:3px;
  animation-name: vec-spinner-anim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.vec-spinner-container {
  height:80px;
  width:80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vec-spinner-inner {
  background-color:#000;
  height: 34px;
  width: 34px;
  border-radius: 100%;
}

@keyframes vec-spinner-anim {
  from { transform: rotate(0deg); }
  to {   transform: rotate(360deg); }
}

@keyframes vec-icon-anim {
  from { filter:opacity(25%); }
  to {   filter:opacity(100%); }
}

.vec-container {
  visibility:hidden;
  display:none;
  opacity:0;
  transition:opacity 500ms;
  overflow-y: auto;
  max-height: 100%;
  padding: 0px 10px;
}
   
.vec-container.vec-current {
  visibility:visible;
  display:block;
}

.vec-btn {
  outline:none;
  color:#FFF;
  background-color:#000;
  height:40px;
  border-radius:20px;
  min-width:200px;
  text-transform: uppercase;
  border:2px solid #FFF;
  margin-bottom:3px;
  transition:background-color 500ms, border 500ms, color 500ms;
  cursor:pointer;
}

.vec-field {
  outline:none;
  color:#FFF;
  box-sizing: border-box;
  padding: 0 12px;
  background-color:#000;
  height:40px;
  border-radius:5px;
  min-width:200px;
  text-transform: uppercase;
  border:2px solid #FFF;
  margin-bottom:3px;
  transition:background-color 500ms, border 500ms, color 500ms;
}

.vec-field.readonly {
  border:none !important;
}

.vec-field[type="button"] {
  border-radius:20px;
  cursor:pointer;
}

.vec-field.vec-default {
  text-transform: none;
}

.vec-field:focus {
  border:2px solid #4FED94;
  color:#4FED94; 
}

.vec-progress-bar {
  width: 100%;
  height: 40px;
  position: relative;
  margin:10px;
  left:-10px;
  min-width:240px;
}

.vec-progress-bar-fill {
  left: 0px;
  right: 0px;
  height: 30px;
  box-sizing: border-box;
  position: absolute;
  border-radius: 20px;
  background-color: #4FED94;
  margin: 5px;
}

.vec-progress-bar-border {
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  box-sizing: border-box;
  border-radius: 20px;
  position: absolute;
}

.vec-progress-bar-mask {
  background-color:#000;
  width:100%;
  height:40px;
  right:0;
  box-sizing:border-box;
  position: absolute;
  transition:width 1s;
}

.vec-progress-bar.vec-sm {
  height: 16px;
  position: relative;
  margin:10px;
  left:-10px;
  width:100%;
  min-width:0px !important;
}

.vec-sm > .vec-progress-bar-fill {
  left: 0px;
  right: 0px;
  height: 8px;
  box-sizing: border-box;
  position: absolute;
  border-radius: 4px;
  background-color: #4FED94;
  margin: 4px;
}

.vec-sm > .vec-progress-bar-border {
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  box-sizing: border-box;
  border-radius: 8px;
  position: absolute;
}

.vec-sm > .vec-progress-bar-mask {
  background-color:#000;
  width:100%;
  height:16px;
  right:0;
  box-sizing:border-box;
  position: absolute;
  transition:width 1s;
}

.vec-btn:hover {
  border:2px solid #4FED94;
  color:#4FED94;
}

.vec-wifi-row {
  box-sizing:border-box;
  height:60px;
  display:flex;
  padding:10px;
  min-width:300px;
  text-align:center;
  transition:color 500ms, border 500ms;
  cursor:pointer;
  border-top:1px solid rgba(0,0,0,0);
  border-bottom:1px solid rgba(0,0,0,0);
}

.vec-wifi-ssid {
  line-height:40px;
}

.vec-wifi-row:hover {
  color:#4FED94; 
  border-top:1px solid #4FED94;
  border-bottom:1px solid #4FED94;
}

.vec-format {
  text-align:center;
}

.vec-link {
  color: #FFF;
  text-decoration: underline;
  transition:color 500ms;
  cursor:pointer;
}

div.vec-link {
  text-align:center;
}

.vec-shell {
  width:100%;
  height:100%;
  background-color:rgba(2,23,11,.9);
  flex: 0;
}

.vec-link:hover {
  color:#4FED94; 
}

.vec-error {
  color:#F77;
  margin:10px;
}

.vec-hidden {
  display:none;
}

.vec-info {
  position:absolute;
  min-width:120px;
  height:auto;
  right:10px;
  top:10px;
}

.vec-info-box {
  min-width:120px;
  height:auto;
  border-radius:20px;
  border:2px solid #4FED94;
  padding:5px 20px;
  background-color:#000;
  margin:3px 0px;
}

.vec-status-icon {
  height:11px;
  margin-right:4px;
}

.vec-status-none {
  width:0px;
  display:inline-block;
}

.vec-info-title {
  color:#4FED94;
  text-align:center;
  margin-bottom:5px;
  font-weight:700;
}

.vec-eyecon {
  height:16px;
}

.vec-password-block {
  position:relative;
  display: inline-block;
}

.vec-eye-toggle {
  position:absolute;
  top: 12px;
  right: 10px;
}

.vec-link {
  cursor:pointer;
  transition:color 0.5s;
}

.vec-link:hover {
  color:#4FED94;
}

.vec-panel {
  position:relative;
  flex:0 0 0%;
  width:0px;
  transition:flex .2s, width .2s;
  overflow:hidden;
}

.vec-panel-ui {
  align-items: center;
  justify-content: center;
  display:flex;
}

.vec-panel-container {
  display:flex;
  width:100%;
  height:100%;
  overflow:hidden;
}

.vec-panel-footer {
  bottom:10px;
  position:absolute;
  font-size:8pt;
}

.vec-ui-footer {
  display:flex;
  position:absolute;
  left:0px;
  right:0px;
  bottom:0px;
  height:50px;
}

.vec-ui-footer-side {
  flex:0 1 auto;
  display:flex;
}

.vec-ui-footer-side > img {
  width:48px;
  padding:10px;
  justify-content: center;
  align-items:center;
}

.vec-ui-footer-middle {
  flex:1 0 auto;
  display:flex;
  justify-content: center;
  align-items:center;
  text-align:center;
  color:#999;
  font-size:8pt;
}

.vec-ui-footer-middle * a {
  color:#999;
}

.vec-ui-footer-middle:visited * a {
  color:#999;
}

.vec-reset-password {
  cursor: pointer;
}