*, *::before, *::after {
    box-sizing: border-box;
    /* Set the sizing of an element to include it's border */
}

* {
    margin: 0;
    /* Set the default margin to 0 */
    padding: 0;
    /* Set the default padding to 0 */
}

ul, ol {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
    /* Make the scrolling inside of any scrollable element smooth */
}

a:not([class]) {
    text-decoration-skip-ink: auto;
    /* Makes link undelines look better */
}

img, picture, svg, video, canvas {
    max-width: 100%;
    /* Makes it responsive */
    height: auto;
    /* Makes it responsive */
    vertical-align: middle;
    /* Makes text next to inline images look better */
    font-style: italic;
    /* If the images don't load it makes the alt decription look better */
    background-repeat: no-repeat;
    /* The background repeat and size are there if you want to load a picture first like a backroung image that is worse quality while the better quality image loads */
    background-size: cover;
}

input, button, textarea, select {
    font: inherit;
    /* Makes these elements inherit fonts */
}

/* Turns off animation for people who don't want to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

:root {
    --theme-color: #5d87ff;
    --theme-black-color: #1a1a1a;
    --theme-hover: #2f59b3;
    --theme-body-bg: #eff6ff;
    --theme-color-hsl: 0, 0%, 10%;
    --color-blue: #2f59b3;
    --color-blue-lite: #5d87ff;
    --color-blue-bg: #1b5bb0;
    --color-light-bg: #eaeff4;
    --color-white-bg: #fff;
    --color-black-bg: #000;
    --card-box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
    --card-border-radius: 7px;
    --card-border-color: #ebf1f6;
    --card-title-color: #2A3547;
    --card-subtitle-color: #2A3547;
    --theme-font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
    --font-lxwk: "LXGW WenKai", sans-serif;
    --title-font-family: var(--font-lxwk);
}

body, html {
    height: 100%;
    /* Makes the body element full screen */
    scroll-behavior: smooth;
    /* Makes normal scrolling smooth */
}

body {
    background: var(--color-white-bg);
    word-wrap: break-word;
    color: var(--theme-black-color);
    --scrollbar-width: 0px;
    transition: all .3s ease-out 0s, padding-right 0s;
    font-family: var(--theme-font-family);
    font-size: 14px;
    line-height: 1.42857;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #1a1a1a;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: var(--theme-hover);
}

