/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

#list-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  padding-top: 50px;
}

#list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.list-item-bg {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.9)
    ),
    url('static/wechat.png');
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: 40%;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 10px;
}

.info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.time {
  margin: 4px 0;
}
.nickname {
  margin: 3px 0;
  font-weight: bolder;
  font-size: xx-large;
}

.phone {
  margin: 2px 0;
  text-decoration-line: underline;
  text-decoration-color: coral;
  font-size: larger;
}
.sourceTag {
}

#loading,
#no-more {
  text-align: center;
  padding: 10px;
  display: none;
}

#count-display {
  position: fixed; /* 固定定位 */
  top: 0; /* 固定在顶部 */
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  color: #666;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* 确保计数器在最上层 */
}

#current-count,
#total-count {
  font-weight: bold;
  color: #333;
}
