/* getapi - Index控制器 - index/lists方法 */

/* ===== 布局容器 ===== */
.market-wrap{max-width:1200px;margin:0 auto;padding:0 15px;}

/* ===== Hero 搜索区 ===== */
.market-hero{text-align:center;padding:40px 0 30px;}
.market-hero h1{font-size:28px;color:#333;font-weight:700;margin:0 0 12px;}
.market-hero-tags{display:flex;justify-content:center;gap:20px;margin-bottom:28px;}
.market-hero-tag{font-size:14px;color:#666;}
.market-hero-tag i{color:#1E9FFF;margin-right:4px;font-size:13px;}
.market-search-form{display:flex;justify-content:center;align-items:stretch;max-width:560px;margin:0 auto 16px;}
.market-search-form input[type="text"]{flex:1;height:46px;border:1px solid #d9d9d9;border-right:none;border-radius:6px 0 0 6px;padding:0 16px;font-size:15px;color:#333;outline:none;box-sizing:border-box;transition:border-color .2s,box-shadow .2s;}
.market-search-form input[type="text"]:focus{border-color:#1E9FFF;box-shadow:0 0 0 2px rgba(30,159,255,.12);}
.market-search-form .market-search-btn{height:46px;padding:0 28px;background:#1E9FFF;color:#fff;border:none;border-radius:0 6px 6px 0;font-size:15px;cursor:pointer;white-space:nowrap;transition:background .2s;}
.market-search-form .market-search-btn:hover{background:#0d8de6;}

/* 热搜词 */
.market-hotwords{text-align:center;margin-bottom:10px;}
.market-hotwords span.label{font-size:13px;color:#999;margin-right:6px;}
.market-hotwords a{display:inline-block;padding:3px 10px;margin:3px 4px;font-size:12px;color:#666;background:#f5f5f5;border-radius:3px;text-decoration:none;transition:all .2s;}
.market-hotwords a:hover{color:#1E9FFF;background:#e8f4ff;}

/* ===== 分类标签导航 ===== */
.market-tabs{display:flex;flex-wrap:wrap;align-items:center;gap:0;padding:0 0 20px;border-bottom:1px solid #e6e6e6;margin-bottom:24px;}
.market-tab{display:inline-block;padding:8px 18px;margin:4px 2px;font-size:14px;color:#666;border-radius:4px;text-decoration:none;transition:all .2s;cursor:pointer;}
.market-tab:hover{color:#1E9FFF;background:#f0f8ff;}
.market-tab.active{color:#fff;background:#1E9FFF;}
.market-tabs-spacer{flex:1;}
.market-sort-dropdown{position:relative;display:inline-block;flex-shrink:0;margin-left:auto;}
.market-sort-trigger{display:flex;align-items:center;gap:4px;padding:7px 14px;font-size:13px;color:#666;background:#fff;border:1px solid #d9d9d9;border-radius:4px;cursor:pointer;white-space:nowrap;transition:all .2s;}
.market-sort-trigger:hover{border-color:#1E9FFF;color:#1E9FFF;}
.market-sort-trigger i{font-size:11px;}
.market-sort-dropdown.open .market-sort-menu{display:block;}
.market-sort-menu{display:none;position:absolute;right:0;top:100%;margin-top:4px;background:#fff;border:1px solid #e6e6e6;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.1);z-index:100;min-width:100px;}
.market-sort-menu a{display:block;padding:8px 16px;font-size:13px;color:#666;text-decoration:none;white-space:nowrap;transition:all .15s;}
.market-sort-menu a:hover{background:#f0f8ff;color:#1E9FFF;}
.market-sort-menu a.active{color:#1E9FFF;font-weight:600;}

/* ===== 产品卡片网格 ===== */
.market-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:30px;}
.market-card{display:flex;flex-direction:column;background:#fff;border:1px solid #e6e6e6;border-radius:6px;padding:20px;transition:box-shadow .25s,transform .25s;text-decoration:none;color:inherit;min-height:160px;}
.market-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.1);transform:translateY(-2px);color:inherit;}
.market-card-head{display:flex;align-items:center;margin-bottom:10px;text-decoration:none;color:inherit;}
.market-card-icon{width:40px;height:40px;border-radius:8px;overflow:hidden;background:#f2f2f2;display:flex;align-items:center;justify-content:center;margin-right:12px;flex-shrink:0;}
.market-card-icon img{width:100%;height:100%;object-fit:cover;}
.market-card-icon .fa{font-size:20px;color:#1E9FFF;}
.market-card-title{font-size:15px;color:#333;font-weight:600;line-height:1.3;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.market-card-desc{font-size:13px;color:#888;line-height:1.6;flex:1;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;margin-bottom:14px;text-decoration:none;}
.market-card-foot{display:flex;align-items:center;justify-content:space-between;margin-top:auto;}
.market-card-price{font-size:14px;color:#ff5722;font-weight:600;}
.market-card-price.free{color:#52c41a;}
.market-card-btns{display:flex;gap:6px;}
.market-card-btn{display:inline-block;padding:4px 14px;font-size:12px;border-radius:4px;text-decoration:none;transition:all .2s;cursor:pointer;border:1px solid transparent;line-height:1.6;}
.market-card-btn.doc{color:#666;border-color:#d9d9d9;background:#fff;}
.market-card-btn.doc:hover{color:#1E9FFF;border-color:#1E9FFF;}
.market-card-btn.try{color:#fff;background:#1E9FFF;}
.market-card-btn.try:hover{background:#0d8de6;}

/* ===== 空状态 ===== */
.market-empty{text-align:center;color:#999;padding:80px 0;font-size:15px;background:#fff;border:1px solid #e6e6e6;border-radius:6px;grid-column:1/-1;}
.market-empty i{font-size:48px;color:#d9d9d9;display:block;margin-bottom:12px;}

/* ===== 分页 ===== */
.market-page{text-align:center;margin:10px 0 40px;}
.market-page a,.market-page span.active,.market-page span.dots{display:inline-block;min-width:36px;height:36px;line-height:36px;padding:0 8px;font-size:14px;color:#333;background:#fff;border:1px solid #d9d9d9;border-radius:4px;text-decoration:none;text-align:center;transition:all .2s;margin:0 2px;}
.market-page a:hover{color:#1E9FFF;border-color:#1E9FFF;background:#f0f8ff;}
.market-page span.active{color:#fff;background:#1E9FFF;border-color:#1E9FFF;}
.market-page span.dots{border:none;background:none;color:#999;cursor:default;min-width:auto;padding:0 4px;}

/* ===== 分类页头部（lists.html） ===== */
.market-list-head{display:flex;align-items:center;justify-content:space-between;padding:24px 0 16px;margin-bottom:16px;}
.market-list-title{font-size:20px;color:#333;font-weight:700;padding-left:12px;border-left:4px solid #1E9FFF;margin:0;}
.market-list-search{display:flex;align-items:center;gap:8px;}
.market-list-search input[type="text"]{height:34px;border:1px solid #d9d9d9;border-radius:4px;padding:0 12px;font-size:13px;color:#333;width:200px;outline:none;}
.market-list-search input[type="text"]:focus{border-color:#1E9FFF;}
.market-list-search button{height:34px;padding:0 16px;background:#1E9FFF;color:#fff;border:none;border-radius:4px;font-size:13px;cursor:pointer;}
.market-list-search button:hover{background:#0d8de6;}

/* ===== 响应式 ===== */
@media(max-width:992px){
    .market-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
    .market-hero{padding:24px 0 20px;}
    .market-hero h1{font-size:22px;}
    .market-search-form{max-width:100%;}
    .market-search-form input[type="text"]{width:auto;}
    .market-tabs{overflow-x:auto;flex-wrap:nowrap;-webkit-overflow-scrolling:touch;padding-bottom:12px;}
    .market-tab{white-space:nowrap;flex-shrink:0;}
}
@media(max-width:576px){
    .market-grid{grid-template-columns:1fr;}
    .market-hero-tags{gap:12px;}
    .market-hero-tag{font-size:12px;}
}
