/* ===== 搜索组件样式 ===== */

.search-form {
    display: flex;
    align-items: center;}

.search-input {
    width: 160px;
    height: 28px;}

.search-keyword {
    width: 160px;
    height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.92);
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    outline: none;}

.search-keyword:focus {
    border-color: #fff;
    background: #fff;}

.search-button {
    width: 32px;
    height: 28px;
    margin-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;}

.search-submit {
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: block;}
/* ===== 顶部主导航组件 ===== */

#c1159814.nav {
    width: 100%;
    height: 50px;}

/* 一级导航列表：先按 1200px 固定版心处理 */
#c1159814.nav > ul {
    width: 1200px;
    height: 50px;

    margin: 0 auto;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    list-style: none;}

/* 一级栏目 */
#c1159814.nav > ul > li {
    position: relative;

    width: 150px;

    margin: 0;
    padding: 0;

    list-style: none;}

/* 一级栏目链接 */
#c1159814.nav > ul > li > a {
    display: block;

    width: 150px;
    height: 50px;
    line-height: 50px;

    font-size: 20px;
    color: #fff;

    text-align: center;
    text-decoration: none;}

/* 一级栏目 hover */
#c1159814.nav > ul > li:hover > a {
    background: #016bb7;
    color: #fff;}

/* 当前栏目 */
#c1159814.nav > ul > li > a#current {
    background: #004161;
    font-weight: bold;
    color: #fff;}

/* 二级菜单 */
#c1159814.nav > ul > li > ul {
    display: none;

    position: absolute;
    left: 0;
    top: 50px;

    width: 150px;

    margin: 0;
    padding: 0;

    list-style: none;

    z-index: 9999;}

/* hover 显示二级菜单 */
#c1159814.nav > ul > li:hover > ul {
    display: block;}

/* 二级栏目 */
#c1159814.nav > ul > li > ul > li {
    width: 150px;

    margin: 0;
    padding: 0;

    min-height: 35px;

    border-bottom: 1px solid #004161;

    list-style: none;}

/* 二级栏目链接 */
#c1159814.nav > ul > li > ul > li > a {
    display: block;

    width: 150px;
    min-height: 35px;
    line-height: 35px;

    text-align: center;

    font-size: 18px;

    color: #fff;
    background: #006699;

    text-decoration: none;}

/* 二级栏目 hover */
#c1159814.nav > ul > li > ul > li > a:hover {
    background: #016bb7;
    color: #fff;}
/* ===== 文章内容组件 ===== */

.article-layout {
    width: 100%;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;}

.article-layout form {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;}

/* 标题 */
.article-title {
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    color: #000;
    padding-bottom: 20px;}

/* 发布时间等信息 */
.article-meta {
    height: auto;
    line-height: 30px;
    padding: 10px 0 15px;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 1px dashed #ccc;
    font-size: 13px;
    color: #333;}

/* 自定义属性表格 */
.article-extend {
    border-collapse: collapse;
    margin: 0 auto 20px;}

.article-extend td {
    border: 1px solid gray;
    padding: 6px 10px;}

/* 正文分页下拉 */
.article-select-page {
    margin-bottom: 20px;}

/* 正文内容 */
.article-content {
    width: 100%;
    min-height: 400px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: normal;}

/* 正文段落 */
.article-content p {
    line-height: 36px !important;
    font-size: 16px;
    color: #333;}

/* 正文 span */
.article-content span {
    line-height: 36px !important;
    font-size: 16px;}

/* 正文图片 */
.article-content img {
    max-width: 100%;
    height: auto;}

/* 正文列表 */
.article-content ul,
.article-content ol {
    margin-left: 24px;
    padding-left: 18px;}

.article-content li {
    line-height: 32px;
    font-size: 16px;}

/* 附件 */
.article-attach {
    margin-top: 24px;}

.article-attach ul {
    margin: 0;
    padding: 0;
    list-style: none;}

.article-attach li {
    line-height: 32px;
    font-size: 15px;}

/* 正文分页 */
.article-page {
    margin-top: 24px;
    text-align: right;
    font-size: 15px;}

.article-page a,
.article-page span {
    margin-left: 8px;}

/* 上一条/下一条 */
.article-neighbor {
    padding: 15px 10px;
    margin-top: 28px;
    border-top: 1px dotted #bbb;}

.article-neighbor p {
    display: block;
    width: 100%;
    height: 34px;
    line-height: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    color: #333;
    text-indent: 0 !important;}

.article-neighbor p a {
    color: #333;
    text-decoration: none;}

.article-neighbor p a:hover {
    color: #00528E;
    text-decoration: none;}
