body {
  background-color: #F7F7F7;
}

.section1 {
  padding: 200px 0 142px;
}

.section1 .wrap {
  width: 1400px;
  margin: 0 auto;
}

.section1 .wrap .title {
  text-align: center;
  font-family: Gilroy-ExtraBold;
  font-weight: 400;
  font-size: 48px;
  color: #1A1A1A;
}

.section1 .wrap .contact_content {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}

.section1 .wrap .contact_content .item {
  background-color: #fff;
  width: 32%;
  height: 250px;
  border-radius: 12px;
}

.section1 .wrap .contact_content .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #393939;
  border-radius: 50%;
  margin: 50px 60px 30px;
}

.section1 .wrap .contact_content .item .icon img {
  width: 20px;
}

.section1 .wrap .contact_content .item .text {
  font-weight: 400;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 30px;
  margin: 30px 60px;
}

.section1 .wrap .contact_content .item .tel {
  font-size: 20px;
  font-weight: bold;
}

.section1 .wrap .map {
  position: relative;
  margin-top: 80px;
  width: 100%;
}

.section1 .wrap .map .box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 339px;
  height: 85px;
  background: #FFFFFF;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.12);
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  padding: 24px;
  align-items: center;
}

.section1 .wrap .map .box .img {
  width: 145px;
}

.section1 .wrap .map .box .get {
  padding: 16px 22px;
  background-color: #393939;
  border: 1px solid #393939;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.6s;
}

.section1 .wrap .map .box .get:hover {
  background-color: #fff;
  color: #333;
}

.section1 .wrap .map .box::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 40px;
  bottom: -7px;
  background-color: #fff;
  rotate: 45deg;
  border-radius: 3px;
}

.header .wrap .left .list .item .level .second {
  background-color: #fff;
}

.header .wrap .left .list .item .level .second a {
  color: #333;
}

@media screen and (max-width:1024px) {
  .section1 {
    padding: 120px 0 60px;
  }
  .section1 .wrap .title{
    font-size: 30px;
  }
  .section1 .wrap .contact_content{
    flex-direction: column;
  }
  .section1 .wrap .contact_content .item{
    width: 100%;
    margin-bottom: 20px;
        height: 220px;
  }
  .section1 .wrap .contact_content .item .icon{
    margin: 30px 40px 30px;
  }
  .section1 .wrap .contact_content .item .text{
    margin: 20px 40px;
    line-height: 24px;
  }
  .section1 .wrap .map{
    margin-top: 40px;
  }
  .section1 .wrap .map .box{
    width: 240px;
    padding:10px;
    height: 64px;
  }
  .section1 .wrap .map .box .get{
    padding: 10px 10px;
  }
  .section1 .wrap .map .box .img{
    width: 100px;
  }
}