:root {
    --jh-bg: #f5f5f7;
    --jh-surface: #ffffff;
    --jh-surface-glass: rgba(255, 255, 255, 0.72);
    --jh-text: #1d1d1f;
    --jh-text-2: #6e6e73;
    --jh-text-3: #aeaeb2;
    --jh-green: #30d158;
    --jh-green-deep: #248a3d;
    --jh-green-muted: rgba(48, 209, 88, 0.14);
    --jh-teal: #0a7d6b;
    --jh-nav-bg: linear-gradient(135deg, #1b4332 0%, #2d6a4f 42%, #40916c 100%);
    --jh-radius: 14px;
    --jh-radius-sm: 10px;
    --jh-radius-pill: 980px;
    --jh-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --jh-shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.1);
    --jh-separator: rgba(60, 60, 67, 0.12);
    --jh-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, ul, li, h1, h2, h3, h4, h5, h6, p, form, dl, dt, dd, div, ol {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: var(--jh-font);
    background-color: var(--jh-bg);
    color: var(--jh-text);
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

a:visited {
    text-decoration: none
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cl {
    clear: both;
}

.clafter:after {
    clear: both;
    content: '';
    display: block;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt50 {
    margin-top: 50px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.w100 {
    width: 100% !important;
}

.mt0 {
    margin-top: 0 !important;
}

.box {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 52px;
    height: 52px;
    padding: 0 16px;
    box-sizing: border-box;
    position: relative;
}

.box::after {
    content: "";
    display: table;
    clear: both;
}

.boxc {
    background: var(--jh-nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    position: relative;
    z-index: 198;
    min-height: 52px;
}

.topTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 160px;
    height: auto;
    padding: 28px 16px 24px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.3;
    color: #ffffff;
    width: 100%;
    position: relative;
    background-color: #1b4332;
}

.topTitle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.topTitle h1 {
    display: block;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.topTitle h1 a.topTitle-home {
    color: inherit;
    text-decoration: none;
}

.topTitle h1 a.topTitle-home:hover {
    opacity: 0.92;
}

.topTitle h1 span {
    opacity: 0.92;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 16px 0;
    display: block;
    color: rgba(255, 255, 255, 0.95);
}

.topTitle-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

/*nav*/

.nav {
    float: left;
    height: 52px;
}

.nav li {
    display: inline-block;
    margin: 0 2px;
    font-size: 15px;
    line-height: 52px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav li em {
    display: none;
}

.nav li a {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 12px;
    border-radius: var(--jh-radius-sm);
}

.nav li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav>ul>li.on>a:after, .nav>ul>li.cur>a:after {
    background-color: var(--jh-green);
    height: 3px;
    width: 22px;
    left: 50%;
    margin-left: -11px;
    bottom: 6px;
    border-radius: 2px;
    content: '';
    position: absolute;
}

.nav li ul {
    position: absolute;
    left: -1px;
    top: 52px;
    background: rgba(27, 67, 50, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--jh-radius-sm) var(--jh-radius-sm);
    box-shadow: var(--jh-shadow-hover);
    min-width: 100%;
    padding: 8px 0;
    display: none;
    z-index: 5;
    white-space: nowrap;
}

.nav li li {
    font-size: 14px;
    float: none;
    margin: 0;
    display: block;
    text-align: center;
    line-height: 2em;
}

.nav li li a {
    padding: 5px 10px;
}

.nav li li a:hover {
    border-radius: 0;
}

.search {
    width: 220px;
    max-width: 15vw;
    line-height: 34px;
    border-radius: var(--jh-radius-pill);
    border: none;
    position: relative;
    height: 34px;
    margin-top: 9px;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.search button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    left: 6px;
    top: -1px;
    height: 34px;
    outline: 0;
    color: rgba(255, 255, 255, 0.85);
}

.search .iconfont {
    font-size: 16px;
}

.search input {
    width: 150px;
    max-width: 11vw;
    border: none;
    height: 22px;
    outline: 0;
    margin: 5px 8px 0 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-family: var(--jh-font);
}

.search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

#searchfdj {
    display: none;
}

#navbtn {
    display: none;
}

.searchdropdown {
    display: none;
}

.searchd {
    display: none;
}

/*screen width*/

@media only screen and (max-width:1280px) {
    /*1280*/
    .nav li {
        font-size: 16px;
    }
}

.mask {
    display: none;
}

header {
    position: relative;
    z-index: 200;
}

/* ≤1170：顶栏标题与搜索/菜单按钮同一行，标题靠左 */
@media (max-width: 1170px) {
    .topTitle {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        min-height: 0;
        padding: 14px 18px;
        padding-top: max(12px, env(safe-area-inset-top, 0px));
        text-align: left;
    }

    .topTitle h1 {
        flex: 1;
        min-width: 0;
        text-align: left;
        margin: 0;
    }

    .topTitle h1 span {
        padding-left: 0;
        padding-right: 0;
    }

    .topTitle-actions {
        display: flex;
        position: relative;
        z-index: 20;
        pointer-events: auto;
    }

    #searchfdj {
        display: inline-flex;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 0;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        font-size: 18px;
        line-height: 1;
        color: #fff;
        z-index: 6;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

@media only screen and (max-width:1024px) {
    /*1024px*/
    .nav li {
        font-size: 14px;
    }
    .topTitle {
        height: auto;
        min-height: 52px;
        max-height: none;
        display: flex;
        padding: 12px 16px;
        box-sizing: border-box;
        /* 覆盖内联 background-image，避免浅底图导致白/浅色菜单图标看不见 */
        background-image: none !important;
        background: var(--jh-nav-bg) !important;
    }
    .topTitle::after {
        opacity: 0.5;
    }
    .topTitle h1 {
        padding: 0;
        display: block;
        animation: layerize cubic-bezier(0.4, 0, 0.2, 1) 800ms 100ms forwards;
        opacity: 0;
        text-align: left;
        width: auto;
        flex: 1;
        min-width: 0;
    }
    @keyframes layerize {
        0% {
            opacity: 0;
            transform: translate(0, 6px);
        }
        100% {
            opacity: 1;
            transform: translate(0, 0);
        }
    }
    .box {
        height: 0;
    }
    /* 按钮已移入 .topTitle-actions；抽屉用 transform，避免 calc+var 在部分 WebView 失效导致遮罩挡死点击 */
    .boxc {
        position: static;
        min-height: 0;
        z-index: auto;
    }
    #navbtn {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        cursor: pointer;
        display: none;
        width: 44px;
        height: 44px;
        z-index: 210;
        -webkit-tap-highlight-color: transparent;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex-shrink: 0;
        background: rgba(0, 0, 0, 0.42);
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }
    #navbtn i {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0;
        height: 2px;
        background-color: #fff;
        width: 22px;
        transition: all .5s;
    }
    #navbtn i:before, #navbtn i:after {
        content: '';
        display: block;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        width: 100%;
        transition: all .5s;
    }
    #navbtn i:before {
        top: -9px;
    }
    #navbtn i:after {
        bottom: -9px;
    }
    #navbtn.on i {
        background: none;
    }
    #navbtn.on i:before {
        top: 0;
        transform: rotate(45deg);
    }
    #navbtn.on i:after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    /*960*/
    .nav {
        position: fixed;
        float: none;
        clear: both;
        width: 240px;
        max-width: 78vw;
        z-index: 220;
        left: 0;
        top: 0;
        height: 100%;
        background-color: rgba(28, 28, 30, 0.94);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        color: #fff;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 0;
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    .mask {
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        position: fixed;
        z-index: 215;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .mask.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav.open {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
    /* 侧栏父元素 .boxc 含 backdrop-filter 时 fixed 子元素参照该层；再叠加 .box 高度为 0 → height:100% 算成 0，菜单「打开」但不可见 */
    .boxc {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
    #jh-site-nav.nav {
        width: min(240px, 78vw) !important;
        max-width: 78vw !important;
        height: 100vh !important;
        min-height: 100vh;
        max-height: none;
        z-index: 10050;
        box-sizing: border-box;
    }
    #jh-nav-mask.mask {
        z-index: 10040;
        height: 100vh !important;
        min-height: 100vh;
    }
    @supports (height: 100dvh) {
        #jh-site-nav.nav {
            height: 100dvh !important;
            min-height: 100dvh;
        }
        #jh-nav-mask.mask {
            height: 100dvh !important;
            min-height: 100dvh;
        }
    }
    .nav ul {
        padding: 44px 0 20px;
    }
    .nav li {
        float: none;
        margin: 0;
        display: block;
        line-height: 42px;
        position: relative;
        overflow: visible;
    }
    .nav li > a {
        position: relative;
        z-index: 1;
    }
    .nav li a img {
        max-height: 22px;
        width: auto;
        vertical-align: middle;
        margin-right: 8px;
        display: inline-block;
    }
    .nav li em {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 42px;
        height: 42px;
        z-index: 4;
        touch-action: manipulation;
        cursor: pointer;
    }
    .nav li em:before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: rotate(45deg);
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -6px 0 0 -6px;
        transition: all .3s;
    }
    .nav li em.open:before {
        transform: rotate(-135deg);
        margin-top: 0;
    }
    .nav li a {
        color: #fff;
        padding: 0 42px 0 1.35em;
    }
    .nav li a:hover, .nav li.on>a, .nav li.cur>a {
        background-color: transparent;
    }
    .nav li ul {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.28);
        box-shadow: none;
        display: none;
    }
    .nav li li {
        text-align: left;
        line-height: 40px;
    }
    .nav li li a {
        padding: 0 0 0 2.75rem;
    }

    /* —— 抽屉导航：线性 SVG（由 com.js 写 data-jh-navicon，避免与汉堡同形 + 区分项） —— */
    #jh-site-nav > ul {
        padding: 48px 0 18px;
    }

    #jh-site-nav > ul > li > a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 44px 11px 14px !important;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.01em;
        border-radius: 0 10px 10px 0;
        margin: 1px 8px 1px 0;
        transition: background 0.2s ease, color 0.2s ease;
    }

    #jh-site-nav > ul > li > a::before {
        content: "";
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        opacity: 0.88;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    #jh-site-nav > ul > li > a[data-jh-navicon="home"]::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 10.5L12 4l8 6.5V19a1 1 0 01-1 1h-4v-6H9v6H5a1 1 0 01-1-1v-8.5z' stroke='%23ffffff' stroke-width='1.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    #jh-site-nav > ul > li > a[data-jh-navicon="page"]::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 3h6l2 2h6a1 1 0 011 1v13a1 1 0 01-1 1H7a1 1 0 01-1-1V4a1 1 0 011-1z' stroke='%23ffffff' stroke-width='1.75' stroke-linejoin='round'/%3E%3Cpath d='M8 11h8M8 15h5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    #jh-site-nav > ul > li > a[data-jh-navicon="grid"]::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 4h7v7H4V4zm9 0h7v7h-7V4zM4 13h7v7H4v-7zm9 0h7v7h-7v-7z' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    #jh-site-nav > ul > li > a:hover,
    #jh-site-nav > ul > li > a:active {
        background: rgba(255, 255, 255, 0.07);
    }

    #jh-site-nav > ul > li.on > a,
    #jh-site-nav > ul > li.cur > a {
        background: rgba(48, 209, 88, 0.14);
        color: #b8f5c4 !important;
    }

    @supports selector(:has(img)) {
        #jh-site-nav a:has(> img)::before {
            display: none;
        }
    }

    #jh-site-nav li ul li > a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px 9px 2.5rem !important;
        font-size: 14px;
        font-weight: 400;
        border-radius: 0 10px 10px 0;
        margin: 1px 8px 1px 0;
        transition: background 0.2s ease;
    }

    #jh-site-nav li ul li > a::before {
        content: "";
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        opacity: 0.65;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 7l5 5-5 5' stroke='%23ffffff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    #jh-site-nav li ul li > a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .nav li em:before {
        border: none;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
        transform: rotate(0deg);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav li em.open:before {
        transform: rotate(180deg);
        margin-top: -10px;
    }
    /*960*/
    #navbtn {
        display: flex;
    }
    .nav>ul>li.on>a:after, .nav>ul>li.cur>a:after {
        display: none;
    }
}

