/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */
/*
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}
*/

/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */

/* 设置canvas元素的显示方式为fixed，固定在页面上 */
canvas {
  display: fixed;
  /* 设置canvas元素的垂直对齐方式为底部对齐 */
  vertical-align: bottom;
  
}

/* ---- stats.js 相关的样式开始 ---- */

/* 设置.count-particles类的样式 */
.count-particles {
  /* 设置背景颜色 */
  background: #000022;
  /* 设置位置为fixed，固定在页面上 */
  position: fixed;
  /* 设置距离顶部的距离 */
  top: 48px;
  /* 设置距离左侧的距离 */
  left: 0;
  /* 设置宽度 */
  width: 80px;
  /* 设置文本颜色 */
  color: #13E8E9;
  /* 设置字体大小 */
  font-size: .8em;
  /* 设置文本对齐方式为左对齐 */
  text-align: left;
  /* 设置文本缩进 */
  text-indent: 4px;
  /* 设置行高 */
  line-height: 14px;
  /* 设置底部内边距 */
  padding-bottom: 2px;
  /* 设置字体族 */
  font-family: Helvetica, Arial, sans-serif;
  /* 设置字体粗细 */
  font-weight: bold;
}
/* 设置.js-count-particles类的字体大小 */
.js-count-particles {
  font-size: 1.1em;
}
/* 设置#stats和.count-particles元素的顶部和左侧外边距 */
#stats,
.count-particles {
  margin-top: 5px;
  margin-left: 5px;
}
/* 设置#stats元素的样式 */
#stats {
  /* 设置边框圆角 */
  border-radius: 3px 3px 0 0;
  /* 设置内容溢出隐藏 */
  overflow: hidden;
}
/* 设置.count-particles元素的边框圆角 */
.count-particles {
  border-radius: 0 0 3px 3px;
}


/* ---- particles.js 容器相关的样式开始 ---- */
/* 设置#particles-js canvas元素的背景颜色 */
#particles-js canvas {
  background-color: #59d9f0;
  /* 设置粒子背景颜色 */
}

/* 设置#particles-js元素的样式 */
#particles-js {
  /* 设置位置为fixed，固定在页面上 */
  position: fixed;
  /* 设置距离顶部的距离 */
  top: 0;
  /* 设置距离左侧的距离 */
  left: 0;
  /* 设置距离右侧的距离 */
  right: 0;
  /* 设置距离底部的距离 */
  bottom: 0;
  /* 设置宽度为100% */
  width: 100%;
  /* 设置z-index为一个较低的值，确保粒子效果不会阻挡鼠标事件 */
  z-index: -1;
  /* 设置透明度 */
  opacity: 0.7;
  /* 设置粒子容器位置为绝对定位，覆盖整个页面 */
}
