:root {
    --marRadius: 10px;
    --conBgcolor: #ffffff;
    --bodyBground: #F7F9FA;
    --fontColor: #4a5568; 
    --aColor: #2d3748;
    --aHoverColor: #3498db;
    --lightColor: #fff; 

    --inputBgColor: #ffffff;
    --inputBorderColor: #e2e8f0;
    --inputTextColor: #2d3748;
    --buttonBgColor: #59b8f8;
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #59b8f8;
    --selectBgColor: #ffffff;
    --selectBorderColor: #e2e8f0;
    --selectTextColor: #2d3748;
    --dividerColor: #e2e8f0;
    --dropdownDividerColor: rgba(15, 23, 42, 0.08);
    --borderColor: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
    --conBgcolor: #1a202c;
    --bodyBground: #171923;
    --fontColor: #e2e8f0;
    --aColor: #cbd5e0;
    --aHoverColor: #63b3ed;
    --lightColor: #a0aec0;

    --inputBgColor: #2d3748;
    --inputBorderColor: #4a5568;
    --inputTextColor: #e2e8f0;
    --buttonBgColor: #4fb3f7;
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #4fb3f7;
    --selectBgColor: #2d3748;
    --selectBorderColor: #4a5568;
    --selectTextColor: #e2e8f0;
    --dividerColor: #2d3748;
    --dropdownDividerColor: rgba(148, 163, 184, 0.28);
    --borderColor: rgba(255, 255, 255, 0.1);
}
*{
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    color: var(--fontColor);
    background: url(../images/header_bg.jpg) no-repeat center 0;
    font-family: helvetica neue, Helvetica, Arial, sans-serif;
}


h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 400;
}

p {
    line-height: 2;
    margin: 30px 0;
}

a {
    color: var(--aColor);
    transition: all 0.2s;
    text-decoration: none;
}

a:focus, a:hover {
    color: var(--aHoverColor);
    text-decoration: none;
}

.fl{
    float: left;
}

.fr{
    float: right;
}
.clearfix{
    clear:both;
}
input, textarea {
    background-color: var(--inputBgColor);
    border: 1px solid var(--inputBorderColor);
    color: var(--inputTextColor);
    padding: 12px 16px;
    border-radius: var(--marRadius);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--buttonBgColor);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

input::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

button {
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    border: 1px solid var(--buttonBorderColor);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

button:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.25);
}


