:root {
    --color-main: #3670ba;
    --color-main-deep: rgb(0, 47, 229);
    --color-text: #444;
    --color-hint: #999;
    --color-highlight: #f3f7f9;
    --color-background-light: #F4F4F4;
    --color-background-deep: #ededed;
    --font-size-smaller: 14px;
    --font-size-small: 16px;
    --font-size-normal: 18px;
    --font-size-large: 20px;
    --font-size-larger: 22px;
}

* {
    margin: 0;
}

body {
    line-height: 1.6em;
    font-size: var(--font-size-normal);
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--color-text);
}

p {
    color: var(--color-text);
    word-break: break-word;
}

a {
    color: var(--color-main);
    text-decoration: none;
    transition: all .2s ease;
}

/*容器*/
.container {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1280px) {
    .container {
        width: 1160px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        width: 900px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        width: 100%;
    }
}

ul.content-list {
    list-style: disc;
    padding: 0;
}

ul.content-list li {
    padding: 2px 16px;
    list-style: disc inside;
}

ul.content-list li:hover {
    background-color: var(--color-highlight);
}

ul.divided li {
    border-bottom: 1px dotted #ccc;
}

ul.divided > li:last-child {
    border-bottom: none;
}

ul.list-style-none, ul.list-style-none li {
    list-style: none;
}

/*li::marker {*/
/*    margin: 0;*/
/*}*/

/*li.new:before {*/
/*    content: 'NEW';*/
/*    background: #ff0e00;*/
/*    padding: 2px 5px 2px 4px;*/
/*    font-size: 8px !important;*/
/*    color: white !important;*/
/*    font-style: italic;*/
/*    margin-right: 4px;*/
/*    font-weight: bold;*/
/*    border-radius: 5px;*/
/*    line-height: normal;*/
/*    vertical-align: middle;*/
/*}*/

/*导航栏*/
nav {
    width: 100%;
    border-top: 2px solid #3670ba;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

nav ul {
    float: unset;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.2);
    transition: 150ms;
    z-index: 10;
}

nav ul li {
    list-style: none;
    padding: 0;
    position: relative;
}

nav li a {
    display: inline-block;
    font-weight: bold;
    padding: 4px 8px;
    box-sizing: border-box;
}

nav li a:hover {
    background: #3670BA !important;
    color: white !important;
}

nav .expand {
    display: none;
}

.nav-backdrop {
    display: none;
}

.dropdown-menu.active > a {
    background: #3670BA !important;
    color: white !important;
}

.dropdown-menu-box {
    box-shadow: 0 0 4px 0 #ccc;
    border-radius: 2px;
    position: absolute;
    min-width: 100%;
    width: max-content;
    background: white;
    z-index: 10;
}

.dropdown-menu-box a {
    display: block;
}

/*隐藏式导航栏*/
@media screen and (max-width: 992px) {
    nav {
        width: 100%;
        border-top: 2px solid #3670ba;
        position: sticky;
        top: 0;
        background-color: rgba(255, 255, 255, 0.8);
        height: 48px;
        backdrop-filter: blur(20px);
    }

    nav ul {
        display: none;
        position: absolute;
        background: white;
        top: 100%;
        width: 100%;
    }

    nav ul.show {
        display: block;
    }

    nav li a {
        display: block;
        font-weight: bold;
        padding: 4px 8px;
        box-sizing: border-box;
        text-align: center;
    }

    nav .expand {
        display: inline;
    }

    .nav-backdrop.show {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 9;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .dropdown-menu.active > a {
    }

    .dropdown-menu-box {
        box-shadow: 0 0 4px 0 #ccc inset;
        border-radius: 2px;
        position: relative;
        min-width: 100%;
        width: max-content;
        background: white;
        z-index: 10;
    }

    .dropdown-menu-box a {
        display: block;
    }
    /*.dropdown-menu-box {*/
    /*    box-shadow: none;*/
    /*    border-radius: 0px;*/
    /*    display: block !important;*/
    /*    position: relative;*/
    /*    width: auto;*/
    /*    padding-left: 8px;*/
    /*}*/
}

/*轮播图*/
.swiper {
    width: 100%;
    min-height: 100px;
}

.swiper img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

/*内容板块*/
.content-block {
}

.content-block-title {
    margin: 16px 0;
    border-radius: 4px;
    background: var(--color-background-deep);
    width: 100%;
    box-sizing: border-box;
}

.content-block-title>span {
    font-size: var(--font-size-normal);
    background: var(--color-main);
    line-height: 44px;
    padding: 0 16px;
    color: white;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    min-width: 300px;
}

.content-block-action {
    display: inline-block;
    float: right;
    line-height: 44px;
    padding: 0 16px;
}

.content-block-action a {
    font-size: var(--font-size-smaller);
    color: var(--color-hint);
}

.content-block p {
    text-align: justify;
    margin: 10px 0;
}

@media screen and (max-width: 992px) {
    .content-block {
        padding: 0 16px;
    }
}

/*返回首页FAB*/
.fab {
    position: static;
    right: 16px;
    bottom: 64px;
    /*display: none;*/
}
.fab.show {

}

/*底部版权*/
footer {
    margin-top: 32px;
}

.foot-top {
    padding: 32px 0;
    background: #32373C;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.foot-top a {
    color: #cbcbcb;
    font-size: 15px;
}

.foot-bot {
    background: #282D32;
    padding: 32px 0;
}

.foot-bot p {
    color: #aaa;
    font-size: 14px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse:collapse;
}

table th {
    background: #ffc1c1;
    height: 60px;
    text-align: center;
    border: 2px solid white;
}

table td {
    background: #D1EEEE;
    padding: 10px;
    border: 2px solid white;
    text-align: center;
}