
.lb-rj {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin: 20px 0px;
    
}


.aspect-ratio {
  width: 100%; /* 自适应宽度 */
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
 
.aspect-ratio:before {
  content: "";
  display: block;
  width: 100%; /* 自适应宽度 */
  padding-top: 40%; /* 16:9 比例，可根据需要调整 */
}

.content {
    padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.rj-ico {
    position: absolute;
      top: 0;
  left: 0;
  bottom: 0;
  width: 35%;
}

.rj-xx {
    padding: 5px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
}

.rj-xx-ty {
    padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 90%;
}

.rj-xx-jj {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 显示2行 */
  overflow: hidden;
  line-height: 1.5; /* 建议设置行高 */
}

.rj-ico img {
    width: 80%;
    height: 80%;
    object-fit: fill; /* 拉伸填充容器 */
    margin: 10px 0 0 10px;
}

.rj-xx h3 {
    padding: 5px 5px 5px 0;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rj-xx-ty h3 {
    padding: 5px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rj-xx-box {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    border-top: 1px solid #EDE5E4;
    padding-top: 5px;
      position: absolute;
    bottom: 0;
}

.rj-xx-box a {
    margin-right: 10px;
}


.aspect-ratio:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