select {
    background-color: var(--selectBgColor);
    border: 1px solid var(--selectBorderColor);
    color: var(--selectTextColor);
    padding: 12px 16px;
    border-radius: var(--marRadius);
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus {
    border-color: var(--buttonBgColor);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}


hr {
    border: none;
    border-top: 1px solid var(--dividerColor);
    margin: 20px 0;
}

ul,li{
    list-style: none;
}
.small {
    font-size: 12px;
}

.m-r-3 {
    margin-right: 3px;
}

.m-r-5 {
    margin-right: 5px;
}

.m-r-10 {
    margin-right: 10px;
}


* {
    box-sizing: border-box
}

img {
    max-width: 100%
}

hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

blockquote {
    font-style: italic;
    color: #868e96
}

input, textarea {
    font-family: inherit;
    color: #848797;
    outline: none
}

input[type="submit"] {
    cursor: pointer
}

textarea {
    padding: 1rem 0.75rem
}

footer {
    margin-top: 20px;
    padding-bottom: 40px;
    background: #1d79f4;
}


.unstyle-li {
    padding-left: 0px;
    list-style: none;
    margin-block: 8px;
    font-size: medium
}


.card-padding {
    padding: 1.25rem
}


.row {
    display: flex;
    flex-wrap: wrap;
}


@media (min-width: 768px) {
    .column-big {
        padding-right: 10px;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .column-small {
        font-size: medium;
        padding-left: 20px;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .info-row {
        padding: 1rem !important
    }

    .log-info {
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .log-count {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        text-align: right
    }
}


@media (max-width: 767px) {

    .column-big {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%
    }


    .column-small {
        padding-right: 8px;
        padding-left: 8px;
        width: 100%
    }


    .log-info {
        flex: 0 0 60%;
        max-width: 60%
    }

    .log-count {
        white-space: nowrap;
        flex: 0 0 40%;
        max-width: 40%;
        text-align: right
    }
}

.container {
    width: 100%;
    align-items: center;
    margin-right: auto;
    margin-left: auto
}


@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1201px) {
    .container {
        max-width: 1200px
    }
}


@media (min-width: 768px) {
    .container {
        margin-right: auto;
        margin-left: auto
    }
}


@media (min-width: 1px) {
    .rea-width {
        width: calc(100% - 18px)
    }
}

@media (min-width: 576px) {
    .rea-width {
        width: 524px
    }
}

@media (min-width: 768px) {
    .rea-width {
        width: 450px
    }
}

@media (min-width: 992px) {
    .rea-width {
        width: 609px
    }
}

@media (min-width: 1201px) {
    .rea-width {
        width: 730px
    }
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.blog-header {
    flex: 0 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    background-color: var(--conBgcolor);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02)
}

.blog-container {
    flex: 1 0 auto;
    /*margin-top: calc(71.63px + 2.3rem);*/
}

.blog-footer {
    flex: 0 0 auto;
}

.blog-header-c {
    height: 71.63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.blog-header-title {
    font-size: 26px;
    z-index: 1
}

.blog-header-subtitle {
    font-size: small;
    letter-spacing: 0.2rem;
    position: absolute;
    padding-top: 48px;
    z-index: 0
}


.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease
}

.nav-link:focus-visible {
    outline: 2px solid var(--buttonBgColor);
    outline-offset: 2px;
}

.nav-link.has-down {
    gap: 0.38rem;
}


.nav-link.has-down::after {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    opacity: 0.72;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.list-menu:hover > .nav-link.has-down::after,
.list-menu:focus-within > .nav-link.has-down::after {
    transform: translateY(1px) rotate(225deg);
    opacity: 1;
}

.list-menu {
    list-style: none
}

.user-menu {
    position: relative;
}

.user-menu::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 10px;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
}

.user-menu-label {
    display: none;
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
}

.user-menu-trigger:hover {
    background: rgba(52, 152, 219, 0.08);
}

.header-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--borderColor);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.user-menu:hover .header-avatar,
.user-menu:focus-within .header-avatar {
    border-color: var(--buttonBgColor);
    transform: scale(1.03);
}

.user-dropdown-menus {
    min-width: 120px;
    margin-left: 0;
    left: auto;
    right: 0;
    padding: 6px;
}

.nav-link-login {
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    border: 1px solid var(--buttonBorderColor);
    min-height: 32px;
    padding: 0.22rem 0.62rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(89, 184, 248, 0.14);
}

.nav-link-login:hover {
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    filter: brightness(0.95);
}

.nav-link-login:focus-visible {
    outline-color: var(--buttonTextColor);
    box-shadow: 0 0 0 3px rgba(89, 184, 248, 0.22);
}


@media (min-width: 768px) {
    .nav-list {
        display: flex;
        align-items: center;
        gap: 2px;
        padding-block: 4.5px;
        text-align: center
    }

    .nav-list > .list-menu {
        position: relative;
    }

    .list-menu .list-menu {
        border-bottom: 1px solid var(--dropdownDividerColor);
    }

    .list-menu:last-child {
        border-bottom: unset
    }

    .blog-header-toggle {
        display: none
    }
}


@media (max-width: 767px) {
    .header {
        padding: 0.6rem 1rem;
        margin-bottom: 30px !important;
        height: 80px
    }

    .blog-header-title {
        position: absolute;
        left: 17px;
        top: 18px
    }

    .blog-header-subtitle {
        padding-top: 60px;
        left: 17px;
        top: -9px
    }

    .blog-header-toggle {
        cursor: pointer;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .blogtoggle-icon {
        display: inline-block;
        width: 28px;
        height: 19px;
        margin-top: -3px;
        vertical-align: middle;
    }

    .blog-header-nav {
        display: none;
        z-index: 1100;
        position: fixed;
        width: 280px;
        height: 100vh;
        background: var(--conBgcolor);
        top: 0;
        left: -280px;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        padding-top: 20px;
        border-right: 1px solid var(--borderColor);
    }

    [data-theme="dark"] .blog-header-nav {
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
    }

    .blog-header-nav.show {
        display: block;
        left: 0;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1010;
        backdrop-filter: blur(2px);
    }

    [data-theme="dark"] .nav-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .nav-overlay.show {
        display: block;
    }

    .nav-list {
        margin-top: 0px;
        margin-bottom: 5px;
        padding-left: 15px;
    }

    .list-menu {
        line-height: 32px;
        width: 100%;
    }

    .list-menu .nav-link {
        display: block;
        min-height: 44px;
        padding: 10px 15px;
        color: var(--fontColor);
        text-decoration: none;
        border-radius: 8px;
        line-height: 1.5;
        transition: background-color 0.2s;
    }

    .list-menu .nav-link.has-down {
        display: flex;
        justify-content: space-between;
    }

    .list-menu .nav-link:hover {
        background-color: var(--bodyBground);
    }

[data-theme="dark"] .list-menu .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .user-menu-trigger {
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        padding: 10px 15px;
    }

    .header-avatar {
        display: none;
    }

    .user-menu-label {
        display: inline-flex;
        align-items: center;
        color: var(--fontColor);
    }

    .user-dropdown-menus {
        right: auto;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-link-login {
        justify-content: center;
        min-height: 30px;
        padding: 0.2rem 0.56rem;
    }

    .user-dropdown-menus .list-menu:first-child {
        display: none;
    }
}

.dropdown-menus {
    background: var(--conBgcolor);
    opacity: 0;
    z-index: 30;
    list-style: none;
    margin-left: -26px;
    position: absolute;
    padding-left: 0;
    border: 1px solid var(--borderColor);
    border-radius: 10px;
    top: 100%;
    margin-bottom: 0;
    pointer-events: none;
    transform: translateY(6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-theme="dark"] .dropdown-menus {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.dropdown-menus .list-menu {
    padding: 0
}

.dropdown-menus .list-menu .nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
}

@media all and (max-width: 767px) {
    .nav-list {
        text-align: left !important;
        padding-left: 15px;
        padding-right: 15px;
        letter-spacing: normal;
        line-height: 1.5;
    }

    .dropdown-menus {
        opacity: 1;
        margin-left: 0;
        position: unset;
        padding-left: 0;
        border: none;
        width: 100%;
        top: 0;
        margin-top: 2px;
        margin-bottom: 8px;
        background: transparent;
        box-shadow: none;
        transform: none;
        pointer-events: auto;
    }

    .dropdown-menus .list-menu .nav-link {
        min-height: 40px;
        padding: 8px 15px;
        font-size: 0.92em;
        line-height: 1.5;
        color: var(--fontColor-sec);
        position: relative;
        opacity: 0.85;
    }

    .dropdown-menus .list-menu .nav-link::before {
        display: none;
    }

    .dropdown-menus .list-menu .nav-link:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.03);
    }
}


.list-menu:hover .dropdown-menus {
    opacity: 0.95;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease
}

.list-menu:focus-within .dropdown-menus {
    opacity: 0.95;
    pointer-events: auto;
    transform: translateY(0);
}


.info-row {
    padding: 1rem;
    padding-bottom: 8px !important
}


.bottom-5 {
    margin-bottom: 1.5rem !important
}


.top-5, .mtop-5 {
    margin-top: 3rem !important
}

.modal-dialog {
    display: none;
    background-color: var(--conBgcolor);
    border-radius: var(--marRadius);
    border: 1px solid var(--borderColor);
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 90%;
    padding: 20px;
}

.btn {
    cursor: pointer;
    color: var(--buttonTextColor);
    background-color: var(--buttonBgColor);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    margin: 10px 0;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

.btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

.modal-header {
    text-align: center;
    border-bottom: 1px solid var(--dividerColor);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.modal-content img {
    display: block;
    margin: 0 auto 20px;
    height: 40px;
}

.modal-content input[name="imgcode"] {
    padding: 10px;
    margin: 10px 0;
    width: calc(100% - 20px);
    border: 1px solid var(--borderColor);
    border-radius: var(--marRadius);
    box-sizing: border-box;
}

.modal-content .modal-footer {
    text-align: center;
    padding-top: 10px;
}


.lock-screen {
    display: none;
    z-index: 99;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}


#captcha {
    cursor: pointer;
    display: block;
    margin: 0 auto;
}


.scroll-fix {
    overflow: hidden
}


.shadow-theme {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-radius: var(--marRadius);
    background-color: var(--conBgcolor);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}


.cal_loading {
    margin-bottom: 243px;
}

#calendar {
    color: #212529;
}

.calendartop {
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.calendartop a {
    font-weight: 100 !important;
}

.calendar {
    margin-bottom: -10px;
    width: 100%;
}

.calendar td {
    text-align: center;
    padding: 1px 10px;
    line-height: 1.6;
}

.calendar td a:link {
    color: #000;
    font-weight: bolder;
    text-decoration: underline;
}

.calendar td a:hover {
    color: #886353;
    text-decoration: none;
}

.calendar tr {
    height: 40px;
}

.day {
    color: #2b6cb0;
    background: #ebf8ff;
    border-radius: var(--marRadius);
}

.sun {
    color: #333;
}

.week {
    color: #333;
}


[data-theme="dark"] #calendar {
    color: #cfcfcf;
}

[data-theme="dark"] .calendartop {
    color: #cfcfcf;
}

[data-theme="dark"] .calendar td {
    color: #cfcfcf;
}

[data-theme="dark"] .calendar td a:link {
    color: #cfcfcf;
}

[data-theme="dark"] .calendar td a:hover {
    color: var(--aHoverColor);
}

[data-theme="dark"] .day {
    color: #e2e8f0;
    background: #2d3748;
    border-radius: var(--marRadius);
}

[data-theme="dark"] .sun {
    color: #a8a8a8;
}

[data-theme="dark"] .week {
    color: #a8a8a8;
}

[data-theme="dark"] .loglist-sort {
    background-color: rgba(66, 153, 225, 0.15);
    color: #63b3ed;
}

[data-theme="dark"] .loglist-sort a {
    color: #63b3ed;
}

[data-theme="dark"] .log-topflg {
    background-color: rgba(252, 129, 129, 0.15);
    color: #fc8181;
}



.side-bar {
    font-size: medium
}

.side-bar .widget {
    margin-bottom: 24px;
    padding: 20px;
    overflow: hidden;
}


.side-bar h3 {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px
}

.side-bar .widget li {
    position: relative;
    color: #6f6f6f;
    line-height: 2
}

.pagination {
    font-size: 14px;
    padding: 10px;
    text-align: center
}

.pagination span {
    padding: 5.5px 6px 3px 6px;
    margin: 0 5px;
    border-radius: 8px;
    line-height: 3;
    color: #858796
}

.pagination a {
    color: var(--buttonTextColor);
    padding: 5.5px 10px 6px 10px;
    background: var(--buttonBgColor);
    margin: 0 5px;
    line-height: 3;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

.pagination a:hover {
    text-decoration: none;
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

#pagenavi {
    text-align: center;
    font-size: 14px
}

#pagenavi span {
    padding: 4.5px 9px 4px 9px;
    margin: 0 5px;
    line-height: 3;
    border-radius: var(--marRadius);
    color: #000
}

#pagenavi a {
    color: #c0bcbc;
    padding: 4.5px 9px 4px 9px;
    font-family: serif, monospace;
    margin: 0 5px;
    line-height: 3;
    border-radius: var(--marRadius)
}


@media (min-width: 768px) {
    .commentform {
        min-height: 210px
    }
}

#comments {
    margin-top: 80px;
    margin-bottom: 32px;
}

.comment-name {
    border-radius: 10px 0 0 10px !important;
}

.comment-mail {
    border-radius: 0 !important;
}

.form-controls {
    display: block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--borderColor);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-in-out
}

