.jlu-wrap{
  --jlu-map-width:1320px;
  --jlu-side-gap:24px;
  --jlu-real-width:min(var(--jlu-map-width),calc(100vw - var(--jlu-side-gap)));
  --jlu-blue:#1a73e8;
  --jlu-text:#0f172a;
  --jlu-muted:#64748b;
  --jlu-border:#e7edf5;
  --jlu-card:#fff;
  --jlu-thumb-inset:24px;

  position:relative;
  z-index:0;
  width:var(--jlu-real-width);
  max-width:none;
  margin:18px 0 26px;
  margin-left:calc(50% - (var(--jlu-real-width) / 2));
  margin-right:calc(50% - (var(--jlu-real-width) / 2));
  padding:0;
  box-sizing:border-box;
  font-family:inherit;
  background:#fff;
}

.jlu-wrap:before{
  content:"";
  position:absolute;
  z-index:-1;
  top:-18px;
  bottom:-26px;
  left:calc(50% - 50vw);
  right:calc(50% - 50vw);
  background:#fff;
  pointer-events:none;
}

.jlu-head{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  padding:8px 14px;
  border:1px solid #eef3f8;
  border-radius:999px;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
  font-size:15px;
  font-weight:800;
  color:var(--jlu-text);
}

.jlu-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--jlu-blue);
  box-shadow:0 0 0 5px rgba(26,115,232,.12);
}

.jlu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(286px,1fr));
  justify-content:stretch;
  align-items:start;
  gap:24px 26px;
}

.jlu-card{
  min-width:0;
  display:block;
  overflow:hidden;
  border:1px solid var(--jlu-border);
  border-radius:20px;
  background:var(--jlu-card);
  box-shadow:0 10px 26px rgba(15,23,42,.07);
  text-decoration:none;
  color:var(--jlu-text);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
  contain:content;
}

.jlu-card:hover{
  transform:translateY(-2px);
  border-color:#d9e5f2;
  box-shadow:0 14px 34px rgba(15,23,42,.095);
}

.jlu-imgbox{
  position:relative;
  display:block;
  aspect-ratio:4/5;
  overflow:hidden;
  background:#fff;
}

.jlu-imgbox:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:linear-gradient(110deg,#ffffff 8%,#f8fafc 18%,#ffffff 33%);
  background-size:220% 100%;
  animation:jluShimmer 1.05s linear infinite;
}

.jlu-imgbox.is-loaded:before{
  opacity:0;
  animation:none;
}

.jlu-imgbox img{
  position:absolute;
  z-index:1;
  inset:var(--jlu-thumb-inset);
  width:calc(100% - (var(--jlu-thumb-inset) * 2));
  height:calc(100% - (var(--jlu-thumb-inset) * 2));
  display:block;
  object-fit:cover;
  border-radius:15px;
  opacity:.01;
  transition:filter .22s ease,transform .22s ease,opacity .2s ease;
}

.jlu-imgbox.is-loaded img{
  opacity:1;
}

.jlu-imgbox.is-soft-locked img{
  filter:blur(5px) saturate(.95) brightness(.92);
  transform:scale(1.025);
}

.jlu-imgbox.is-soft-locked:after{
  content:"";
  position:absolute;
  inset:var(--jlu-thumb-inset);
  border-radius:15px;
  z-index:1;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(15,23,42,.08));
  pointer-events:none;
}

.jlu-imgbox.is-clear img{
  filter:none;
  transform:none;
}

.jlu-lock{
  position:absolute;
  left:calc(var(--jlu-thumb-inset) + 8px);
  bottom:calc(var(--jlu-thumb-inset) + 8px);
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(15,23,42,.72);
  color:#fff;
  font-size:11px;
  font-weight:800;
  line-height:1;
  backdrop-filter:blur(5px);
}

.jlu-lock.is-unlocked{
  background:rgba(15,23,42,.58);
}

.jlu-body{
  display:block;
  padding:13px 16px 15px;
}

.jlu-name{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:17px;
  line-height:1.25;
  font-weight:900;
  color:#0f172a;
}

.jlu-meta{
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  margin-top:4px;
  font-size:14px;
  line-height:1.25;
  color:var(--jlu-blue);
  font-weight:700;
}

