* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
}

a:link,
a:visited {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #c00;
    text-decoration: underline;
}

a,
img {
    -webkit-touch-callout: none;
}

body,
html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* 头部区样式 */
.banner {
    width: 100%;
    /* 宽度为视口宽度的100% */
    /*height: 660px;*/
    /* 高度为视口高度的50%，可以根据需要调整比例 */
    overflow: hidden;
}

.banner img {
    width: 100%;
    /* 图片宽度自适应容器宽度 */
    height: 100%;
    /* 图片高度自适应容器高度 */
    object-fit: cover;
    /* 保持图片的宽高比，同时覆盖整个容器 */
}

.white {
    color: white;
}

.white a:link {
    color: white;
}

.white a:visited {
    color: white;
}

.white a:hover {
    color: white;
}

/* 正文区样式 */
.container {
    width: 1200px;
    /* 固定宽度为1200px */
    margin: 0 auto;
    /* 水平居中 */
    box-sizing: border-box;
    /* 包含padding和border在内的总宽度为1200px */
    position: relative;
}

.container .title {
    text-align: center;
    padding-top: 40px;
}

.container .title img {
    width: 530px;
    height: 46px;
}

/* 时政要闻区样式 */
.szyw {
    height: 640px;
    width: 100%;
    padding-top: 20px;
    /* 固定宽度为100% */
    margin: 0 auto;
    /* 水平居中 */
    background-image: url(../img/szyw/bg_01.png);
    /* 设置背景颜色 */
    background-size: cover;
    /* 覆盖整个元素，保持背景图片的宽高比 */
    background-position: center;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 不重复背景图片 */
}

.szyw .images-list {
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}

.szyw .carousel {
    width: 733px;
    height: 470px;
    position: relative;
    border: #EB1419 5px solid;
}

.szyw .carousel img {
    width: 100%;
    height: 100%;
    display: none;
}

.szyw .carousel img.active {
    display: block;
}

.szyw .carousel-titles {
    position: absolute;
    height: 56px;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    background-color: #B81311;
}

.szyw .carousel-titles div {
    margin-left: 20px;
}

.szyw .carousel-titles span {
    color: white;
    cursor: pointer;
    line-height: 56px;
    font-size: 20px;
    font-weight: bold;
}

.szyw .carousel-titles span.active {
    color: #ffd714;
    opacity: 1;
}

.szyw .carousel-titles span:hover,
.szyw .carousel-titles span:active {
    color: #ffd714;
    opacity: 1;
}

.szyw .carousel-titles span:not(:last-child)::after {
    content: '|';
    color: white;
    margin: 0 10px;
}

.szyw .news-list {
    width: 457px;
    height: 480px;
}

.szyw .news-into-container {
    display: none;
    height: 440px;
}

.szyw .news-into-container.active {
    display: block;
    padding: 20px 20px;
    position: relative;
    margin-left: 10px;
    background-color: rgba(253, 244, 228, .6);

}

.szyw .news-into-container.active .title {
    text-align: center;
    line-height: 32px;
    font-size: 24px;
    font-weight: bold;
    color: #444444;
    padding-top: 0;
}

.szyw .news-into-container.active .info {
    text-indent: 36px;
    line-height: 36px;
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    padding-top: 18px;
}

.szyw .news-into-container.active .more {
    position: absolute;
    /* 绝对定位，相对于外层div */
    right: 10px;
    /* 水平居右 */
    bottom: 24px;
    /* 垂直居下 */
    cursor: pointer;
}

.szyw .news-item {
    border-bottom: 1px solid brown;
    padding: 10px 0;
}

.szyw .news-item:last-child {
    border-bottom: none;
}

.szyw .more-btn {
    bottom: 30px;
    right: 30px;
    width: 126px;
    height: 44px;
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    position: absolute;
    border: 1px solid #C89878;
    color: #C89878;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.szyw .more-btn:hover {
    background-color: #C89878;
    color: white;
}

/* 特别策划区样式 */
.tbch {
    width: 100%;
    margin: 0 auto;
    background-image: url(../img/tbch/bg_02.png);
    background-repeat: no-repeat;
    height: 710px;


}