.comment-info {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 0;
}

.com_control {
    display: block;
    border-radius: 0;
    border: 1px var(--borderColor) solid;
    border-right: 0;
    height: 50px;
    flex: 1;
    min-width: 120px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-name {
    border-radius: 10px 0 0 10px !important;
}

.comment-mail {
    border-radius: 0 !important;
}

.captcha-container {
    flex: 1;
    min-width: 150px;
    border-radius: 0 10px 10px 0;
    border: 1px solid var(--borderColor);
    border-left: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 50px;
    background-color: var(--inputBgColor);
}

.comment-post {
    clear: both;
    padding: 12px 0 0;
    border: none;
    border-radius: 0;
    background: var(--conBgcolor);
}

#comments .commentform {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-container img {
    height: 34px;
    cursor: pointer;
    margin-right: 8px;
    border-radius: 4px;
}

.captcha-container input[name="imgcode"] {
    border: none;
    background: transparent;
    padding: 5px;
    height: 100%;
    width: 100%;
    outline: none;
}


.com_control::placeholder {
    color: rgba(116, 116, 116, 0.336);
    transition: color 0.2s;
}

.com_control:focus::placeholder {
    color: transparent;
}

.captcha-container input[name="imgcode"]::placeholder {
    color: rgba(116, 116, 116, 0.336);
    transition: color 0.2s;
}

.captcha-container input[name="imgcode"]:focus::placeholder {
    color: transparent;
}

@media (min-width: 578px) {
    .com_control::placeholder,
    .captcha-container input[name="imgcode"]::placeholder {
        text-align: center;
    }
}

.comment-header {
    margin: 26px 0 14px;
    height: auto;
    font-size: 18px;
    line-height: 1.4;
}

.comment-post p {
    margin: 5px 0px
}

.comment-post small {
    font-size: 12px;
    color: #999
}

.comment-post input {
    padding: 7px 16px;
    font-size: small;
    color: #848797;
    width: auto;
}

.comment-post #comment {
    width: 100%;
    border: 1px var(--borderColor) solid;
    font-size: 15px;
    line-height: 1.75;
    border-radius: 12px;
    min-height: 168px;
    height: auto;
    resize: vertical;
    padding: 14px 16px;
    background: color-mix(in srgb, var(--bodyBground) 42%, var(--conBgcolor));
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.comment-post #comment:focus {
    border-color: rgba(89, 184, 248, 0.65);
    box-shadow: 0 0 0 3px rgba(89, 184, 248, 0.16);
    background: var(--conBgcolor);
}

#comments .comment-info {
    margin-top: 0;
    gap: 10px;
    overflow: visible;
}

.comment-post #comment_submit {
    width: auto;
    min-width: 112px;
    height: 42px;
    text-align: center;
    font-size: 14px;
    margin: 0;
    float: none;
    border-radius: 999px;
    border: 1px solid var(--buttonBgColor);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.25);
}

.comment-post #cancel-reply {
    display: none;
    width: auto;
    min-width: 88px;
    height: 42px;
    text-align: center;
    font-size: 14px;
    margin: 0;
    float: none;
    border-radius: 999px;
    border: 1px solid var(--borderColor);
    padding: 0 16px;
    background-color: transparent;
    color: var(--fontColor);
    transition: all 0.3s;
}

.comment-post #cancel-reply:hover {
    cursor: pointer;
    filter: brightness(0.95);
}

.comment-post #comment_submit:hover {
    cursor: pointer;
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.35);
}

.com_submit_p {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

#comments .com_control {
    height: 48px;
    min-width: 180px;
    border-right: 1px solid var(--borderColor);
    border-radius: 12px !important;
    background: var(--conBgcolor);
}

#comments .com_control:focus {
    border-color: rgba(89, 184, 248, 0.65);
    box-shadow: 0 0 0 3px rgba(89, 184, 248, 0.13);
}

#comments .com_control::placeholder,
#comments .captcha-container input[name="imgcode"]::placeholder {
    color: color-mix(in srgb, var(--lightColor) 66%, #ffffff 34%);
}

#comments .com_control:focus::placeholder,
#comments .captcha-container input[name="imgcode"]:focus::placeholder {
    color: color-mix(in srgb, var(--lightColor) 46%, #ffffff 54%);
}

#comments .captcha-container {
    min-width: 210px;
    height: 48px;
    border: 1px solid var(--borderColor);
    border-left: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 0 10px;
}

#comments .captcha-container img {
    width: 108px;
    height: 34px;
    object-fit: cover;
}

[data-theme="dark"] #comments .comment-post #comment {
    background: color-mix(in srgb, var(--inputBgColor) 88%, #000000 12%);
}

[data-theme="dark"] #comments .comment-post #comment:focus {
    background: var(--inputBgColor);
}

.comment-post .input {
    width: 100px
}

.comment {
    margin: 14px 0;
    padding: 2px 0;
    font-size: medium;
    overflow: visible;
    color: #333
}

.comment span {
    color: var(--fontColor);
}