.new article {
    border-bottom: none;
    margin: 0 0 16px;
    padding: 18px 18px 20px;
    background: var(--jh-surface);
    border-radius: var(--jh-radius);
    box-shadow: var(--jh-shadow);
    border: 1px solid var(--jh-separator);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.new article:hover {
    box-shadow: var(--jh-shadow-hover);
}

.new article figure {
    width: 200px;
    height: 120px;
    margin-right: 20px;
    overflow: hidden;
    float: left;
    border-radius: var(--jh-radius-sm);
}

.new article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--jh-radius-sm);
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.new article:hover figure img {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari */
    transform: scale(1.1);
    /* 标准语法 */
}

.new article h2 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.new article h2 .icon-ding {
    font-size: 22px;
    color: var(--jh-green);
}

.new article h2 .icon-re {
    font-size: 24px;
    color: #fa0101;
}

.new article h2 a {
    color: var(--jh-text);
}

.new article h2 a:hover {
    color: var(--jh-green-deep);
}

.new article .p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--jh-text-2);
    margin: 8px 0;
    line-height: 1.55;
    font-size: 15px;
}

.new article div {
    line-height: 1.4;
    color: var(--jh-text-3);
    font-size: 13px;
}

.new article div::after {
    clear: both;
    content: ' ';
    width: 1px;
    height: 1px;
}

