/* =========================================================
   V93
   轮播图下面只保留分类 Tab，不显示任何行情卡片
   ========================================================= */

/* 旧 V91 / V84 行情卡片区域全部隐藏，但不删除 DOM */
.cx91-watch-slot,
.cx91-list,
.cx91-list-head,
.cx91-list-body,
.home .cx91-market-shell .market-cards,
.new-home .cx91-market-shell .market-cards,
.cx84-market-tabs,
.home .market-cards:not(.cx92-mini-grid),
.new-home .market-cards:not(.cx92-mini-grid){
  display:none!important;
}

/* V93 分类导航 */
.cx93-tabs-wrap{
  width:100%;
  margin:18px auto 24px;
  padding:0 16px;
  box-sizing:border-box;
}

.cx93-tabs{
  display:flex;
  align-items:center;
  gap:28px;
  overflow-x:auto;
  white-space:nowrap;
  scrollbar-width:none;
  padding:0 0 10px;
}

.cx93-tabs::-webkit-scrollbar{
  display:none;
}

.cx93-tab{
  position:relative;
  flex:0 0 auto;
  border:0;
  background:transparent;
  color:var(--cx-text-3,#8f949d);
  padding:6px 0 10px;
  font-size:16px;
  line-height:20px;
  font-weight:800;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}

.cx93-tab.active{
  color:var(--cx-text,#f5f5f5);
}

.cx93-tab.active:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:26px;
  height:3px;
  border-radius:3px;
  background:currentColor;
  transform:translateX(-50%);
}

/* 分类结果用正规交易所列表，不使用卡片 */
.cx93-market-list{
  display:none;
  width:100%;
  margin:-4px auto 28px;
  padding:0 16px;
  box-sizing:border-box;
}

.cx93-market-list.show{
  display:block;
}

.cx93-head,
.cx93-row{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(90px,.8fr) minmax(82px,.62fr);
  align-items:center;
  gap:10px;
}

.cx93-head{
  min-height:38px;
  color:var(--cx-text-3,#8f949d);
  font-size:11px;
  font-weight:700;
}

.cx93-head > :nth-child(2),
.cx93-head > :nth-child(3){
  text-align:right;
}

.cx93-row{
  min-height:70px;
  border-bottom:1px solid rgba(128,128,128,.10);
}

.cx93-name{
  min-width:0;
}

.cx93-symbol{
  color:var(--cx-text,#f5f5f5);
  font-size:15px;
  line-height:20px;
  font-weight:800;
}

.cx93-sub{
  margin-top:4px;
  color:var(--cx-text-3,#8f949d);
  font-size:11px;
}

.cx93-price{
  text-align:right;
  color:var(--cx-text,#f5f5f5);
  font-size:15px;
  font-weight:800;
}

.cx93-change{
  justify-self:end;
  min-width:70px;
  text-align:right;
  font-size:14px;
  font-weight:800;
}

.cx93-up{color:var(--cx-green,#10c79a)!important}
.cx93-down{color:var(--cx-red,#ff4d57)!important}

@media(max-width:600px){
  .cx93-tabs-wrap,
  .cx93-market-list{
    padding-left:14px;
    padding-right:14px;
  }

  .cx93-tabs{
    gap:24px;
  }

  .cx93-tab{
    font-size:15px;
  }
}

@media(max-width:360px){
  .cx93-tabs{
    gap:20px;
  }

  .cx93-tab{
    font-size:14px;
  }

  .cx93-head,
  .cx93-row{
    grid-template-columns:minmax(0,1.25fr) minmax(80px,.75fr) minmax(68px,.58fr);
    gap:7px;
  }
}
