/* =============================================
   政企首页专用样式 - 消防红蓝风格
   ============================================= */

/* ---------- 全局变量 ---------- */
:root {
    --color-red:    #cc2222;
    --color-red-dark: #a01818;
    --color-blue:   #3460ab;
    --color-blue-light: #2455a3;
    --color-blue-pale: #e8eef8;
    --color-gold:   #d4a017;
    --color-text:   #333333;
    --color-text-light: #666666;
    --color-border: #dde3ec;
    --color-bg:     #f0f3f8;
    --font-base:    18px;
    --font-sm:      16px;
    --font-xs:      14px;
    --font-lg:      20px;
    --font-xl:      24px;
    --font-xxl:     28px;
}

/* ---------- 全局 ---------- */
body.page-index {
    background: var(--color-bg);
    font-size: var(--font-base);
    color: var(--color-text);
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    height: auto;
}
body{
    /* background-image: url('/assets/addons/cms/img/body_top_bg.jpg');
    background-repeat: no-repeat; */

    background-color: #3eb6ff;
    background-image: linear-gradient(180deg, #58afff 23%, #ffffff 100%);
}

.index-wrap {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    background: #fff;
}

/* ---------- 第一行：顶部标识图 ---------- */
.index-banner-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.index-banner-top img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- 第二行：导航条 ---------- */
.index-navbar {
    /* background: var(--color-blue); */
    position: relative;
    z-index: 1000;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.3); */
    margin-top: -50px;


}
.index-navbar.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown .3s ease;
    background: var(--color-blue);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    margin-top: 0;

}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
.index-navbar .navbar-inner {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 50px;
}
.index-navbar .nav-logo {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    padding-right: 20px;
    text-decoration: none;
}
.index-navbar .nav-logo:hover { color: #ffd; }
.index-navbar .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.index-navbar .nav-menu > li > a {
    display: block;
    color: #eee;
    font-size: var(--font-xl);
    padding: 0 16px;
    height: 50px;
    line-height: 50px;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.index-navbar .nav-menu > li > a:hover,
.index-navbar .nav-menu > li.active > a {
    background: var(--color-red);
    color: #fff;
}
.index-navbar .nav-menu > li {
    position: relative;
}
.index-navbar .nav-menu > li:hover .nav-sub {
    display: block;
}
.index-navbar .nav-sub {
    display: none;
    list-style: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: var(--color-blue-light);
    min-width: 130px;
    z-index: 2000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 0;
    margin: 0;
}
.index-navbar .nav-sub li a {
    display: block;
    color: #eee;
    font-size: var(--font-lg);
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
}
.index-navbar .nav-sub li:hover {
    background: var(--color-red);
}
.index-navbar .nav-sub li a:hover {
    background: var(--color-red);
    color: #fff;
}
.index-navbar .nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.index-navbar .nav-search input {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: var(--font-sm);
    width: 160px;
    outline: none;
}
.index-navbar .nav-search input::placeholder { color: #ccc; }
.index-navbar .nav-search button {
    background: var(--color-red);
    border: none;
    color: #fff;
    padding: 5px 10px;
    margin-left: 4px;
    border-radius: 3px;
    cursor: pointer;
}

/* ---------- 导航条 - 会员中心 ---------- */
#link-toggle-link.active,
#app-toggle-link.active,
#search-toggle-link.active {
    background: var(--color-red);
    color: #fff;
}
.index-navbar .nav-user-wrap {
    list-style: none;
    margin: 0 0 0 14px;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.index-navbar .nav-user-wrap .dropdown { position: relative; }
.index-navbar .nav-user-wrap .dropdown > a {
    color: rgba(255,255,255,0.9);
    font-size: var(--font-sm);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}
.index-navbar .nav-user-wrap .dropdown > a:hover { background: rgba(255,255,255,0.15); }
.index-navbar .nav-user-wrap .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: 100%;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    padding: 4px 0;
}
.index-navbar .nav-user-wrap .dropdown:hover .dropdown-menu,
.index-navbar .nav-user-wrap .dropdown.open .dropdown-menu { display: block; }
.index-navbar .nav-user-wrap .dropdown-menu li a {
    display: block;
    padding: 7px 16px;
    color: #333;
    font-size: var(--font-sm);
    white-space: nowrap;
    text-decoration: none;
}
.index-navbar .nav-user-wrap .dropdown-menu li a:hover {
    background: var(--color-blue-pale);
    color: var(--color-blue);
}

/* ---------- 导航吸顶占位 ---------- */
.navbar-placeholder { display: none; height: 0; }
.navbar-placeholder.active { display: block; height: 50px; }

/* ---------- 公共模块标题 ---------- */
.sec-title {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-red);
    margin-bottom: 10px;
    padding-bottom: 0;
}
.sec-title .title-text {
    background: var(--color-red);
    color: #fff;
    font-size: var(--font-lg);
    font-weight: bold;
    padding: 6px 18px 6px 12px;
    position: relative;
    letter-spacing: 1px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
 
.sec-title .title-more {
    margin-left: auto;
    font-size: var(--font-xs);
    color: var(--color-blue-light);
    text-decoration: none;
}
.sec-title .title-more:hover { color: var(--color-red); text-decoration: underline; }

/* ---------- 第三行：消防要闻 ---------- */
.sec-xfyw { padding: 14px 0; }
.sec-xfyw .row { margin: 0 -8px; }
.sec-xfyw .col-left,
.sec-xfyw .col-right { padding: 0 8px; }

#carousel-xfyw .item  .carousel-img { height: 400px; }

/* 右侧文章列表 */
.home-article-list { margin: 0; padding: 0; list-style: none; overflow: hidden; }
.home-article-list li {
    border-bottom: 1px dashed var(--color-border);
    padding: 7px 0;
    display: flex;
    align-items: baseline;
}
.home-article-list li:last-child { border-bottom: none; }
.home-article-list .art-date {
    color: #999;
    font-size: var(--font-xs);
    white-space: nowrap;
    margin-right: 8px;
}
.home-article-list .art-new {
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: var(--color-red);
    padding: 1px 5px;
    border-radius: 3px;
    vertical-align: middle;
    line-height: 1.4;
    white-space: nowrap;
    margin-right: 8px;
}
.home-article-list .art-title {
    color: var(--color-text);
    font-size: var(--font-sm);
    text-decoration: none;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}
.home-article-list .art-title:hover { color: var(--color-red); }
.home-article-list .art-title.art-new::before {
    content: 'NEW';
    background: var(--color-red);
    color: #fff;
    font-size: 11px;
    padding: 1px 4px;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}

/* ---------- 第四行：值班列表 ---------- */
/* 竖条标题样式（值班安排等） */
.sec-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.sec-title-bar .title-text {
    border-left: 4px solid var(--color-red);
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    letter-spacing: 1px;
}
.sec-title-bar .title-more {
    margin-left: auto;
    font-size: var(--font-xs);
    color: var(--color-blue-light);
    text-decoration: none;
}
.sec-title-bar .title-more:hover { color: var(--color-red); text-decoration: underline; }

.sec-duty { padding: 14px 0; }
.duty-box {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}
.duty-table-wrap {
    border: 1px solid var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}
/* 今日/明日值班快速表格 - 复合表头 */
.duty-quick-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-lg);
    border: 1px dashed #ccc;
}


