﻿  #myQuote {
    position: relative;
  }

  #myQuote button {
    position: absolute;
    top: 5px;
    right: 5px;
  }

.container_img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.container_img img {
  width: 100%;
  height: 100%; /* 这里要改成 100% */
  object-fit: cover;
  object-position: center;
}


/* 在屏幕宽度小于等于 767px 时不使用 .container 样式 */
@media (max-width: 767px) {
  .container_img {
    width: auto;
    height: auto;
    overflow: visible;
  }
  .container_img img {
    width: 100%;
    height: auto;
  }
}