* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', sans-serif;
        }

       
         .main-container {
            max-width: 1400px;
            margin: 20px auto;
            display: flex;
            gap: 20px;
        }

        .carousel-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .carousel-item:hover img {
            transform: scale(1.02);
        }

        .carousel-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: #fff;
            font-size: 18px;
            font-weight: bold;
        }

        .carousel-title a {
            color: #fff;
            text-decoration: none;
        }



        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.4);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn::before {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            border-left: 3px solid #fff;
            border-bottom: 3px solid #fff;
        }

        .prev-btn {
            left: 15px;
        }

        .prev-btn::before {
            transform: rotate(45deg);
        }

        .next-btn {
            right: 15px;
        }

        .next-btn::before {
            transform: rotate(-135deg);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .indicator {
            width: 70px;
            height: 4px;
            border-radius: 5%;
            background: rgba(70, 69, 69, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .indicator.active {
            background: #504f4f;
        }

        .carousel-middle-section {
            width: 220px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .carousel-middle-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
        }

        .carousel-middle-item img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .carousel-middle-item:hover img {
            transform: scale(1.08);
        }

        .carousel-middle-item a {
            text-decoration: none;
        }

        .carousel-right-section {
            width: 380px;
        }
        .carousel-section-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            border-bottom: 2px solid #ffcc66;
            margin-bottom: 10px;
            position: relative;
            padding-bottom: 8px;
        }
        .carousel-section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: #ffcc66;
        }
        .right-news-list {
            list-style: none;
        }

        .right-news-item {
            padding: 12px 0;
            transition: background 0.2s;
        }

        .right-news-item:hover {
            background: #f0f0f0;
        }

        .right-news-item a {
            color: #333;
            text-decoration: none;
            font-size: 18px;
            line-height: 1.5;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .right-news-item a:hover {
            color: #c11016;
        }

        .right-news-item:first-child a {
            font-weight: bold;
            color: #c11016;
        }

        .right-bottom {
            margin-top: 24px;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
        }

        .right-bottom img {
            width: 100%;
            height: 70px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .right-bottom:hover img {
            transform: scale(1.08);
        }

        .right-bottom a {
            text-decoration: none;
        }
        .ad-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .ad-link {
            display: inline-block;
        }

        .ad-img {
            width: 100%;
            height: auto;            
        }
        .news-container {
            max-width: 1400px;
            margin: 20px auto;
            display: flex;
            gap: 10px;
            padding: 0px;
        }

        .news-left-section {
            width: 280px;
        }

        .news-middle-section {
            flex: 1;
        }

        .news-right-section {
            width: 380px;
        }

        .news-section-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            padding-bottom: 8px;
            border-bottom: 2px solid #f5c165;
            margin-bottom: 15px;
            position: relative;
        }

        .news-section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 4px;
            background-color: #f5c165;
        }

        /* 热门点击 */
        .hot-list {
            list-style: none;
            padding-right: 10px;
            border-right: 0px solid #e8e8e8;
        }

        .hot-item {
            padding: 16px 0;
            transition: background 0.2s;
        }

        .hot-item:hover {
        }

        .hot-item a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            line-height: 1.5;
            display: block;
        }
        .hot-item a:hover{
            color: #c11016;
        }

        .hot-date {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }

        /* 中间新闻列表 */
        .news-list {
            list-style: none;
            padding: 20px;
        }

        .news-item {
            display: flex;
            gap: 15px;
            padding: 11px 0;
            border-bottom: 1px solid #e8e8e8;
            transition: background 0.2s;
        }

        .news-item:hover {
            background: #fafafa;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-img-wrapper {
            width: 180px;
            height: 120px;
            overflow: hidden;
            flex-shrink: 0;
            border-radius: 4px;
        }

        .news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-item:hover .news-img {
            transform: scale(1.08);
        }

        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-title {
            font-size: 18px;
            color: #333;
            text-decoration: none;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-title:hover {
            color: #c11016;
        }

        .news-tag {
            align-self: flex-start;
        }

        .tag {
            display: inline-block;
            padding: 3px 10px;
            font-size: 12px;
            color: #fff;
            text-decoration: none;
        }

        .tag.international {
            background-color: #1e90ff;
        }

        .tag.domestic {
            background-color: #32cd32;
        }

        .tag.social {
            background-color: #ffa500;
        }

        /* 政务动态 */
        .gov-list {
            list-style: none;
            padding: 0;
        }

        .gov-item {
            padding: 10px 0;
            position: relative;
        }

        .gov-item:last-child {
            border-bottom: none;
        }

        .gov-item a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .gov-item a:hover {
            color: #c11016;
        }

        /* 广告图片 */
        .news-ad-images {
            display: flex;
            gap: 5px;
            margin-top: 22px;
        }

        .news-ad-item {
            flex: 1;
        }

        .news-ad-img {
            width: 100%;
            height: 60px;            
        }

        /* 区县新闻 */
        .district-news {
            margin-top: 20px;
        }

        .district-images {
            display: flex;
            gap: 8px;
        }

        .district-img-box {
            flex: 1;
            overflow: hidden;
        }

        .district-img {
            width: 100%;
            height: 104px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .district-img-box:hover .district-img {
            transform: scale(1.1);
        }

        .district-list {
            list-style: none;
            padding: 0;
        }

        .district-item {
            padding: 10px 0;
            position: relative;
        }

        .district-item:last-child {
            border-bottom: none;
        }



        .district-item a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .district-item a:hover {
            color: #c11016;
        }
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            margin-bottom: 30px;
        }

        .gallery-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 2px solid #f5c165;
            margin-bottom: 20px;
            position: relative;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #f5c165;
        }

        .gallery-grid {
            display: flex;
            gap: 5px;
        }

        .gallery-large-item {
            width: 32%;
            height: 276px;
            position: relative;
            overflow: hidden;
        }

        .gallery-large-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-large-item:hover img {
            transform: scale(1.08);
        }

        .gallery-middle-grid {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
        }

        .gallery-middle-grid .gallery-small-item {
            width: calc(50% - 2.5px);
            margin-right: 5px;
            margin-bottom: 5px;
        }

        .gallery-middle-grid .gallery-small-item:nth-child(2n) {
            margin-right: 0;
        }

        .gallery-small-item {
            position: relative;
            overflow: hidden;
            height: 135px;
        }

        .gallery-small-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-small-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: #fff;
            font-size: 16px;
        }

        .gallery-overlay a {
            color: #fff;
            text-decoration: none;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: bold;
        }

        .gallery-overlay a:hover {
            color: #ffd700;
            text-decoration: none;
        }

