.titlestyle273334{ line-height: 220%; color: #222222; font-size: 9pt; font-weight: bold; text-decoration: none ;}
.summarystyle273334{ line-height: 150%; color: #222222; font-size: 9pt ;}

img.imghover {
    width: 530px;
    height: 200px;}
<style>
/* 共用样式：单列垂直排列，每张图独立文字 */
.about_box_right {
  display: flex;
  flex-direction: column;  /* 关键：竖排一数列 */
  gap: 10px;              /* 图片之间的间距，可改 */
  align-items: center;}

.about_box_right a {
  position: relative;
  display: block;}



/* 白色文字样式（每张图共用，文字独立不重叠） */
.about_box_right .img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;            /* 白色文字 */
  font-size: 38px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000; /* 阴影更清晰 */
  pointer-events: none;}
</style>
