.sixth-page {
  height: 100%;
  padding-left: 6em;
  display: flex;
  color: #767676;
}
.sixth-page * h4 {
  color: #767676;
}
.sixth-left {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sixth-head {
  height: 4em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.sixth-content {
  padding-left: 8em;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-right: 2em;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.sixth-left .column {
  flex-direction: column;
  gap: 1.5rem;
}
.sixth-left .row {
  flex-direction: row !important;
}
.sixth-left .wrap {
  flex-wrap: wrap;
}
.school {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.school h4 {
  width: 100%;
}
.school p,
.school span {
  width: 50%;
  padding-top: 1rem;
}
.content-grid {
  width: 100%;
  height: 6em;
  display: grid;
  grid-template-rows: 3fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.content-grid a {
  text-decoration: none;
  color: #767676;
}
.grid-title h4 {
  margin-bottom: 1rem;
}
.content-grid .grid-title {
  display: block;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
.campus-infos {
  width: 100%;
  display: flex;
  gap: 1em;
}
.campus-infos .campus-info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  padding-top: 1rem;
}
.campus-infos .campus-info-item a {
  line-height: 1.5rem;
  font-size: 1rem;
  text-align: center;
  color: #767676;
  text-decoration: none;
}
.grid-title h4 {
  font-size: 1.2rem;
}
.grid-text {
  color: #767676;
}
.campus-infos .end {
  justify-content: flex-end;
}
.friend-link {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.friend-link a {
  font-size: 1em;
  color: #767676;
  text-decoration: none;
}
.contact-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  height: 3rem;
}
.contact-icons .icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.contact-icons .icon > img{
  width:100%;
  height:100%;
  object-fit:fill;
}
.contact-icons .icon:hover {
  border-radius: 0.5rem;
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.1),
    inset -0.2rem -0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.contact-icons .icon:hover svg,
.contact-icons .icon:hover svg path {
  fill: #000;
}
.contact-icons .icon svg,
.contact-icons .icon svg path {
  width: 100%;
  height: 100%;
  fill: #767676;
}
.contact-separate {
  position: relative;
}
.contact-separate::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.1rem;
  background-color: #c2c2ca;
  bottom: -0.1rem;
  left: 0;
}
.sixth-right {
  aspect-ratio: 4/7;
  flex-shrink: 0;
  background-image: url('../img/sixth-info-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 100%;
  overflow: hidden;
  color: #000;
}
.sixth-right-info {
  height: 16em;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 2em;
  padding-bottom: 3em;
  backdrop-filter: blur(4px);
  background-color: rgb(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sixth-right-info h3 {
  color: #000;
}
.sixth-right-info-item {
  height: 2em;
  display: grid;
  grid-template-rows: 2em 1fr;
  grid-template-columns: 4em 1fr;
  align-items: center;
}
.sixth-right-info-item svg {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  width: 2rem;
  height: 2rem;
}
.code-image {
  max-width: 6rem;
  aspect-ratio: 1/1;
}
.flex-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .sixth-page {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }
  .sixth-content {
    padding: 0;
    gap: 2rem;
  }
  .sixth-left {
    gap: 2rem;
  }
  .sixth-right {
    height: 16rem;
    overflow: hidden;
  }
  .campus-infos {
    flex-wrap: wrap;
  }
  .campus-infos .campus-info-item {
    width: 30%;
    flex: none;
  }
  .column .campus-info-item {
    width: 100%;
  }
  .school p,
  .school span {
    width: 100%;
  }
  .campus-info-item.row {
    flex-direction: column !important;
  }
}