.breadcrumb {
    background-color: transparent;
    color: var(--jh-text-2);
    margin: 16px 0 8px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--jh-text-2);
}

.breadcrumb a:hover {
    color: var(--jh-green-deep);
}

.footer {
    background-color: #1c1c1e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    padding: 28px 0 20px;
    margin-top: 48px;
    line-height: 1.6;
}

.fnav a {
    display: inline-block;
    padding-right: 20px;
    color: rgba(255, 255, 255, 0.88);
}

.fnav a:hover {
    color: var(--jh-green);
}

.email a {
    border-radius: 50%;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    display: block;
    width: 48px;
    color: #ffffff;
    text-align: center;
    padding-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.email a img {
    max-width: 80%;
    transition: all 0.5s ease 0s;
}

.email a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.email a:hover img {
    max-width: 80%;
}

.fnav span {
    color: rgba(255, 255, 255, 0.45);
    line-height: 60px;
}

.link {
    padding: 0 15px;
}

.link::after {
    content: "　";
    clear: both;
}

.link li {
    float: left;
    margin-left: 20px;
}

.link li a {
    color: #fff;
}

.link li:first-child {
    margin-left: 0;
}

.footer p {
    line-height: 50px;
    padding: 0 15px;
}

.footer p span a {
    color: #fff;
}

.listbanner {
    background: linear-gradient(145deg, #1c1c1e 0%, #2c2c2e 100%);
    padding: 44px 20px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    border-radius: var(--jh-radius);
    margin: 0 0 28px;
    box-shadow: var(--jh-shadow);
}

.listbanner span:first-child {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.listbanner em {
    padding: 4px 10px;
    border-radius: var(--jh-radius-pill);
    background-color: var(--jh-green-muted);
    color: var(--jh-green);
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    position: absolute;
    font-style: normal !important;
}

.listbanner p {
    font-size: 14px;
    line-height: 24px;
    width: 50%;
    margin: 0 auto;
    text-align: left;
}

.articlehead h1 {
    line-height: 1.25;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--jh-text);
}

.meta {
    border-bottom: 1px solid var(--jh-separator);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-bottom: 12px;
    font-size: 14px;
    color: var(--jh-text-2);
}

.meta a {
    color: var(--jh-text-2);
}

.meta a:hover {
    color: var(--jh-green-deep);
}

.meta span {
    padding: 0 5px;
}

.main {
    background: var(--jh-surface);
    border-radius: var(--jh-radius);
    padding: 24px 22px 36px;
    margin-bottom: 12px;
    box-shadow: var(--jh-shadow);
    border: 1px solid var(--jh-separator);
}

.main article {
    line-height: 1.75;
    color: var(--jh-text);
    font-size: 17px;
    word-break: break-word;
    letter-spacing: -0.01em;
}

.main article img {
    max-width: 100%;
    height: auto;
    margin: 12px auto;
    border-radius: var(--jh-radius-sm);
}

.main article a {
    color: #007aff;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.main article a:hover {
    color: #0066d6;
    opacity: 0.92;
}

.related h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 28px 0 12px 4px;
    color: var(--jh-text);
}

.newitem {
    overflow: hidden;
    border-radius: var(--jh-radius-sm);
    display: block;
    background: var(--jh-surface);
    box-shadow: var(--jh-shadow);
    border: 1px solid var(--jh-separator);
    transition: box-shadow 0.25s ease;
}

.newitem:hover {
    box-shadow: var(--jh-shadow-hover);
}

.newitem img {
    object-fit: cover;
    width: 100%;
    height: 150px;
    transition: all 0.5s;
}

.newitem:hover img {
    transform: scale(1.1);
}

.newitem h3 {
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    padding: 12px 12px 14px !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--jh-text);
}

