.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 .line {
    width: 100%;
    height: 2px;
    margin: 10px 0;
    background: linear-gradient(to right, #770000 0%, #770000 15%, #ddd 15%, #ddd 100%);
}

.container .right-list .list-pictures {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 卡片之间间距 */
}

.container .right-list .list-picture-item {
    width: calc(25% - 20px); /* 一行四个 */
    box-sizing: border-box;
    text-align: center;
}

.container .right-list .list-picture-item img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position:  center;
}

.container .right-list .list-picture-item .item-title {
    margin-top: 5px;
    line-height: 1.4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: left;
}

.dialog {
    left: 0;
    top: 0;
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

/* 遮罩 */
.dialog-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
}

/* 弹窗主体：页面居中 */
.dialog .content-box {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 600px;
    max-height: 90%;
    width: 1000px;
    max-width: 90%;
    transform: translate(-50%, -50%);
    background: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dialog .content-box .w-itemicon {
    color: rgb(102, 0, 0);
    font-size: 32px;
    opacity: .8;
    cursor: pointer;
}

.dialog .img-box {
    height: auto;
    width: 800px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dialog .img-box img {
    height: 450px;
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dialog .img-box .content-title {
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.dialog .img-box .point-navigator {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dialog .img-box .point-navigator .point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.dialog .img-box .point-navigator .point.active {
    background: #660000;
}