.lunboBox{
    /*margin-top: 20px;*/
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 470px;
}
.lunboBox .hd{
    position: absolute;
    right: 40px;
    bottom: 15px;
    z-index: 1;
}
.lunboBox .hd li{
    float: left;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #ffffff;
    margin-left: 5px;
}
.lunboBox .hd li.on{
    position: relative;
    width: 24px;
    /*background: #00a0e9;*/
}
.lunboBox .hd li.on::after{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #00a0e9;
    animation: intrduceImgLunbo 5s linear !important;
}

@keyframes intrduceImgLunbo {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }

}
.lunboBox .bd {
    height: 100%;
}
.lunboBox .bd li {
    position: relative;
}
.lunboBox .bd li p {
    position:absolute;
	left:0px;
	bottom:0px;
	background: rgba(0, 0, 0, 0.5);
	font-size: 21px;
    font-weight: 500;
    text-align: center;
	line-height: 40px;
	padding:20px 0px;
	width: 100%;
    color: #fff;
}

.lunboBox img {
    width: 100%;
    height: 470px;
    vertical-align: bottom;
}

.lunboBox .bd .prev,
.lunboBox .bd .next {
    box-sizing: border-box;
    display: none;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 34px;
    height: 73px;
    background: url("/templateRes/img/left_arrow4.png") center center no-repeat;
    background-size: contain;
}
.lunboBox .bd .prev{
    left: 0px;
}
.lunboBox .bd .next{
    background: url("/templateRes/img/right_arrow4.png") center center no-repeat;
    right: 0px;
}
.lunboBox .bd .piclb_num
{
	position: absolute;
    left: 50px;
    bottom: 22px;
    color: #fff;
    font-size: 24px;	
}

.zhuanti img {height: 150px;width: 230px;transition: .3s ease;}
.zhuanti img:hover{transform: scale(1.1);transition: .3s ease;}
.zhuanti .img_box {width:230px;height:150px;overflow:hidden;margin-bottom: 10px;}
.zhuanti .img_box:last-child {margin-bottom:0px;}