.tbch .tbch-container {
    position: relative;
    width: 1200px;
    margin-top: 50px;
    background-image: url(../img/tbch/bg_03.png);
    background-repeat: no-repeat;
}

.tbch .tbch-list {
    width: 1200px;
    height: 550px;
    margin: 0 auto;
    overflow: hidden;
}

.tbch .tbch-list-info {
    height: 100%;
    width: 100%;
}

.tbch .tbch-info {
    display: flex;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    opacity: 1;
    visibility: visible;

}

.tbch .tbch-content {
    height: 100%;
    width: 400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: relative;
}

.tbch .tbch-content .tbch-content-title {
    font-size: 24px;
    font-weight: bold;
    color: #FEF8E7;
    margin: 50px 0 20px 0;
}

.tbch .tbch-content .tbch-content-title span {
    border-bottom: 4px solid #FEF8E7;
    padding-bottom: 4px;
}

.tbch .tbch-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: white;
    margin-bottom: 30px;
    text-indent: 36px;
}

.tbch .tbch-content2 {
    height: 100%;
    width: 400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.tbch .tbch-content2 div {
    font-size: 24px;
    font-weight: bold;
    color: #FEF8E7;
    line-height: 47px;
    margin: 20px 0 20px 0;
    border-bottom: 4px solid white;
    width: fit-content;
}

.tbch .tbch-content2 p {
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: white;
    margin-bottom: 20px;
    text-indent: 36px;
}

.tbch .more-btn {
    bottom: 40px;
    right: 30px;
    width: 126px;
    height: 44px;
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    position: absolute;
    border: 1px solid #fef8e7;
    color: #fef8e7;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.tbch .more-btn:hover {
    background-color: #d96859;
    color: white;
}

.tbch .button-list {
    padding-top: 100px;
}

.tbch .tbch-button {
    width: 180px;
    height: 67px;
    background: linear-gradient(180deg, #FFF8EE 0%, #F1C280 100%);
    border-radius: 33px;
    border: 1px solid #f55a44;
    float: left;
    margin: 18px 9px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    color: #C74432;
    line-height: 72px;
}

.tbch .tbch-button:hover {
    background: linear-gradient(180deg, #FFF8EE 20%, #F1C280 70%);
}

.tbch .video-content {
    width: 720px;
    height: 406px;
    display: flex;
    align-items: center;
    padding: 25px 0;
}

.tbch .video-content video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.tbch .prev1 {
    width: 28px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: opacity 0.3s;
    opacity: 0.6;
    left: -48px;
}

.tbch .next1 {
    width: 28px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 10;
    transition: opacity 0.3s;
    opacity: 0.6;
    right: -48px;
}

.tbch .prev1:hover {
    opacity: 1;
}

.tbch .next1:hover {
    opacity: 1;
}

/* 特别访谈区样式 */
.tbft {
    width: 100%;
    /* 固定宽度为100% */
    margin: 0 auto;
    /* 水平居中 */
    background-color: #FFFFFF;
    /* 设置背景颜色 */
}

.tbft .bgImg {
    height: 700px;
    width: 1200px;
    margin-top: 50px;
    margin-bottom: 40px;
    background-image: url(../img/tbft/bg_04.png);
    /* 设置背景图片 */
    background-size: cover;
    /* 覆盖整个元素，保持背景图片的宽高比 */
    background-position: center;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 不重复背景图片 */
}

.tbft .tabs-div {
    padding-top: 48px;
    display: flex;
    justify-content: center;

}

/* tabs容器样式 */
.tbft .tabs-container {
    height: 52px;
    width: 1096px;
    display: flex;
    justify-content: center;
    background-image: url(../img/tbft/img_bg_tit.png);
    /* 设置背景图片 */
    background-size: cover;
    /* 覆盖整个元素，保持背景图片的宽高比 */
    background-position: center;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 不重复背景图片 */
}

.tbft .tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tbft .tab {
    background: linear-gradient(0deg, #C91320 0%, #EB4A38 100%);
    /* 按钮的颜色 */
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 1px;
    /* 设置tab之间的间距为1px */
    transform: skew(-20deg);
    /* 使tab变成倾斜的长方形 */
    position: relative;
    font-size: 24px;
    line-height: 14px;
    color: #FDF6E9;
    padding: 20px 30px;
}

.tbft .tab1 {
    transform: skew(20deg);
}

.tbft .tab:last-child {
    margin-right: 0;
}

.tbft .tab.active {
    background: linear-gradient(0deg, #b40b16 0%, #b42f20 100%);
}

.tbft .tab:hover {
    background: linear-gradient(0deg, #b40b16 0%, #b42f20 100%);
}

/* 内容区域样式 */
.tbft .content-container {
    width: 1200px;
    height: 540px;
    position: relative;
    margin: 0 auto;
    /* 水平居中 */
    overflow: hidden;
    position: relative;
}

.tbft .swiper-container {
    margin: 0 40px;
    position: static;
}

.tbft .swiper-wrapper {
    margin: 34px 0
}

.tbft .arrow {
    position: absolute;
    top: 50%;
    /* 定位箭头到容器中间 */
    font-size: 24px;
    /* 设置箭头大小 */
    color: #000;
    /* 设置箭头颜色 */
    cursor: pointer;
    /* 设置鼠标样式为指针 */
}

.tbft .left-arrow {
    top: 220px;
    /* 垂直居中 */
    left: 0;
    /* 定位到容器左侧 */
}

.tbft .right-arrow {
    top: 216px;
    /* 垂直居中 */
    right: 0;
    /* 定位到容器右侧 */
    transform: rotate(180deg);
    /* 垂直居中箭头 */
}

.tbft .swiper-slide {
    height: 450px;
    width: 280px;
    transition-property: transform;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.tbft .swiper-slide img {
    width: 100%;
    height: 450px;
    transition: all 1s;
}

.tbft .swiper-slide img:hover {
    transform: scale(1.2);
}

.tbft .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    opacity: 1;
    border: 1px solid red;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
    background: white;
}

.tbft .swiper-pagination-bullet-active {
    background-color: red;
    animation: dot-transform 0.3s forwards;
}

.tbft .overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-image: linear-gradient(0deg, rgba(255, 84, 79, 0.8) 0, rgba(250, 209, 38, 0.8) 100%);
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    color: #FFFFFF;
    text-align: left;
}

.tbft .overlay-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 40px;
}

.tbft .overlay-info {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* 学习贯彻区样式 */
.xxgc {
    width: 100%;
    /* 固定宽度为100% */
    margin: 0 auto;
    /* 水平居中 */
    background-color: #FFFFFF;
    /* 设置背景颜色 */
    background-size: cover;
    /* 覆盖整个元素，保持背景图片的宽高比 */
    background-position: center;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 不重复背景图片 */
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.xxgc .xxgc-bg {
    position: absolute;
    width: 100%;
    height: 270px;
    background-color: #FFF6E6;
}

.xxgc .xxgc-container {
    width: 1192px;
    margin: 0 auto;
    padding: 36px 0 125px;
    margin-top: 50px;
    border: 6px solid #DECAA5;
    background: linear-gradient(0deg, #FFF6E6 0%, #FFFFFF 100%);
    position: relative;
}

.xxgc .news-list {
    display: flex;
    flex-wrap: wrap;
}

.xxgc .news-into {
    display: flex;
    align-items: center;
    width: 496px;
    line-height: 72px;
    border-bottom: #C89878 2px dashed;
    margin: 0 50px;
    color: #6A6A6A;
    font-size: 18px;
}

.xxgc .dot {
    width: 6px;
    /* 圆点的宽度 */
    height: 6px;
    /* 圆点的高度 */
    background: #C89878;
    /* 圆点的颜色 */
    border-radius: 50%;
    /* 圆点的形状 */
    margin: 2px 6px 2px 0;
    /* 圆点与文字之间的间距 */
}

.xxgc .news-text {
    white-space: nowrap;
    /* 防止文字换行 */
    overflow: hidden;
    /* 隐藏溢出的文字 */
    text-overflow: ellipsis;
    /* 显示省略号 */
    flex: 1;
    /* 使文字占据剩余空间 */
}

.xxgc .news-text a {
    text-decoration: none;
}

.xxgc .more-btn {
    right: 80px;
    bottom: 40px;
    width: 126px;
    height: 44px;
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    position: absolute;
    border: 1px solid #C89878;
    color: #C89878;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.xxgc .more-btn:hover {
    background-color: #C89878;
    color: white;
}

/* 现场直击区样式 */
.xczj {
    width: 100%;
    /* 固定宽度为100% */
    margin: 0 auto;
    /* 水平居中 */
    background-color: #FFFFFF;
    /* 设置背景颜色 */
    background-size: cover;
    /* 覆盖整个元素，保持背景图片的宽高比 */
    background-position: center;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 不重复背景图片 */
    padding-bottom: 40px;
}


.xczj .yl-p1 {
    height: 800px;
    overflow: hidden;
    position: relative;
    margin-top: 48px;
}

.xczj .yl-p1 .swiper-slide {
    width: 1200px;
    height: 720px;
}

.xczj .yl-p1 .swiper-slide-active p.slide-txt {
    position: absolute;
    bottom: 0;
    height: 60px;
    line-height: 60px;
    background: rgba(190, 31, 29, .9);
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.xczj .yl-p1 .swiper-slide-prev {
    margin-top: 20px;
    height: 680px;
    overflow: hidden;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.xczj .yl-p1 .swiper-slide-next {
    margin-top: 20px;
    height: 680px;
    overflow: hidden;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.xczj .yl-p1 .page1 {
    position: relative;
}

.xczj .yl-p1 .left {
    position: absolute;
    cursor: pointer;
    bottom: 0;
    left: 0;
    right: 1145px;
    top: 0;
    z-index: 101;
    margin: auto;
}

.xczj .yl-p1 .right {
    position: absolute;
    cursor: pointer;
    bottom: 0;
    left: 1145px;
    right: 0;
    top: 0;
    z-index: 101;
    margin: auto;
    transform: rotate(180deg);
}

.xczj .cover-prev {
    width: 50%;
    height: 720px;
    top: 0;
    background: rgba(0, 0, 0, .5);
    margin-top: 20px;
    z-index: 99;
    position: absolute;
    height: 680px;
    overflow: hidden;
}

.xczj .cover-next {
    width: 50%;
    height: 720px;
    top: 0;
    background: rgba(0, 0, 0, .5);
    margin-top: 20px;
    z-index: 99;
    position: absolute;
    height: 680px;
    overflow: hidden;
}

.xczj .cover-prev {
    left: -600px;
}

.xczj .cover-next {
    right: -600px;
}

.xczj .cover-prev:hover {
    opacity: 0.6;
}

.xczj .cover-next:hover {
    opacity: 0.6;
}

.xczj .swiper-pagination-p1 {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
}

.xczj .swiper-pagination-p1 .swiper-pagination-bullet {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #beb8b8;
    margin-right: 30px;
    cursor: pointer;
    line-height: 38px;
    font-size: 22px;
}

.xczj .swiper-pagination-p1 .swiper-pagination-bullet-active {
    background: #E93131;
    color: #fff;
}

/* 底部区样式 */
.floot {
    width: 100%;
    background-color: #BE1F1D;
    /* 背景颜色 */
    padding: 60px 0;
    /* 内边距 */
    box-sizing: border-box;
    /* 包含padding在内的总宽度为100% */
}

.floot p {
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
}

/* 定义动画效果 */
@keyframes dot-transform {
    from {
        width: 16px;
        height: 16px;
        border-radius: 9px;
    }

    to {
        width: 50px;
        height: 16px;
        border-radius: 9px;
    }
}

/* 为了更好的响应式设计，可以为小屏幕设备添加媒体查询 */
@media (max-width: 1200px) {
    .content {
        width: 100%;
        /* 在小屏幕上，内容宽度为100% */
        padding: 10px;
        /* 可根据需要调整内边距 */
    }
}