﻿
.dhk {
    display: none;
    border: 1px solid gray;
    border-radius: 10px;
    background-color: white;
    /*#CCCC99;*/
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-box-shadow: 0 2px 32px #000, 0 0 1px #000, 0 0 1px #000;
    -moz-box-shadow: 0 2px 16px #000, 0 0 1px #000, 0 0 1px #000;
    box-shadow: 0 2px 16px #000, 0 0 1px #000, 0 0 1px #000;
}
/*.dhk:hover {
    transform: scale(1.01);
}*/
.dhk .dhk-header {
    padding: 20px;
    background-color: #f6f4f0;
    display: flex;
    align-items: center;
    justify-content:space-between;
    font-weight: 700;
}
.dhk .dhk-header .dhk-close-bt {
    text-decoration: none;
    color: black;
    display: block
}
.dhk .dhk-header .dhk-close-bt:hover {
    color:red;
    background-color:lightgrey;
}
.dhk .dhk-body {
    padding: 20px;
}
.miniDhk {
    display: none;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 3px;
    background-color: #f0f2f5;
    /*#CCCC99;*/
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-box-shadow: 0 2px 32px #000, 0 0 1px #000, 0 0 1px #000;
    -moz-box-shadow: 0 2px 16px #000, 0 0 1px #000, 0 0 1px #000;
    box-shadow: 0 2px 16px #000, 0 0 1px #000, 0 0 1px #000;
}
/* my-icons.css */
.ico {
    width: 1em;
    height: 1em;
    fill: currentColor; /* 继承父元素文字颜色，和 Bootstrap 无缝 */
    vertical-align: -.125em; /* 让图标和文字基线对齐 */
}
html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

body {
    background-color: #f0f2f5;
}

.header {
    margin: 0;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 10px #959595;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
    overflow: hidden;
    z-index:10;
}

.content {
    min-height: 100vh;
}

.ptitle {
    background-color: rgba(22,42,88,0.8);
    /*#162a58;*/
}

.smfont {
    font-size: 14px;
}

.newsMenu {
    display: flex;
    padding: 0;
    width: 100%;
    background: #dee2e8;
}

.menuItem {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    -webkit-user-select: none; /* Chrome、Safari、Edge */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    user-select: none; /* 标准语法 */
}

.itemMenu {
    display: flex;
    padding: 0;
    width: 100%;
    background: #dee2e8;
    justify-content: space-between
}

.itemItem {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    -webkit-user-select: none; /* Chrome、Safari、Edge */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    user-select: none; /* 标准语法 */
}

.active {
    background: #959595;
    color: white;
}

.boardBg {
    background-color: lightgray;
}

.board {
    width: 100%;
    padding: 20px;
}

.boardItem {
    color: gray;
    font-size: 14px;
    text-decoration: none;
    padding-top: 6px;
    padding-bottom: 6px;
    display: block;
    position: relative;
    padding-left: 1rem;
    box-sizing: border-box;
}

    .boardItem:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 3px;
        background-color: black;
        border-radius: 50%;
    }

    .boardItem:hover {
        color: #005195;
        text-decoration: none;
    }

.date {
    padding-top: 10px;
    padding-bottom: 1px;
    box-sizing: border-box;
    font-size: 14px;
}

.more {
    padding-bottom: 20px;
    padding-right: 20px;
}

    .more a {
        color: #005195;
        text-decoration: none;
    }

        .more a:hover {
            color: red;
        }

.footer {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gray;
    font-size: 12px;
}

    .footer a {
        color: gray;
    }

.listItem {
    padding: 0.5em 1em;
    margin: 1em 0;
    border: 1px solid #dee2e6;
}

    .listItem:nth-of-type(n+2):hover {
        background-color: #e6f7ff;
    }

.sbox {
    display: block;
    padding: 3px 5px;
    font-size: 12px;
    background-color: white;
    border: 1px solid lightgray;
    color: gray;
    margin-left: 5px;
}

.pbox {
    display: inline-block;
    padding: 5px 8px;
    font-size: 12px;
    background-color: white;
    border: 1px solid #959595;
    color: #959595;
    margin-left: 5px;
    text-decoration:none;
}
.pbox.active {
        border: 1px solid #1890ff;
        color: #1890ff;
    }

.pcontrol {
    font-size: 12px;
}
.paperItem {
    padding: 50px;
    margin: 1em 0;
    border: 1px solid #dee2e6;
    background-color:white;
}