.comment .comment-time {
    color: #999999;
    display: inline-block;
    font-size: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.comment .avatar {
    float: left;
    margin: 6px 8px 0 0;
}

.comment .comment-infos {
    background: var(--bodyBground);
    padding: 14px 14px 12px;
    border-radius: 12px;
    margin-top: 0;
    margin-left: 56px;
    border: 1px solid rgba(89, 184, 248, 0.14);
    color: var(--fontColor);
    position: relative;
    line-height: 1.7;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment:hover > .comment-infos {
    border-color: rgba(89, 184, 248, 0.24);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .comment .comment-infos {
    border-color: rgba(148, 163, 184, 0.26);
}

[data-theme="dark"] .comment:hover > .comment-infos {
    border-color: rgba(99, 179, 237, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.comment .comment-infos-unGravatar {
    padding: 5px
}

.com-bottom {
    margin-bottom: 80px;
}

.arrow {
    position: absolute;
    top: 14px;
    margin-left: -33px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent var(--bodyBground) transparent transparent
}

.comment .comment-content {
    margin: 8px 0 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    color: var(--fontColor);
}

.comment .comment-reply {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.comment .com-reply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    background: transparent;
    border: 1px solid var(--borderColor);
    border-radius: 999px;
    box-shadow: none;
    appearance: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: var(--lightColor);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.comment .com-reply:hover {
    color: var(--buttonBgColor);
    border-color: rgba(89, 184, 248, 0.4);
    background: rgba(89, 184, 248, 0.1);
}

.comment .com-reply:focus-visible {
    outline: 2px solid rgba(89, 184, 248, 0.45);
    outline-offset: 2px;
}

[data-theme="dark"] .comment .com-reply {
    border-color: rgba(148, 163, 184, 0.34);
}

.comment-children {
    margin: 14px 0 4px 28px;
    clear: both;
    border: none;
    padding: 0;
}

.comment .comment-post {
    width: 100%;
    margin: 12px 0 0;
    padding: 12px 0 0;
    background: transparent;
    border-top: 1px dashed var(--borderColor);
    border-radius: 0;
    clear: both;
}

.comment .comment-post .comment-info {
    margin-top: 8px;
    gap: 10px;
}

.comment .comment-post .com_control,
.comment .comment-post .captcha-container {
    border: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
    border-radius: 10px !important;
}

.comment .comment-post .captcha-container {
    border-left: 1px solid var(--borderColor);
}

.comment-info {
    overflow: hidden;
    margin-top: -8px;
}

.unstyle-li .comment-info {
    margin-top: 4px
}

.cancel-reply {
    font-size: large
}

.avatar img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    margin-top: 0;
    margin-right: 4px;
    border-radius: 50%;
    border: 1px solid var(--borderColor);
}

.unstyle-li input[type="submit"] {
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
    float: left;
    margin-left: -1px;
    height: 40px;
    width: 25%;
    border: 0;
    border-radius: 0 20px 20px 0;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.unstyle-li input[type="submit"]:hover {
    filter: brightness(0.9);
}


.card-title {
    margin-bottom: 30px
}


.log-topflg {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 26px;
    padding: 3px 10px;
    bottom: 3.5px;
    font-size: 13px;
    margin-left: 8px;
    cursor: default;
    background-color: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border-radius: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.log-con {
    background-color: var(--conBgcolor);
    border-radius: var(--marRadius);
    padding: 0 20px;
    font-size: 16px;
    height: fit-content;
    letter-spacing: 0.5px
}

.log-con p {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 36px;
    color: #333;
    text-align: left;
    text-indent: 0em;
}

.log-con .date {
    margin-bottom: 0px
}

.log-con .markdown {
    margin-inline: 5px;
}

.loglist-content h1 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h2 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h3 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h4 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content h5 {
    font-size: medium;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin: 0
}

.loglist-content p {
    font-size: medium;
    font-family: inherit;
    margin: 0
}

.no-margin-bottom {
    font-size: medium;
    padding-left: 10px
}

.loglist-body {
    margin-bottom: -22px;
    font-size: small
}

.loglist-body p {
    margin: 0 -6px 0 0
}

.loglist-title {
    font-size: x-large
}

.loglist-tag {
    margin-top: 30px;
    line-height: 2;
    color: #000000
}

.loglist-tag a {
    color: #929292
}

.loglist-cover {
    width: 100%;
    height: 205px;
    border-radius: var(--marRadius) var(--marRadius) 0 0;
    overflow: hidden;
    position: relative;
}

.loglist-cover img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
    display: block;
}

.loglist-cover img:hover {
    transform: scale(1.05);
}

.loglist-sort {
    user-select: none;
    display: inline-block;
    position: relative;
    height: 40px;
    width: 126px;
    text-align: center;
    font-size: 18px;
    cursor: default;
    background-color: #015bd3;
    color: #fff;
    line-height: 40px;
    font-weight: 500;
}

.loglist-sort a {
    color: #fff;
}

@media (max-width: 415px) {
    .loglist-cover {
        height: 160px;
    }
}

@media (max-width: 375px) {
    .loglist-cover {
        height: 140px;
    }
}

.loglist-content {
    font-size: medium;
    margin-left: 1px;
    margin-bottom: 5px;
    margin-right: 3px;
    margin-top: 30px
}

.log-info {
    font-size: small;
    letter-spacing: 0.5px;
}

.log-info a {
    color: var(--lightColor)
}

.log-count {
    font-size: small
}

.log-count a {
    color: var(--fontColor)
}

.bloggerinfo {
    margin-bottom: -10px;
    text-align: center
}

.bloggerinfo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 0px solid var(--borderColor);
    border-radius: 50%
}

.comm-lates-name {
    font-weight: bolder
}

.bloginfo-name {
    font-size: x-large;
    margin-top: 15px;
    margin-bottom: 0px
}

.bloginfo-descript {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #929292
}

.search {
    width: 75%;
    box-shadow: none;
    float: left;
    font-size: 1rem;
    padding: 8px 16px;
    height: 40px;
    line-height: 1.5;
    color: var(--inputTextColor);
    border: 1px solid var(--inputBorderColor);
    margin-block: 0;
    border-radius: 20px 0 0 20px;
    outline: none;
    transition: all 0.3s;
}

.search:focus {
    border-color: var(--buttonBgColor);
    z-index: 2;
    position: relative;
}


.tags {
    padding: 1px 10px;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
}

.tag-container {
    margin-block: 0;
    text-overflow: ellipsis
}

.tags-side {
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap
}


.blog-lates, .blog-hot {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}


.back-top {
    font-size: 20px;
    text-align: center;
    height: 34px;
    width: 34px;
    margin-left: -90px;
    position: absolute;
    top: 151px;
    border: 2px solid var(--borderColor);
    color: var(--fontColor);
    border-radius: 50%;
    cursor: pointer
}

.back-top:hover {
    border: 2px solid var(--borderColor);
    color: #bbbbbb
}


.list-line {
    border: 0;
    margin-top: 12px;
    margin-bottom: -7px;
    border-top: 1px solid rgb(245, 245, 246)
}

.log-classify-f {
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400
}

.log-classify-c {
    margin-left: -27px;
    list-style: none;
    font-size: medium
}


.logcom-latest-time {
    position: absolute;
    right: 10px;
    color: var(--lightColor);
    margin-left: 10px;
    font-size: small
}

.comment-info_img {
    width: 27px;
    height: 27px;
    object-fit: cover;
    margin-bottom: 4px;
    margin-right: 3px;
    border-radius: 50%;
    vertical-align: middle;
    border-style: none
}


.side-bar .side-comment-list,
.side-bar .side-twitter-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side-bar .side-comment-list .comment-info,
.side-bar .side-twitter-list .side-twitter-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 4px;
    align-items: center;
    margin-top: 0;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--borderColor);
    border-radius: 0;
    background: transparent;
    line-height: 1.5;
    transition: color 0.2s, border-color 0.2s;
}

.side-bar .side-comment-list .comment-info:hover,
.side-bar .side-twitter-list .side-twitter-item:hover {
    border-color: rgba(89, 184, 248, 0.28);
}

[data-theme="dark"] .side-bar .side-comment-list .comment-info:hover,
[data-theme="dark"] .side-bar .side-twitter-list .side-twitter-item:hover {
    border-color: rgba(99, 179, 237, 0.45);
}

.side-bar .side-comment-list li:last-child,
.side-bar .side-twitter-list li:last-child {
    border-bottom: 0;
}

.side-bar .side-comment-list .comment-info_img {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 28px;
    height: 28px;
    margin-right: 0;
    margin-bottom: 0;
    border: 0;
}

.side-bar .side-comment-list .comm-lates-name,
.side-bar .side-twitter-list .comm-lates-name {
    grid-column: 2;
    grid-row: 1;
    display: block;
    max-width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: var(--fontColor);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    min-width: 0;
}

.side-bar .side-comment-list .logcom-latest-time,
.side-bar .side-twitter-list .logcom-latest-time {
    grid-column: 3;
    grid-row: 1;
    position: static;
    justify-self: end;
    margin-left: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.35;
    white-space: nowrap;
    color: var(--lightColor);
}

[data-theme="dark"] .side-bar .side-comment-list .logcom-latest-time,
[data-theme="dark"] .side-bar .side-twitter-list .logcom-latest-time {
    color: var(--lightColor);
}

.side-bar .side-comment-list .comment-info a {
    grid-column: 2 / 4;
    grid-row: 2;
    display: -webkit-box;
    margin-top: 0;
    padding-left: 0;
    color: var(--fontColor);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-bar .side-twitter-list .side-twitter-item {
    color: var(--fontColor);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-bar .side-twitter-list .side-twitter-item .comm-lates-name {
    max-width: 100%;
}

.side-bar .side-twitter-list .side-twitter-content {
    grid-column: 2 / 4;
    grid-row: 2;
    display: -webkit-box;
    margin-top: 0;
    color: var(--fontColor);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-bar .side-twitter-list .side-twitter-content p {
    margin: 0;
}

.side-bar .side-twitter-list .side-twitter-content br {
    line-height: 1;
}

.side-bar .side-comment-list hr,
.side-bar .side-twitter-list hr {
    display: none;
}

.side-bar .side-comment-list br,
.side-bar .side-twitter-list br {
    display: none;
}

@media (max-width: 575px) {
    .side-bar .side-comment-list .logcom-latest-time,
    .side-bar .side-twitter-list .logcom-latest-time {
        position: static;
        display: inline-flex;
        margin-left: 8px;
        vertical-align: middle;
    }
}


.date {
    margin: 0;
    text-align: center;
    color: #7f7f7f
}

.date a {
    color: #7f7f7f
}

.log-con .date {
    font-size: small
}

.log-title {
    line-height: 62px;
    margin: 0;
    font-size: 1.75rem;
    /* line-height: 1.25; */
    overflow-wrap: anywhere;
    color: #015bd3;
    text-align: center;
}

.log-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px
}

.log-meta {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.log-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.log-meta a {
    color: inherit
}

.log-meta .iconfont {
    font-size: 14px
}

@media (max-width: 480px) {
    .log-title {
        font-size: 1.55rem
    }

    .log-meta-item {
        white-space: normal
    }
}

.page-title {
    margin-bottom: 30px;
    font-size: 1.75rem
}


.neighbor-log {
    display: flex;
    gap: 12px;
    margin-block: 20px
}

.prev-log {
    flex: 1;
    min-width: 0
}

.next-log {
    flex: 1;
    min-width: 0
}

.neighbor-link {
    display: flex;
    /* flex-direction: column; */
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid var(--borderColor);
    border-radius: 0.75rem;
    transition: background-color 0.2s, border-color 0.2s
}

.neighbor-link:hover {
    background-color: rgba(89, 184, 248, 0.08);
    border-color: rgba(89, 184, 248, 0.28)
}

.neighbor-dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    line-height: 1.2
}

.neighbor-title {
    font-size: 14px;
    line-height: 1.4;
    color: var(--fontColor);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.next-log .neighbor-dir {
    justify-content: flex-end
}

.next-log .neighbor-title {
    text-align: right
}

@media (max-width: 600px) {
    .neighbor-log {
        flex-direction: column
    }

    .neighbor-title {
        white-space: normal;
        overflow-wrap: anywhere
    }
}

.comment-info a {
    color: var(--lightColor);
    padding-left: 5px
}

.comment-info hr {
    margin: 4px 0px
}


.footinfo {
    line-height: 2;
    padding-block: 30px;
    text-align: center !important;
    color: var(--lightColor);
    font-size: 14px;
    border-top: 1px solid var(--borderColor);
}

.footinfo a {
    color: var(--lightColor);
}

.footinfo a:hover {
    color: var(--aHoverColor);
}


img[data-action="zoom"] {
    cursor: zoom-in
}

.zoom-img,
.zoom-img-wrap {
    position: relative;
    z-index: 666;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

img.zoom-img {
    cursor: zoom-out
}

.zoom-overlay {
    z-index: 420;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
    opacity: 1;
}

.zoom-overlay-open,
.zoom-overlay-transitioning {
    cursor: default;
}

.cover-unclip {
    clip: unset !important;
    border-radius: unset !important;
    opacity: 1 !important
}


.toc-con {
    padding: 30px;
    padding-right: 50px;
    left: 150px;
    width: 300px;
    position: absolute;
    top: 200px;
    z-index: 1000;
}

.toc-con .close-toc {
    color: #dcdcdd;
    left: 0px;
    position: absolute;
    padding-top: 5px;
}

.toc-con ul {
    margin: 0;
    padding: 0
}

.toc-con li {
    font-size: 14px;
    line-height: 1.8rem;
    cursor: pointer;
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.toc-con div {
    scrollbar-color: #0000002b #fff0
}

.toc-con div::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(0 0 0 / 0%)
}

.toc-con div::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 10%)
}

#page {
    margin-bottom: 24px
}

.subtitle-overflow {
    max-width: 700px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.archive {
    color: #929292;
    font-size: 16px;
    padding: 4px;
    border-color: #ced4da
}


.loglist-article-edit a {
    color: #929292
}


@media all and (max-width: 1200px) and (min-width: 992px) {

    .mh {
        display: none
    }

    .bloggerinfo-img {
        width: 70px;
        height: 70px
    }

    .bloginfo-name {
        margin-top: 32px
    }

    #calendar {
        margin-left: -8px;
    }
}

@media all and (max-width: 991px) {

    .blog-header-c {
        max-width: unset !important
    }

    .blog-header-c {
        height: 74px
    }

    body {
        width: 100%;
        margin: -2px;
        padding-left: 2px
    }

    .mh {
        display: none
    }

    .loglist-title {
        font-size: 18px;
        font-weight: 500
    }

    .bloggerinfo {
        margin-bottom: 0px
    }

    .mb-5, .mtop-5 {
        margin-bottom: 2rem !important
    }

    .log-title {
        text-align: left
    }

    .log-con {
        padding: 30px 16px
    }

    .commentform .comment-info {
        width: 100%
    }

    .bottom-change {
        margin-bottom: 13px
    }

    .card-title {
        margin-bottom: 10px
    }

    .loglist-content {
        margin-top: 10px
    }

    .loglist-tag {
        margin-top: 10px
    }

    .blog-container {
        margin-top: calc(74px + 1.6rem)
    }

    .comment-post input {
        padding: 0.5em 0.75em
    }

    #calendar {
        margin-left: 0
    }
}

@media all and (max-width: 991px) and (min-width: 768px) {

    #calendar {
        transform: scale(0.8);
        margin-left: -14px;
        margin-top: -14px
    }

    .unstyle-li form {
        transform: scale(0.7);
        width: 255px;
        margin-left: -47px
    }

    .logcom-latest-time {
        max-width: 60px
    }

}

@media all and (max-width: 349px) {

    #calendar {
        transform: scale(0.7);
        margin-left: -46px;
        margin-top: -14px
    }

    .unstyle-li form {
        transform: scale(0.7);
        width: 255px;
        margin-left: -47px
    }

    .bloginfo-name {
        font-size: small
    }
}

@media all and (max-width: 577px) {
    .dropdown-menus .list-menu {
        padding-bottom: 0px
    }

    .nav-link {
        padding: 8px;
    }

    .card-padding {
        padding: 14px;
    }

    .side-bar .widget {
        margin-bottom: 1.5rem
    }

    .pagination:after {
        content: "";
        margin-bottom: 20px;
        display: block;
        clear: both
    }

    .bar_top_line {
        display: block;
        margin-bottom: 23px
    }

    .pagination span {
        padding: 5.5px 9px 3px 9px
    }

    .pagination a {
        padding: 5.5px 9px 3px 9px
    }

    .com_control {
        height: 44px
    }

    .mb-5, .mtop-5 {
        margin-bottom: 1.6rem !important
    }

    #pagenavi {
        line-height: 45px
    }

    .loglist-content p {
        font-size: 14px;
    }

    .comment-post #comment {
        border-radius: 10px;
        min-height: 112px;
    }

    .comment-post input {
        width: 100%
    }

    .commentform .comment-info {
        margin-top: 8px;
        gap: 10px;
    }

    #comments {
        margin-bottom: 64px
    }

    .com_control {
        border: 1px solid var(--borderColor);
        border-radius: 6px !important;
        margin-top: 0;
        border-right: 1px solid var(--borderColor);
    }

    .comment-mail {
        margin-bottom: 0;
    }

    .comment-name {
        margin-bottom: 0;
    }

    .comment .comment-post {
        display: block;
        width: 100%;
    }

    .arrow {
        display: none
    }

    .comment .comment-infos {
        margin-left: 38px;
        font-size: 14px;
        padding: 12px;
    }

    .comment .avatar {
        margin: 0 0 8px;
        height: 30px;
        width: 30px;
        float: left;
    }

    .comment .avatar img {
        height: 30px;
        width: 30px;
        margin-top: 0;
    }

    .comment {
        margin: 12px 0;
    }

    .comment-children {
        margin-left: 12px;
        padding-left: 8px;
    }

    .comment .comment-reply {
        margin-top: 10px;
    }

    .comment .com-reply {
        min-height: 32px;
        padding: 0 11px;
    }

    .comment-post {
        padding: 10px 0 0;
    }

    .comment-post #comment_submit,
    .comment-post #cancel-reply {
        width: 100%;
        min-width: 0;
        height: 44px;
    }

    #comments .comment-info {
        gap: 8px;
    }

    #comments .com_control,
    #comments .captcha-container {
        min-width: 100%;
        height: 44px;
    }

    #comments .captcha-container img {
        width: 96px;
        height: 30px;
    }

    .com_submit_p {
        gap: 6px;
    }

    .com_submit_p > * {
        width: 100%;
    }

    .subtitle-overflow {
        max-width: 80%
    }

    .dropdown-menus .list-menu {
        padding: 0px;
        letter-spacing: 2px
    }
}

