.honors-main {
  max-width: 1200px;
  margin: 2.5rem auto 3rem auto;
  padding: 0 1rem;
}
.honors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 2.5rem;
  justify-content: center;
}
.honor-card {
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.honor-card:hover {
  box-shadow: 0 8px 32px rgba(22,119,255,0.10);
  transform: translateY(-4px) scale(1.03);
}
.honor-img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 1.2rem;
  background: #f7f9fa;
}
.honor-title {
  text-align: center;
  font-size: 1.15rem;
  color: #444;
  margin: 1.2rem 0 1.5rem 0;
}
/* 弹窗大图 */
.honor-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  animation: honorModalFadeIn 0.25s;
}
.honor-modal-bg {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 1;
}
.honor-modal-content {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.honor-modal-content img {
  max-width: 60vw;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  background: #fff;
  margin-bottom: 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.honor-modal-content img:hover {
  box-shadow: 0 8px 32px rgba(22,119,255,0.10);
  transform: scale(1.02);
}
.honor-modal-close {
  position: fixed;
  right: 2.5rem;
  top: 2.5rem;
  font-size: 3.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  background: rgba(45,163,255,0.85);
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.honor-modal-close:hover {
  color: #2da3ff;
  background: #fff;
  box-shadow: 0 4px 24px rgba(45,163,255,0.18);
}
.honor-modal-title {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.honor-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(45,163,255,0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  user-select: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  border: 2px solid #fff;
}
.honor-modal-arrow:hover {
  background: #fff;
  color: #2da3ff;
  box-shadow: 0 4px 24px rgba(45,163,255,0.18);
}
.honor-modal-arrow.left { left: -4rem; }
.honor-modal-arrow.right { right: -4rem; }
@media (max-width: 900px) {
  .honors-grid { gap: 1.2rem 0.5rem; }
  .honor-card { width: 98vw; max-width: 340px; }
  .honor-img { max-width: 95vw; }
  .honor-modal-content img { max-width: 95vw; }
  .honor-modal-arrow.left { left: 0.2rem; }
  .honor-modal-arrow.right { right: 0.2rem; }
  .honor-modal-close { right: 1rem; top: 1rem; font-size: 2.2rem; width: 2.2rem; height: 2.2rem; }
}