.news {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 50px 0px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0px 20px;
}
.news .albumn {
  display: flex;
  width: 100%;
  margin: 80px 0px 20px 0px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.news .albumn div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3%;
  flex-shrink: 0;
  flex-grow: 0;
}
.news .albumn div img {
  width: 320px;
  max-height: 300px;
}
.news .albumn div p {
  margin: 20px;
}
.detail {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.detail .title {
  display: flex;
  justify-content: center;
  font-size: 20px;
  line-height: 40px;
  margin: 20px 0px 10px 0px;
  border-bottom: dashed 1px silver;
}
.detail .pubdate {
  display: flex;
  justify-content: center;
  color: gray;
}
.detail .content {
  margin: 20px auto;
  text-indent: 0px;
  max-width: 677px;
  
}
.list {
  display: flex;
  flex-direction: column;
}
.list .item {
  margin: 10px 0px;
  display: flex;
}
.list .item > a {
  width: 150px;
  flex-shrink: 0;
  flex-grow: 0;
}
.list .item img {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}
.list .item .content {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  flex-grow: 1;
  margin: 0px 30px;
  min-width: 0;
}
.list .item .content .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
.list .item .content .summary {
  font-size: 16px;
  color: gray;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}
.list .item .content .pubdate {
  line-height: 30px;
  font-size: 16px;
  color: gray;
}
.list .item .content .pubdate .btn.mobile-inline {
  display: none;
}
.list .item .btn {
  display: flex;
  margin-left: 20;
  justify-content: center;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 900px) {
  .news {
    padding: 0px 16px;
  }
  .news .albumn div {
    width: 50%;
  }
  .news .albumn div img {
    width: 100%;
  }
  .detail .content {
    max-width: 100%;
  }
  .list .item {
    /* Removed flex-direction: column to maintain two-column layout */
    gap: 10px;
    align-items: flex-start;
  }
  .list .item > a {
    width: 100px;
    height: 120px;
  }
  .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .list .item .content {
    margin: 0px 10px;
    width: auto;
    flex-shrink: 1;
  }
  .list .item .content .summary {
    height: auto;
    max-height: 60px;
  }
  .list .item .btn {
    width: 80px;
    justify-content: flex-start;
  }
  .list .item .btn.desktop-only {
    display: none;
  }
  .list .item .content .pubdate {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 200px;
  }
  .list .item .content .pubdate .date-text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .list .item .content .pubdate .btn.mobile-inline {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 30px;
  }
  .list .item .content .pubdate .icon {
    flex: 0 0 auto;
  }
  .list .item .btn .icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 900px) {
  .list .item {
    align-items: flex-start;
  }
  .list .item > a {
    height: 100px;
  }
  .list .item img {
    height: 100%;
    object-fit: cover;
  }
   .list .item .content {
    position: relative;
    height: 190px;
   }
    .list .item .content .title {
      height: 100px;
    }
  .list .item .content .summary {
    height: auto;
    max-height: 60px;
    width: 90vw;

    position: absolute;
    left: -120px;
    bottom: 20px;
  }
  .list .item .content .pubdate {
     position: absolute;
    height: 20px;
    width: 90vw;
    left: -120px;
    bottom: 0px;
  }
  .list .item .content .pubdate .btn.mobile-inline {
    display: inline-flex;
    align-items: flex-end;
    text-align: right;
    flex: 0 0 auto;
}

}
@media (max-width: 640px) {
  .news .albumn div {
    width: 100%;
  }
  .detail .title {
    font-size: 18px;
    line-height: 32px;
  }
}
<!--ºÄÊ±1774442204.7686Ãë-->