/* 荣誉资质页面样式 */

/* 光辉历史 见荣誉证 模块 */
.honor-intro-section {
  padding: 80px 0;
  background-color: #071225;
}

.honor-intro-title {
  text-align: center;
  margin-bottom: 40px;
}

.honor-intro-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.honor-intro-title .title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #18c8ff, #0f7aa8);
  margin: 0 auto;
  border-radius: 2px;
}

.honor-intro-desc {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #b8c7df;
}

/* 资质认定和认可 模块 */
.honor-certificates-section {
  padding: 60px 0 80px;
  background-color: #050b18;
}

.honor-cert-title {
  text-align: center;
  margin-bottom: 50px;
}

.honor-cert-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.honor-cert-title .title-underline {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #18c8ff, #0f7aa8);
  margin: 0 auto;
  border-radius: 2px;
}

/* 证书网格布局 */
.honor-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .honor-cert-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .honor-cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .honor-cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 证书卡片 */
.honor-cert-item {
  background: rgba(12, 28, 55, 0.82);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(34, 211, 238, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-cert-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(24, 200, 255, 0.2);
  border-color: #18c8ff;
}

.honor-cert-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 11, 24, 0.5);
  overflow: hidden;
}

.honor-cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.honor-cert-name {
  padding: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  border-top: 1px solid rgba(34, 211, 238, 0.22);
}

/* 合作单位新样式 */
.honor-partners-section {
  padding: 80px 0;
  background-color: #071225;
}

.honor-partners-title {
  text-align: center;
  margin-bottom: 50px;
}

.honor-partners-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.honor-partners-title .title-underline {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #18c8ff, #0f7aa8);
  margin: 0 auto;
  border-radius: 2px;
}

.honor-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .honor-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .honor-partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .honor-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.honor-partner-item {
  background: rgba(12, 28, 55, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #b8c7df;
  transition: all 0.3s ease;
}

.honor-partner-item:hover {
  border-color: #18c8ff;
  color: #18c8ff;
  box-shadow: 0 4px 16px rgba(24, 200, 255, 0.2);
}
