#loading {
  position: fixed; /* 固定在页面上 */
  width: 100%; /* 宽度 100% */
  height: 100%; /* 高度 100% */
  background-color: #fff; /* 背景色为白色 */
  z-index: 999; /* 设置较高的层级 */
}

.highlighter-hljs {
  font-size: 110%; /* 设置字体大小为 110% */
}

.boxLoading {
  width: 50px; /* 宽度 50px */
  height: 50px; /* 高度 50px */
  margin: auto; /* 使元素水平居中 */
  position: absolute; /* 绝对定位 */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; /* 使元素在父容器中居中 */
}

.boxLoading:before {
  content: ''; /* 无内容，仅用于视觉效果 */
  width: 50px; /* 宽度 50px */
  height: 5px; /* 高度 5px */
  background: #000; /* 背景颜色为黑色 */
  opacity: .1; /* 设置透明度为 0.1 */
  position: absolute; /* 绝对定位 */
  top: 59px; /* 从顶部 59px 开始 */
  left: 0; /* 左对齐 */
  border-radius: 50%; /* 圆形边角 */
  animation: shadow .5s linear infinite; /* 应用动画：阴影的动画 */
}

.boxLoading:after {
  content: ''; /* 无内容，仅用于视觉效果 */
  width: 50px; /* 宽度 50px */
  height: 50px; /* 高度 50px */
  background: #ffb3cc; /* 背景颜色为淡粉色 */
  animation: animate .5s linear infinite; /* 应用动画：加载框的动画 */
  position: absolute; /* 绝对定位 */
  top: 0; /* 顶部 0px */
  left: 0; /* 左对齐 */
  border-radius: 3px; /* 圆角 3px */
}

@keyframes animate {
  17% { border-bottom-right-radius: 3px; }
  25% { transform: translateY(9px) rotate(22.5deg); }
  50% { transform: translateY(18px) scale(1,0.9) rotate(45deg); border-bottom-right-radius: 40px; }
  75% { transform: translateY(9px) rotate(67.5deg); }
  100% { transform: translateY(0) rotate(90deg); }
}

@keyframes shadow {
  0%, 100% { transform: scale(1, 1); }
  50% { transform: scale(1.2, 1); }
}



html {
  font-size: 16px; /* 设置根元素的字体大小 */
}

/* 全局样式 */
body {
  font-family: 'Arial', sans-serif !important; /* 强制使用Arial字体 */
  background-color: #f4f4f4 !important; /* 强制背景颜色 */
  color: #333 !important; /* 强制文字颜色 */
  line-height: 1.6 !important; /* 强制行高 */
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* 文章内容区域 */
#cnblogs_post_body {
  max-width: 100% !important;
  margin: 0 auto;
  padding: 20px !important;
  background-color: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* 标题样式 */
h3 {
  font-size: 24px !important;
  color: rgb(225, 48, 48) !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
  font-weight: bold !important;
}

h3 strong {
  color: #34a8f6 !important;
}

/* 段落样式 */
p {
  font-size: 20px !important;
  margin-bottom: 20px !important;
  line-height: 2 !important;
}

/* 代码块样式 */
pre {
  background-color: #282c34 !important;
  color: #f8f8f2 !important;
  border-radius: 5px !important;
  padding: 15px !important;
  overflow-x: auto !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

/* 高亮代码行样式 */
.highlighter-hljs {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* 列表项样式 */
ul {
  padding-left: 20px !important;
  margin-bottom: 20px !important;
}

ul li {
  font-size: 16px !important;
  margin-bottom: 10px !important;
  list-style-type: disc !important;
}

/* 引用框样式 */
blockquote {
  font-size: 16px !important;
  border-left: 4px solid #007acc !important;
  padding-left: 15px !important;
  margin: 20px 0 !important;
  background-color: #f9f9f9 !important;
  color: #666 !important;
  font-style: italic !important;
}

/* 图片样式 */
img {
  max-width: 100% !important;
  height: auto !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 超链接样式 */
a {
  color: #007acc !important;
  text-decoration: none !important;
}

a:hover {
  text-decoration: underline !important;
}

