.contactUs {
  /* height: 40rem; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.ej-img img{display:block;width:100%;}
.contactUsTextBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60rem;
  color: #fff;
}

.contactUsText {
  font-size: 4rem;
  text-align: center;
}

.contactUsMinText {
  font-size: 2rem;
  text-align: center;
}
.contactUsQuote {
  height: 48rem;
  width: 60rem;
  padding-right: 5.5rem;
}
.contactUsQuotePhone {
  margin-top: 3.8rem;
  font-size: 2.4rem;
  margin-bottom: 4.5rem;
}
.contactUsQuoteMinPhone {
  font-size: 1.8rem;
  font-weight: 200;
}

.contactUserInfo {
  width: 100%;
  margin-bottom: 4.5rem;
}

.contactUserTitle {
  font-size: 2.4rem;
  border-bottom: 1px solid #ccc;
}
.contactUserText {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 300;
  display: -webkit-box; /* 使用旧版 WebKit 内核的浏览器（如 Safari） */
  display: -moz-box; /* 使用旧版 Gecko 内核的浏览器（如 Firefox） */
  display: box; /* 使用新版 Flexbox 内核的浏览器 */
  -webkit-line-clamp: 2; /* 设置显示的最大行数 */
  -webkit-box-orient: vertical; /* 设置垂直排列 */
  overflow: hidden; /* 当文本超出容器时进行隐藏 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
  white-space: normal; /* 允许换行 */
}

@media all and (min-width: 769px) and (max-width: 1280px) {
  .contactUsQuote {
    padding: 0 5.5rem;
  }
}

@media all and (max-width: 768px) {
  .contactUsQuote {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .contactUsQuote {
    display: flex;
  }

  .quoteLeft {
    padding: 0;
    margin: 0 auto;
  }

  .quoteContent {
    flex-direction: column;
  }

  .contactUsQuote {
    display: flex;
    flex-direction: column;
    width: 78%;
    height: auto;
    margin: 0 auto;
  }

  .quote {
    height: auto;
  }
  .contactUserInfo {
    width: 68%;
  }
}