.title {
  position: relative;
}
.title h2 {
  text-align: center;
  background: #cac8fa;
}
.title img {
  position: absolute;
}

/* 对于小屏幕设备（例如手机），应用以下样式 */
@media only screen and (max-width: 767px) {
  /* 在此添加针对手机端的样式 */
  .title img {
    left: 15px;
    top: 15px;
    height: 50px;
    width: 50px;
  }
  .title h2 {
    height: 80px;
    line-height: 80px;
    margin-bottom: 35px;
  }
}

/* 对于大屏幕设备（例如PC），应用以下样式 */
@media only screen and (min-width: 768px) {
  /* 在此添加针对PC端的样式 */
  .title img {
    left: 30px;
    top: 30px;
    height: 100px;
    width: 100px;
  }
  .title h2 {
    height: 160px;
    line-height: 160px;
    margin-bottom: 70px;
  }
}
