.custom-about-box {
  width: 500px;
  height: 300px;
  position: relative;
}
.custom-about-box::after {
  content: "";
  display: block;
  width: 400px;
  height: 300px;
  border: solid 5px #9e0230;
  margin: auto;
}

.custom-about-img1 {
  width: 400px;
  height: 300px;
  top: -36px;
  left: 89px;
  position: absolute;
}
.custom-about-img2 {
  width: 200px;
  top: 174px;
  left: 0px;
  position: absolute;
}

/* 响应式 */
@media (max-width: 992px) {
  .custom-about-box {
    margin-top: 2rem;
  }
}

@media (max-width: 538px) {
  .custom-about-box {
    width: 250px;
    height: 150px;
    margin-left: 1rem !important;
  }
  .custom-about-box::after {
    width: 200px;
    height: 150px;
  }
  .custom-about-img1 {
    width: 200px;
    height: 150px;
    top: -20px;
    left: 50px;
  }
  .custom-about-img2 {
    width: 100px;
    height: 87px;
    top: 80px;
    left: -21px;
  }
}



/* 弹窗 start */
.custom-index-popper-container {
  padding: 20;
}
.custom-index-popper-img{
  height: 500px;
}
.custom-index-popper-colRight{
  overflow-y: auto;
  height: 500px;
}

/* 响应式遇到相同的属性后面会覆盖前面的 */
@media (max-width: 768px){
  .custom-index-popper-container {
    width: 500px;
  }
  .custom-index-popper-colLeft{
    text-align: center;
    padding: 0 !important;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px){
  .custom-index-popper-container {
    width: 300px;
  }
  .custom-index-popper-img{
    height: 200px;
  }
  .custom-index-popper-colRight{
    height: 200px;
  }
}

@media (min-width: 768px){
  .custom-index-popper-container {
    width: 700px;
  }
}
@media (min-width: 992px){
  .custom-index-popper-container {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .custom-index-popper-container {
    width: 1000px;
  }
}
@media (min-width: 1400px) {
  .custom-index-popper-container {
    width: 1200px;
  }
}
@media (min-width: 1600px) {
  .custom-index-popper-container {
    width: 1400px;
  }
}
/* 弹窗 end */