.contact {
  background: #f8f8fe;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
}
.contact .contact-dl {
  padding: 150px 50px;
  display: flex;
}
.contact .contact-dl dd {
  display: flex;
  padding: 10px 0px;
  width: 33.3333333333%;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.contact .contact-dl dd::after {
  display: block;
  content: "";
  width: 1px;
  height: 50%;
  background: #e6e6e6;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.contact .contact-dl dd i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}
.contact .contact-dl dd span {
  flex: 1 0 0;
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.contact .contact-dl dd em {
  flex: 1 0 0;
  display: block;
  font-size: 14px;
  color: #333;
  font-style: normal;
  margin-bottom: 10px;
}
.contact .contact-dl dd:nth-child(1) i {
  color: #2444a1;
}
.contact .contact-dl dd:nth-child(2) i {
  color: #e4ac4c;
  font-size: 52px;
}
.contact .contact-dl dd:nth-child(3) i {
  color: #2b8f6d;
}
.contact .contact-dl dd:last-child::after {
  display: none;
}
.contact .code-dl {
  padding: 150px 50px;
  justify-content: center;
  background: url(../images/contact-bg.jpg) no-repeat center center;
  background-size: cover;
}
.contact .code-dl dd .code-box {
  margin: 0px 15px;
}
.contact .code-dl dd .code-box .code-img {
  background: #fff;
  border: 1px solid #e4e4e9;
  border-radius: 5px;
  overflow: hidden;
  padding: 0px;
}
.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 {
    padding: 15px;
  }
  .contact .code-dl dd {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 10px 0px;
  }
  .map {
    height: 56.25vw;
    margin-top: 15px;
  }
}