:root {
  --按钮背景色: transparent;
  --按钮悬停背景色: #bbddff35;
  --按钮按下背景色: #ffffff25;
  --按钮字体色: silver;
  --按钮悬停字体色: white;
  --滑块底色: #345;
  --文件夹列表区垂直偏移: calc(-50% + 260px);
}

body {
  font-family: "Google Sans Code", "JetBrains Mono", "Noto Sans SC", 微软雅黑, sans-serif;
}

body:has(.文章列表区.显示)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  pointer-events: auto; /* 允许点击遮罩层来关闭 */
}

body:has(.文章列表区.显示) > *:not(.文章列表区):not(.文件夹列表区):not(script) {
  pointer-events: none;
}

body:has(.文章列表区.显示) .文章列表区,
body:has(.文章列表区.显示) .文章列表区 *,
body:has(.文章列表区.显示) .文件夹列表区,
body:has(.文章列表区.显示) .文件夹列表区 * {
  pointer-events: auto;
}

body:has(.文章列表区.显示) #选择文章 {
  pointer-events: auto;
}

.总区 {
  width: 100%;
  height: clamp(600px, 100vh, 3200px);
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.设置区 {
  padding: 25px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.设置子区 {
  background-image: linear-gradient(35deg, #ffffff15, #ffffff06);
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.按钮 {
  padding: 5px 15px;
  width: 100%;
  height: 100%;
  background-color: var(--按钮背景色);
  border: none;
  color: var(--按钮字体色);
  border-radius: 5px;
  user-select: none;
  position: relative;
  font-size: 16px;
}

.按钮:not(#选择文章, #开始, #终止按钮, #详情按钮):hover {
  background-color: var(--按钮悬停背景色);
  color: var(--按钮悬停字体色);
  cursor: url("/Images/Common/鼠标-指向.cur"), pointer;
}

.按钮:not(#选择文章, #开始, #终止按钮, #详情按钮):active {
  background-color: var(--按钮按下背景色);
}

.文章设置子区 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  background-image: linear-gradient(35deg, #d0c55f, #8b854a);
}

.文章设置子区:has(#选择文章:hover) {
  background-image: linear-gradient(35deg, #f0e68c, #a69f63);
}

.文章设置子区:has(#选择文章:active) {
  background-image: linear-gradient(35deg, #f0e68c, #a69f63);
}

.开始设置子区 {
  background-image: linear-gradient(35deg, rgb(42, 82, 42), rgb(10, 69, 66));
  padding: 0;
}

.开始设置子区:has(#开始:hover) {
  background-image: linear-gradient(35deg, rgb(53, 102, 53), rgb(14, 89, 85));
}

.开始设置子区:has(#开始:active) {
  background-image: linear-gradient(35deg, rgb(63, 121, 63), rgb(19, 111, 107));
}

#开始 {
  padding: 10px 15px;
}

#选择文章 {
  color: black;
  font-weight: 500;
}

#选择文章:disabled {
  filter: brightness(50%);
  pointer-events: none;
}

.关闭按钮 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 35px;
  aspect-ratio: 1;
  border-radius: 5px;
  background-color: rgb(155, 30, 30);
  color: silver;
  display: flex;
  justify-content: center;
  align-items: center;
}

.关闭按钮:hover {
  background-color: rgb(191, 43, 43);
  color: rgb(219, 219, 219);
}

.关闭按钮:active {
  background-color: rgb(203, 54, 54);
  color: white;
}

.文件夹列表区 {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% var(--文件夹列表区垂直偏移);
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  transition: 250ms;
}

.文章列表区 {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  /* height: 527px; */
  width: fit-content;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  border-radius: 10px;
  background-image: linear-gradient(35deg, #ffffff15, #ffffff06);
  backdrop-filter: blur(15px);
  transition: 250ms;
}

.文章列表区.显示,
.文章列表.显示,
.文件夹列表区.显示,
.文件夹列表.显示 {
  visibility: visible;
  opacity: 1;
}

.文件夹列表 {
  position: absolute;
  padding: 15px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  backdrop-filter: blur(15px);
}

.文件夹项 {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 5px;
  border: solid 1px transparent;
  user-select: none;
  --本体尺寸: 50px;
  --四角线框尺寸: 10px;
  --四角线框间隙: -2px;
  --四角线框厚度: 2px;
  --四角线框偏移: calc(10px / 4);
}

.文件夹项::before {
  position: absolute;
  content: "";
  left: var(--四角线框偏移);
  top: var(--四角线框偏移);
  width: calc(var(--本体尺寸) + var(--四角线框间隙) * 2);
  height: calc(var(--本体尺寸) + var(--四角线框间隙) * 2);
  border: solid var(--四角线框厚度) lightseagreen;
  pointer-events: none;
  mask: conic-gradient(at var(--四角线框尺寸) var(--四角线框尺寸), transparent 75%, white 75%) 0 0 /
    calc(100% - var(--四角线框尺寸)) calc(100% - var(--四角线框尺寸)) repeat;
  transition: 175ms;
  opacity: 0;
  scale: 0.5;
}

.文件夹项:not(.激活):hover {
  background-color: #4bf3;
  cursor: url("/Images/Common/鼠标-指向.cur"), pointer;
}

.文件夹项.激活::before {
  opacity: 1;
  scale: 1;
}

.文件夹项::after {
  position: absolute;
  content: attr(data-序号);
  top: calc(100% + 5px);
  left: 50%;
  translate: -50% 0;
  color: silver;
  font-size: 14px;
  font-family: "Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif;
}

.文件夹图标 {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.文件夹图标[src="/Apps/Ten_Fingers/SVG/MySQL.svg"] {
  filter: brightness(2);
}

.文章列表 {
  padding: 50px;
  height: 100%;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  list-style: none;
  overflow: hidden;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: 250ms;
}

.文章容器 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  user-select: none;
  border-radius: 5px;
}

.文章容器.激活 {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.3) 0%,
    rgba(168, 85, 247, 0.3) 25%,
    rgba(236, 72, 153, 0.3) 50%,
    rgba(251, 146, 60, 0.3) 75%,
    rgba(99, 102, 241, 0.3) 100%
  );
  /* box-shadow: 
    0 0 15px rgba(99, 102, 241, 0.2),
    0 0 25px rgba(168, 85, 247, 0.15),
    inset 0 0 20px rgba(236, 72, 153, 0.1); */
}

.文章容器:not(.激活):hover {
  background-color: #ffffff10;
  cursor: url("/Images/Common/鼠标-指向.cur"), pointer;
}

.文章容器:hover .文章序号,
.文章容器.激活 .文章序号 {
  color: rgb(119, 154, 192);
}

.文章容器:hover .文章标题,
.文章容器.激活 .文章标题 {
  color: lightskyblue;
}

.文章序号 {
  font-size: 12px;
  color: #777;
}

.文章标题 {
  font-size: 14px;
  font-weight: normal;
  text-wrap: nowrap;
  color: silver;
}

.文章字符数 {
  font-size: 12px;
  color: white;
  background-color: #345;
  padding: 4px 8px;
  border-radius: 100px;
}

.文章容器.激活 .文章字符数 {
  box-shadow: 2px 2px 2px 0 #0007;
}

.定时设置子区 {
  display: flex;
  align-items: center;
  gap: 35px;
  background-image: linear-gradient(35deg, #ffffff15, #ffffff06);
  border-radius: 10px;
}

.定时子区内容 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.定时区 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.定时区 .按钮 {
  padding: 0;
  width: 25px;
  height: 25px;
  text-align: center;
  align-content: center;
}

.数值区 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.数值框 {
  width: 3ch;
  height: 25px;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: "Doto", "Google Sans Code", "JetBrains Mono", "Noto Sans SC", 微软雅黑, sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 1ch 0.5ch;
  background-color: #123;
  color: white;
  border: none;
  outline: solid 2px #666;
  border-radius: 3px;
}

.数值框::-webkit-inner-spin-button,
.数值框::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.数值框:hover {
  outline: solid 2px #999;
}

.数值框:focus {
  outline: solid 2px #bbb;
  background-color: #234;
}

.单位 {
  color: #aaa;
}

.定时标题 {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.标签 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  user-select: none;
}

.标签 > span {
  color: var(--按钮字体色);
  transition: 125ms;
}

.标签:hover > span {
  color: white;
}

.标签:hover,
input[type="checkbox"]:hover {
  cursor: url("/Images/Common/鼠标-指向.cur"), pointer;
}

.复选框 {
  position: relative;
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid #4a8a;
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.复选框:hover {
  border-color: #4a8;
  box-shadow: 0 0 8px rgba(74, 168, 136, 0.3);
}

.复选框:checked {
  background: linear-gradient(135deg, #4a8 0%, #397 100%);
  border-color: #4a8;
  box-shadow: 0 0 12px rgba(74, 168, 136, 0.5);
}

.复选框:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  border-radius: 1px;
}

input[type="text"] {
  font-size: 16px;
  padding: 6px 5px;
  background-color: #123;
  color: #8cc2f0;
  border: none;
  outline: solid 2px #666;
  border-radius: 5px;
}

label:hover input[type="text"],
input[type="text"]:focus,
input[type="text"]:hover {
  background-color: #234;
}

.输入区 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  translate: 0 -75px;
}

.输入容器 {
  position: relative;
  width: clamp(500px, 60vw, 2560px);
  height: 500px;
  overflow-y: auto;
  overflow-x: visible;
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  align-items: flex-start;
  padding: 20px;
  font-size: 24px;
  line-height: 1.2;
  font-family: "Google Sans Code", "JetBrains Mono", "Noto Sans SC", 微软雅黑, sans-serif;
  cursor: text;
  /* 隐藏滚动条但保持滚动功能 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 和 Edge */
}

/* 隐藏 WebKit 浏览器的滚动条（Chrome, Safari, Edge） */
.输入容器::-webkit-scrollbar {
  display: none;
}

.测试结束覆盖层 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-size: 72px;
  font-weight: bold;
  color: silver;
  font-family: "Noto Sans SC", 微软雅黑, sans-serif;
  pointer-events: none;
}

.测试结束覆盖层 .覆盖层内容容器 {
  pointer-events: auto;
}

.结果区 {
  display: none;
  padding-top: 75px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  overflow-y: auto;
  font-family: "Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif;
}

.结果区锚链接容器 {
  position: fixed;
  left: 20px;
  top: 95px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2001;
}

.结果区锚链接 {
  padding: 10px 15px 10px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  background-color: #333;
  border: 2px solid #333;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  font-family: '"Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif';
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.锚链接图标 {
  font-size: 16px;
  display: inline-block;
}

.结果区锚链接:hover {
  border-color: rgb(132, 149, 171);
  color: white;
}

.结果区锚链接:active,
.结果区锚链接:focus {
  outline: none;
  background-color: rgb(77, 89, 103);
  border-color: rgb(77, 89, 103);
  color: #fff;
}

.关闭结果区按钮 {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 1;
  color: silver;
  background-color: transparent;
  border: 2px solid gray;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.关闭结果区按钮:hover {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}

.结果区头部 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 40px;
  z-index: 10;
}

.结果区头部内容 {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(30, 30, 30, 0.95);
  border-bottom: 2px solid #4caf50;
}

.结果区头部行 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.结果区头部项 {
  display: flex;
  align-items: center;
}

.结果区头部标签 {
  color: #aaa;
  font-size: 16px;
}

.结果区头部值 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  --单位: #678;
}

.结果区头部值 .时间数字 {
  color: #4caf50;
}

.结果区头部值 .时间单位 {
  color: var(--单位);
  margin: 0 2px;
}

.结果区头部值 .时间冒号 {
  color: #666;
}

.结果区头部值 .用时小时 {
  color: var(--单位);
  margin: 0 2px;
}

.结果区头部值 .用时分钟 {
  color: var(--单位);
  margin: 0 2px;
}

.结果区头部值 .用时秒 {
  color: var(--单位);
  margin-left: 2px;
}

.结果区头部值 .正确率百分号,
.结果区头部值 .完成率百分号 {
  color: var(--单位);
  margin-left: 2px;
}

.结果区头部值 .速度数字 {
  color: #4caf50;
}

.结果区头部值 .速度斜杠 {
  color: #888;
}

.结果区头部值 .速度单位 {
  color: var(--单位);
}

.结果区标题 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.结果区内容 {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.结果区部分 {
  margin-bottom: 60px;
  background-color: rgba(40, 40, 40, 0.8);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.结果区部分标题 {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: bold;
  color: #316833;
  border-bottom: 2px solid #2d662f;
  padding-bottom: 10px;
}

.数据切换按钮组 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.数据切换按钮左侧组 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.数据切换按钮 {
  padding: 8px 16px;
  background-color: #333;
  border: 2px solid #333;
  border-radius: 6px;
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: '"Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif';
  transition: all 0.1s ease;
}

.数据切换按钮:hover {
  background-color: rgb(71, 82, 96);
  border-color: rgb(71, 82, 96);
}

.数据切换按钮.激活 {
  background-color: #2a642c;
  border-color: #2a642c;
  color: #fff;
  font-weight: 600;
}

.历史数据标题行 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.历史数据标题行 .结果区部分标题 {
  margin: 0;
  flex: 1;
}

.清空记录按钮 {
  padding: 8px 16px;
  background-color: rgb(139, 49, 43);
  border: 2px solid rgb(139, 49, 43);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.1s ease;
  font-family: '"Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif';
  white-space: nowrap;
}

.清空记录按钮:hover {
  background-color: rgb(181, 66, 58);
  border-color: rgb(181, 66, 58);
}

.分页控件 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.分页按钮 {
  padding: 8px 16px;
  background-color: rgba(60, 60, 60, 0.8);
  border: 2px solid #666;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: '"Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif';
}

.分页按钮:hover:not(:disabled) {
  background-color: rgba(80, 80, 80, 0.9);
  border-color: #4caf50;
  color: #4caf50;
}

.分页按钮:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.页码显示 {
  color: #fff;
  font-size: 14px;
  font-family: '"Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif';
}

.原始字符 {
  display: inline-block;
  width: auto;
  height: 50px;
  color: gray;
  align-content: center;
}

.原始字符.换行符 {
  width: 100%;
  height: 0;
  display: block;
}

.原始字符.空格 {
  position: relative;
  width: 1ch;
}

.原始字符.空格.错误 {
  background-image: linear-gradient(to bottom, transparent 25%, #f44 25%, #f44 75%, transparent 75%);
}

.原始字符.正确 {
  color: #38a86a;
}

.原始字符.错误 {
  color: #f44;
}

.输入区:has(.隐藏输入框:focus) .原始字符.当前 {
  background: linear-gradient(
    to top,
    transparent,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent
  );
  color: #fff;
}

.输入区:has(.隐藏输入框:focus) .原始字符.空格.当前 {
  background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.5) 50%, transparent);
  color: #fff;
}

.信息展示区 {
  position: fixed;
  right: 20px;
  top: max(10px, 47.5%);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  --侧边数据统计字符颜色: #6e9fde;
  --侧边数据统计单位颜色: lightblue;
}

.信息项 {
  background: #ffffff0d;
  border-radius: 10px;
  padding: 15px;
  min-width: 194px;
  backdrop-filter: blur(10px);
  font-size: 16px;
}

.信息标题 {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
  text-align: center;
}

.字符统计标题 {
  margin-top: 30px;
}

.时间显示 {
  font-family: "Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif;
  text-align: center;
  font-weight: 500;
}

.时间显示 .小时 {
  color: lightseagreen;
}

.时间显示 .分钟 {
  color: #2196f3;
}

.时间显示 .秒 {
  color: #ffa500;
}

.时间显示 .冒号 {
  color: #888;
}

.进度圆环 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  background: conic-gradient(
    from 0deg,
    #4caf50 0deg,
    #4caf50 var(--进度角度, 0deg),
    #555 var(--进度角度, 0deg),
    #555 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.进度圆环::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgb(25, 25, 25);
}

.进度百分比 {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  font-family: "Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.进度数字 {
  color: #fff;
}

.进度百分号 {
  color: #888;
}

.字符数显示 {
  font-size: 14px;
  text-align: center;
  font-family: "Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif;
  color: #678;
}

.已输入字符数 {
  color: #4caf50;
}

.总字符数 {
  color: #abc;
}

.错误数据显示 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-family: "Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif;
}

.错误数据项 {
  display: flex;
  align-items: center;
}

.错误数据标签 {
  color: #c6c6c6;
  width: 80px;
  text-align: right;
  text-wrap: nowrap;
}

.错误字符数 {
  color: var(--侧边数据统计字符颜色);
}

.退格次数 {
  color: var(--侧边数据统计字符颜色);
}

.正确率 {
  display: inline-flex;
  align-items: baseline;
}

.正确率数字 {
  color: var(--侧边数据统计字符颜色);
}

.正确率 .小数点 {
  color: gray;
}

.正确率小数 {
  color: var(--侧边数据统计字符颜色);
}

.正确率 {
  color: gray;
}

.斜杠 {
  margin: 0 4px;
}

.冒号 {
  color: gray;
}

.百分号,
.进度百分号 {
  color: lightsteelblue;
  margin-left: 2px;
}

.速度显示 {
  display: inline-flex;
  align-items: baseline;
  width: 84px;
}

.速度字符数 {
  color: var(--侧边数据统计字符颜色);
}

.速度斜杠 {
  color: gray;
  margin: 0 2px;
}

.速度分钟 {
  color: lightsteelblue;
}

.操作按钮组 {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.终止按钮,
.详情按钮 {
  flex: 1;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: "Noto Sans SC", 微软雅黑, sans-serif;
}

.终止按钮 {
  background-color: #8a221a;
  color: #fff;
}

.终止按钮:hover {
  background-color: #a72a21;
}

.终止按钮:active {
  background-color: #d73c31;
}

.详情按钮 {
  background-color: #2b662d;
  color: #fff;
}

.详情按钮:hover {
  background-color: #39873c;
}

.详情按钮:active {
  background-color: #56c15a;
}

.查看详情按钮 {
  padding: 15px 40px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: rgb(43, 95, 45);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Noto Sans SC", 微软雅黑, sans-serif;
  transition: background-color 0.25s;
}

.查看详情按钮:hover {
  background-color: #45a049;
}

@media screen and (max-height: 1000px) {
  .输入容器 {
    translate: 0 50px;
  }
}

.历史数据右键菜单 {
  position: fixed;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  font-family: '"Google Sans Code", "JetBrains Mono", Consolas, "Noto Sans SC", 微软雅黑, sans-serif';
}

.右键菜单项 {
  background-color: rgb(220, 220, 220);
  padding: 8px 16px;
  color: black;
  cursor: pointer;
  font-size: 14px;
}

.右键菜单项:hover {
  background-color: rgb(148, 61, 61);
  color: #fff;
}