@media all and (max-width: 1274px) {
    .toc-con {
        height: 100vh;
        width: 60%;
        max-width: 300px;
        padding-right: 30px;
        background: var(--conBgcolor);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1150;
        position: fixed !important;
        top: 0 !important;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        left: 0 !important;
    }

    .toc-con div {
        height: calc(100vh - 60px) !important;
    }
}

    .toc-link {
        color: rgb(189, 189, 189);
        font-size: 10px;
        padding-left: 10px;
    }

.side-cover-image {
    position: relative;
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.side-title-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.side-title-container a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
}

#theme-toggle {
    cursor: pointer;
    padding: 8px;
}


* {
    box-sizing: border-box;
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    height: 100%;
}

.mySlides {
    display: none;
    border-radius: 0px;
    overflow: hidden;
}

.mySlides img {
    border-radius: 0px;
    display: block;
    object-fit: cover;
    height: 100%;
}

.slideshow-prev,
.slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.slideshow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 15px 12px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    display: block;
    text-align: left;
}

.active {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: .4;
    }
    to {
        opacity: 1;
    }
}

.side-toolbar {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-btn {
    width: 40px;
    height: 40px;
    background-color: var(--conBgcolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    color: var(--fontColor);
}

.side-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--buttonBgColor);
    color: var(--buttonTextColor);
}