.item figure p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 20px;
}

.inside {
    border-radius: var(--jh-radius);
    margin-bottom: 18px;
    padding: 16px 16px 14px;
    background: var(--jh-surface);
    box-shadow: var(--jh-shadow);
    border: 1px solid var(--jh-separator);
}

.inside header {
    border-bottom: 1px solid var(--jh-separator);
    margin-bottom: 14px;
    padding-bottom: 10px;
}

.inside header span {
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, var(--jh-green) 0%, var(--jh-teal) 100%);
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}

.inside h3 {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.3;
    text-indent: 0.65rem;
    display: inline-block;
    font-weight: 600;
    letter-spacing: -0.02em;
    vertical-align: middle;
}

.inside form {
    border: 1px solid var(--jh-separator);
    border-radius: var(--jh-radius-sm);
    overflow: hidden;
    background: var(--jh-bg);
}

.inside input[type="text"] {
    line-height: 40px;
    height: 40px;
    width: 74%;
    padding-left: 12px;
    clear: left;
    border: 0px;
    outline: 0;
    background: transparent;
    font-family: var(--jh-font);
    font-size: 15px;
}

.inside input[type="submit"] {
    color: #FFFFFF;
    float: right;
    height: 40px;
    width: 25%;
    border: 0px;
    background: var(--jh-green-deep);
    font-weight: 600;
    font-family: var(--jh-font);
    cursor: pointer;
    transition: background 0.2s ease;
}

.inside input[type="submit"]:hover {
    background: var(--jh-green);
}

.inside ul li {
    line-height: 25px;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    height: 25px;
}

.inside ul li a {
    color: var(--jh-teal);
}

.inside ul li a:hover {
    color: var(--jh-green-deep);
}

#divPrevious ul li {
    line-height: 25px;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    height: 160px;
    width: 240px;
    position: relative;
    border-radius: 5px;
}

#divPrevious ul li a img {
    height: 160px;
    width: 240px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#divPrevious ul li a p {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #222222;
    opacity: 0.7;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 40px;
    width: 100%;
    padding-left: 10px;
}

