.type-memu{display: flex!important;justify-content: left!important;padding: 0!important;}
.type-memu li{margin: 0;border: none!important;padding: 0 20px!important;}
.type-memu .active{border-bottom: 2px solid #c60f0f;}
.type-memu li a{position: relative;color: #424142;font-size: 14px;font-weight: 700;line-height: 1;text-transform: capitalize;display: block;padding-bottom: 5px;}
.news-con{width: 63%;margin: 2rem auto;overflow: hidden;}
.news-con .title{text-align: center;color: #424242;margin-bottom: 4%;}
.news-con .tit{font-size: 28px;font-weight: bold;}
.news-con .entit{font-size: 20px;}
.news-con ul{
    overflow: hidden;
    background: #ffffff;
    padding:20px;
}
.listcont{
    width: 100%;
/*    height: 150px;*/
/*    float: left;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
/*    border: 2px solid pink;*/
}
.lisimg{
    display: inline-block;
    width: 30%;
/*    height: 200px;*/
    overflow: hidden;
    display: flex;
    align-items: center;
/*    border: 1px solid red;*/
}
.lisimg img{
    width: 100%;
    height: 100%;
    padding: 10px;
}
.liscon{
    display: inline-block;
    width: 45%;
/*    height: 200px;*/

}
.listit{
    width: 100%;
    height: 50%;
    font-size: 20px;
    display: flex;
    align-items: flex-end;
/*    margin-top: 10%;*/
/*    border: 1px solid yellow;*/
}
.lisdes{
    width: 100%;
/*    height: 30%;*/
    font-size: 16px;
    color: #666;
/*    border: 1px solid yellow;*/
}
.listim{
    display: inline-block;
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
/*    border: 1px solid black;*/
}


.news-con ul li{
    overflow:hidden;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 10px;

}
.news-con ul li .fengm{
    width: 35%;
    overflow: hidden;
    display: inline-block;
    height: 150px;
    border: 1px solid red;
}
.fengm img{
    width: 100%;
}
.news-con ul li .fmcontent{
    width: 45%;
    display: inline-block;
    height: 150px;
    border: 1px solid blue;
}
.news-con ul li .fmtime{
    width: 15%;
    height: 150px;
    display: inline-block;
    border: 1px solid black;
}

.news-con ul li .text{
    overflow: hidden;
    margin-bottom: .5rem;
    color: #424242;
    display: inline-block;
}
.news-con ul li .text1{
    font-size: 18px;
    font-weight: bold;
    float: left;
    display: inline-block;
}
.news-con ul li .text2{
    font-size: 16px;
    color: #424242;
    float: right;
    display: inline-block;
}
.news-con ul li .info{
    font-size: 15px;
    color: #717171;
    line-height: 22px;
    margin-bottom: .5rem;
}
.news-con ul li:hover .text1{
    color: #c60f0f;
}




.pagination-block {
    display: flex;
    justify-content: center;
}
.pagination {
	margin: 0;
    display: flex;
    padding: 0!important;
    list-style: none;
}
.pagination li {
	border-bottom: none!important;
}
.pagination li a, .pagination li span {
	padding: .375rem .75rem;
    position: relative;
    display: block;
    color: #6c757d;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.pagination .disabled span {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}
.pagination .active span {
    color: #ffffff;
    background-color: #c60f0f;
    border-color: #c60f0f;
}
.pagination_info {
    margin: 0 10px;
    display: flex;
    align-items: center;
}


.kehulist{
    width: 80%;
    margin: 0 auto;
    margin-top:50px;
/*    border:1px solid red;*/
}
.kehulist h1{
    text-align: center;
    color: #424242;
}
.gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            cursor: pointer;
            transition: transform 0.3s;
            border-radius: 8px;
            overflow: hidden;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
/*            height: 200px;*/
            object-fit: cover;
            vertical-align: bottom;
        }

        /* 弹窗样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
           /* max-width: 600px;
            width: 80%;*/
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            z-index: 9999;
        }
        .modal-content {
    padding: 15px; /* 减少内边距 */
    background: #1a1a1a; /* 深色背景更显图片 */
}

.modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* 新增加载动画 */
.loading {
    position: relative;
    min-height: 100%;
/*    width: 100px;
    height: 100px;
    background-color: black;*/
}
.loading::after {
    content: "🖼️ 加载中...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;

}
.modal:not(.loading) .loading-layer {
    opacity: 0 !important;
    pointer-events: none; /* 🚫 禁止交互 */
}
/* 新增加载层定位容器 */
.loading-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001; /* 高于弹窗 */
    transition: opacity 0.3s;
}

/* 优化加载提示样式 */
.loading::after {
    content: "🖼️ 加载中...";
    color: #fff;
    font-size: 1.2em;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: pulse 1s infinite;
}

/* 新增呼吸动画 */
@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

@media only screen and (max-width: 959px) {
	.news-con{width: 90%;margin: 5% auto;}
	.news-con .title{margin-bottom: 5%;}
	.news-con .tit{font-size: 24px;}
	.news-con .entit{font-size: 15px;}
	.news-con ul li{margin-right: 0;padding: 5px 0;}
	.news-con ul li .text1{font-size: 16px;}
	.news-con ul li .text2{font-size: 14px;float: left;}
	.news-con ul li .info{font-size: 14px;}
	.pagination-block{margin: 0;}

    .gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0px !important;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
    .listit{
        font-size: 15px;
    }
    .listcont{
        display: block;
    }
    .lisimg{
        width: 100%;
    }
    .lisimg img{
        width: 100%;
        padding: 0;
    }
    .liscon{
        width: 100%;
    }
    .listit{
        font-size: 16px;
        font-weight: bold;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    .lisdes{
        font-size: 14px;
    }
    .listim{
        width: 100%;
        justify-content: flex-end;
    }
    .news-con ul li{
    overflow:hidden;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;

}

}

.news-con .location{padding-bottom: 1%;overflow: hidden;color: #424242;text-align: left;}
.news-con .location a{display: inline-block;font-size: 16px;color: #424242;text-align: left;}
.news-con .location a:last-child{color: #424242;}

.news_content{border-bottom:1px solid #747474;border-top: 1px solid #747474;overflow: hidden;padding: 4% 0;text-align: left;}
.news_content .n_c_tit{font-size: 24px;font-weight: bold;color: #424242;padding-bottom: 1%;}
.news_content .n_c_time{font-size: 18px;font-weight: bold;color: #424242;padding-bottom: 3%;}
.news_content .n_c_info{font-size: 14px;color: #424242;padding-bottom: 1rem;line-height: 22px;text-align: justify;}

@media only screen and (max-width: 480px) {
	.news_content .n_c_tit{font-size:18px;padding-bottom:3%;}
	.news_content .n_c_time{font-size:14px;}
}

