/* 主页哔哔bb */
#bber-talk {
    width: 100%;
    height: 25px;
    line-height: 25px;
  }

  
#bber-talk .li-style {
  font-family: 'Yozai Medium',-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Lato,Roboto,"PingFang SC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
  width: 100%;
  height: 25px;
  text-align: center;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s;
}


#bber-talk .li-style:hover{
    color: #0a8136;
    font-weight: bold;
  }
  
  #bber-talk ul,li{
    list-style:none;
    display:block;
    margin: 0;
    padding: 0;
  }

  #bbtalk{
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
/* 首页bb */

#bbTimeList {
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    margin-top: 0rem;
    margin-bottom: 1rem;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    transition: background-color 0.3s ease; /* 添加过渡效果 */
    background-color: rgba(255, 255, 255, 0.904);
    align-items: center;
    height: 50px;
    color: #000;
    font-family: 'Lantinghei SC', Courier, monospace;
    font-size: 18px;
}
#bbTimeList .iconfont {
    font-size: 40px;
    color: rgb(38, 76, 226);
}

/* 哔哔前往 */
.bber-gotobb {

    cursor: pointer;
    font-size: 50px;
}

.bber-gotobb:hover {
    opacity: 0.8;
    color: red;
}

i.bber-gotobb {
    font-size: 20px;
    color: #335bed;
}
/* =====================
   说说（短文）瀑布流页面
   ===================== */


/* 瀑布流容器 */
#waterfall {
  position: relative; /* waterfall.js 会用绝对定位布局 */
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

/* 每条说说卡片 */
#waterfall .item {
  position: absolute;
  width: calc((100% - 2rem) / 3); /* 三列 */
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  word-break: break-word;
  margin: 0; /* ❌ 不要在这里写 margin-top / margin-right */
}

#waterfall .item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ---- 内容区 ---- */
.bber-content {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* 图片 */
.bber-content-img {
  margin-top: 0.5rem;
}
.bber-content-img a {
  display: inline-block;
}
.bber-content-img img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* 音乐播放器 */
.bber-music {
  margin: 0.5rem 0;
}
.bber-music meting-js {
  width: 100%;
  display: block;
}

/* 分隔线 */
#waterfall .item hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 0.5rem 0;
}

/* ---- 底部信息 ---- */
.bber-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* 左侧：时间 + 链接 */
.bber-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bber-info-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
}
.bber-info-time i {
  font-size: 0.9rem;
  color: #aaa;
}

.bber-content-link {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.bber-content-link i {
  margin-right: 3px;
}
.bber-content-link:hover {
  color: var(--bywind-main, #409eff);
}

/* 右侧：回复按钮 */
.bber-reply {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--bywind-main, #409eff);
  transition: color 0.2s;
}
.bber-reply:hover {
  color: #1e80ff;
}

/* ---- 底部提示 ---- */
#bber-tips {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #444 !important;
}

/* =====================
   响应式（保底一列）
   ===================== */

/* 平板：两列 */
@media screen and (max-width: 1024px) {
  #waterfall .item {
    width: calc((100% - 1rem) / 2);
  }
}

/* 手机：一列 */
@media screen and (max-width: 640px) {
  #waterfall .item {
    width: 100%;
  }
}