#tags a {
    padding: 6px 12px;
    margin: 4px 6px 4px 0;
    background-color: var(--jh-bg);
    color: var(--jh-text-2);
    display: block;
    float: left;
    line-height: 1.3;
    border-radius: var(--jh-radius-pill);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--jh-separator);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

#tags a:hover {
    background: var(--jh-green-muted);
    border-color: rgba(48, 209, 88, 0.35);
    color: var(--jh-green-deep);
}

#tags .tags0 {
    background-color: rgba(255, 149, 0, 0.12);
    border-color: rgba(255, 149, 0, 0.25);
    color: #c93400;
}

#tags .tags1 {
    background-color: rgba(90, 200, 250, 0.12);
    border-color: rgba(90, 200, 250, 0.3);
    color: #0068a3;
}

#tags .tags2 {
    background-color: rgba(255, 69, 58, 0.1);
    border-color: rgba(255, 69, 58, 0.22);
    color: #c41a0f;
}

#tags .tags3 {
    background-color: rgba(191, 90, 242, 0.1);
    border-color: rgba(191, 90, 242, 0.25);
    color: #7c3aad;
}

#tags .tags4 {
    background-color: rgba(255, 204, 0, 0.14);
    border-color: rgba(255, 204, 0, 0.35);
    color: #946c00;
}

#tags .tags5 {
    background-color: var(--jh-green-muted);
    border-color: rgba(48, 209, 88, 0.35);
    color: var(--jh-green-deep);
}

#tags .tags6 {
    background-color: rgba(255, 45, 85, 0.1);
    border-color: rgba(255, 45, 85, 0.22);
    color: #c41a3d;
}

.share {
    text-align: center;
    margin: 20px 0;
}

.share button {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #ff6b4a 0%, #ff3b30 100%);
    text-align: center;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share button:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.45);
}

.share .txt {
    text-align: center;
    line-height: 30px;
    color: #bdbcbc;
}

.articleTags .tag a {
    background: var(--jh-surface);
    text-align: center;
    min-height: 32px;
    line-height: 32px;
    margin-right: 8px;
    display: inline-block;
    padding: 0 14px;
    box-shadow: var(--jh-shadow);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--jh-teal);
    border-radius: var(--jh-radius-pill);
    border: 1px solid var(--jh-separator);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.articleTags .tag a:hover {
    background: var(--jh-green-muted);
    border-color: rgba(48, 209, 88, 0.35);
    color: var(--jh-green-deep);
}

.page {
    border: 1px solid var(--jh-separator);
    margin-top: 24px;
    border-radius: var(--jh-radius);
    overflow: hidden;
    background: var(--jh-surface);
    box-shadow: var(--jh-shadow);
}

.page .boxa {
    width: 50%;
    padding: 18px 40px;
    float: left;
    min-height: 44px;
    box-shadow: none;
    position: relative;
}

.page .boxa:first-child {
    border-right: 1px solid var(--jh-separator);
}

.page .boxa:last-child {
    text-align: right;
}

.page .boxa:first-child .iconfont {
    position: absolute;
    left: 0;
    top: 20px;
    height: 100%;
    font-size: 40px;
    line-height: 40px;
    transition: all 0.5s;
}

.page .boxa:last-child .iconfont {
    position: absolute;
    right: 0;
    top: 20px;
    height: 100%;
    font-size: 40px;
    line-height: 40px;
    transition: all 0.5s;
}

.page .boxa:first-child:hover .iconfont {
    left: -5px;
}

.page .boxa:last-child:hover .iconfont {
    right: -5px;
}

.page p {
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 8px;
}

.page span {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    font-weight: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page a {
    color: #333;
}

.pagination {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 16px;
    width: 100%;
    line-height: 1;
}

.pagination a {
    display: inline-block;
    margin: 0 4px;
    text-decoration: none;
    vertical-align: middle;
}

.pagination a span.page {
    padding: 10px 16px;
    border-radius: var(--jh-radius-sm);
    border: 1px solid var(--jh-separator);
    background: var(--jh-surface);
    display: inline-block;
    color: var(--jh-text);
    min-width: 2.5rem;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pagination a:hover span.page {
    background: var(--jh-green-muted);
    border-color: rgba(48, 209, 88, 0.35);
    color: var(--jh-green-deep);
}

.pagination .current {
    padding: 10px 16px;
    color: #ffffff;
    background: var(--jh-green-deep);
    border: none;
    border-radius: var(--jh-radius-sm);
    font-weight: 600;
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
    min-width: 2.5rem;
    text-align: center;
}

#tbCalendar {
    width: 100%;
}

#tbCalendar tr th {
    padding: 5px;
    text-align: center;
}

#tbCalendar tr td {
    padding: 5px;
    text-align: center;
}

#tbCalendar tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

#tbCalendar tr td a {
    display: block;
    color: #ffffff;
    background-color: var(--jh-green-deep);
    border-radius: 8px;
    font-weight: 600;
}