.duty-quick-table thead tr {
    background: #fff;
    color: #000;
}
.duty-quick-table thead th {
    padding: 8px 6px;
    font-weight: bold;
    text-align: center;
    border-right: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    font-size: var(--font-base);
    color: #000;
}
.duty-quick-table thead th:last-child { border-right: none; }
.duty-quick-table thead th.row-date {
    vertical-align: middle;
    background: #fff;
    color: #1a6fd4;
}

.duty-quick-table thead th.col-today {
    background:#fff;
}
.duty-quick-table thead th.col-tomorrow {
    background:#fff;
}
.duty-quick-table thead th.sub-today {
    background:#fff;
}
.duty-quick-table thead th.sub-tomorrow {
    background: #fff;
}
.sub-today,.sub-tomorrow{
    border-top: 1px dashed #ccc;
}
.duty-quick-table tbody tr {
    border-bottom: 1px dashed #ccc;
}
.duty-quick-table tbody tr:last-child { border-bottom: none; }
.duty-quick-table tbody td {
    padding: 10px 6px;
    vertical-align: middle;
    text-align: center;
    color: #000;
    font-size: var(--font-base);
    border-right: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
}
.duty-quick-table tbody td:last-child { border-right: none; }
.duty-quick-table tbody td.row-date-label {
    font-weight: bold;
    background: #fff;
    color: #000;
    width: 100px;
}
.duty-quick-table tbody td.duty-today-cell { color: #000; background: #fff; }
.duty-quick-table tbody td.duty-tomorrow-cell { color: #000; background: #fff; }
.no-duty { color: #ccc; }
.duty-more {
    text-align: center;
    padding: 8px 0;
    border-top: 1px solid var(--color-border);
    background: #f8f9fb;
}
.duty-more a {
    color: var(--color-blue-light);
    font-size: var(--font-sm);
    text-decoration: none;
}
.duty-more a:hover { color: var(--color-red); }

.duty-table-wrap .img_box {
    text-align: center;
    padding: 20px 0;
    width: 80px;
}

.duty-table-wrap .img_box .title {
    color: #333;
    font-size: var(--font-sm);
    font-weight: 700;
}
.duty-table-wrap .img_box .more a{
    color: #333;    
    cursor: pointer;
    /* 取消下划线 */
    text-decoration: none;
    

   

}

/* 值班月历弹窗 */
.duty-modal-table { width: 100%; border-collapse: collapse; font-size: var(--font-sm); border: 1px solid #aaa; }
.duty-modal-table thead th {
    background: #fff;
    color: #000;
    padding: 6px 8px;
    text-align: center;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 2;
    border: 1px solid #aaa;
}
.duty-table-scroll { overflow-x: auto; max-height: 55vh; overflow-y: auto; }
.duty-nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; margin-bottom: 6px; }
.duty-nav-btn { background: #fff; color: #000; border: 1px solid #aaa; padding: 5px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; }
.duty-nav-btn:hover { background: #f0f0f0; }
.duty-nav-label { font-weight: bold; color: #000; font-size: 14px; }
.duty-date-picker {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 13px;
    color: #000;
    background: #fff;
    outline: none;
    cursor: pointer;
}
.duty-date-picker:focus {
    border-color: #aaa;
}
.duty-modal-table td {
    padding: 6px 8px;
    border: 1px solid #aaa;
    vertical-align: top;
    color: #000;
    background: #fff;
}
.duty-modal-table tbody tr:hover td { background: #fff; }
.duty-modal-table th, .duty-modal-table td { text-align: center; vertical-align: middle; }
.duty-modal-table td.duty-cell-group { width: 90px; min-width: 90px; max-width: 90px; background: #fff; color: #000; font-weight: bold; text-align: center; vertical-align: middle; }
.duty-modal-table td.duty-cell-type { background: #fff; color: #000; font-weight: bold; text-align: center; white-space: nowrap; }
.duty-modal-table td.duty-cell-on { background: #fff; color: #000; }
.duty-modal-table td.duty-cell-off { background: #fff; color: #ccc; }

/* ---------- 第五行：标语插图1 ---------- */
.sec-slogan { padding: 10px 0; line-height: 0; }
.sec-slogan img { width: 100%; height: auto; display: block; }
.sec-slogan a { display: block; }

/* ---------- 第六行：机关动态 + 右侧栏目 ---------- */
.sec-jgdt { padding: 14px 0; }
.sec-jgdt .row { margin: 0 -8px; }
.sec-jgdt [class*="col-"] { padding: 0 8px; }

/* 图片滚动播放 */
.img-scroll-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    margin-bottom: 8px;
}
.img-scroll-track {
    display: flex;
    transition: transform 0.6s ease;
}
.img-scroll-track .scroll-item {
    flex-shrink: 0;
    width: 100%;
}
.img-scroll-track .scroll-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.img-scroll-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
}
.img-scroll-dots span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    display: inline-block;
}
.img-scroll-dots span.active { background: var(--color-red); }

/* 右侧选项卡 */
.tab-box {
    border: 1px solid var(--color-border);
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}
.tab-box .tab-nav {
    display: flex;
    background: var(--color-blue-pale);
    border-bottom: 2px solid var(--color-red);
}
.tab-box .tab-nav .tab-item {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    font-size: var(--font-lg);
    color: var(--color-text);
    cursor: pointer;
    font-weight: bold;
    transition: background .2s, color .2s;
}
.tab-box .tab-nav .tab-item.active {
    background: var(--color-red);
    color: #fff;
}
.tab-box .tab-nav .tab-item:hover:not(.active) {
    background: #dde5f5;
}
.tab-box .tab-nav .tab-more {
    margin-left: auto;
    padding: 0 10px;
    font-size: 12px;
    color: var(--color-blue-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.tab-box .tab-nav .tab-more:hover { color: var(--color-red); text-decoration: underline; }
.tab-box .tab-pane { display: none; padding: 8px 12px; }
.tab-box .tab-pane.active { display: block; }

/* ---------- 第八行：应急救援 + 预警 ---------- */
.sec-yjjy { padding: 14px 0; }
.sec-yjjy .row { margin: 0 -8px; }
.sec-yjjy [class*="col-"] { padding: 0 8px; }

/* 预警列表 */
.sec-yjjy .home-article-list { min-height: 204px; }
.sec-three .home-article-list { min-height: 272px; }
.tab-box .home-article-list { min-height: 250px; overflow: hidden; }
.warn-list { list-style: none; margin: 0; padding: 0; min-height: 222px; overflow: hidden; }
.warn-list li {
    padding: 7px 0;
    border-bottom: 1px dashed var(--color-border);
    display: flex;
    align-items: center;
}
.warn-list li:last-child { border: none; }
.warn-list .warn-level {
    display: inline-block;
    width: 22px; height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    margin-right: 8px;
    flex-shrink: 0;
}
.warn-level.red    { background: #d32f2f; }
.warn-level.orange { background: #f57c00; }
.warn-level.yellow { background: #f9a825; }
.warn-level.blue   { background: var(--color-blue-light); }
.warn-list .warn-title {
    font-size: var(--font-sm);
    color: var(--color-text);
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.warn-list .warn-title:hover { color: var(--color-red); }

.art-date{
    color: #999;
}

/* ---------- 第十行：三列 ---------- */
.sec-three { padding: 14px 0; }
.sec-three .row { margin: 0 -8px; }
.sec-three [class*="col-"] { padding: 0 8px; }

/* ---------- 第十一行：图片展播/微视频 ---------- */
.sec-media { padding: 14px 0; }
.media-scroll-outer {
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    padding: 10px 0;
}
.media-scroll-track {
    display: flex;
    gap: 10px;
    padding: 0 10px;
    /* 不使用transition，通过JS逐帧移动实现匀速滚动 */
    will-change: transform;
}
.media-scroll-track .media-item {
    flex-shrink: 0;
    width: 370px;
    text-decoration: none;
    color: var(--color-text);
}
.media-scroll-track .media-item .media-img-wrap {
    position: relative;
    width: 370px;
    height: 250px;
    overflow: hidden;
    border-radius: 2px;
}
.media-scroll-track .media-item img {
    width: 370px;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 2px solid transparent;
    transition: border-color .2s;
}
.media-scroll-track .media-item:hover img { border-color: var(--color-red); }
.media-scroll-track .media-item .media-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    font-size: var(--font-xs);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background:rgba(0,0,0,0.4);
    color: #fff;
}

/* ---------- 图片展播/微视频选项卡 ---------- */
.media-tab-box { margin-top: 10px; }
.media-tab-box .tab-nav {
    margin-bottom: 0;
    justify-content: flex-start;
    background: transparent;
    border-bottom: 2px solid var(--color-red);
}
.media-tab-box .tab-nav .tab-item {
    flex: none;
    padding: 8px 20px;
    white-space: nowrap;
    background: transparent;
    color: var(--color-text);
    border-radius: 3px 3px 0 0;
}
.media-tab-box .tab-nav .tab-item.active {
    background: var(--color-red);
    color: #fff;
}
.media-tab-box .tab-nav .tab-item:hover:not(.active) {
    background: #f5f5f5;
}

/* 子分类样式 */
.media-tab-box .tab-nav .tab-spacer {
    flex: 1;
}
.media-tab-box .media-subcats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}
.media-tab-box .media-subcats.hidden {
    display: none;
}
.media-tab-box .subcat-item {
    padding: 4px 12px;
    font-size: var(--font-base);
    color: var(--color-text);
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    transition: all 0.2s;
}
.media-tab-box .subcat-item:hover {
    color: var(--color-red);
}
.media-tab-box .subcat-item.active {
    background: var(--color-red);
    color: #fff;
}

.media-tab-box .tab-content { margin-top: 0; }
.media-tab-box .tab-pane { display: none; padding: 0; }
.media-tab-box .tab-pane.active { display: block; }
.media-tab-box .media-scroll-outer { margin: 0; }

/* ---------- 左右漂浮 ---------- */
.float-left-ad,
.float-right-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    line-height: 0;
}
.float-left-ad  { left: 0; }
.float-right-ad { right: 0; }
.float-left-ad img,
.float-right-ad img {
    max-width: 100px;
    height: auto;
    display: block;
}
.float-close {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    cursor: pointer;
    line-height: 1.5;
    user-select: none;
}
.float-close:hover { background: var(--color-red); }

/* ---------- 底部 ---------- */
.index-footer {
    background: rgb(235, 235, 235);
    color: #333;
    padding: 20px 0 10px;
    margin-top: 20px;
    font-size: var(--font-sm);
}
.index-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.index-footer .footer-stat {flex: 1}

#site-stats{
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 10px;
}
.index-footer a { color: #bfc8d8; text-decoration: none; }
.index-footer a:hover { color: #666; }
.index-footer .footer-title {
    color: #333;
    font-size: var(--font-base);
    font-weight: bold;
    margin-bottom: 8px;
    padding-bottom: 4px;
  
}
.index-footer .stat-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
    margin-bottom: 8px;
}
.index-footer  .stat-num {


}
.index-footer .stat-item .stat-label {
    font-size: 12px;
    color: #8faacf;
}
.index-footer .footer-bottom {
    max-width: 1200px;
    margin: 14px auto 0;
    padding: 10px 10px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 12px;
    color: #333;
}
.index-footer .footer-bottom a { color: #333; }
.index-footer .footer-bottom a:hover { color: #666; }

/* ---------- 通用模块盒子 ---------- */
.home-section {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    padding: 10px 12px;

}
.home-section-head {
    margin-bottom: 0;
}
.sec-jgdt .item_box {
    display: flex;
    align-items: center;
}
.sec-jgdt .item_box.line {
    border-top: 1px solid var(--color-border);
}
.sec-jgdt .item_title {
    flex-shrink: 0;
    margin-right: 12px;
}
.sec-jcdt .item_box {
    display: flex;
    align-items: center;
}
.sec-jcdt .item_box.line {
  border-top:1px solid  var(--color-blue-light);

}
.sec-jcdt .item_title{
    color: var(--color-blue-light);
    font-size: var(--font-lg);
    font-weight: 700;   
    margin-right: 20px;
}


/* 同行各列等高 */
.sec-xfyw .row,
.sec-jgdt .row,
.sec-yjjy .row,
.sec-three .row {
    display: flex;
    align-items: stretch;
}
.sec-xfyw .row > [class*="col-"],
.sec-jgdt .row > [class*="col-"],
.sec-yjjy .row > [class*="col-"],
.sec-three .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.sec-xfyw .row > [class*="col-"] > div,
.sec-jgdt .row > [class*="col-"] > div,
.sec-yjjy .row > [class*="col-"] > div,
.sec-three .row > [class*="col-"] > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sec-xfyw .row > [class*="col-"] .home-article-list,
.sec-jgdt .row > [class*="col-"] .home-article-list,
.sec-yjjy .row > [class*="col-"] .home-article-list,
.sec-three .row > [class*="col-"] .home-article-list,
.sec-xfyw .row > [class*="col-"] .tab-box,
.sec-jgdt .row > [class*="col-"] .tab-box {
    flex: 1;
}

/* ---------- 固定宽度 1200px，禁用响应式 ---------- */
/* 强制 Bootstrap col-md-* 在任何屏幕宽度下都保持列布局 */
.index-wrap .col-md-1  { width: 8.3333%;   float: left; }
.index-wrap .col-md-2  { width: 16.6667%;  float: left; }
.index-wrap .col-md-3  { width: 25%;       float: left; }
.index-wrap .col-md-4  { width: 33.3333%;  float: left; }
.index-wrap .col-md-5  { width: 41.6667%;  float: left; }
.index-wrap .col-md-6  { width: 50%;       float: left; }
.index-wrap .col-md-7  { width: 58.3333%;  float: left; }
.index-wrap .col-md-8  { width: 66.6667%;  float: left; }
.index-wrap .col-md-9  { width: 75%;       float: left; }
.index-wrap .col-md-10 { width: 83.3333%;  float: left; }
.index-wrap .col-md-11 { width: 91.6667%;  float: left; }
.index-wrap .col-md-12 { width: 100%;      float: left; }
/* flex 行内不使用 float，float 的备用已在上面，flex 行中 col-md-* 正常工作 */



