
/*
  .c1a 类是一个用于设置文本样式的 CSS 类。
  通过给它设置 color、text-align、width、height、margin、padding、font-weight 和 font-size 属性，
  我们让文本的字体颜色、对齐方式、宽度、高度、外边距、内边距、字体粗细和字体大小都符合我们的要求。
*/
.c1a {
  color: rgb(255, 255, 255);
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-size: 43px;
  margin-top: 50px;
}

/*
  .c1 类是一个用于设置文本样式的 CSS 类。
  通过给它设置 color、text-align、width、height、margin、padding、font-weight 和 font-size 属性，
  我们让文本的字体颜色、对齐方式、宽度、高度、外边距、内边距、字体粗细和字体大小都符合我们的要求。
*/
.c1 {
  color: rgb(255, 255, 255);
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-weight: 100;
  font-size: 13px;
  margin-top: 25px;
}


/* 设置计时器文本的样式 */
  #timer {
    font-size: 16px;
    font-weight: bold;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  #me {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 1px;   
  }

#search-button {
  background-image: url('/images/R.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 33px; 
  height: 34px; 
  border: none;
}





