.layer-outside {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.header-nav {
    width: 100%;
    background-color: #ea520b;
    margin-top: -3px;
}

.content-area {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 导航容器 */
.nav-container {
    display: flex;
    align-items: center;
    padding: 0;
}

/* 回首页按钮 */
.nav-home {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 3px;
    margin-right: 15px;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.nav-home:hover {
    background-color: #0052a3;
}

/* 导航列表 */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    align-items: center;
}

.nav-list li {
    margin: 0;
    padding: 0;
}

.nav-list li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 15px;
    font-size: 18px;
    white-space: nowrap;
    transition: all 0.3s;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #ffeb3b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list li a:hover {
    color: #ffeb3b;
}

.nav-list li a:hover::after {
    transform: scaleX(1);
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* 菜单打开时的动画效果 */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* 更多菜单下拉列表 */
.nav-more-menu {
    display: none;
}

/* 防止背景滚动 */
body.menu-open {
    overflow: hidden;
}



/* 顶部横幅 */
.top-banner {
    background: url('../img_2026/bg1.jpg') no-repeat center;
    background-size: 100% 100%;
}

.header-banner {
    width: 100%;
    overflow: hidden;
    background-color: #fffaf5;
}

.banner1 {
    padding-top: 45px;
}

.banner2 {
    margin-top: 25px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.banner3 {
    margin-top: 25px
}

/* ========== 主内容区域 ========== */
.layer-content1 {
    margin-top: 30px;
}

.main-content-wrapper {
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
}

/* 左侧轮播图区域 */
.left-swiper-section {
    position: relative;
    width: 51.6%;
}

.main-swiper {
    width: 100%;
    height: 100%;
    border: 10px solid #ff8533;
    overflow: hidden;
}

.slide-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
}

.slide-caption p {
    color: white;
    font-size: 16px;
    margin: 0;
    text-align: center;
}

#main-swiper1 .swiper-button-next {
    background-image: url('../img_2026/sw1_right.png');
    width: 34px;
    height: 73px;
    background-size: 100% 100%;
    right: 0;
}

#main-swiper1 .swiper-button-prev {
    background-image: url('../img_2026/sw1_left.png');
    width: 34px;
    height: 73px;
    background-size: 100% 100%;
    left: 0;
}

/* 右侧新闻列表区域 */
.right-news-section {
    width: 45.8%;
}

.news-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.news-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    gap: 10px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    margin-top: 11px;
    transition: all 0.3s;
}

/* .news-item.active .news-dot {
    background: #ff8533;
    width: 8px;
    height: 8px;
} */

.news-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.8;
    transition: color 0.3s;
}

.news-item:hover a {
    color: #ff8533;
}

.news-item:hover .news-dot {
    background: #ff8533;
    transform: scale(1.3);
}


.news-more {
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.news-more a {
    color: #ff8533;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.news-more a:hover {
    color: #ff6622;
}

.hot-topic {
    margin-top: 100px;
    padding-bottom: 50px;
}

.hot-topic-wrapper {
    background: url('../img_2026/hot_topic_bg.png') no-repeat center;
    background-size: 100% 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
}

.hot-topic-left {
    width: 33.7%;
}

.hot-topic-right {
    width: 56.25%;
    position: relative;
    margin-left: 9%;
}

#hotTopicSwiper {
    width: 88%;
}

#hotTopicSwiper .swiper-slide-prev, .swiper-slide-next {
    opacity: 1 !important;
}

#rmsjSwiper .swiper-slide-prev, .swiper-slide-next {
    opacity: 1 !important;
}

.hot-topic-right .swiper-button-prev {
    background-image: url('../img_2026/hot_swiper_left.png');
    width: 32px;
    height: 51px;
    background-size: 32px 51px;
    left: -15px;
}

.hot-topic-right .swiper-button-next {
    background-image: url('../img_2026/hot_swiper_right.png');
    width: 32px;
    height: 51px;
    background-size: 32px 51px;
    right: 0px;
}


/* 融媒视觉 */
.rmsj {
    background: url('../img_2026/bg2.jpg') no-repeat center;
    background-size: 100% 100%;
}
.rmsj-content{
    position: relative;
}
.rmsj-more{
    position: absolute;
    right: 0;
    margin-top: 50px;
    margin-right: 20px;
}

.rmsj-more a {
    color: #ff8533;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}
.rmsj-swiper {
    margin-top: 50px;
}


#rmsjSwiper .swiper-button-prev {
    background-image: url('../img_2026/rmsj_left.png');
}

#rmsjSwiper .swiper-button-next {
    background-image: url('../img_2026/rmsj_right.png');
    right: 30px;
}


/* 重点工作 */
.zdgz {
    background: url('../img_2026/bg3.jpg') no-repeat center;
    background-size: 100% 100%;
    padding-bottom: 60px;
}

