/* fans.css */
.fans-main {
  width: 1100px;
  margin: 100px auto 0 auto; /* 顶部留出导航高度 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.first-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #fff;
  padding: 0;
}
.fans-title-top {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Microsoft YaHei", "黑体", "Arial", sans-serif;
}
.fans-tabs {
  width: 900px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 24px 24px 24px;
}

.tab-header {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: center;
}

.tab-btn {
  background: #f7cac9;
  color: #333;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 32px;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.tab-btn.active, .tab-btn:hover {
  background: #92a8d1;
  color: #fff;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tab-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 12px;
  background: #fafafa;
}
.tab-author {
  font-size: 15px;
  color: #888;
  margin-top: 0;
  text-align: center;
}

.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 16px;
}
.notice-img {
  width: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fafafa;
}
.notice-text {
  flex: 1;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}
.notice-text h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
  color: #92a8d1;
}
