.one {
  display: flex;
  margin: 100px 0;
}

.left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.one .left .title {
  font-size: 48px;
  font-family: 'sansRegular';
  padding-bottom: 40px;
}

.one .left .bcolor {
  color: #3877fd;
}

.one .left .l-list li {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.one .left .l-list .l-font {
  font-size: 18px;
  font-family: 'sansRegular';
  padding-left: 10px;
}

.right {
  width: 50%;
  /* margin-bottom: 200px; */
}

.right .map {
  /* padding-top: 157px; */
}

iframe {
  border: 10px solid #fff;
  box-shadow: 0.8rem 0.8rem 1rem rgba(33, 37, 41, .15) !important;
  border-radius: 0.375rem !important;
  transition: all 0.8s ease;
}

/* 笔记本 */
@media screen and (max-width: 1024px) {
  .one .left .title {
    font-size: 28px;
  }

  .one .left .l-list .l-font {
    font-size: 15px;
  }
}

/* 大型笔记本 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {

  .left,
  .right {
    width: auto;
  }

  .one .left .title {
    font-size: 28px;
  }

  .one .left .l-list .l-font {
    font-size: 16px;
  }
}

/* 手机端 */
@media (max-width: 768px) {
  .one {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
  }

  .one .left {
    width: 100%;
  }

  .one .left .title {
    font-size: 25px;
    /* padding-top: 50px; */
  }

  .one .left .l-list .l-font {
    font-size: 16px;
  }

  .one .left .l-list li {
    padding-bottom: 10px;
  }

  .right {
    width: 100%;
    /* margin-bottom: 50px; */
  }

  .right .map {
    padding-top: 25px;
  }

  iframe {
    width: 95%;
  }
}