:root {
  --min-width: 1280px;
  --light-bg: #F6F9FF;
}
#about {
  min-width: var(--min-width);
}
#about .button::after {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e690';
  transition: all 0.4s;
}
#about .button:hover::after {
  transform: translateX(4px);
}
#about .about-content {
  width: var(--min-width);
  margin: 0 auto;
}
#about .about-title {
  font-size: 36px;
  text-align: center;
}
#about .banner {
  width: 100%;
  height: 324px;
  position: relative;
  overflow: hidden;
}
#about .banner > img {
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#about .banner h1 {
  padding-top: 118px;
  width: var(--min-width);
  margin: 0 auto;
  font-size: 42px;
  position: relative;
  z-index: 1;
}
#about .info .about-content {
  display: flex;
  gap: 64px;
  padding: 82px 0 92px;
}
#about .info .about-content div:nth-child(1) {
  width: 662px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}
#about .info .about-content div:nth-child(1) p {
  line-height: 24px;
  font-size: 16px;
}
#about .info .about-content div:nth-child(2) {
  flex: 1;
}
#about .info .about-content div:nth-child(2) img {
  width: 100%;
}
#about .contact {
  background-color: #F6F9FF;
  padding: 80px 0;
}
#about .contact-address {
  display: flex;
  gap: 24px;
  margin-top: 52px;
}
#about .contact-address-cell {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 2px 0px 10px 2px rgba(196, 196, 196, 0.3);
  display: flex;
  gap: 22px;
  height: 114px;
  padding: 26px 30px 0;
}
#about .contact-address-cell .iconfont {
  font-size: 32px;
  color: var(--color-brand);
}
#about .contact-address-cell div {
  flex: 1;
}
#about .contact-address-cell div p,
#about .contact-address-cell div a {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-silence);
}
#about .contact-address-cell div a {
  text-decoration: underline;
  color: var(--color-green);
  transition: all 0.4s;
}
#about .contact-address-cell div a:hover {
  opacity: 0.8;
}
#about .invite {
  background-image: url('/static_multi_brand/images/home/invite.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#about .invite .about-content {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
#about .invite .about-content h1 {
  color: #fff;
  font-size: 32px;
}
@media screen and (min-width: 1920px) {
  #about .banner {
    overflow: hidden;
  }
  #about .banner::before,
  #about .banner::after {
    content: '';
    position: absolute;
    height: calc(100% + 20px);
    top: -10px;
    width: calc(50% - 900px);
    z-index: 1;
    filter: blur(10px);
  }
  #about .banner::before {
    left: 0;
    background-color: #EFF4FF;
  }
  #about .banner::after {
    right: 0;
    background-color: #ECF4FF;
  }
}