.zdgz-title {
    padding-top: 120px;
    text-align: center;
}

.zdgz_list {
    background: url('../img_2026/zdgz_bg.png') no-repeat center;
    background-size: 100% 100%;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
}

/* 左侧导航列表 */
.zdgz-left {
    width: 40%;
}

.zdgz-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zdgz-nav li {
    margin-bottom: 22px;
}

.zdgz-nav li:last-child {
    margin-bottom: 0;
}

.zdgz-nav li a {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    color: #ea520b;
    font-size: 26px;
    /* font-weight: bold; */
    text-decoration: none;
    transition: all 0.3s;
}

.zdgz-nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #ea520b;
    border-radius: 50%;
}

.zdgz-nav li.active a,
.zdgz-nav li a:hover {
    background: rgba(234, 82, 11);
    border-bottom-left-radius:25px;
    border-top-left-radius: 25px;
    padding: 15px 20px 15px 32px;
    color: #fff;
    width: 120%;
}


.zdgz-nav li.active a::before,
.zdgz-nav li a:hover::before {
    left: 14px;
    color: #fff;
    background: #fff;
}

/* 右侧图文 */
.zdgz-right {
    width: 52%;
}

.zdgz-pic {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.zdgz-pic img {
    width: 100%;
    display: block;
}

.zdgz-news {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.zdgz-news li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
}

.zdgz-news li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.zdgz-news li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.zdgz-news li a:hover {
    color: #ffe4c4;
}

.zdgz-more {
    text-align: right;
    margin-top: 10px;
}

.zdgz-more a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.zdgz-more a:hover {
    color: #ffe4c4;
}

/* 重点工作面板切换 */
.zdgz-panel {
    display: none;
    margin-left: 20px;
}

.zdgz-panel.active {
    display: block;
}

.zdgz-cont{
    position: relative;
}

.zdgz-pic-title{
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    text-align: center;
}

.zdgz-pic-title a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}



/* 政策解读 / 理论评论 */
.zc_ll_content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.zcjd,
.llpl {
    width: 48%;
}

.zc_ll_title {
    text-align: center;
    margin-bottom: 25px;
}

.zc_ll_card {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    padding: 30px 35px;
}

.zc_ll_news {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zc_ll_news li {
    position: relative;
    padding: 14px 0 14px 18px;
    border-bottom: 1px dashed #d9c5b0;
}

.zc_ll_news li:last-child {
    border-bottom: none;
}

.zc_ll_news li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #3f3f3f;
    border-radius: 50%;
}

.zc_ll_news li a {
    color: #3f3f3f;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.zc_ll_news li:hover a {
    color: #e8541a;
}

.zc_ll_news li:hover::before {
    background: #e8541a;
}

.zc_ll_more {
    text-align: right;
    margin-top: 15px;
}

.zc_ll_more a {
    color: #8a7a6a;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.zc_ll_more a:hover {
    color: #e8541a;
}

/* 联系我们 */
.lxwm {
    background-color: #fff;
    padding: 50px 0 60px;
}

.lxwm-title {
    text-align: center;
    margin-bottom: 30px;
}

.lxwm-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 左侧圆角面板 */
.lxwm-left {
    width: 78.75%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f2f2f2;
    border-radius: 50px;
    padding: 25px 40px;
    margin-right: 40px;
}

.lxwm-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 16px 45px;
    text-decoration: none;
    transition: box-shadow 0.3s;
    width: 252px;
    height: 78px;
}

.lxwm-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lxwm-item img {
    width: 100%;
    height: 100%;
}


/* 右侧二维码 */
.lxwm-right {
    width: 13.2%;
    text-align: center;
    flex-shrink: 0;
}

.lxwm-name {
    color: #333;
    font-size: 16px;
    margin: 0 0 8px;
    letter-spacing: 4px;
}

.lxwm-qr {
    width: 100%;
    height: auto;
}

.lxwm-qr img {
    width: 100%;
    height: auto;
}

.lxwm-tel {
    color: #333;
    font-size: 14px;
    margin: 8px 0 0;
}

/* 友情链接 */
.link-content {
    padding: 40px 0 40px;
}

.link-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    line-height: 2;
}

.link-list:last-child {
    margin-bottom: 0;
}

.link-list li {
    display: inline;
}

.link-list li a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.link-list li a:hover {
    color: #e8541a;
}

.link-list li:not(:last-child) a::after {
    content: '|';
    margin: 0 10px;
    color: #999;
}
<!--ecms sync check [sync_thread_id="3bcee7cc5a424330844ab778a62d31c1" sync_date="2026-07-09 15:15:44" check_sum="3bcee7cc5a424330844ab778a62d31c1]-->