#tbCalendar caption {
    text-align: center;
}

#tbCalendar caption a {
    padding: 5px;
}

/** 评论 **/

.comments h4 {
    clear: both;
    padding: 14px 16px;
    border-top: 1px solid var(--jh-separator);
    border-bottom: 1px solid var(--jh-separator);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--jh-text);
    background: var(--jh-bg);
}

.commentshow {
    margin-top: 5px;
    padding: 0 10px;
}

.commentshow .comment {
    border-top: 1px solid #f6f6f6;
}

.comment-body {
    padding: 10px 8px 14px;
}

.comment-body:hover {
    background-color: #f8f8f8;
}

.comments .children li {
    margin-left: 10px;
}

.comments .gravatar {
    width: 50px;
    height: 50px;
    position: relative;
    float: left;
    cursor: -webkit-grab;
    cursor: -moz-grab;
}

.comments .gravatar img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.4s ease-in;
    -moz-transition: 0.4s ease-in;
    -o-transition: 0.4s ease-in;
    -ms-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
}

.comment-body:hover .gravatar img {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}

.comments .floor {
    float: right;
    font-size: 16px;
    color: #aaa;
}

.commenttext {
    margin-left: 60px;
}

.datetime, .reply a, .edit_comment a {
    color: #aaa;
    font-size: 13px;
    padding-left: 5px;
}

.commentid a, .cancel-comment-reply a, #edita a, .reply a:hover, .edit_comment a:hover {
    color: #0088dd;
}

.commentid a:hover {
    text-decoration: underline;
}

.comment_text {
    line-height: 1.3;
    padding: 6px 0;
    min-height: 18px;
}

.comment_text blockquote, .comment_text pre {
    margin-left: 0px;
}

.comment_text img, .checkcomments img, .respondtext img {
    vertical-align: text-bottom;
    max-width: 100%;
}

.comment_text a.iatu {
    color: #4E959E;
}

.comment_text #insert_at {
    position: absolute;
    background-color: #fff;
    width: 80%;
    border: 1px solid #cdcdcd;
    padding: 6px 6px 0;
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 #c2c2c2;
}

.reply-to-read, .login-to-read, .nocomments, .login-to-reply {
    border: 1px #FF6666 dashed;
    margin: 5px;
    padding: 2px;
    text-align: center;
    border-radius: 5px;
}

.login-to-reply {
    color: #333;
    margin-top: 15px;
}

.private {
    background-color: #ffff00;
    border: 1px #FF6666 dashed;
    margin: 5px auto;
    text-align: center;
    border-radius: 5px;
}

.wp-smiley {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
}

.respond {
    clear: both;
    border-top: 1px #ddd solid;
    overflow: hidden;
}

#comment_form {
    padding: 10px 10px 2px;
}

#input-box {
    display: inline-block;
    width: 100%;
}

#real-avatar {
    float: right;
    display: none;
    width: 42px;
    height: 42px;
    margin-top: 8px;
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

#real-avatar img {
    border-radius: 5px;
}

#author-input {
    float: left;
    width: 100%;
    margin-top: 10px;
}

#welcome {
    margin: 6px 2px;
}

#welcome .user-avatar {
    display: none;
    position: relative;
}

#welcome #avatar-img {
    position: absolute;
    left: 55px;
    bottom: 22px;
    z-index: 2;
}

#welcome #avatar-img img {
    border: 1px solid #888;
    background: #fff;
    padding: 3px;
    border-radius: 5px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

#welcome #avatar-arrow {
    position: absolute;
    left: 73px;
    bottom: 16px;
    border: 6px dashed #888;
    border-top-style: solid;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
}

#welcome strong {
    text-decoration: underline;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

#author-info {
    margin: 8px 0 5px;
}

/* 输入框和按钮 */

#author-input .input {
    border: 1px solid #ddd;
    padding: 4px 5px;
    color: #555;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.075);
    border-radius: 3px;
}

#author-input .input:focus {
    border-color: #66afe9;
    box-shadow: inset 0 0 5px rgba(102, 175, 233, 0.6);
    -webkit-transition: 0.15s ease-in;
    -moz-transition: 0.15s ease-in;
    -o-transition: 0.15s ease-in;
    -ms-transition: 0.15s ease-in;
    transition: 0.15s ease-in;
}

#author-input .input:required {
    background: url(/zb_users/theme/JH_Theme_Simple/style/img/red_asterisk.png) no-repeat 98% center;
}

#author-input .input:required:valid {
    background: url(/zb_users/theme/JH_Theme_Simple/style/img/valid.png) no-repeat 98% center;
    border-color: rgba(0, 153, 102, 0.55);
    box-shadow: inset 0 0 5px rgba(51, 204, 102, 0.25);
}

#author-input .input:focus:invalid {
    background: url(/zb_users/theme/JH_Theme_Simple/style/img/invalid.png) no-repeat 98% center;
    border-color: rgba(153, 51, 0, 0.55);
    box-shadow: inset 0 0 5px rgba(255, 0, 51, 0.25);
}

