* {
  margin: 0;
  padding: 0;
}

.banner {
  position: relative;

  img {
    width: 100%;
  }

  .msg {
    position: absolute;
    top: 38%;
    left: 15%;
  }

  .title {
    font-size: 32px;
    color: #333;
  }

  .desc {
    margin-top: 10px;
    font-size: 20px;
    color: #666;
  }
}

.content {
  width: 1200px;
  margin: 0 auto 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 80px 0;

  .item {
    width: 300px;

    .name {
      font-size: 18px;
      color: #333;
    }

    .desc {
      font-size: 14px;
      margin-top: 10px;
      color: #666;
    }
  }
}

.company {
  background: #efefef;

  .container {
    width: 1200px;
    margin: 0 auto 0 auto;
    padding: 80px 0;
    display: flex;
    justify-content: space-between;

    .msg {
      width: 800px;

      .title {
        font-size: 34px;
        color: #333;
        margin-top: 50px;
      }

      .desc {
        font-size: 14px;
        color: #666;
        margin-top: 20px;
        line-height: 2;
      }
    }

    .imgBox {
      img {
        width: 340px;
        height: 380px;
      }
    }
  }
}

.foot {
  padding: 20px 0;
  text-align: center;
  background: #222;
  color: #fff;

  div {
    margin-bottom: 5px;
  }
}