.side-btn svg {
    width: 20px;
    height: 20px;
}

#back-to-prev {
    display: flex;
}


[data-theme="dark"] .side-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .side-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


.icon-sun {
    display: none;
}
.icon-moon {
    display: block;
}

[data-theme="dark"] .icon-sun {
    display: block;
}
[data-theme="dark"] .icon-moon {
    display: none;
}


.zoom-fix-container {
    overflow: visible !important;
}

.zoom-fix-card {
    z-index: 1000 !important;
    position: relative;
}

.auth-modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    z-index: 1090;
    backdrop-filter: blur(2px);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal-card {
    width: 100%;
    max-width: 430px;
    background: var(--conBgcolor);
    border-radius: 14px;
    border: 1px solid var(--borderColor);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
    padding: 24px;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--borderColor);
    background: transparent;
    box-shadow: none;
    color: var(--fontColor);
    padding: 0;
    line-height: 1;
}

.auth-modal-close:hover {
    transform: none;
    filter: none;
    background: var(--bodyBground);
    box-shadow: none;
}

.auth-modal-head h3 {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 600;
}

.auth-modal-head p {
    margin: 0 0 18px 0;
    color: var(--lightColor);
    font-size: 14px;
    line-height: 1.5;
}

.auth-modal-alert {
    display: none;
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
}

.auth-modal-alert.show {
    display: block;
}

.auth-modal-alert.success {
    background: rgba(56, 161, 105, 0.15);
    color: #2f855a;
}

.auth-form-row {
    margin-bottom: 12px;
}

.auth-form-row input {
    height: 46px;
}

.auth-captcha-row,
.auth-inline-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-captcha-row input,
.auth-inline-row input {
    flex: 1;
}

.auth-captcha-row img {
    width: 110px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--inputBorderColor);
    cursor: pointer;
    background: var(--inputBgColor);
}

.auth-inline-btn {
    margin: 0;
    height: 42px;
    line-height: 1;
    white-space: nowrap;
    padding: 0 14px;
    border-radius: 10px;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin: 2px 0 10px;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
}

.auth-submit {
    width: 100%;
    margin: 4px 0 0;
}