.jlu-meta span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.jlu-meta em{
  font-style:normal;
  color:#94a3b8;
  font-size:11px;
  font-weight:900;
}

.jlu-badges{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:5px;
  margin-top:7px;
}

.jlu-type,
.jlu-status{
  display:inline-flex;
  align-items:center;
  max-width:100%;
  padding:4px 7px;
  border:1px solid #d9e6f6;
  border-radius:999px;
  background:#f8fbff;
  color:#0f172a;
  font-size:11px;
  line-height:1;
  font-weight:900;
  box-shadow:0 2px 7px rgba(15,23,42,.07);
  white-space:nowrap;
}

.jlu-status{
  border-color:#fee2e2;
  background:#fff7f7;
  color:#dc2626;
}

.jlu-intro{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  margin-top:10px;
  min-height:58px;
  color:#1f2937;
  font-size:14px;
  line-height:1.38;
  font-weight:500;
}

.jlu-message-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-top:12px;
  padding:11px 14px;
  border:1px solid #dadce0;
  border-radius:999px;
  background:#fff;
  color:#1a73e8;
  font-size:14px;
  line-height:1;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:0 1px 2px rgba(60,64,67,.08);
  transition:background .16s ease,border-color .16s ease,box-shadow .16s ease,transform .16s ease;
  box-sizing:border-box;
}

.jlu-card:hover .jlu-message-btn{
  background:#f8fbff;
  border-color:#cfd8e3;
  box-shadow:0 2px 6px rgba(60,64,67,.12);
  transform:translateY(-1px);
}

.jlu-card:active .jlu-message-btn{
  background:#eef5ff;
  transform:translateY(0);
}

@keyframes jluShimmer{
  0%{background-position:180% 0;}
  100%{background-position:-80% 0;}
}

@media (max-width:720px){
  .jlu-wrap{
    --jlu-side-gap:22px;
    --jlu-thumb-inset:16px;
    margin-top:16px;
    margin-bottom:22px;
  }

  .jlu-head{
    margin-bottom:12px;
    padding:7px 12px;
    font-size:13.5px;
    box-shadow:0 4px 14px rgba(15,23,42,.05);
  }

  .jlu-grid{
    grid-template-columns:1fr;
    justify-content:stretch;
    gap:12px;
  }

  .jlu-card{
    display:block;
    min-height:0;
    border-radius:20px;
    box-shadow:0 3px 12px rgba(15,23,42,.055);
  }

  .jlu-card:hover{
    transform:none;
    box-shadow:0 5px 16px rgba(15,23,42,.07);
  }

  .jlu-imgbox{
    height:auto;
    min-height:0;
    aspect-ratio:4/3;
    border-radius:17px 17px 0 0;
  }

  .jlu-body{
    min-width:0;
    display:block;
    padding:13px 14px 14px;
  }

  .jlu-name{
    font-size:16px;
    line-height:1.2;
  }

  .jlu-meta{
    margin-top:5px;
    font-size:13px;
  }

  .jlu-badges{
    margin-top:9px;
  }

  .jlu-type,
  .jlu-status{
    padding:5px 8px;
    font-size:11px;
  }

  .jlu-intro{
    min-height:0;
    -webkit-line-clamp:2;
    font-size:13.5px;
  }

  .jlu-message-btn{
    margin-top:12px;
    padding:10px 12px;
    min-height:38px;
    font-size:13px;
    box-shadow:0 1px 2px rgba(60,64,67,.08);
  }
}

@media (max-width:390px){
  .jlu-wrap{
    --jlu-side-gap:18px;
  }

  .jlu-grid{
    gap:12px;
  }

  .jlu-body{
    padding:12px 12px 13px;
  }

  .jlu-name{
    font-size:15px;
  }

  .jlu-meta{
    font-size:12.5px;
  }

  .jlu-message-btn{
    min-height:36px;
    padding:9px 10px;
    font-size:12.5px;
  }
}

@media (prefers-reduced-motion:reduce){
  .jlu-imgbox:before{
    animation:none;
  }

  .jlu-card,
  .jlu-imgbox img{
    transition:none;
  }
}
