.tool-container{padding:20px;max-width:1260px;margin:0 auto;min-height:100vh;box-sizing:border-box;}
/* 筛选区域样式 */
.pick-box{background:#fff;padding:22px;margin-bottom:25px;}
.pick-row{display:flex;flex-wrap:wrap;gap:16px;align-items:center;margin-bottom:15px;}
.pick-row:last-child{margin-bottom:0;}
.pick-item label{font-size:14px;color:#333;margin-right:8px;font-weight:500;}
.pick-item select,.pick-item input{height:42px;padding:0 14px;border:1px solid #e5e7eb;border-radius:10px;outline:none;font-size:14px;min-width:160px;background:#fafbfc;transition:border 0.2s;}
.pick-item select:focus,.pick-item input:focus{border-color:#2563eb;background:#fff;}
.btn-search{height:42px;padding:0 26px;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;border:none;border-radius:10px;cursor:pointer;transition:all 0.3s;box-shadow:0 3px 8px rgba(37,99,235,0.25);}
.btn-search:hover{transform:translateY(-2px);box-shadow:0 5px 12px rgba(37,99,235,0.35);}
.btn-reset{height:42px;padding:0 20px;background:#f1f3f5;border:none;border-radius:10px;color:#555;cursor:pointer;transition:all 0.3s;}
.btn-reset:hover{background:#e5e7eb;}
/* 热门标签 */
.hot-tag{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:22px;}
.hot-tag span{padding:8px 18px;background:#fff;border:1px solid #e5e7eb;border-radius:30px;font-size:14px;cursor:pointer;transition:all 0.3s ease;}
.hot-tag span:hover,.hot-tag span.active{background:#2563eb;color:#fff;border-color:#2563eb;}
/* 电影卡片全局样式 */
.movie-list{display:flex;flex-direction:column;gap:20px;}
.movie-card{background:#fff;border-radius:16px;padding:26px;box-shadow:0 4px 16px rgba(0,0,0,0.05);transition:all 0.3s ease;}
.movie-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.08);}
/* 标题+后置标签 */
.movie-head{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin-bottom:18px;}
.movie-title{font-size:19px;font-weight:600;color:#111;}
.head-tag{font-size:13px;padding:3px 10px;border-radius:18px;}
.tag-score{background:#fffbeb;color:#d97706;}
.tag-hard{background:#fff1f1;color:#ef4444;}
/* 单行信息条目 */
.info-item{font-size:14px;color:#444;line-height:1.8;margin:6px 0;}
.info-item strong{color:#222;width:80px;display:inline-block;}
/* 剧情、推荐理由区块 */
.desc-block{font-size:14px;color:#555;line-height:1.9;padding:15px;background:#f8fafc;border-radius:12px;margin-top:16px;text-align:justify;}
.desc-block + .desc-block{margin-top:12px;}
.empty-tip{text-align:center;padding:60px;font-size:15px;color:#999;background:#fff;border-radius:12px;}
/* 移动端适配 */
@media (max-width:768px){
    .pick-row{gap:10px;}
    .pick-item{width:100%;}
    .movie-card{padding:18px;}
    .info-item strong{width:80px;}
}