.page-content {
    width: 100%;
    background-image: url(../images/xwygg/bg_top.png),
        url(../images/kxyj_twlb/bg_bottom.png);
    background-size: 100% 702px, 1002px 487px;
    background-position: top, bottom right;
    background-repeat: no-repeat, no-repeat;
    padding-bottom: 20px;
}

.page-content-container-top {
    position: relative;
    width: 100%;
    height: 300px;
    border-bottom: 5px solid var(--primary-color);
}

.page-content-container-top-title {
    position: absolute;
    bottom: -4px;
    left: 25px;
    background-image: url(../images/kxyj_twlb/title_bg.png);
    background-size: 305px 186px;
    width: 305px;
    height: 186px;
    background-repeat: no-repeat;
    background-position: center;
}

.page-content-container-top-title-text {
    margin-top: 20px;
    font-size: 54px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.page-content-container-top-title-text-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    text-align: center;
    color: #fff;
    /* background-color: hotpink; */
    padding-left: 40px;
    margin-top: 10px;
    opacity: 0.8;
}

.page-content-container-content {
    /* display: flex; */
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(239, 87, 87, 0.1);
    padding-bottom: 20px;
}

.page-content-container-content-title-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 297px;
    margin-left: 29px;
}

.page-content-container-content-title-list-item {
    display: flex;
    align-items: center;
    background: #ececec;
    /* 非active背景 */
    color: #808080;
    /* 非active字体色 */
    position: relative;
    transition: background 0.3s, color 0.3s;
    height: 50px;
}

.page-content-container-content-title-list-item-title {
    flex: 1;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 500;
}

.page-content-container-content-title-list-item-line {
    width: 170px;
    height: 1px;
    background: #808080;
    /* 非active线色 */
    transition: background 0.3s, left 0.3s, right 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    /* 默认在右边 */
    left: auto;
}

/* active 状态 */
.page-content-container-content-title-list-item.active {
    background: #893b90;
    /* 主题色背景 */
    color: #fff;
    /* 主题色字体 */
    text-align: right;
}

.page-content-container-content-title-list-item.active .page-content-container-content-title-list-item-line {
    background: #fff;
    /* 主题色线色 */
    left: 0;
    /* 线在左边 */
    right: auto;
}

.page-content-container-content-left {
    width: 1075px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    min-height: 400px;
}

.page-content-container-content-left>a>.item {
    width: 476px;
    height: 403px;
    border-left: 1px solid #5c5c5c;
}

.item>.img-box>img {
    width: 475px;
    height: 275px;
    object-fit: cover;
}

.item>.item-con {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 475px;
    height: 128px;
    padding: 10px 20px;
    border-left: 1px solid #000;
}

.item-con-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.item-con-text {
    font-size: 14px;
    color: #636363;
    font-size: 400;
}

.item-con-date {
    font-size: 14px;
    color: #031faf;
}

/* 图片预览模态框样式 */
.image-preview-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.image-preview-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.image-preview-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.image-preview-close:hover {
    color: #893b90;
    background-color: rgba(255, 255, 255, 0.2);
}

.image-preview-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease-in-out;
}

/* 为img-box添加鼠标指针样式 */
.item>.img-box {
    width: 475px;
    height: 275px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*.item>.img-box:hover {*/
/*    transform: scale(1.02);*/
/*    box-shadow: 0 5px 15px rgba(137, 59, 144, 0.3);*/
/*}*/

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}