﻿/* 重要通知子页（culture/zytz 布局）— 依赖 dwbgs.css */

.subpage-main {
    background: #fff;
    padding-bottom: 40px;
}

.breadcrumb-wrap {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-inner {
    padding-top: 10px;
    padding-bottom: 10px;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #666;
}

.breadcrumb-list li {
    float: left;
    line-height: 1.6;
}

.breadcrumb-list a {
    color: #555;
}

.breadcrumb-list a:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #aaa;
    user-select: none;
}

.breadcrumb-current {
    color: #333;
    font-weight: normal;
}

.subpage-inner {
    padding-top: 24px;
    padding-bottom: 28px;
}

.subpage-sidebar {
    float: left;
    width: 200px;
    margin-right: 28px;
    margin-bottom: 20px;
}

.sidebar-section-nav {
    border: 1px solid var(--list-border);
    background: #fafafa;
}

.sidebar-section-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-section-nav li {
    border-bottom: 1px solid var(--list-border);
}

.sidebar-section-nav li:last-child {
    border-bottom: 0;
}

.sidebar-section-nav a {
    display: block;
    padding: 12px 14px 12px 16px;
    font-size: 15px;
    color: #444;
    border-left: 3px solid transparent;
}

.sidebar-section-nav a:hover {
    background: #f0f0f0;
    color: var(--brand-red);
}

.sidebar-section-nav li.is-active a {
    background: #fff;
    color: var(--brand-red);
    font-weight: bold;
    border-left-color: var(--brand-red);
}

.subpage-content {
    overflow: hidden;
    min-height: 280px;
}

.subpage-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--brand-red);
}

.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--list-border);
}

.notice-list .notice-item {
    border-bottom: 1px solid var(--list-border);
    overflow: hidden;
}

.notice-list .notice-item:hover {
    background-color: #eee;
}

.notice-list .notice-item::after {
    content: "";
    display: table;
    clear: both;
}

.notice-list .one-line a {
    display: block;
    overflow: hidden;
    max-width: 100%;
    font-size: 16px;
    color: #555;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.notice-list .one-line a:hover {
    color: #777;
}

@media (max-width: 767px) {
    .subpage-sidebar {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .subpage-content {
        overflow: visible;
    }

    .breadcrumb-list li {
        float: none;
        display: inline;
    }

    .breadcrumb-sep {
        display: inline;
    }
}