.contactUs .banner {
    width: 100%;
    position: relative;
    min-height: 300px;
}

.contactUs .banner img {
    width: 100%;
    display: block;
}

.contactUs .banner .contactUs_text{
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 0px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
.banner_txt.show{ 
  opacity: 0;
  transform: translateY(50px);
  animation: slideIn 3s forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contactUs .banner .contactUs_txt{
  position: absolute;
  margin-top: 30%;
  margin-left: 12%;
  font-size: 24px;
}
.contactUs_txt.show{ 
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 3.5s forwards;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.otherInfo {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
}

.otherInfo>div {
    width: 50%;
}

.otherInfo .otherInfo_right {
    width: 220px;
    height: 220px;
    background-color: skyblue;
}

.otherInfo .otherInfo_right img {
    width: 100%;
    height: 100%;
}

.otherInfo .otherInfo_left {
    padding-left: 47px;
}

.otherInfo .otherInfo_left i {
    font-style: inherit;
}

.otherInfo .otherInfo_left .otherInfo_left_name {
    font-size: 26px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 34px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E0E0E0;
    text-align: left;
    width: 70%;
}

.otherInfo .otherInfo_left ul {
    margin: 0;
}

.otherInfo .otherInfo_left ul li {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #333333;
    /* line-height: 34px; */
    margin-top: 28px;
}

.otherInfo .otherInfo_left ul li span {
    color: #707070;
    margin: 0 10px;
    font-weight: 300;
}

.otherInfo .otherInfo_left ul li:nth-child(1) {
    margin-top: 25px;
}

.telephoneList {
    /* margin:0 auto; */
    margin-bottom: 18px;
}

.telephoneList ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* 水平居中 */
    justify-content: center;
}

.telephoneList ul li {
  position: relative;
    width: 400px;
    height: 170px;
    background: #EEEEEE;
    margin-bottom: 24px;
    padding: 40px 20px 40px 10px;
    box-sizing: border-box;
}

.telephoneList ul li:nth-child(2n) {
    margin-left: 24px;
}

.telephoneList ul li .telephoneList_img {
    width: 96px;
    height: 96px;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}
.telephoneList ul li .vertical-line {
  width: 2px;
  height: 80%;  /* 根据父元素的高度来确定竖线的高度 */
  background-color: #72af39;  /* 设置颜色为黑色 */
  margin: 0 10px;
  position: absolute;  /* 使用绝对定位来控制竖线的位置 */
  left: 28%;  /* 竖线紧跟在 .telephoneList_img 后面 */
  top: 10%;  /* 确保竖线从容器顶部开始 */
}

.telephoneList ul li .telephoneList_img>div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center center;
    width: 55px;
    height: 55px;
}

.telephoneList ul li:nth-child(n) .telephoneList_img div {
    background-image: url('../images/telephoneList_img1.png');
}

.telephoneList ul li:nth-child(2n) .telephoneList_img div {
    background-image: url('../images/telephoneList_img2.png');
}

.telephoneList ul li:nth-child(3n) .telephoneList_img div {
    background-image: url('../images/telephoneList_img3.png');
}

.telephoneList ul li:nth-child(4n) .telephoneList_img div {
    background-image: url('../images/telephoneList_img4.png');
}

.telephoneList ul li .telephoneList_info {
    position: absolute;
    left: 35%;
    top: 18%;
    width: 225px;
}

.telephoneList ul li .telephoneList_info p {
    text-align: left;
    margin: 0;
}

.telephoneList ul li .telephoneList_info p:nth-child(1) {
    font-size: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}

.telephoneList ul li .telephoneList_info p:nth-child(2) {
    font-size: 18px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}

.telephoneList ul li .telephoneList_info p:nth-child(3) {
    font-size: 16px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #72AF39;
}
/* 动画 */
.info-item {
  opacity: 0;
  /* 初始透明度为0 */
  transform: translateY(50px);
  /* 初始位移 */
  transition: opacity 1s ease, transform 1s ease;
  /* 过渡效果 */
}

.show {
  opacity: 1;
  /* 显示时的透明度 */
  transform: translateY(0);
  /* 还原位移 */
}

.otherInfo_right {
  opacity: 0;
  /* 初始透明度为0 */
  transform: translateY(50px);
  /* 初始位置向下偏移20px */
  transition: opacity 3s ease, transform 3s ease;
  /* 过渡效果 */
}

.otherInfo_right.show {
  opacity: 1;
  /* 显示时透明度为1 */
  transform: translateY(0);
  /* 恢复到原位置 */
}
/* 适配 */
@media (max-width: 768px) {
  .telephoneList ul li {
      width: 100%; /* 全宽 */
      height: auto; /* 高度自适应 */
  }

  .telephoneList ul li .telephoneList_info {
      width: 100%; /* 信息部分全宽 */
  }
  .telephoneList ul li:nth-child(2n){
    margin-left: 0;
  }
}