.imgjiu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 1120px;
  height: auto;
  overflow: hidden;
  background: #f6f6f6;}
ul.imgjiu > li {
  float: left;
  width: 18%;
  margin: 10px 1% 20px 1%;
  padding: 0;
  height: auto;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);}

ul.imgjiu > li > div {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f2f3f9;
  display: table;
  table-layout: fixed;}

ul.imgjiu > li > div > em {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-style: normal;}

ul.imgjiu > li > div > em > a {
  display: inline-block;
  max-width: 100%;
  max-height: 140px;
  text-decoration: none;}

ul.imgjiu > li > div > em > a > img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  vertical-align: middle;
  border: none;}

/* 标题区域 */
ul.imgjiu > li > p {
  width: 100%;
  height: 40px !important;
  line-height: 40px;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  background: #fff;}

/* 标题链接 */
ul.imgjiu > li > div > em > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;}

ul.imgjiu > li > p a:hover{color:#ff5461;}


/* IE10+ 兼容性处理 - 修复图片变形问题 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* 取消 flex 布局，使用传统方式居中（避免 IE flex bug） */
  ul.imgjiu > li > div > em > a {
    display: inline-block;
    vertical-align: middle;
    line-height: 140px;}
  
  /* 保持图片原始比例，防止变形 */
  ul.imgjiu > li > div > em > a > img {
    width: auto;         /* 改为 auto，保持比例 */
    height: auto;
    max-width: 100%;     /* 限制最大宽度 */
    max-height: 140px;   /* 限制最大高度 */
    vertical-align: middle;
    display: inline-block;}
}

