.contact {
  background: #f8f8fe;
  overflow: hidden;
  padding: 40px 50px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.contact .title {
  position: relative;
}
.contact .title i {
  font-size: 34px;
  color: #333;
  position: relative;
  z-index: 2;
}
.contact .title .title-cn {
  font-size: 26px;
  color: #333333;
  padding: 0px 5px;
  position: relative;
  z-index: 1;
}
.contact .title .title-cn::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #d4d3e8;
  position: relative;
  z-index: 1;
  position: absolute;
  right: 100%;
  bottom: 0px;
}
.contact .title .title-en {
  font-size: 26px;
  color: #ccc;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.contact .contact-dl {
  padding: 25px 0px;
}
.contact .contact-dl dd {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  width: 33.3333333333%;
}
.contact .contact-dl dd i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  background: #7c5ea4;
}
.contact .contact-dl dd span {
  flex: 1 0 0;
  display: block;
  font-size: 16px;
  color: #333;
  padding-left: 10px;
}
.contact .contact-dl dd:first-child {
  width: 100%;
}
.contact .code-dl {
  margin: 0px -15px;
}
.contact .code-dl dd .code-box {
  margin: 0px 15px;
}
.contact .code-dl dd .code-box .code-img {
  border: 1px solid #e4e4e9;
  border-radius: 5px;
  overflow: hidden;
  padding: 7px;
}
.contact .code-dl dd .code-box .code-img img {
  display: block;
  width: 110px;
  height: 110px;
}
.contact .code-dl dd .code-box .code-text {
  font-size: 15px;
  color: #888;
  text-align: center;
  padding-top: 10px;
}

.map {
  display: none;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  background: #f8f8fe;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 20px 10px;
    margin-bottom: 0px;
  }
  .contact .title {
    margin-bottom: 20px;
  }
  .contact .title i {
    font-size: 24px;
  }
  .contact .contact-dl {
    padding: 0px;
    margin-bottom: 20px;
  }
  .contact .contact-dl dd {
    width: 100%;
  }
  .contact .code-dl dd {
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .map {
    height: 56.25vw;
    margin-top: 15px;
  }
}