/* gn06 标签列表页 tag.html */
.gn-tpl[data-gn="06"] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 14px 30px;
}
.a1-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #312e81;
}
.a1-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
}
@media (max-width: 1000px) {
  .a1-layout {
    grid-template-columns: 1fr;
  }
}
.a1-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 0 #e9d5ff, 0 16px 32px -12px rgba(167, 139, 250, 0.28);
}
.a1-hd {
  padding: 14px 16px;
  background: linear-gradient(90deg, #f5f3ff, #faf5ff);
  border-bottom: 1px solid #ede9fe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.a1-hd h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #5b21b6;
}
.a1-list {
  padding: 14px 16px;
}
.a1-list .list-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #e9d5ff;
}
.a1-list .li-cover {
  width: 200px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid #ede9fe;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.a1-list .li-title {
  font-weight: 700;
  color: #312e81;
  text-decoration: none;
  transition: color 0.15s;
}
.a1-list .li-summary {
  color: #64748b;
}
.a1-list .list-item:hover .li-cover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(99, 102, 241, 0.16);
  border-color: #c7d2fe;
}
.a1-list .list-item:hover .li-title {
  color: #4f46e5;
}
.a1-side-list {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
}
.a1-side-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #e9d5ff;
}
.a1-side-list .num {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.a1-side-list a {
  flex: 1;
  min-width: 0;
  color: #312e81;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s, transform 0.15s;
}
.a1-side-list a:hover {
  color: #4f46e5;
  transform: translateX(2px);
}
.a1-side-date {
  font-size: 12px;
  color: #64748b;
}
.gn06-breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin: 12px 0;
  font-weight: 500;
}
.gn06-breadcrumb a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
}
.gn06-breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.65;
}
.gn06-breadcrumb .cur {
  color: #312e81;
  font-weight: 700;
}