textarea[readonly] {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: none;
}

textarea[readonly]:required {
    background-image: none;
}

input[type="button"][disabled], input[type="submit"][disabled], input[type="reset"][disabled], input[type="file"][disabled] {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none;
}

.textarea {
    width: 100%;
    font-size: 15px;
    font-family: var(--jh-font);
    padding: 12px 14px;
    min-height: 120px;
    resize: vertical;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: var(--jh-radius-sm);
    border: 1px solid var(--jh-separator);
    margin: 20px 0;
    background: var(--jh-surface);
    color: var(--jh-text);
}

.replytext {
    width: 48%;
    margin-right: 1%;
    vertical-align: middle;
    border-radius: 3px !important;
    line-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
}

.inpcontent {
    width: 48%;
    margin-top: 10px;
    float: left;
    margin-right: 1%;
}

.inpVerifyReset {
    width: 79% !important;
    float: left;
    margin-top: 0;
}

.jz-code {
    width: 20%;
    height: 40px;
    display: inline-block;
}

.comment-btns {
    margin-top: 5px;
    text-align: right;
}

.comment-btns #submit {
    margin-right: 8px;
    border-radius: var(--jh-radius-sm);
    border: none;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    background: var(--jh-green-deep);
    color: #fff;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--jh-font);
    opacity: 1;
    transition: background 0.2s ease, transform 0.15s ease;
}

.comment-btns #submit:hover {
    background: var(--jh-green);
}

.comment-btns #submit:active {
    transform: scale(0.98);
}

.comment-btns #reset {
    margin-right: 5px;
    border-radius: var(--jh-radius-sm);
    border: 1px solid var(--jh-separator);
    cursor: pointer;
    height: 44px;
    line-height: 44px;
    background-color: var(--jh-bg);
    color: var(--jh-text-2);
    padding: 0 22px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--jh-font);
    transition: background 0.2s ease;
}

.comment-btns #reset:hover {
    background: rgba(0, 0, 0, 0.04);
}

.comments {
    margin-top: 20px;
}

.divContorPanel {
    text-align: center;
    line-height: 40px;
}

.divContorPanel span:first-child {
    padding: 10px;
    border: none;
}

.divContorPanel span {
    padding: 10px 14px;
    border: 1px solid var(--jh-separator);
    border-radius: var(--jh-radius-sm);
    background: var(--jh-bg);
}

.divContorPanel span a {
    color: var(--jh-teal);
    font-weight: 500;
}

.divContorPanel span a:hover {
    color: var(--jh-green-deep);
}

.nofind {
    min-height: 360px;
    text-align: center;
    line-height: 1.6;
    padding: 48px 20px 64px;
    background: var(--jh-surface);
    border-radius: var(--jh-radius);
    border: 1px solid var(--jh-separator);
    box-shadow: var(--jh-shadow);
    color: var(--jh-text-2);
}

.nofind i {
    font-size: 120px;
    color: var(--jh-text-3);
    opacity: 0.5;
}

.nofind span {
    font-weight: 600;
    color: var(--jh-text);
}

#goToTop {
    position: fixed;
    bottom: 20px;
    right: 10%;
}

#goToTop a {
    width: 48px;
    height: 48px;
    overflow: hidden;
    display: block;
    border: 1px solid var(--jh-separator);
    border-radius: 50%;
    background-color: var(--jh-surface);
    box-shadow: var(--jh-shadow-hover);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#goToTop a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#goToTop a img {
    max-width: 100%;
}

@media (max-width: 767px) {
    .new article figure {
        width: 150px;
        height: 90px;
        margin-right: 20px;
        overflow: hidden;
        float: left;
    }
    .new article h2 {
        font-size: 16px;
        line-height: 20px;
        font-weight: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new article .p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        color: #5b5f64;
        margin: 3px 0;
    }
    .page .boxa {
        width: 100%;
        padding: 35px;
        float: left;
        position: relative;
        min-height: 78px;
        padding-left: 170px;
        box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
    }
    .articlehead h1 {
        line-height: 36px;
        font-size: 18px;
    }
    .fnav span {
        color: #c7c7c7;
        line-height: 30px;
    }
    .footer p {
        line-height: 25px;
    }
    .inpVerifyReset {
        width: 69% !important;
        float: left;
        margin-top: 0;
    }
    .jz-code {
        width: 30%;
        height: 40px;
        display: inline-block;
    }
}

