/* 实时访问记录 */
.wrap {
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-top: 0.4rem;
  min-height: 0;
}
.wrap ul {
  position: absolute;
  width: 100%;
}
.wrap li {
  height: 2rem;
  margin-bottom: 0.25rem;
}
/* gap:6px → margin 替代 */
.wrap li p {
  border: 0.0625rem solid rgba(100, 160, 220, 0.08);
  background: rgba(10, 18, 40, 0.5);
  border-left: 0.125rem solid rgba(100, 160, 220, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.wrap li p > * + * {
  margin-left: 0.375rem;
}
.vlog-time {
  color: rgba(100, 180, 255, 0.7);
  font-family: "Courier New", monospace;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: 0.8125rem;
}
.vlog-city {
  background: rgba(100, 160, 220, 0.15);
  padding: 0.0625rem 0.375rem;
  border-radius: 0.125rem;
  color: #7eb8f0;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.vlog-text {
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}
.vlog-path {
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

.mobile-layout .wrap {
  min-height: 18.75rem;
}
.mobile-layout .wrap li {
  height: 2rem;
  font-size: 0.75rem;
}
.mobile-layout .wrap li p {
  padding: 0 0.875rem;
}
.mobile-layout .wrap li p > * + * {
  margin-left: 0.5rem;
}
.mobile-layout .vlog-time {
  font-size: 0.75rem;
}
.mobile-layout .vlog-city {
  font-size: 0.75rem;
}
.mobile-layout .vlog-text {
  font-size: 0.75rem;
}
.mobile-layout .vlog-path {
  font-size: 0.75rem;
}