:focus {
    outline: 0;
    box-shadow: none !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.fixed {
    position: fixed;
    top: 50px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.logo h3, .panel-title h3 {
    font-family: var(--title-font-family);
}

/*Header*/
.header {
    background-color: #2f59b3;
    background-image: linear-gradient(180deg, #1b5bb0 0%, #4a6ccc 100%);
}

.header .header-box {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-box .logo {
    display: flex;
    align-items: center;
}

.logo .logo-svg {
    height: 60px;
}

.logo .logo-title {
    font-size: 2rem;
    border-left: 1px solid #fff;
    height: auto;
    color: #fff;
    margin-left: 20px;
    padding-left: 20px;
    font-weight: 500;
}

.header-box .search {
    display: flex;
    align-items: center;
}

.header-box .search-text {
    color: #eee;
    font-size: 1rem;
    padding-right: 20px;
}

.header-box .search-bar {
    position: relative;
}

.header-box .search-input {
    width: 200px;
    height: 30px;
    padding: 5px 30px 5px 10px;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #5a6a85;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfe5ef;
    appearance: none;
    border-radius: 7px;
    box-shadow: unset;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.header-box .search-button {
    position: absolute;
    top: 0;
    line-height: normal;
    right: 5px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: none;
    cursor: pointer;
}

.header-box .search-icon {
    font-size: 1.5rem;
    color: #2f59b3;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-blue-lite);
    color: #fff;
}

.navbar ul {
    display: flex;
}

.navbar .nav-item {
    flex: 1;
    position: relative;
    text-align: center;
    text-overflow: ellipsis;
    text-wrap: nowrap;
}

.navbar .nav-item.active {
    background-color: #4f73d9;
}

.navbar .nav-item.active a {
    color: #fff;
}

.navbar .nav-item.active > a::after {
    display: none;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: #fae385;
}

.navbar .nav-item > a {
    position: relative;
    display: block;
    line-height: 50px;
    font-size: 1rem;
    color: #fff;
}

.navbar .nav-item:hover {
    background-color: #4f73d9;
    color: #fff;
}


.navbar .dropdown {
    background: #fff;
    box-shadow: 0 6px 12px hsla(0, 0%, 10%, .2);
    border-radius: 7px;
    font-size: 14px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    min-width: 120px;
    text-align: left;
}

.navbar .dropdown {
    display: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    z-index: 999;
    animation: menuDropdownShow .3s ease-in-out;
    transition: background-color .3s;
}

.navbar .dropdown li {
    width: 100%;
}

.navbar .dropdown a {
    display: block;
    width: 100%;
    padding: 12px 10px;
    border-radius: 7px;
    line-height: 25px;
    color: #2A3547;
}

.navbar .dropdown a:hover {
    background-color: rgba(93, 135, 255, .1);
    color: #5d87ff;
}

.navbar .nav-item:hover .dropdown {
    display: block;
    opacity: 1;
}

@-webkit-keyframes menuDropdownShow {
    0% {
        opacity: 0;
        transform: translateY(-.5rem)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes menuDropdownShow {
    0% {
        opacity: 0;
        transform: translateY(-.5rem)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.header .navbar-toggle {
    display: none;
}

.wrap {
    background: var(--theme-body-bg);
}

.main .panel {
    padding: 3rem 0;
}

.main .bg-white {
    background: var(--color-white-bg);
}

.main img {
    max-width: 100%;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
}

.main a:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.panel-head {
    margin-bottom: 1rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.panel-head .panel-title {
    position: relative;
    padding: 1rem 0 1.2rem;
}

.panel-head .panel-title h3 {
    font-size: 2rem;
    color: #333;
    line-height: 1.2;
    cursor: pointer;
}

.panel-head .panel-title span {
    display: inline-block;
    color: #0232ff;
    padding: 0 0.8rem;
}

.panel-head .panel-title p {
    font-size: 40px;
    color: #000;
    opacity: .06;
    position: absolute;
    top: 0;
    left: 80px;
    text-transform: uppercase;
    white-space: nowrap;
}

.panel-head .panel-title i {
    color: #2f59b3;
    font-size: 2.2rem;
    padding-right: 10px;
}

.panel-head .panel-title::after {
    width: 210px;
    height: 3px;
    background: #2f59b3;
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
}

.panel-head .more {
    position: relative;
}

.panel-head .more a {
    display: block;
    padding: 5px 20px;
    border: 1px solid #4a6ccc;
    text-align: center;
    background: #fff;
    color: #4f73d9;
    font-size: 12px;
    border-radius: 30px;
    transition: color .3s ease-in-out, background-color .3s ease-in, border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.panel-head .more a:hover {
    background-color: #4f73d9;
    border-color: #4a6ccc;
    color: #fff;
}

.panel-head .more i {
    opacity: 1;
    transition: all .2s ease-out;
}

.panel-head .more a:hover i {
    opacity: 1;
}

.panel-body.panel-box {
    background: #fff;
    padding: 2rem;
    box-shadow: var(--card-box-shadow);
}

.news-slide {
    width: 52%;
}

.news-list {
    width: 48%;
}

.news-swiper {
    --swiper-pagination-color: #1b5bb0;
    --swiper-theme-color: #1b5bb0;
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 30px
}

.news-wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.news-swiper-title {
    position: absolute;
    text-align: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    left: 0;
    bottom: 0;
    z-index: 1;
    padding-left: 10px;
    overflow: hidden;
}

.news-swiper-title p {
    color: #fff;
    font-size: 14px;
    z-index: 2;
    white-space: nowrap;
    text-overflow: ellipsis
}

.news-swiper .swiper-button-prev, .news-swiper .swiper-button-next {
    width: 40px;
    height: 64px;
    background: rgb(0 0 0 / 50%);
    opacity: 0;
}

.news-swiper .swiper-button-prev {
    left: 0
}

.news-swiper .swiper-button-next {
    right: 0
}

.news-swiper:hover .swiper-button-prev, .news-swiper:hover .swiper-button-next {
    opacity: 1;
}

.news-swiper-pagination {
    text-align: center;
}

.swiper-pagination-bullet {
    width: 64px;
    height: 5px;
    margin-right: 5px;
    background: #1b5bb0;
    border-radius: unset;
}

.news-swiper .swiper-pagination-bullet-active {
    background: #1b5bb0;
}

.news-list {
    padding-left: 20px;
}

.news-list .news-item {
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    white-space: nowrap;
    line-height: normal;
    text-overflow: ellipsis;
    border-bottom: 1px dotted #ddd;
    padding: 12px 0 10px;
}

.news-list .news-item a::before {
    border: 4px solid transparent;
    border-left: 6px solid #ccc;
    content: "";
    font-size: 0;
    height: 0;
    line-height: 0;
    margin-right: 6px;
    width: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
}

.news-list .news-item a {
    display: inline-block;
    overflow: hidden;
    width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    color: #666;
    padding-left: 20px
}

.news-list .news-item a {
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out
}

.news-list .news-item a:hover {
    color: var(--theme-hover);
    padding-left: 25px
}

.news-list .news-item a:hover::before {
    border-left-color: var(--theme-hover);
}


.news-list .news-item span, .date-label {
    display: inline-block;
    border-radius: 5px;
    background: #EAEFF4;
    text-align: center;
    padding: 3px 10px;
    color: #5a6a85;
    font-size: .8rem;
    transition: 0.5s;
}


.icon-list {
    display: flex;
    justify-content: space-between;
}

.icon-item {
    flex: 1;
    text-align: center;
}

.icon-item .icon-card {
    font-size: 4rem;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    box-shadow: 5px 8.66px 40px 0px rgba(228, 230, 232, 0.004);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-item .icon-card .icon-img {
    width: 64px;
}

.icon-item a {
    display: block;
    width: 120px;
    margin: 0 auto;

}

.icon-item p {
    font-weight: 600 !important;
    font-size: 1rem;
}

.icon-item a:hover .icon-card {
    background: #5d87ff !important;
    color: #fff !important;
}

.icon-item a:hover .icon-card i {
    transform: rotateY(360deg);
    transition: 0.3s;
}

.icon-card-style-v{
    background:#ECF2FF;
    color: #5D87FF;
}

.icon-card-style-v1{
    background:#ECF2FF;
    color: #5D87FF;
}

.icon-card-style-v2{
    background:#fef5e5;
    color: #FA896B;
}

.icon-card-style-v3{
    background:#ECF2FF;
    color: #5D87FF;
}

.icon-card-style-v4{
    background:#FBF2EF;
    color: #FA896B;
}

.icon-card-style-v5{
    background: #ECF2FF;
    color: #539bff;
}

.icon-card-style-v6{
    background:#E6FFFA;
    color: #1EDFBC;
}

.card-list {
    margin: 0 -10px;
}

.card-list li {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.card-list li a {
    background: #fff;
    border: 1px solid #ebf1f6;
    border-radius: 7px;
    padding: 20px;
    align-items: center;
    box-shadow: var(--card-box-shadow);
    transition: all .3s cubic-bezier(.215, .61, .355, 1);
}

.card-list li a:hover {
    box-shadow: 0 0 10px #2f59b3;
    transform: translateY(-4px);
}

.card-list li a:hover h3 {
    color: #2f59b3;
}

.card-list li .date {
    width: 80px;
    height: 80px;
    background: #2f59b3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.card-list li .date span {
    color: #fff;
    font-size: 2rem;
}

.card-list li .date p {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.5;
}

.card-list li .con {
    width: calc(100% - 100px);
    padding-left: 20px;
    transition: 0.5s;
}

.card-list li h3 {
    overflow: hidden;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.8rem;
    transition: 0.5s;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-list li .con p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    max-height: 36px;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.1rem;
}

.carousel {
    position: relative;
}

.pic-swiper {
    height: auto;
    width: 100%;
}

.pic-swiper .swiper-slide {
}

.pic-swiper .img-item {
    display: block;
    padding: 10px;
    /*background:#ebf1f6;*/
    border-radius: 7px;
    box-shadow: var(--card-box-shadow);
    border: 1px solid #ebf1f6;
}

.pic-swiper .swiper-slide .con {
    background: #fff;
    height: 4rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pic-swiper .swiper-slide .con p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    max-height: 36px;
    line-height: 1.1rem;
}

.pic-swiper .scale {
    overflow: hidden;
    max-height: 218px;
}

.pic-swiper .imaged {
    height: 200px;
    object-fit: cover;
    transition: all .3s ease-out 0s;
    width: 100%;
}

.pic-swiper .con::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background-color: #5d87ff;
    color: #fff;
    z-index: -1;
    transition: 0.5s;
}

.pic-swiper a:hover .con::after {
    height: 100%;
}

.pic-swiper a:hover .con {
    color: #fff !important;
}

.carousel .swiper-button-prev, .carousel .swiper-button-next {
    color: #5d87ff;
}

.carousel .swiper-button-prev {
    left: -50px;
}

.carousel .swiper-button-next {
    right: -50px;
}

.footer {
    background: linear-gradient(360deg, #1b5bb0 0%, #4a6ccc 100%) #2f59b3;
}

.footer .links {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.footer .links::after {
    display: none;
    content: "";
    width: 50%;
    height: 1px;
    border-bottom: 1px solid #2f59b3;
}

.links .link-title {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    padding-right: 20px;
    color: #fff
}

.links .link-nav {
    display: inline-block;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.links .link-nav li {
    display: inline-block;
    color: #fff;
}

.links .link-nav li a {
    color: #eee;
    font-size: 14px;
    padding: 0 20px
}

.links .link-nav li:after {
    content: "|";
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    opacity: .8;
    vertical-align: top;
}

.links .link-nav li:last-child:after {
    display: none;
}

.links .link-nav li a:hover {
    color: #fff;
}

.footer .footer-box {
    font-size: 14px;
    overflow: hidden;
    padding: 50px 0;
    color: #a8c9f3
}

.footer-box .footer-info {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    word-break: keep-all;
    margin-top: 20px;
}

.footer-box .footer-logo {
    margin-right: 20px;
}

.footer-box .footer-logo img {
    height: 52px;
}

.footer-box .footer-text {
    line-height: 2rem;
}

.footer-box .footer-code {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid #a8c9f3;
    padding: 15px;
}

.footer-box .footer-code img {
    width: 100px;
}

.footer-box .footer-code p {
    display: block;
    position: absolute;
    bottom: -8px;
    font-size: 12px;
    color: #fff;
    padding: 0 8px;
    background: #2f59b3;
}

.footer-copyright {
    padding: 20px 0;
    text-align: left;
    background-color: #2f59b3;
    color: #fff
}

.footer .go-top {
    display: none;
    position: fixed;
    line-height: 1;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #5D87FF;
    border: 1px solid #5D87FF;
    color: #fff;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: color .3s ease-in-out, background-color .3s ease-in, border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.footer .go-top i {
    font-size: 2rem;
}

.footer .go-top:hover {
    background-color: #4f73d9;
}

.panel.bg-home {
    background-image: url(/xsc/static/css/../images/schoolbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: scroll;
    background-origin: border-box;
    background-color: #eff6ff;
}

.panel.bg-home .panel-box {
    /*background:rgba(255,255,255,.5);
    */
    box-shadow: 0 4px 30px 20px rgb(0 0 0 / 7%);
}


/***POST PAGE***/
.boxed {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgb(46 106 162 / 8%);
}

.full-wrapper {
    width: 100% !important;
}

.page-banner {
    align-items: center;
    background-position: 50% center;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    width: 100%;
}

.page-banner .banner-inner h1 {
    color: #fff;
    font-size: 32px;
    margin: 0;
    padding: 0;
    font-family: var(--title-font-family);
}

.post-page {
    padding: 0
}

.main .post-wrapper {
    padding-bottom: 20px;
}

.post-wrapper .post-panel {
    margin-bottom: 0;
}

.page-banner {
    margin-bottom: 20px
}

.post-list {
    padding: 5px 25px;
}

.post-list li {
    border-bottom: 1px solid #eee;
}


.post-list .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 32px;
    padding: 15px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.post-list .list-item a {
    display: flex;
    font-size: 16px;
    align-items: center;
    color: var(--theme-black-color);
    transition: all 0.2s ease-in-out;
}

.post-list .list-item a:hover {
    color: var(--theme-hover);
    padding-left: 25px;
}

.post-list .list-item a::before {
    border: 4px solid transparent;
    border-left: 6px solid #ccc;
    content: "";
    font-size: 0;
    height: 0;
    line-height: 0;
    margin-right: 6px;
    width: 0;
}


.post-pager {
    margin-top: 30px;
    padding: 50px 0;
    text-align: center
}

.post-pager a {
    display: inline-block;
    border: 1px solid #eee;
    padding: 10px 15px;
    margin-right: 5px;
    background: #fff;
    text-align: center;
    color: #666
}

.post-pager a.active {
    border-color: #4f73d9;
    background: #4f73d9;
    color: #fff;
    cursor: default;
}

.post-pager a:hover {
    border: 1px solid #4f73d9;
    background-color: #4f73d9;
    color: #fff;
}

.post-pager a, .post-pager span {
    cursor: pointer;
}

.post-panel-head {
    padding: 30px 40px 15px;
    margin-bottom: 0
}

.post-panel-head h1 {
    border-bottom: 0;
    font-size: 24px;
}

.post-panel-head h1 i{
   margin-right: 10px;
}

.post-list-pro {
    padding: 0 30px
}

.post-list-pro .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden
}

.post-list-pro .item:hover {
    margin: 0 -20px;
    padding: 20px;
    background: #f8f8f8;
}

.post-list-pro .item:hover a {
    color: #4f73d9;
}

.post-list-pro .item, .post-list-pro .item:hover {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.post-list-pro .item-img {
    position: relative;
    width: 30%;
    height: 174px;
    overflow: hidden;
    border-radius: 4px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.post-list-pro .item-img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.post-list-pro .item-img:hover {
    -webkit-box-shadow: 0 0 1px 0 rgb(0 0 0 / 30%);
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 30%)
}

.post-list-pro .item-img, .post-list-pro .item-img:hover {
    -webkit-transition: -webkit-box-shadow .3s ease 0s;
    -o-transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s
}

.post-list-pro .item-img:hover img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.post-list-pro .item-content {
    position: relative;
    width: 100%;
    padding-left: 20px
}

.post-list-pro .item-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    color: #333
}

.post-list-pro .item-title a {
    color: #333;
    max-height: 56px;
    text-decoration: none
}

.post-list-pro .item-excerpt {
    height: 52px;
    margin-bottom: 34px;
    line-height: 1.625;
    color: #666;
    font-size: 16px
}

.post-list-pro .item-excerpt {
    height: 52px;
    margin-bottom: 34px;
    line-height: 1.625;
    color: #666;
    font-size: 13px
}

.post-list-pro .item-meta {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-right: 20px;
    color: #999;
    font-size: 14px
}

.post-sidebar .card {
    margin-bottom: 20px;
}

.post-sidebar .card-title {
    padding: 20px;
    border-bottom: 1px solid #ebf1f6;
    font-size: 16px;
    font-weight: 600;
    color: var(--card-title-color);
}


.post-sidebar .card-body {
    padding: 10px 20px;
}

.post-sidebar .channel-list {
    text-align: left;
}


.post-sidebar .channel-list li {
    margin-bottom: 1px;
    border-bottom: 1px solid #eee;
    transition: 0.3s ease-in-out;
}

.post-sidebar .channel-list li:last-child {
    border-bottom: none;
}

.post-sidebar .channel-list li a {
    font-size: 1rem;
    display: block;
    padding: 15px 10px 15px 20px;
}

.post-sidebar .channel-list li.current, .post-sidebar .channel-list li:hover {
    background-color: #5d87ff;
    color: #fff;
    border-radius: 7px;
}

.post-sidebar .channel-list li.current a, .post-sidebar .channel-list li:hover a {
    color: #fff;
}


.sidebar-news-list ul li:before {
    position: absolute;
    left: 0;
    top: 15px;
    content: "";
    width: 0;
    height: 0;
    line-height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #ccc
}

.sidebar-news-list ul li {
    position: relative;
    padding: 10px 0 10px 12px;
    line-height: 1.5;
    border-bottom: 1px dashed #eee
}

.sidebar-news-list ul li a {
    color: #5d7287;
}

.sidebar-news-list ul li a:hover {
    color: #1b5bb0;
}

.post-share .post-qrcode {
    width: 128px;
    text-align: center;
    margin: 0 auto;
    padding: 30px 0;
}

.post {
    padding: 50px 80px;
    overflow: hidden;
    position: relative;
    min-height: 166px
}

.bmgk .post{
    min-height: 1000px!important;
}

.post-title {
    overflow: hidden;
    text-align: center;
    padding: 15px 0;
}

.post-title h2 {
    height: auto;
    line-height: 3rem;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    /*font-family: var(--title-font-family);*/
}

.post-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    line-height: 1.5;
    padding: 15px 0;
    text-align: left;
    border-bottom: 10px solid #e3e3e3;
    color: #999999;
    font-size: 14px
}

.post-info span {
    padding: 0 10px;
}

.post-word {
    margin-top: 30px;
    position: relative;
    font-size: 16px;
    color: #262626;
    line-height: 1.8;
    word-wrap: break-word;
}

.post-word p {
    margin-bottom: 20px;
    line-height: 1.8;
    word-wrap: break-word;
}

.post-word img {
    max-width: 100%;
}

.post-page .breadcrumb li {
    display: inline-block;
    vertical-align: top
}

.post-page .breadcrumb li a {
    font-size: 12px;
    color: inherit;
    line-height: 1
}

.post-page .breadcrumb li:hover a {
    color: #d30505
}

.post-menu {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 16px
}

.post-menu a:hover {
    color: #1b5bb0
}

.post-panel {
    width: 75%;
    min-height: 666px;
}

.post-sidebar {
    width: 23%;
    min-height: 100px;
    position: relative;
}


.post-panel {
}

.post-panel .post-file {
    padding: 40px 80px;
    margin-top: 16px;
    position: relative
}

.post-file li {
    margin: 0;
    position: relative;
    padding: 15px 0 15px 20px
}

.post-file li:before {
    position: absolute;
    left: 0;
    top: 18px;
    content: "";
    width: 0;
    height: 0;
    line-height: 0;
    border: 6px solid transparent;
    border-left: 6px solid #ccc
}

.post-file-href {
    font-size: 16px;
    color: #0052D9;
    line-height: 18px;
    font-weight: 600
}

.post-file-href:hover {
    color: #4C90FF
}

.post-file h3 {
    font-size: 22px;
    margin-bottom: 25px
}


.post-jump {
    overflow: hidden;
    margin-top: 16px
}

.post-wrapper .post-link {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    width: 49%;
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
    transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), color .5s cubic-bezier(0.2, 0.0, 0.2, 1), box-shadow .5s cubic-bezier(0.2, 0.0, 0.2, 1)
}

.post-wrapper .post-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 8px 0 rgb(0 0 0 / 10%)
}

.post-wrapper .post-link:hover a {
    color: #1b5bb0
}

.post-wrapper .post-link a {
    display: block;
    color: #333;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.post-all .page-banner {
    margin-bottom: 0 !important;
}

.page .full-wrapper .post {
    padding: 100px 160px;
}


.box-wrapper{

}

.box-wrapper .post-panel-head{
    text-align: center;
}


.box-wrapper .box-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 20px;
    overflow: hidden;
}

.box-wrapper .box-list-item{
    width: 25%;
    padding: 30px 20px;
}

.box-wrapper .box-list-item a{
    display: block;
    padding: 20px 40px;
    border: 1px solid #eef3ff;
    border-radius: 7px;
    background: #ECF2FF;
    color: #5D87FF;
    font-size: 16px;
    text-align: center;
}

.box-wrapper .box-list-item a:hover{
    background: #4f73d9;
    color: #fff;
;
}


@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .header .header-box {
        padding: 20px 6px;
    }

    .logo .logo-title {
        font-size: 16px;
        margin-left: 10px;
        padding-left: 5px;
    }

    .logo .logo-svg {
        height: 30px;
    }

    .navbar{
        display: none;
    }

    .header-fixed {
        position: fixed;
        width: 100%;
        z-index: 99999;
    }


    .navbar ul {
        display: flex;
        flex-direction: column;
    }

    .navbar .dropdown {
        display: block;
        position: relative;
        box-shadow: unset;
        text-align: center;
        opacity: 1;
        background: rgba(0, 0, 0, .05);
    }

    .navbar .dropdown a {
        color: #fff;
    }

    .header-box .search {
        display: none !important;
    }

    .header .navbar-toggle {
        display: block;
    }

    .navbar-toggle #showNav{
        display: block;
    }

    .navbar-toggle #hideNav{
        display: none;
    }

    .header .navbar-toggle button {
        background: unset;
        border: unset;
        font-size: 30px;
        color: #fff;
    }

    .main .panel {
        padding: 10px;
    }

    .news-slide {
        width: 100%;
    }

    .news-swiper-pagination {
        display: none;
    }

    .news-list {
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
    }


    .news-wrapper img {
        height: 200px;
    }

    .panel.bg-home {
        background: unset;
    }

    .panel-head .panel-title {
        position: relative;
        padding: 10px 0 12px;
    }

    .panel-head .panel-title h3, .panel-head .panel-title i {
        font-size: 18px;
    }

    .panel-head .panel-title p {
        display: none;
    }

    .panel-head .panel-title::after {
        width: 140px;
    }


    .panel-body.panel-box {
        padding: 10px;
    }

    .icon-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0;
    }

    .icon-item {
        flex: auto;
        width: 33.333%;
        margin-top: 15px;
    }

    .icon-item .icon-card {
        font-size: 32px;
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .icon-item p {
        font-weight: 400;
        font-size: 14px;
        margin: 0 auto 10px;
    }


    .card-list li {
        width: 100%;
    }

    .card-list li a {
        padding: 10px;
    }

    .carousel .swiper-button-prev, .carousel .swiper-button-next {
        display: none;
    }

    .footer .footer-box {
        padding: 20px 0;
    }

    .footer .links {
        display: none;
    }

    .footer .go-top {
        display: none !important;
        padding: 8px;
    }

    .footer-box .footer-info {
        flex-direction: column;
    }

    .footer-box .footer-code {
        display: none;
    }

    .footer-box .footer-text {
        margin-top: 20px;
        text-align: center;
    }


    /*POST*/
    .page-banner {
        height: auto !important;
        padding: 30px 15px;
        margin-bottom: 0;
    }

    .page-banner .banner-inner h1 {
        text-align: center;
        font-size: 24px;
    }

    .post-menu {
        display: none;
    }

    .post-print {
        display: none;
    }

    .post-info {
        border-bottom: unset;
    }

    .post-info span {
        padding: 0 15px 0 0;
    }

    .boxed {
        border-radius: 0;
    }

    .post {
        padding: 1rem;
    }

    .post-panel {
        width: 100%
    }

    .post-list-pro .item-title {
        font-size: 18px;
    }

    .post-list .list-item {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .item-excerpt {
        display: none
    }

    .post-list .list-item a::before {
        display: none;
    }

    .post-list-pro .item-img{
        height: 74px;
    }

    .post-list-pro .item-meta {
        position: relative;
    }

    .post-list-pro .item-title a {
        max-height: 50px;
        overflow: hidden;
        line-height: 1.4;
        font-size: 18px;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 2
    }

    .post-list-pro .item-meta span, .post-list-pro .item-meta a {
        font-size: 12px;
    }

    .post-list-pro .item-meta-li{
        display: none;
    }

    span.date.item-meta-li {
        display: block!important;
    }

    .post-sidebar {
        display: none
    }

    .pager-num {
        display: none;
    }

    .post-pager a {
        font-size: 0.8rem
    }

    .post-panel-block {
        width: 100%
    }

    .post {
        padding: 1rem;
        margin: 0;
        border: none
    }

    .post-wrapper .post-file {
        padding: 1rem
    }

    .post-file h3, .post-file-href {
        font-size: 1rem;
        font-weight: normal
    }

    .post-word p {
        text-align: justify
    }

    .post-title h2 {
        font-size: 24px;
        line-height: 1.5;
        text-align: left;
        padding: 1rem 0
    }

    .post-desc {
        text-align: left;
        border-bottom: unset
    }

    .post-word img {
        max-width: 100%;
        height: auto;
        vertical-align: top
    }

    .page .full-wrapper .post {
        width: 100%;
        padding: 1rem;
    }

    .post-wrapper .post-link {
        width: 100%;
        margin-bottom: 10px;
    }

    .box-wrapper .box-list-item {
        width: 100%;
        padding: 10px;
    }


}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1310px;
    }
}