﻿/* Page styles for mianfeilist.html */

.cy-free-tabs  {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid rgba(0, 154, 214, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 154, 214, 0.05), rgba(255, 255, 255, 0.72));
}

.cy-free-tab  {
  min-width: 82px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cy-text);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.cy-free-tab:hover,
.cy-free-tab.is-active  {
  border-color: rgba(0, 154, 214, 0.28);
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-blue));
  color: #fff;
  transform: translateY(-1px);
}

.cy-free-article  {
  grid-template-columns: 42px minmax(0, 1fr) 104px;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 12px 16px;
  background: #fff;
  border-color: rgba(0, 154, 214, 0.12);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.cy-free-article:hover  {
  border-color: rgba(0, 154, 214, 0.32);
  background: linear-gradient(90deg, rgba(0, 154, 214, 0.06), rgba(253, 185, 51, 0.05));
  box-shadow: 0 10px 24px rgba(43, 68, 144, 0.08);
  transform: translateY(-1px);
}

.cy-free-avatar  {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cy-gold), var(--cy-cyan));
  color: var(--cy-navy);
  font-size: 16px;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.5),
    0 8px 16px rgba(43, 68, 144, 0.1);
}

.cy-free-avatar img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cy-free-main  {
  min-width: 0;
  display: grid;
  align-items: center;
}

.cy-free-article .cy-list-title  {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
}

.cy-free-article .cy-list-title::before  {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cy-gold);
  transform: translateY(-50%);
}

.cy-free-date  {
  color: var(--cy-muted);
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

