/* 全局容器，保持1920px宽度 */
        .w1920 {
            width: 100%;
            margin: 0 auto;
            background: #fff;
            position: relative;
        }

        /* 内容主体容器，居中1200px */
        .container {
            width: 1200px;
            margin: 0 auto;
            position: relative;
        }

       

        .main-nav {
            height: 60px;
            background: #005599;
            color: #fff;
        }

        .main-nav ul {
            display: flex;
            justify-content: center;
            height: 100%;
            width: 1200px;
            margin: 0 auto;
        }

        .main-nav li {
            line-height: 60px;
            padding: 0 30px;
            font-size: 18px;
            cursor: pointer;
            font-weight: bold;
        }

        .main-nav li.active {
            background: #014379;
        }

        .breadcrumb {
            padding: 18px 0;
            font-size: 14px;
            color: #666;
            background: #f4f7f9;
        }

        .breadcrumb .container {
            background: transparent;
        }

        /* --- 原有留言板模块样式 (保持不变) --- */
        .main-content {
            /* background: #f4f7f9; */
            /* padding-bottom: 40px; */
        }

        /* 针对“最新留言回复”和“业务知识库”的深度还原样式 */
        .interaction-grid {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .box-left,
        .box-right {
            background: #fff;
            /* border: 1px solid #e1e8f0; */
            /* padding: 20px 25px; */
            height: 290px;
            /* 统一高度 */

        }

        .box-left {
            flex: 2;
        }

        .box-right {
            flex: 1;
                        border-left: 1px solid #d8d8d8;
            padding-left: 30px;
        }

        /* 标题栏 1:1 还原 */
        .box-title {
            border-bottom: 1px solid #eee;
            padding-bottom: 12px;
            margin-bottom: 10px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        .box-title h2 {
            font-size: 18px;
            color: #005599;
            font-weight: bold;
            position: relative;
        }

        /* 模拟标题下方的深蓝色粗线 */
        .box-title h2::after {
            content: "";
            position: absolute;
            bottom: -13px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #005599;
        }

        .box-title .subtitle-links {
            font-size: 18px;
            color: #666;
        }

        .box-title .subtitle-links span {
            margin-left: 15px;
            cursor: pointer;
        }

        /* 列表项还原 */
        .msg-list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13px 0;
            border-bottom: 1px dashed #eee;
            font-size: 14px;
        }

        .msg-list-item .msg-title {
            color: #333;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 20px;
        }

        .msg-list-item .msg-title::before {
            content: "•";
            color: #999;
            margin-right: 8px;
        }

        .msg-list-item .msg-date {
            color: #999;
            width: 90px;
        }

        .msg-list-item .msg-status {
            color: #28a745;
            /* 绿色回复状态 */
            width: 60px;
            text-align: right;
        }

        /* 业务知识库列表还原 */
        .kb-list li {
            font-size: 14px;
            color: #333;
            line-height: 46px;
            border-bottom: 1px dashed #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .kb-list li::before {
            content: "•";
            color: #999;
            margin-right: 8px;
        }

        .quick-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            margin-bottom: 30px;
        }

        .link-card {
            height: 90px;
            background: url("sjlybg.png") no-repeat;
            /* border: 1px solid #d0e0f5; */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            border-radius: 4px;
        }

        .link-card h4 {
            color: #005599;
            font-size: 16px;
            margin-bottom: 6px;
            font-weight: bold;
        }

        .link-card p {
            font-size: 13px;
            color: #333;
        }

        .data-analysis-bar {
            height: 110px;
            line-height: 110px;
            text-align: center;
            font-size: 36px;
            letter-spacing: 5px;
            color: #005599;
            font-weight: bold;
            border-radius: 4px;
            border: 1px solid #d0e0f5;
        }

        /* =========================================
           重点还原模块：民意征集 和 在线访谈 
           ========================================= */
        .bottom-sections-wrap {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            margin-top: 40px;
        }

        /* 通用板块标题样式 */
        .sec-title {
            font-size: 18px;
            color: #005599;
            font-weight: bold;
            padding-left: 12px;
            border-left: 4px solid #005599;
            margin-bottom: 25px;
        }

        /* 1. 民意征集模块还原 */
        .collection-section {
            flex: 1.5;
            background: #fff;
            padding: 25px;
            border-radius: 4px;
            /* border: 1px solid #e1e8f0; */
        }

        .collect-list-item {
            display: flex;
            align-items: center;
            padding: 28px 0;
            border-bottom: 1px dashed #e1e8f0;
        }

        /* 还原：征集图标（蓝色圆角矩形，内部排版） */
        .collect-icon {
            width: 54px;
            height: 54px;
            background-color: #005599;
            color: #fff;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
        }

        .collect-icon .main-char {
          width: 16px;
          height: 19px;

            background: url("zjz.png") no-repeat;
        }

        .collect-icon .sub-text {
            font-size: 12px;
            transform: scale(0.85);
            opacity: 0.8;
        }

        /* 已结束状态样式 */
        .collect-icon.ended {
            background-color: #adbcd0;
        }

        .collect-info {
            flex: 1;
            overflow: hidden;
        }

        .collect-info .title {
            font-size: 16px;
            color: #333;
            font-weight: bold;
            margin-bottom: 8px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .collect-info .time {
            font-size: 13px;
            color: #999;
        }


        /* 2. 在线访谈模块还原 */
        .interview-section {
            flex: 1;
            background: #fff;
            padding: 25px;
            border-radius: 4px;
                border-left: 1px solid #d8d8d8;
        }

        /* 还原：图片区域替换为带红框的红色div */
        .interview-image-placeholder {
            width: 100%;
            height: 210px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #dc3545;
            font-size: 14px;
            margin-bottom: 15px;
            background: url("zxft.png") no-repeat;
        }

        .interview-desc {
            font-size: 14px;
            color: #333;
            line-height: 1.6;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .interview-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #999;
        }

        .interview-meta .more-btn {
            padding: 4px 15px;
            border: 1px solid #ccd5e0;
            color: #005599;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
        }

        /* --- 原有底部样式 (保持不变) --- */
        .bottom-banner-links {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            width: 1200px;
            margin: 0 auto;
        }

        .bottom-banner-links .banner-div {
            flex: 1;
            height: 150px;

            border-radius: 4px;

        }


        .icon-rect {
            width: 100px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }
        .first{background: url(first.png) no-repeat;height: 635px;background-position: center;}
        .first .container{background: #fff;padding: 30px;}
        .second{background: #FCFEFF;}
        .second .container{background: #FCFEFF;}
        .san{background: #F1F9FF;height: 230px;padding: 40px 0;}
        .san .container{}




      /* --- 移动端样式 --- */
@media screen and (max-width: 768px){
.breadcrumb {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
}

.first .container {
    padding: 20px;
    padding-bottom: 0;
}

.interaction-grid {
    display: flex;
    flex-direction: column;
  	margin-bottom: 20px;
    gap: 0;
}

.box-right {
    padding: 0;
    border: 0;
}

.msg-list-item span {
    display: none;
}

.msg-list-item .msg-title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}
  .breadcrumb {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
}
.first .container {
    padding: 20px;
    padding-bottom: 0;
}
.interaction-grid {
    display: flex;
    flex-direction: column;
}

.box-right {
    padding: 0;
    border: 0;
}

.msg-list-item span {
    display: none;
}

.msg-list-item .msg-title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.link-card:nth-child(-n+4) {
    width: 46%;
}

.quick-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.first {
    height: auto !important;
}

.link-card:nth-child(6) {
    width: 100%;
    background-size: 100%;
}

.data-analysis-bar {
}

.data-analysis-bar a img {
    width: 100%;
    height: 100%;
}
.bottom-sections-wrap {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
}
  .collection-section {
    padding: 0;
}
.interview-section {
    padding: 0;
    border: 0px;
    margin-top: 20px;
}

.bottom-banner-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.san {
    padding: 20px;
    height: auto;
}
  .box-left {
    width: 100% !important;
}

.box-right {
    width: 100% !important;
}
.kb-list li {
    width: 100% !important;
}
.section2_gsxw {
    width: 100% !important;
}

.section2_gsxw_list li a, .section3_gsgg_list li a, .section3_gsfw_list li a {
    width: 100% !important;
  	font-size: 14px !important;
}

.section2_gsxw_list li span, .section3_gsgg_list li span, .section3_gsfw_list li span {
    display: none;
}
  .box-title h2 {
    font-size: 0.3rem;
}

.sec-title {
    font-size: 0.3rem;
}

.kb-list li span {
    display: none;
}

.kb-list li a {
    width: 100%;
}
.subtitle-links a {
    font-size: 0.3rem;
    padding: 0 10px !important;
}
  .bottom-banner-links .banner-div a img {
    width: 100%;
}
}