.auth-login-ext {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-login-ext a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.auth-login-ext img {
    display: block;
    max-height: 28px;
}

.auth-submit:disabled,
.auth-inline-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-modal-switch {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.auth-modal-switch a {
    color: var(--buttonBgColor);
}

[data-theme="dark"] .auth-modal-alert {
    background: rgba(252, 129, 129, 0.2);
    color: #feb2b2;
}

[data-theme="dark"] .auth-modal-alert.success {
    background: rgba(72, 187, 120, 0.2);
    color: #9ae6b4;
}

@media (max-width: 577px) {
    .auth-modal {
        align-items: flex-end;
        padding: 10px 10px calc(env(safe-area-inset-bottom, 0px) + 10px);
    }

    .auth-modal-card {
        max-width: none;
        max-height: min(86vh, 640px);
        border-radius: 16px 16px 12px 12px;
        padding: 18px 16px 16px;
        overflow-y: auto;
    }

    .auth-modal-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
    }

    .auth-captcha-row {
        gap: 8px;
    }

    .auth-captcha-row img {
        width: 96px;
    }

    .auth-inline-row {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-inline-btn {
        width: 100%;
    }

    .auth-login-ext img {
        max-height: 24px;
    }
}

.top {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #ade5ff;
}

.top>div {
    font-size: 14px;
    color: #0054c3;
}
.top .top-left{
    float:left;
}
.top .top-right{
    float:right;
}
.top .top-right a{
    color: #8cd8ff;
    margin-right:10px;
}
.top .tougao{
    cursor:pointer;
    color:#fff;
}
.logo {
    height: 272px;
}
.logo img {
    margin-top: 56px;
    border: none;
}
.con_tb{
    margin-top:1%;
    padding: 0 12px;
}
.con_tb>div {
    display: inline-block;
    vertical-align: top;
    width: 32.4%;
    margin-right: 1%;
    margin-bottom: 1%;
}
.con_tb>div:nth-child(3n){
    margin-right:0px;
}
.index_title {
    height: 40px;
    line-height: 40px;
    font-size: 0;
    background: url(../images/title_bg.jpg) no-repeat;
}
.index_title ul, .index_title ul li {
    display: inline-block;
}
.index_title a {
    width: 116px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    color: #015bd3;
}
.index_title .loglist-sort a{
    color:#fff;
}
.index_title a.active {
    background: url(../images/active_bg.jpg) no-repeat;
    color: #fff !important;
}
.index_title .more {
    width: auto;
    font-weight: normal;
    font-size: 12px;
    color: #4f4f4f;
    float: right;
    padding-right: 10px;
    transition: all .4s ease 0s;
}
.table_list ul {
    box-sizing: border-box;
}
.table_list li {
    list-style: none;
    line-height: 32px;
    padding: 0 4px;
}
.table_list li a, .news_list>p>span {
    font-size: 14px;
    color: #727272;
    text-decoration: none;
    transition: all .4s ease 0s;
}
.table_list li a:hover{
    color:#015bd3;
}
.table_list i {
    margin-right: 10px;
}
.news_list {
    padding-top: 10px;
}
.news_list p {
    margin:0px;
    line-height: normal;
}
.news_list p a {
    font-size: 14px;
    color: #4f4f4f;
    line-height: 34px;
    transition: all .4s ease 0s;
    width: 90%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news_list p a:hover{
    color:#015bd3;
}
.news_list p:first-child a {
    font-size: 15px;
    font-weight: bold;
    color: #015bd3;
    width: 90%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.con02 {
    width: 100%;
    margin: 0 auto;
    height: 58px;
    background: #015bd3;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.con02 .con02_lm {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.con02 .con02_lm ul li {
    float: left;
    padding: 0px 22px;
}
.con02 .con02_lm ul li>a {
    color: #fff;
    height: 58px;
    line-height: 58px;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
}

.xl01{ position:absolute; left:0; z-index:99999999; width:100%; background:#fff; border-right:2px solid #015bd3;border-left:2px solid #015bd3;border-bottom:2px solid #015bd3; height:280px;}
.xl01 .xl01_lm{ height:100%;}
.xl01 .xl01_lm .xlxg01{ height:100%; width:300px; background:url(../images/icon20.png) no-repeat center right; padding:0 20px 0 20px; box-sizing:border-box;}
.tit04 p{font-size:18px;line-height:36px;background:url(../images/icon19.png) no-repeat center left;text-align:left;color:#333;padding-left:20px;margin: 0px;}
.xlvg_con01{ padding-top:5px;}
.xlvg_con01 p{line-height:36px;font-size:14px;color:#333;text-indent:2em;text-align:left;margin: 0px;}
.xlvg_con01 a{ color:#ff841d;}
.xlvg_con01 a:hover{ color:#015bd3;}
.sub{ display:none;}
.xl01 .xl01_lm .xlxg02{ width:320px;  padding:0 20px 0 20px; background:url(../images/icon20.png) no-repeat center right; box-sizing:border-box;}
.xl01 .xl01_lm .xlxg02 .xlvg_con02{ padding-top:10px;}
.xl01 .xl01_lm .xlxg02 .xlvg_con02 .js_img{ width:90px; height:93px; float:left;shape-outside: inset(0px 0px 0px 0px round 0); margin:0px;}
.xl01 .xl01_lm .xlxg02 .xlvg_con02 .js_zi p{line-height:24px;font-size:13px;color:#333;text-align:left;margin: 0px;}
.xl01 .xl01_lm .xlxg02 .xlvg_con02 .js_zi a{color:#ff841d;  font-size:11px;}
.xl01 .xl01_lm .xlxg02 .xlvg_con02 .js_zi a:hover{color:#015bd3;}
.xl01 .xl01_lm .xlxg03{width: 530px;padding:0 10px;box-sizing:border-box;}
.xl01 .xl01_lm .xlxg03 .up01{padding-left:10px;border-bottom:1px dashed #ccc;padding-bottom:10px;overflow: hidden;}
.tit05{ border:1px solid #656565; width:40px; height:165px; margin:8px 0 0 0;}
.tit05 p{color:#015bd3;font-size:18px;line-height:28px;letter-spacing:3px;background:url(../images/icon21.png) no-repeat center 10px;padding-top:40px;margin: 0px;text-align: center;}
.zzjg_con01{overflow:hidden;width: 450px;}
.zzjg_con01 .zz01{background:url(../images/bj11.png) no-repeat;width: 140px;height:40px;float:left;margin:13px 5px;text-align: center;}
.zzjg_con01 .zz01 a{ font-size:16px; color:#fff; line-height:40px; display: block;}
.zzjg_con01 .zz01 a:hover{color:#ff841d;}
.down01{ overflow:hidden; width:100%;}

.down01 .dw01{ height:45px; background:#015bd3; margin:12px auto;}
.down01 .dw01 p{ font-size:18px; line-height:45px; padding-left:15px; text-align:left; color:#fff; display:block;}
.down01 .dw01 a:hover{ color:#ff841d; background:#9cbfee;}
.down01 .dw01 a{ background:#9cbfee; font-size:18px; color: #015bd3; line-height:45px; display:block; float:right; padding:0 10px;}

.xl02 {
    position: absolute;
    left: 0;
    z-index: 99999999;
    width: 100%;
    background: #fff;
    border-right: 2px solid #015bd3;
    border-left: 2px solid #015bd3;
    border-bottom: 2px solid #015bd3;
    height: 323px;
    box-sizing: border-box;
}
.xl02 .xl02_lm {
    width: 100%;
    height: 100%;
}
.xl02 .xl02_lm .xlzb01 {
    width: 620px;
    background: url(../images/icon20.png) no-repeat center right;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.tit06 {
    height: 50px;
    padding-top: 12px;
    border-bottom: 2px solid #015bd3;
}
.tit06 .gzdtzb {
    background: url(../images/bj12.png) no-repeat center left;
    width: 148px;
}
.tit06 .gzdtzb p {
    font-size: 18px;
    color: #fff;
    padding-left: 30px;
    line-height: 38px;
    text-align: left;
    margin: 0px;
}
.tit06 a {
    color: #333;
}
.xl02 .xl02_lm .xlzb01 .dt_up {
    width: 100%;
    text-align: left;
    padding-top: 15px;
}
.xl02 .xl02_lm .xlzb01 .dt_up .news03 a {
    font-size: 16px;
    line-height: 36px;
    height: 36px;
    background: url(../images/icon15.png) no-repeat center left;
    padding-left: 15px;
    color: #333;
}
.xl02 .xl02_lm .xlzb01 .dt_up .news03 span {
    float: right;
    font-size: 16px;
    line-height: 36px;
    color: #333;
}
.xl02 .xl02_lm .xlyb01 {
    width: 486px;
    overflow: hidden;
}
.tit07 {
    height: 50px;
    padding-top: 14px;
}
.tit07 p {
    font-size: 18px;
    line-height: 36px;
    background: url(../images/icon19.png) no-repeat center left;
    text-align: left;
    color: #333;
    padding-left: 20px;
    margin: 0px;
}
.xl02 .xl02_lm .xlyb01 .tjtw figure {
    float: left;
    width: 215px;
    margin-right: 28px;
    margin-top: 10px;
    overflow: hidden;
}
.xl02 .xl02_lm .xlyb01 .tjtw figure:last-child{
    margin-right:0px;
}
.xl02 .xl02_lm .xlyb01 .tjtw figure figcaption {
    overflow: hidden;
    /* margin-top: 15px; */
}
.xl02 .xl02_lm .xlyb01 .tjtw figure p {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    margin: 0;
}
.search_con {
    height: 52px;
    line-height: 52px;
    background: linear-gradient(#e9f2fd, #f2f7fe);
    padding: 0 12px;
    font-size: 0;
}
.search_con>div {
    display: inline-block;
    vertical-align: middle;
}
.search_con>div:first-child {
    width: 80%;
    text-indent: 2em;
    background: url(../images/time.png) no-repeat 0 center;
    font-size: 14px;
    color: #000;
}
.search_box {
    float: right;
    margin-top: 10px;
}
.search_con form {
    height: 30px;
}
.search_con input {
    width: 168px;
    height: 32px;
    border: 1px solid #0065ea;
    padding-left: 10px;
    background: none;
    float: left;
    border-radius: 0px;
}
.search_con button {
    cursor: pointer;
    width: 39px;
    height: 32px;
    background: #0065ea url(../images/search_icon.png) no-repeat center center;
    border: none;
    box-shadow: none;
    padding: 0px;
    border-radius: 0px;
}
.news_box{
    overflow: hidden;
    background: linear-gradient(#f3f8fe, #fff);
    padding: 0 12px;
}
.focus {
    position: relative;
    width: 700px;
    height: 420px;
    float: left;
}
.focus .mySlides {
    position: relative;
    width: 100%;
    display: none;
    background: none;
    height: 100%;
}
.news_box>div{
    display: inline-block;
    vertical-align: top;
}
.news_right {
    width: 456px;
    float: right;
}

.con09{ width:100%; margin:0 auto; overflow:hidden; height:50px;}
.con09 .con09_lm{ width:1200px; margin:0 auto; overflow:hidden; border-bottom:1px dashed #ccc; height:50px; padding:0 10px;} 
.con09 .con09_lm ul{ overflow:hidden; background:url(../images/icon22.png) no-repeat left center; padding-left:50px;}
.con09 .con09_lm ul li{ overflow:hidden; float:left; font-size:16px; line-height:50px; color:#333;}
.con09 .con09_lm ul li a{ font-size:16px; line-height:50px; color:#333;}
.con10{ width:100%; margin:0 auto;padding-top:20px;}
.con10 .con10_lm{ width:1200px; margin:0 auto; overflow:hidden; padding:0 10px;}
.con10 .con10_lm .con10zb{ width:279px;}
.con10 .con10_lm .con10yb{ width:871px; margin-bottom:20px;}
.tit08{ background:url(../images/icon24.png) no-repeat; height:73px; padding-left:50px;}
.tit08 p{font-size:18px;color:#fff;background:url(../images/icon23.png) no-repeat left center;height:73px;line-height:73px;padding-left:40px;margin: 0px;}
.zlm_left01{ margin-left:10px; background:#f2f2f2; margin-top:-6px; padding:0 20px; text-align:center; border-bottom:2px solid #015bd3;}
.zlm_left01 ul{ overflow:hidden; padding:10px 0 30px 0;;}
.zlm_left01 ul>li{ height:auto; line-height:40px; font-size:14px; color: #333; }
.zlm_left01 ul>li a{width:100%;}
.zlm_left01 ul>li .links{ width:100%;background:url(../images/icon26.png) no-repeat bottom center;}
.zlm_left01 ul>li .links>a{ background:url(../images/icon29.png) no-repeat 5px center; font-size:14px; line-height:40px; display:block; color:#333;}
.zlm_left01 ul>li .links>a:hover,.zlm_left01 ul>li .open >a,.zlm_left01 ul>li .links>a.leftcurrent{ background:url(../images/icon25.png) no-repeat center left; color:#fff;}
.tit09{ width:100%; background:url(../images/icon28.png) repeat-x; border-top:1px solid #015bd3; height:40px; border-left:1px solid #ccc; border-right:1px solid #ccc; border-bottom:1px solid #ccc; padding-left:10px; }
.tit09 p{font-size:16px;color:#015bd3;background:url(../images/icon27.png) no-repeat left center;height:38px;line-height:38px;padding-left:25px;margin: 0px;}
.xial{ display:none;}
.xial{ width:100%; overflow:hidden; padding:0 20px; text-align:center;}
.xial dl dd{ height:40px; border-bottom:1px dashed #ccc;}
.xial dl dd a{ color:#333;}
.xial dl dd.current a,.xial dl dd a:hover{ color:#015bd3;}

.page-container{background: #fff;height: 100%;box-shadow: 0px 4px 20px #ccc;}

.lmy02{    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;}

.lmy02 .lmy02_up{ margin:0 auto; overflow:hidden; width:100%;}
.lmy02 .lmy02_up .slideBox03{ position:relative; width:100%; height:250px; background:#f5f5f5;}
.lmy02 .lmy02_up .slideBox03 .hd{ position:absolute; overflow:hidden; bottom:25px; right:20px;}
.lmy02 .lmy02_up .slideBox03 .hd ul li{ float:left; text-indent:-99999; width:12px; height:12px; border-radius:50%; -moz-border-radius:50%; -webkit-border-radius:50%; background:#cccccc; margin:0 5px; cursor:pointer;}
.lmy02 .lmy02_up .slideBox03 .hd ul li.on{ background:#015bd3; width:28px; border-radius:12px;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm{ width:100%; padding:20px;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03zb{ width:330px; overflow:hidden;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03zb img{ width:330px; height:210px;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03yb{ width:440px; overflow:hidden;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03yb h3{ font-size:16px; line-height:40px; color:#333;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03yb p{ font-size:14px; line-height:32px; color:#666;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03yb a{ font-size:14px; line-height:42px; color:#015bd3;}
.lmy02 .lmy02_up .slideBox03 .bd .slidebox03_lm .slide03yb a:hover{ color:#fe831c}
.lmy02_down{ overflow:hidden; padding:25px 0;}
.lmy02_down ul li{ height:40px; border-bottom:1px solid #ccc; line-height:40px;}
.lmy02_down ul li a{ background:url(../images/icon15.png) no-repeat center left; font-size:16px; line-height:40px; padding-left:15px; color:#333;}
.lmy02_down ul li span{ font-size:16px; color:#656565; line-height:40px; display:inline-block;}
.lmy02_down ul li a:hover{color:#015bd3;}
.list3 .loglist-sort{background:none;padding:0px;color:#333;width: auto;height: auto;line-height: normal;font-size: 16px;}
.list3 .loglist-sort a{color: #4a5568;}

.ym02 a{ color:#333;}
.ym02 a:hover{color: #015bd3;}

.sx{width:100%; margin:0 auto; font-size:16px; color:#333;}
.sx a,.sx p{ color:#333; font-size:16px;}
.sx a:hover{color:#015bd3;}
.sx .syp,.sx .xyp{padding:15px 0;}