.container .right-list {
    width: 900px;
    padding-bottom: 50px;
}

.container .right-list .list-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 36px;
    color: #000000;
    word-wrap: break-word;
}

.container .right-list .line1 {
    width: 100%;
    height: 2px;
    margin: 10px 0;
    background: linear-gradient(to right, #770000 0%, #770000 15%, #ddd 15%, #ddd 100%);
}

.container .right-list .line2 {
    width: 100%;
    height: 2px;
    margin: 10px 0;
    background: #ddd;
}

.description {
    padding: 15px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bolder;
    word-wrap: break-word;
    line-height: 1.75;
}

.list-wrapper {
    margin: 30px 0;
    display: flex;
    gap: 40px
}

.list-wrapper img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.list-titles ul {
    padding: 0;
    margin: 0;
    width: 460px;
    min-height: 300px;
    list-style-type: none;
}

.list-titles li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    line-height: 50px;
    border-bottom: 1px solid #f3f3f3;
}

.item-title {
    flex: 1;                 /* 标题自动占满剩余空间 */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; /* 超出一行显示省略号 */
    color: #000000;
    font-size: 16px;
    font-family: Arial;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
}

.item-date {
    padding: 0 5px 0 10px;
    flex: 0 0 75px;
    text-align: right;
    color: #BBB;
    font-size: 14px;
    font-family: Tahoma;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
}