main .banner {
  width: 100%;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('/img/aboutPic/aboutBanner.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main .banner .banner-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}
main .banner .banner-subtitle {
  font-size: 18px;
  color: #C5D6E7;
}
main .section-head {
  text-align: center;
  margin-bottom: 64px;
}
main .section-head .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #E8F1FF;
  color: #1B6CFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
main .section-head .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.2;
  margin-bottom: 16px;
}
main .section-head .section-desc {
  margin: 0 auto;
  font-size: 18px;
  color: #5A6378;
  max-width: 640px;
  line-height: 1.75;
}
main .about-box.hidden {
  display: none;
}
main .section-one {
  background: #FFFFFF;
  padding: 96px 0;
}
main .section-one .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .section-one .about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
main .section-one .about-intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.2;
  margin-bottom: 20px;
}
main .section-one .about-intro-content h2 .text-gradient {
  background: linear-gradient(135deg, #1B6CFF 0%, #00C2FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
main .section-one .about-intro-content p {
  font-size: 18px;
  color: #5A6378;
  line-height: 1.75;
}
main .section-one .about-intro-content .btn-group {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}
main .section-one .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .section-one .btn-primary {
  background: #1B6CFF;
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.25);
}
main .section-one .btn-primary:hover {
  background: #0A4FCC;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(27, 108, 255, 0.3);
}
main .section-one .btn-secondary {
  background: #FFFFFF;
  color: #1B6CFF;
  border: 1.5px solid #E8F1FF;
}
main .section-one .btn-secondary:hover {
  border-color: #1B6CFF;
  background: #F5F9FF;
  transform: translateY(-2px);
}
main .section-one .about-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #0A1633 0%, #0D2553 40%, #0A3D7A 100%);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(10, 22, 51, 0.12);
}
main .section-one .about-video .grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
main .section-one .about-video-play {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
main .section-one .about-video-play svg {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
}
main .section-one .about-video-play:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}
main .section-one .about-video-label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  z-index: 2;
}
@media (max-width: 1024px) {
  main .section-one .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  main .section-one {
    padding: 64px 0;
  }
  main .section-one .about-intro-content h2 {
    font-size: 28px;
  }
  main .section-one .about-intro-content p {
    font-size: 16px;
  }
  main .section-one .about-intro-content .btn-group {
    flex-direction: column;
  }
}
main .section-two {
  background: #F8FAFF;
  padding: 96px 0;
}
main .section-two .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .section-two .section-head {
  margin-bottom: 56px;
}
main .section-two .arch-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
main .section-two .arch-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(10, 22, 51, 0.06);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .section-two .arch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27, 108, 255, 0.12);
}
main .section-two .arch-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 64px;
  min-width: 320px;
}
main .section-two .arch-parent .arch-logo-large {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
main .section-two .arch-parent .arch-meta {
  font-size: 14px;
  font-weight: 600;
  color: #1B6CFF;
  letter-spacing: 0.5px;
}
main .section-two .arch-children {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  width: 100%;
}
main .section-two .arch-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  height: 100%;
  min-height: 0;
}
main .section-two .arch-child .arch-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}
main .section-two .arch-child .arch-name {
  font-size: 16px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.4;
  margin-bottom: 8px;
}
main .section-two .arch-child .arch-role {
  font-size: 13px;
  font-weight: 600;
  color: #1B6CFF;
  letter-spacing: 0.3px;
}
@media (max-width: 1100px) {
  main .section-two .arch-children {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  main .section-two {
    padding: 64px 0;
  }
  main .section-two .section-head {
    margin-bottom: 40px;
  }
  main .section-two .arch-grid {
    gap: 32px;
  }
  main .section-two .arch-parent {
    padding: 24px 40px;
    min-width: auto;
    width: 100%;
  }
  main .section-two .arch-parent .arch-logo-large {
    height: 44px;
  }
  main .section-two .arch-children {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
  }
  main .section-two .arch-child {
    padding: 24px 16px;
    height: 100%;
    min-height: 0;
  }
  main .section-two .arch-child .arch-logo {
    width: 48px;
    height: 48px;
  }
  main .section-two .arch-child .arch-name {
    font-size: 14px;
  }
  main .section-two .arch-child .arch-role {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  main .section-two .arch-children {
    grid-template-columns: 1fr;
  }
}
main .section-three {
  padding-top: 68px;
}
main .section-three .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
main .section-three .culture-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
main .section-three .culture-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #EAEEF5;
  border-radius: 16px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .section-three .culture-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(10, 22, 51, 0.08);
  transform: translateY(-4px);
}
main .section-three .culture-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
main .section-three .culture-icon svg {
  width: 24px;
  height: 24px;
}
main .section-three .culture-name {
  font-size: 18px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.4;
  margin-bottom: 8px;
}
main .section-three .culture-desc {
  font-size: 14px;
  color: #5A6378;
  line-height: 1.7;
  margin: 0;
}
main .section-three .culture-card-red .culture-icon {
  background: #FFEAEC;
  color: #F23B4B;
}
main .section-three .culture-card-blue .culture-icon {
  background: #E8F1FF;
  color: #1B6CFF;
}
main .section-three .culture-card-purple .culture-icon {
  background: #F0EAFF;
  color: #7B5CF6;
}
main .section-three .culture-card-green .culture-icon {
  background: #E5F7EC;
  color: #1FB874;
}
@media (max-width: 768px) {
  main .section-three .container {
    padding: 0 24px 64px;
  }
  main .section-three .culture-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  main .section-three .culture-card {
    padding: 24px;
  }
}
main .section-four {
  background: #F5F7FF;
  padding: 96px 0;
}
main .section-four .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .section-four .ll-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
main .section-four .ll-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #EAEEF5;
  border-radius: 16px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .section-four .ll-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(10, 22, 51, 0.08);
  transform: translateY(-4px);
}
main .section-four .ll-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
main .section-four .ll-icon svg {
  width: 24px;
  height: 24px;
}
main .section-four .ll-body {
  flex: 1;
  min-width: 0;
}
main .section-four .ll-name {
  font-size: 18px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.4;
  margin-bottom: 8px;
}
main .section-four .ll-desc {
  font-size: 14px;
  color: #5A6378;
  line-height: 1.7;
  margin: 0;
}
main .section-four .ll-card-blue .ll-icon {
  background: #E8F1FF;
  color: #1B6CFF;
}
main .section-four .ll-card-blue2 .ll-icon {
  background: #E8F1FF;
  color: #1B6CFF;
}
main .section-four .ll-card-green .ll-icon {
  background: #E5F7EC;
  color: #1FB874;
}
main .section-four .ll-card-purple .ll-icon {
  background: #F0EAFF;
  color: #7B5CF6;
}
@media (max-width: 768px) {
  main .section-four {
    padding: 64px 0;
  }
  main .section-four .ll-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  main .section-four .ll-card {
    padding: 24px;
  }
}
main .section-five {
  padding: 80px 0 96px;
}
main .section-five .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .section-five .team-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
main .section-five .team-info .team-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.3;
  margin-bottom: 20px;
}
main .section-five .team-info .team-desc {
  font-size: 16px;
  color: #5A6378;
  line-height: 1.85;
  margin: 0 0 32px;
  max-width: 520px;
}
main .section-five .team-info .team-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 8px;
  background: #1B6CFF;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.22);
}
main .section-five .team-info .team-btn:hover {
  background: #0A4FCC;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27, 108, 255, 0.3);
}
main .section-five .team-image {
  width: 100%;
}
main .section-five .team-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(10, 22, 51, 0.1);
}
@media (max-width: 960px) {
  main .section-five .team-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  main .section-five {
    padding: 56px 0 72px;
  }
  main .section-five .team-info .team-title {
    font-size: 24px;
  }
  main .section-five .team-info .team-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
main .dsz-intro {
  background: #F8FAFC;
  padding: 96px 0;
}
main .dsz-intro .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .dsz-intro .intro-content {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 24px;
  align-items: stretch;
}
main .dsz-intro .intro-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(10, 22, 51, 0.05);
  border: 1px solid #EEF2F8;
}
main .dsz-intro .intro-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
main .dsz-intro .intro-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B6CFF 0%, #4DA1FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(27, 108, 255, 0.35);
  margin-bottom: 28px;
}
main .dsz-intro .intro-avatar-text {
  color: #FFFFFF;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}
main .dsz-intro .intro-name {
  font-size: 30px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.3;
  margin: 0 0 8px;
}
main .dsz-intro .intro-role {
  font-size: 14px;
  color: #5A6378;
  margin: 0 0 24px;
}
main .dsz-intro .intro-divider {
  width: 48px;
  height: 2px;
  background: #3b82f6;
  margin-bottom: 24px;
}
main .dsz-intro .intro-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
main .dsz-intro .intro-meta li {
  font-size: 14px;
  color: #5A6378;
  line-height: 2.2;
  text-align: center;
}
main .dsz-intro .intro-detail {
  padding: 40px 40px;
}
main .dsz-intro .intro-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #1B6CFF;
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}
main .dsz-intro .intro-title {
  font-size: 34px;
  font-weight: 700;
  color: #0A1633;
  line-height: 1.3;
  margin: 0 0 36px;
}
main .dsz-intro .intro-block {
  margin-bottom: 32px;
}
main .dsz-intro .intro-block:last-child {
  margin-bottom: 0;
}
main .dsz-intro .intro-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
main .dsz-intro .intro-block-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0;
}
main .dsz-intro .intro-block-bar {
  display: inline-block;
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, #3b82f6, #22d3ee);
  border-radius: 2px;
}
main .dsz-intro .intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
main .dsz-intro .intro-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #F0F6FF;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .dsz-intro .tag-blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
main .dsz-intro .tag-cyan {
  background: linear-gradient(135deg, #ecfeff, #cffafe);
  color: #0891b2;
  border: 1px solid #a5f3fc;
}
main .dsz-intro .tag-indigo {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: #4338ca;
  border: 1px solid #c7d2fe;
}
main .dsz-intro .tag-sky {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #0369a1;
  border: 1px solid #bae6fd;
}
main .dsz-intro .intro-duties {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .dsz-intro .intro-duties li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
main .dsz-intro .intro-duties li:last-child {
  margin-bottom: 0;
}
main .dsz-intro .intro-duties li:hover {
  border-color: #D6E4FF;
  box-shadow: 0 4px 12px rgba(27, 108, 255, 0.08);
  transform: translateX(4px);
}
main .dsz-intro .intro-duty-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
main .dsz-intro .intro-duty-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.5;
}
main .dsz-intro .intro-honors {
  padding: 40px 28px;
}
main .dsz-intro .intro-honor-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main .dsz-intro .intro-honor-card {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-left: 3px solid #f59e0b;
}
main .dsz-intro .intro-honor-tag {
  display: block;
  font-size: 11px;
  color: #b45309;
  font-weight: 600;
}
main .dsz-intro .intro-honor-text {
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
  margin-top: 2px;
}
@media (max-width: 1024px) {
  main .dsz-intro .intro-content {
    grid-template-columns: 1fr 1fr;
  }
  main .dsz-intro .intro-honors {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  main .dsz-intro {
    padding: 64px 0;
  }
  main .dsz-intro .intro-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  main .dsz-intro .intro-honors {
    grid-column: auto;
  }
  main .dsz-intro .intro-card {
    padding: 24px 20px;
  }
  main .dsz-intro .intro-detail {
    padding: 24px 20px;
  }
  main .dsz-intro .intro-title {
    font-size: 24px;
  }
  main .dsz-intro .intro-avatar {
    width: 96px;
    height: 96px;
  }
  main .dsz-intro .intro-avatar-text {
    font-size: 40px;
  }
  main .dsz-intro .intro-name {
    font-size: 24px;
  }
}
main .section-six {
  padding: 96px 0 96px;
}
main .section-six .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
main .section-six .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
main .section-six .contact-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 22, 51, 0.08);
}
main .section-six .contact-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .section-six .contact-info {
  background: #FFFFFF;
  border: 1px solid #EAEEF5;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 6px 24px rgba(10, 22, 51, 0.05);
}
main .section-six .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}
main .section-six .contact-item:not(:last-child) {
  border-bottom: 1px dashed #EAEEF5;
}
main .section-six .contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
main .section-six .contact-icon svg {
  width: 22px;
  height: 22px;
}
main .section-six .contact-icon-blue {
  background: #E8F1FF;
  color: #1B6CFF;
}
main .section-six .contact-icon-green {
  background: #E5F7EC;
  color: #1FB874;
}
main .section-six .contact-icon-purple {
  background: #F0EAFF;
  color: #7B5CF6;
}
main .section-six .contact-text {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
main .section-six .contact-label {
  font-size: 13px;
  color: #8A93A6;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
main .section-six .contact-value {
  font-size: 16px;
  color: #0A1633;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-all;
}
main .section-six .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 36px;
  border-radius: 8px;
  background: #1B6CFF;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(27, 108, 255, 0.25);
}
main .section-six .contact-btn:hover {
  background: #0A4FCC;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27, 108, 255, 0.32);
}
@media (max-width: 960px) {
  main .section-six .contact-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  main .section-six {
    padding: 0 0 64px;
  }
  main .section-six .contact-info {
    padding: 24px 20px;
  }
  main .section-six .contact-icon {
    width: 40px;
    height: 40px;
  }
  main .section-six .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  main .section-six .contact-value {
    font-size: 15px;
  }
}
main .section-honor {
  display: none;
  background-color: #0B1735;
  padding-top: 34px;
  padding-bottom: 75px;
  /* 移动端适配 */
}
main .section-honor.active {
  display: block;
}
main .section-honor .honor-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: #C5D6E7;
  font-size: 14px;
  cursor: pointer;
  transition: all 200ms ease;
}
main .section-honor .honor-back-btn:hover {
  border-color: #1B6CFF;
  color: #fff;
  background: rgba(27, 108, 255, 0.15);
}
main .section-honor .honor-back-btn svg {
  width: 16px;
  height: 16px;
}
main .section-honor .section-title-box .title {
  color: #fff;
}
main .section-honor .section-title-box .sub-title {
  color: #92A1B6;
}
main .section-honor .honor-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
main .section-honor .honor-list .honor-item {
  width: 232px;
  height: 160px;
}
main .section-honor .honor-list .honor-item img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  main .section-honor .honor-list {
    gap: 20px;
  }
  main .section-honor .honor-item {
    width: 180px;
    height: 124px;
  }
}
@media (max-width: 768px) {
  main .section-honor {
    padding-top: 24px;
    padding-bottom: 50px;
  }
  main .section-honor .honor-list {
    margin-top: 28px;
    gap: 12px;
    justify-content: center;
  }
  main .section-honor .honor-item {
    width: calc(50% - 6px);
    height: auto;
    aspect-ratio: 232 / 160;
  }
}