@media (max-width:1170px) {
    .search {
        display: none;
    }
    .searchdropdown {
        min-height: 56px;
        background: rgba(28, 28, 30, 0.92);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        padding: 12px 16px;
        box-sizing: border-box;
        line-height: 40px;
        text-align: center;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 212;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        top: calc(72px + env(safe-area-inset-top, 0px));
    }
    .searchd {
        display: block;
        width: min(320px, 92vw);
        line-height: 36px;
        margin: 0 auto;
        border-radius: var(--jh-radius-pill);
        border: none;
        position: relative;
        height: 36px;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    }
    .searchd button {
        border: none;
        background-color: transparent;
        cursor: pointer;
        position: absolute;
        left: 8px;
        top: 0;
        height: 36px;
        width: 32px;
        outline: 0;
        color: rgba(255, 255, 255, 0.9);
    }
    .searchd input {
        width: calc(100% - 52px);
        border: none;
        height: 22px;
        outline: 0;
        margin: 7px 8px 0 0;
        background: transparent;
        color: #fff;
        font-size: 15px;
        font-family: var(--jh-font);
    }
    .searchd input::placeholder {
        color: rgba(255, 255, 255, 0.45);
    }
    .replytext {
        width: 100%;
        vertical-align: middle;
        border-radius: 3px !important;
        line-height: 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .inpcontent {
        width: 100%;
        margin-top: 10px;
        float: left;
    }
    .articlehead h1 {
        line-height: 40px;
        font-size: 20px;
    }
    .listbanner p {
        font-size: 14px;
        line-height: 24px;
        width: 90%;
        margin: 0 auto;
        text-align: left;
    }
}

@media only screen and (max-width:320px) {
    .new article figure {
        width: 120px;
        height: 72px;
        margin-right: 20px;
        overflow: hidden;
        float: left;
    }
    .new article .p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        color: #5b5f64;
        margin: 5px 0;
    }
    .new article div {
        line-height: 12px;
        color: #c2c3c9;
    }
    #navbtn span {
        display: none;
    }
    .hottag h2 {
        font-size: 14px;
        text-align: center;
        line-height: 60px;
    }
    .articlehead h1 {
        line-height: 32px;
        font-size: 16px;
    }
    .inpVerifyReset {
        width: 49% !important;
        float: left;
        margin-top: 0;
    }
    .jz-code {
        width: 49%;
        height: 40px;
        display: inline-block;
    }
    .comment-btns #submit {
        width: 100%;
    }
    .comment-btns #reset {
        width: 100%;
        margin-top: 10px;
    }
}

/* 平板窄屏：下拉搜索条位置（顶栏为单行 + 下方导航条） */
@media (min-width: 1025px) and (max-width: 1170px) {
    .boxc .box {
        position: relative;
    }
    .searchdropdown {
        top: calc(118px + env(safe-area-inset-top, 0px));
    }
}



@font-face {
  font-family: 'iconfont';
  src: url('iconfont.eot');
  src: url('iconfont.eot?#iefix') format('embedded-opentype'),
      url('iconfont.woff2') format('woff2'),
      url('iconfont.woff') format('woff'),
      url('iconfont.ttf') format('truetype'),
      url('iconfont.svg#iconfont') format('svg');
}
.iconfont {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bottommeun{width:100%;overflow:hidden;position:fixed;bottom:0;border:0;font-size:14px;color:#fff;z-index: 9999;}
.bottommeun ul{line-height:40px;width:100%;}
.bottommeun ul li{float:left;border-right:1px solid #ffffff45;text-align: center;box-sizing: border-box;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;line-height:40px;}
.bottommeun .bmnum3 li{width:33.33%;}
.bottommeun .bmnum3 li:nth-child(3){border-right:0;}
.bottommeun .bmnum2 li{width:50%;}
.bottommeun .bmnum2 li:nth-child(2){border-right:0;}
.bottommeun .bmnum1 li{border-right:0;width:100%;}
.bottommeun ul li a{font-size: 14px;color:#fff;display:block;text-decoration: none;cursor:pointer; }
.bottommeun ul li a i{font-size: 14px;color:#fff;margin-right:5px;}
.bottommeun40 {overflow: hidden;height:40px;}

/**微信弹窗客服**/
.popup{position:fixed;z-index:10000;width:400px;height:auto;background:#fff; margin-left:-10px;box-shadow:0 2px 5px #bbb; box-sizing: border-box;display: none;}
.popup .popup_content{overflow:auto;max-height:500px;text-align: center;position: relative;padding:30px 15px 0 15px;color:#333333;}
.popup .popup_content img{width:200px;height:200px;}
.popup .popup_content p{line-height:150%;font-size:14px;margin-bottom:15px;}
.popup .popup_content p span#copy_content{color:#fff;background:#e60000;padding:0 5px;margin:0 5px;  }
.popup .popup_content a{color:#e60000;padding:0 5px;}
.popup span.p_off{float:right;line-height:40px;width:40px;text-align:center;font-size:12px;cursor:pointer;color:#999999;position: absolute;top:0;right:0;}

@media screen and (max-width:480px){
.popup{width:300px;}
.popup .popup_content img{width:160px;height:160px;}
}
 .bottommeun{
    display: none;
  }
@media (max-width: 768px) {
  .bottommeun{
    display: block;
  }
}