:root {
    --size-bigtitle: 34px;
    --size-boldtitle: 28px;
    --size-news-title: 24px;
    --size-nav-title: 20px;
    --size-class-info: 18px;
    --size-news-content: 16px;
    --size-news-info: 14px;
    --size-news-time: 12px;
    --color-theme-300: #6dacf6;
    --color-text-000: #FFF;
    --color-text-300: #808080;
    --color-bg-l2: rgba(255, 255, 255, 0.2);
    --color-bg-l5: rgba(255, 255, 255, 0.5);
    --color-bg-l8: rgba(255, 255, 255, 0.8);
    --color-bg-n2: rgba(0, 0, 0, 0.2);
    --color-bg-n5: rgba(0, 0, 0, 0.5);
    --color-bg-n8: rgba(0, 0, 0, 0.8);
    --color-bg-000: #FFF;
    --color-bg-300: #97AEC4;
    --color-bg-active: #CE1F1F;
}

@font-face {
    font-family: 'fzdbs';
    src: url('/resource/2025/iconfont/font/FZDBSJW.woff2') format('woff2'),
        url('/resource/2025/iconfont/font/FZDBSJW.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'songhei';
    src: url('/resource/2025/iconfont/font/songhei.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: var(--color-bg-100);
}

*::-webkit-scrollbar-thumb {
    background: var(--color-theme-300);
    border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--color-theme-200);
}

*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body,
html {
    background: var(--color-bg-000);
    font-family: "微软雅黑", Arial, sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--color-text-500);
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.container-fluid>.row,
.container-fluid,
.container-fluid>.row>* {
    margin: 0;
    padding: 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: black;
    border-style: revert-layer;
    border-width: revert-layer;
}

/*动画*/
.right_in {
    position: relative;
    z-index: 1;
}

.right_in::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--color-theme-100), transparent);
    z-index: -1;
    transition: all 0.3s ease;
}

.right_in:hover::before {
    width: 100%;
}

/*haeder页头*/
.header {
    height: 365px;
    background: linear-gradient(var(--color-theme-400), var(--color-theme-100));
    position: relative;
    z-index: 1022;
}

.header-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header .navbar:not(.sticky) {
    transform: translateY(0);
}

header .navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    animation: fadeSlideIn 0.3s forwards;
    box-shadow: 0 5px 10px var(--color-bg-n2)
}

header .navbar.sticky .navbar-brand {
    display: block !important;
}

header .navbar.sticky #calDay {
    font-size: var(--size-news-title);
}

@keyframes fadeSlideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/resource/2025/img/headerbanner.png) no-repeat top;
    background-size: auto 100%;
    z-index: -1;
}

.topnav a {
    color: var(--color-text-000);
    text-decoration: none;
    border: 1px solid var(--color-bg-000);
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 10px;
    gap: .5rem;
    font-size: 16px;
}

.topnav a:hover {
    background: var(--color-bg-n2);
}

.topnav a .iconfont {
    font-size: 1em;
}

header .info {
    flex-direction: column;
    align-items: center;
}

header .search {
    background: var(--color-bg-l2);
    border-radius: 3px;
    padding: 3px;
    min-width: 350px;
    height: 3em;
    font-size: 16px;
}

header .search input {
    background: var(--color-bg-l5);
    border: none;
    border-radius: 0;
    padding: 0 1em;
    font-size: 14px;
    height: 100%;
}

header .search input::placeholder {
    color: var(--color-text-200);
}

header .search button {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    color: var(--color-text-000);
    gap: .5em;
    background: var(--color-theme-300);
    border-radius: 0;
    padding: 0 1em;
}

header input.form-control:focus,
header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.floating-menu {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1021;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-menu .btn {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: var(--size-news-info);
    background: var(--color-bg-100);
    border: none;
    color: var(--color-text-200);
}

.floating-menu .btn:hover {
    background: var(--color-bg-200);
    color: var(--color-text-000);
}

.floating-menu .btn i {
    font-size: 1.5em;
}

#resetThemeBtn i {
    font-size: 1em;
}


#themePanel {
    left: -170px;
    bottom: 0;
}

#themePanel input {
    background: transparent;
    border: none;
}

.calendar-widget {
    background: var(--color-bg-000);
    border-radius: 8px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: hidden;
    text-align: center;
}

.cal-date,
.cal-date .ymw {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.cal-date .day {
    font-size: 14px;
    color: var(--color-theme-300);
    line-height: 1;
    padding: 0 2em;
    text-align: center;
}

.cal-date .ymw {
    font-size: var(--size-news-time);
    width: 100%;
    background: var(--color-theme-200);
    color: var(--color-text-000);
}

#calDay {
    font-size: var(--size-bigtitle);
    font-weight: bold;
}

header .navbar {
    background: var(--color-theme-300);
}

.collapse {
    display: none;
    visibility: initial;
}

#mainNavbar li {
    flex: 1 1 auto;
    text-align: center;
}

#mainNavbar li a {
    color: var(--color-text-000);
    font-size: var(--size-news-title);
    border-radius: 5px;
    line-height: 1.4;
}

#mainNavbar li a:hover {
    background: var(--color-theme-400);
}



#mainNavbar .iconfont {
    font-size: 1em;
}

.navbar button[aria-expanded="true"]:hover {
    position: relative;
    background: transparent;
    border: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    z-index: 99999;
}

.navbar .btn-nav {
    border: none;
}

.navbar button[aria-expanded="true"]:focus {
    outline: 0;
}

.navbar .icon-bar {
    display: block;
    margin: 6px 0;
    width: 40px;
    height: 5px;
    background-color: var(--color-text-000);
}

.navbar button[aria-expanded="true"]:hover .icon-bar {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #FCA311;
}

.navbar button[aria-expanded="false"]:hover .icon-bar,
.navbar button[aria-expanded="true"]:focus .icon-bar {
    background-color: #FCA311;
}

.navbar button[aria-expanded="false"]:focus {
    cursor: pointer;
    z-index: 9999;
}

.navbar .middle {
    margin: 0 auto;
}

.navbar .icon-bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    z-index: 999999;
}

.navbar button[aria-expanded="true"] .icon-bar {
    z-index: 999999;
    background-color: #FCA311;
}

.navbar button[aria-expanded="true"] .top {
    -webkit-transform: translateY(10px) rotateZ(45deg);
    -moz-transform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    -o-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg);
}

.navbar button[aria-expanded="true"] .bottom {
    -webkit-transform: translateY(-11px) rotateZ(-45deg);
    -moz-transform: translateY(-11px) rotateZ(-45deg);
    -ms-transform: translateY(-11px) rotateZ(-45deg);
    -o-transform: translateY(-11px) rotateZ(-45deg);
    transform: translateY(-11px) rotateZ(-45deg);
}

.navbar button[aria-expanded="true"] .middle {
    width: 0;
}

/*子栏目页头*/
.header.subweb {
    height: 200px;
}

.header.subweb .info {
    flex-direction: row;
    align-items: flex-end;
}

.header.subweb .logo {
    flex: 1 1 auto;
}

.header.subweb .logo img {
    max-height: 80px;
    max-width: 100%;
}

/*头条*/
.index-hotnews {
    border-bottom: 2px solid var(--color-theme-300);
}

.index-hotnews.yns-news {
    border-bottom: none;
}

.index-hotnews .type-Tit {
    flex: 1;
}

.index-hotnews .type-Tit a {
    background: var(--color-theme-300);
    padding: .5em;
    width: 4em;
    color: var(--color-text-000);
    font-weight: bold;
    font-size: var(--size-nav-title);
    letter-spacing: .2em;
}

.index-hotnews:hover .type-Tit a {
    background: var(--color-theme-400);
}

.index-hotnews h2,
.index-hotnews a p {
    font-weight: bold;
    text-align: center;
    color: var(--color-theme-400);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
}

.index-hotnews a p {
    font-size: 2rem;
}

.index-hotnews .type-Tit a:hover h2 {
    color: var(--color-theme-300);
}

.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1em;
}

.owl-carousel .owl-dots .owl-dot span {
    display: flex;
    width: 8px;
    height: 8px;
    background: var(--color-bg-200);
    border-radius: 50%;
}

.owl-carousel .owl-dots .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: var(--color-theme-400);
}

.index-picnews p {
    text-align: center;
    color: var(--color-text-500);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.index-picnews {
    background: var(--color-bg-100);
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.index-picnews img {
    object-fit: cover;
    object-position: center;
    max-height: 370px;
    height: 100%;
    aspect-ratio: 4/3;
}

.index-picnews .owl-carousel .owl-item {
    box-sizing: border-box;
}

.index-picnews h6,
.index-picnews .owl-dots {
    position: absolute;
    bottom: .5rem;
    left: 50%;
    transform: translateX(-50%);
}

.index-picnews h6 {
    bottom: 0;
    background: var(--color-bg-n5);
    color: var(--color-text-000);
}

.index-picnews .owl-carousel button.owl-dot {
    width: 10px;
}

.index-picnews .owl-carousel button.owl-dot.active {
    background: var(--color-bg-active);
    width: 10px;
}

/*新闻tab列表*/
.news_tab .active {
    display: flex !important;
}

.news_tab .tab_Tit {
    border-bottom: 1px solid var(--color-theme-400);
    font-size: var(--size-news-title);
}

.news_tab .tab_item {
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.news_tab .tab_item a {
    color: var(--color-text-500);
    font-weight: bold;
}

.news_tab .tab_item.active {
    border-bottom: 3px solid var(--color-theme-400);
}

.news_tab .tab_item.active a {
    color: var(--color-theme-400);
    font-weight: bold;
}

.news_tab .tab_content {
    display: none;
    width: 100%;
    height: 100%;
}

.tab_list {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.index_newlist {
    border-left: 1px solid var(--color-bg-200);
    padding-left: 14px;
    width: 100%;
}

.index_newlist li {
    list-style: circle;
    border-bottom: 1px solid var(--color-bg-200);
}

.index_newlist li a,
.zwgk_newlist li a::before {
    display: flex;
    font-size: var(--size-news-content);
    color: var(--color-text-500);

}

.date {
    color: var(--color-text-200);
    font-size: var(--size-news-info);
    flex: 0 0 auto;
}

.index_newlist li:hover a,
.index_newlist li:hover a .date,
.zwgk_newlist li:hover a::before {
    color: var(--color-theme-500);
}

/*中国竞彩网*/
.zwgk_Tit {
    width: 100%;
    height: 100%;
    position: absolute;
}

.zwgk_Tit::before {
    content: "";
    background: url(/resource/2025/img/bg-bl.jpg) top center;
    background-repeat: repeat-x;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .3;
}

.jhgk_Tit {
    background: linear-gradient(180deg, var(--color-theme-200), transparent);
}

.jhgk_Tit::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/resource/2025/img/hb-dx.png) top center;
    background-repeat: repeat-x;
}

.module_Tit h1 {
    font-weight: bold;
    color: var(--color-theme-400);
}

.module_Tit .Tit {
    position: relative;
    z-index: 1;
    display: inline-block;
    height: max-content;
}

.module_Tit h1::after,
.module_Tit h1::before {
    content: '';
    position: absolute;
    top: 0;
    width: 80%;
    height: 2em;
    background: var(--color-bg-000);
    border-radius: 10px;
    z-index: -1;
}

.module_Tit h1::after {
    left: 0;
    transform: skewX(30deg);
}

.module_Tit h1::before {
    left: 1em;
    transform: skewX(-30deg);
}

.links_1 a {
    color: var(--color-text-000);
    background: var(--color-theme-400);
    border-radius: 50px;
}

.links_1 a:hover {
    background: var(--color-theme-300);
}

.links_2 a {
    color: var(--color-text-500);
}

.links_2 a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 8rem;
    max-height: 8rem;
    object-fit: cover;
    object-position: center;
}

.links_2 a:hover img {
    transform: rotateX(360deg'angle');
}

.index_newlist.zwgk_newlist {
    border-left: none;
    padding-left: 0;
}

.index_newlist.zwgk_newlist li {
    list-style: none;
    border-bottom: none;
}

.zwgk_newlist li a::before {
    content: "▲";
    color: var(--color-theme-500);
    transform: rotate(90deg);
}

.news_tab.zwgk_tab .tab_Tit,
.news_tab.zwgk_tab .tab_item.active,
.news_tab.zmhd_tab .tab_Tit,
.news_tab.zmhd_tab .tab_item.active,
.news_tab.zmhd_tab .tab_item {
    border-bottom: none;
}

.zmhd_tab {
    background: url(/resource/2025/img/hb-dx.png) top center repeat-x var(--color-theme-100);
}

.zmhd_tab .tab_item {
    position: relative;
    z-index: 1;
    flex: 1;
}

.zmhd_tab .l-bg a,
.zmhd_tab .r-bg a {
    color: var(--color-theme-500);
    width: 100%;
    display: block;
}

.zmhd_tab .l-bg a {
    text-align: end;
}

.zmhd_tab .r-bg a {
    text-align: flex-start;
}

.zmhd_tab .tab_Tit .active a {
    color: var(--color-text-000);
}

.zmhd_tab .l-bg::before,
.zmhd_tab .r-bg::before {
    content: "";
    position: absolute;
    top: 0;
    width: 200%;
    height: 100%;
    z-index: -1;
    transform: skewX(-20deg);
}

.zmhd_tab .active.tab_item::before {
    mask-image: none;
    background-color: var(--color-theme-400);
    background-blend-mode: lighten;
    opacity: .5;
}

.zmhd_tab .l-bg::before {
    right: 0;
}

.zmhd_tab .r-bg::before {
    left: 0;
}

.no-border-right {
    border-right: none !important;
}

.zwfw_nav .Tit {
    color: var(--color-theme-400);
}

.zwfw_nav .nav_box:hover {
    background: var(--color-theme-100);
}

.zwfw_nav .nav_box a:hover {
    color: var(--color-theme-500);
}

.tag-list li {
    border-right: 1px solid var(--color-text-500);
    /* flex: 1 0 auto; */
}

.zmhd_tab h3,
.zmhd_tab h4,
.zmhd_tab h5,
.zmhd_tab h6 {
    margin-bottom: 0;
}

.zmhd_tab .tab_content {
    background: var(--color-bg-000);
}

.zwfw_nav,
.zmhd_nav {
    border: 1px solid var(--color-theme-500);
    margin: 0;
    width: 100%;
}

.zwfw_nav img {
    width: 100%;
    max-width: 180px;
}

.bmzx {
    border: 1px solid var(--color-theme-300)
}

.bmzx .Tit {
    background: var(--color-theme-300);
}

.bmzx .Tit h4,
.bmzx .Tit h5,
.bmzx .Tit .icon,
.zjdc .Tit h4,
.zjdc .Tit h5,
.zjdc .Tit .icon {
    color: var(--color-text-000);
}

.bmzx .Tit .icon,
.zjdc .Tit .icon {
    width: 2em;
    height: 2em;
}

.bmzx ul li a {
    color: var(--color-text-500);
    background: var(--color-theme-100);
    border-radius: 5px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.bmzx ul li:hover a {
    background: var(--color-bg-200);
}

.zjdc {
    background: var(--color-theme-100);
}

.zjdc .Tit {
    background: var(--color-theme-300);
}

.zjdc li a {
    background: var(--color-bg-000);
    border-radius: 5px;
    z-index: 9;
    position: relative;
}

.zjdc li,
.zjdc li * {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.zjdc .mub,
.zjdc .btn {
    flex: 0 0 auto;
    background: var(--color-bg-active);
    color: var(--color-text-000);
    border-radius: 8px;
    font-size: var(--size-news-info);
}

.zjdc .info {
    max-height: 0;
    transform: translateY(-100%);
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.zjdc li:hover .info {
    max-height: none;
    transform: translateY(0);
}

.wsxf .btn {
    padding: .5rem 1.5rem;
    flex: 1 auto;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    background: var(--color-theme-200);
    color: var(--color-text-500);
    justify-content: center;
}

.wsxf .btn:hover {
    border: 1px solid var(--color-theme-200);
    background: var(--color-theme-400);
    color: var(--color-text-000);
}

.jhgk_info {
    position: relative;
    z-index: 1;
    background: var(--color-bg-000);
}

.jhgk_info .pic {
    width: 100%;
    position: relative;
    padding: 0;
}

.jhgk_info .pic::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.jhgk_info .pic .bg,
.jhgk_info .pic .boder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.jhgk_info .pic .bg {
    border: 2vw solid var(--color-bg-000);
}

.jhgk_info .pic .boder {
    object-fit: contain;
}

@supports (aspect-ratio: 1 / 1) {
    .jhgk_info .pic {
        aspect-ratio: 1 / 1;
    }

    .jhgk_info .pic::before {
        display: none;
    }
}

.jhgk_info .boder {
    animation: rotate 120s linear infinite;
}

@-moz-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.jhgk_info .info_box {
    border: 1px solid var(--color-theme-500);
}

.jhgk_info .info_box p {
    text-indent: 2em;
    text-align: justify;
}

.jhgk_info li a {
    background: var(--color-theme-100);
    border-radius: 3px;
    height: 100%;
}

.jhgk_info li:hover a {
    background: var(--color-theme-400);
    color: var(--color-text-000);
    border-radius: 10px;
}

.mini_banner {
    background: var(--color-theme-100)
}

.mini_banner .item img {
    height: 100px;
    width: 100%;
}

/*二维码手风琴*/
#govewm {
    width: 100%;
    overflow: hidden;
    background: var(--color-theme-400);
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 0 5px var(--color-theme-200), 0 0 8px 5px var(--color-bg-n2), inset 0 0 10px var(--color-bg-000);
    border: 3px solid var(--color-bg-l5);
}

#govewm .ewm-group {
    display: flex;
    align-items: stretch;
    height: 180px;
}

#govewm .item {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

#govewm .item.active {
    flex: 1 1 auto;
}

#govewm .item .icon {
    display: inline-flex;
    width: max-content;
    min-width: max-content;
    height: 100%;
    align-items: center;
    justify-content: center;
    filter: saturate(0.35);
    border-right: 1px solid var(--color-bg-l2);
}

#govewm .item.active .icon {
    filter: saturate(1);
}

#govewm .item:nth-child(odd) .icon {
    background: var(--color-bg-n2);
}

#govewm .item:nth-child(even) .icon {
    background: var(--color-bg-l2);
}

#govewm .item .icon img {
    width: 80px;
    height: auto;
    display: block;
}

#govewm .item .pic {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    flex: 1 0 auto;
}

#govewm .item .pic a {
    display: flex;
    text-align: center;
    height: 100%;
    padding: .5rem 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--color-text-000);
    justify-content: center;
    align-items: center;
}

#govewm .item.active .pic {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

#govewm .item .pic img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

#govewm .item:not(.active) .pic {
    width: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
}

#govewm .item .pic .ewm-info {
    flex: 1 0 auto;
    width: min-content;
    overflow-y: auto;
    height: 100%;
}

#govewm .item .pic .tit {
    background: rgb(0 0 0 / 10%);
    border-radius: 5px;
    font-weight: bold;
}

#govewm .item .pic p {
    text-align: justify;
    text-indent: 2em;
}

#govewm .item .pic:hover .tit {
    background: var(--color-bg-n2);
    box-shadow: 0 3px 5px var(--color-bg-n2);
}

/*页脚*/
#div_foot {
    background-color: var(--color-theme-100);
    color: var(--color-theme-500);
    font-size: var(--size-news-info);
    line-height: 1.4;
    border-top: 1px solid var(--color-bg-100);
}

#div_foot a {
    color: var(--color-theme-500);
}

#div_foot a:hover {
    color: var(--color-bg-active);
}

#div_foot img {
    max-height: 45px;
    border-radius: 3px;
}

#div_foot .vxewm {
    border-radius: 3px;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

#div_foot .vxewm img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-height: max-content;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#div_foot .help {
    background: var(--color-theme-500);
    color: var(--color-text-000);
}

#div_foot .help a {
    color: var(--color-text-000);
}

.blxxjb {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 5px 10px;
    color: var(--color-theme-300) !important;
    background: var(--color-bg-000);
    border-radius: 3px;
    max-width: 180px;
    font-size: var(--size-news-time);
    line-height: 1.3;
    height: 45px;
}

.blxxjb:hover {
    background: var(--color-bg-l5);
    color: var(--color-theme-500)
}

.blxxjb img {
    width: 30px;
}

.blxxjb a {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    font-size: 12px;
    color: #222;
    line-height: normal;
    text-align: center;
}

.blxxjb a:hover {
    color: var(--color-theme-300);
}

.gov-link-groups .group-links {
    transform: translateY(-2em);
    transition: all 0.3s ease;
    max-height: 300px;
    overflow: hidden;
    z-index: 1;
    bottom: 2em;
    max-height: 0;
}

.gov-link-groups .group-links.show {
    transform: translateY(-2em);
    max-height: 300px;
}

.gov-link-groups .group-links ul {
    max-height: 300px;
    overflow-y: auto;
    position: relative;
    padding: .5rem 1rem;
}

.gov-link-groups .group-toggle {
    background-color: var(--color-bg-000);
    border-radius: .5em;
}

.gov-link-groups a,
.gov-link-groups {
    color: var(--color-text-500) !important;
    display: block;
    padding: .5em;
    line-height: 1.6;
}

.gov-link-groups a:hover {
    color: var(--color-theme-500) !important;
}

.gov-link-groups .iconfont {
    color: var(--color-theme-300);
    transition: transform 0.3s ease;
    font-size: smaller;
}

.gov-link-groups .iconfont.rotate {
    transform: rotate(-90deg);
}

.gov-link-groups .link-group {
    max-width: 240px;
    flex: 1 0 auto;
}

.gov-link-groups .link-group:hover .group-links {
    display: block;
}

.gov-link-groups .group-links li:hover {
    background: var(--color-theme-100);
}

.location-nav {
    border-bottom: 1px solid var(--color-bg-200);
}

.location-nav a {
    color: var(--color-text-500);
}

.location-nav a:last-child {
    color: var(--color-text-200);
}

.location-nav a:hover {
    color: var(--color-theme-300);
}

/*子栏目*/
.left-nav .Tit {
    background: var(--color-theme-300);
    color: var(--color-text-000);
    line-height: 1.6;
}

.left-nav .iconfont {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 1em;
}

.left-nav .iconfont.rotate {
    transform: rotate(90deg);
}

.left-nav ul {
    background: var(--color-theme-100);
}

.left-nav ul.collapse {
    background: var(--color-bg-100);
}

.left-nav li,
.left-nav li a {
    transition: all 0.1s ease;
}

.left-nav li:hover,
.left-nav li.active {
    background: var(--color-theme-200);
    color: var(--color-text-400);
    border-bottom: 1px solid var(--color-theme-500);
}

.left-nav li:hover .list-unstyled,
.left-nav li.active .list-unstyled {
    border-top: 1px solid var(--color-theme-400);
}

.left-nav li:hover>div>a,
.left-nav li.active>div>a {
    color: var(--color-text-000);
}

.left-nav h5,
.left-nav h6 {
    font-weight: lighter;
}

/*领导列表*/
.leader-wrapper {
    background: #fff;
    border-radius: 1rem;
}

.group-title {
    position: relative;
    margin: 2rem 0 1.5rem;
    padding-left: 1rem;
    font-size: 1.35rem;
    font-weight: bold;
    color: #234;
    line-height: 1.2;
}

.group-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 10px;
    background: #0d6efd;
}

.mayor-group {
    background: #eff7ff;
    padding: 1rem 1rem 4rem 1rem;
    border-radius: 8px;
}

.deputy-group {
    background: #f5fbff;
    padding: 1rem 1rem 4rem 1rem;
    border-radius: 8px;
}

.office-group,
.other-group {
    background: #f8f9fa;
    padding: 1rem 1rem 4rem 1rem;
    border-radius: 8px;
}

.deputy-group .row {
    row-gap: 2rem;
}

.material-card {
    margin-bottom: 2rem;
}

.material-card img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.mc-description {
    bottom: 1em !important;
    overflow-y: auto !important;
    padding-right: .5em;
    text-align: justify;
}

.material-card h2 strong {
    letter-spacing: .05em;
}

@media (max-width:768px) {

    .group-title {
        font-size: 1.1rem;
    }

    .mayor-group,
    .office-group,
    .other-group {
        max-width: 100%;
    }

}

.news-list-group .item {
    padding: .5em 1em;
}

.news-list-group .item.active {
    padding: 1em;
}

.news-list-group *,
.news-list-group .item.active *,
.news-list-group *,
.news-list-group .item:hover * {
    -webkit-transition: all 0.3 ease;
    -moz-transition: all 0.3 ease;
    -o-transition: all 0.3 ease;
    -ms-transition: all 0.3 ease;
    transition: all 0.3 ease;
}

.news-list-group .item.active,
.news-list-group .item:hover {
    background: linear-gradient(var(--color-theme-300), var(--color-theme-200));
    border-radius: .5em;
}

.news-list-group .item a {
    color: var(--color-text-500);
}

.news-list-group .item.active a,
.news-list-group .item:hover a {
    color: var(--color-text-000);
}

.news-list-group .item h5,
.news-list-group .item p:nth-last-child(1) {
    margin-bottom: 0;
    line-height: 1.4;
}

.news-list-group .item.active h5 {
    margin-bottom: .5em;
}

.news-list-group .item p {
    display: none;
}

.news-list-group .item.active p,
.news-list-group .item:hover p {
    display: block;
}

.links-group .item a {
    background: var(--color-bg-000);
    border-radius: .5em;
    border: 2px solid var(--color-theme-200);
    color: var(--color-theme-500);
}

.links-group .item a:hover {
    background: var(--color-theme-300);
    border: 2px solid var(--color-theme-400);
    color: var(--color-text-000);
}

/*留言分页*/
.pagination {
    gap: 1em;
    flex-wrap: wrap;
}

.pagination a {
    border: 1px solid #EEE;
    padding: .1em .5em;
    border-radius: 5px;
    background: #f9f9f9;
    color: var(--color-text-500);
}

.pagination a:hover {
    border: 1px solid var(--color-theme-400);
    background: var(--color-theme-300);
    color: var(--color-text-000);
}

/*征集调查*/
.zmhd-zjdc-list {
    padding: .5em;
}

.zmhd-zjdc-list .item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 10px;
    overflow: hidden;
    align-items: stretch;
    margin-bottom: .5em;
    background: var(--color-bg-100);
}

.zmhd-zjdc-list .item:hover,
.zxzx-list .item a:hover {
    box-shadow: 0 0 10px var(--color-bg-200);
}

.zmhd-zjdc-list .status{
    display: flex;
    font-size: var(--size-news-info);
    color: var(--color-text-000);
    flex-wrap: nowrap;
    align-items: center;
    padding: .5em;
    flex: 0 0 auto;
}

.zmhd-zjdc-list .start-status {
    background: var(--color-theme-300);
}

.zmhd-zjdc-list .end-status {
    background: var(--color-bg-active);
}
.zmhd-zjdc-list .no-status {
    background: #bbb;
}
.zmhd-zjdc-list .info {
    display: flex;
    flex-direction: column;
    font-size: var(--size-news-info);
    color: var(--color-text-500);
    line-height: 1.6;
    flex-wrap: nowrap;
    gap: 1em;
    padding: .5em;
    flex: 1 1 auto;
    min-width: 0;
}

.zmhd-zjdc-list .info .Tit {
    font-size: var(--size-news-content);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.zmhd-zjdc-list .info .links {
    display: flex;
    flex-wrap: wrap;
}

.zmhd-zjdc-list .time {
    flex: 1 0 auto;
}

.zmhd-zjdc-list .start-time,
.zmhd-zjdc-list .end-time {
    color: var(--color-text-200);
}

.zmhd-zjdc-list .join {
    font-size: var(--size-news-info);
    color: var(--color-text-000);
    background: var(--color-theme-300);
    padding: .2em 1em;
    border-radius: 20px;
    margin-right: .5em;
}

.zmhd-zjdc-list .result {
    font-size: var(--size-news-info);
    color: var(--color-text-000);
    background: var(--color-bg-active);
    padding: .2em 1em;
    border-radius: 20px;
}

.zmhd-zjdc-list p {
    margin-bottom: 0;
}
/*栏目列表页*/
.class_news_list .news-item {
    border-bottom: 1px solid var(--color-bg-100);
    position: relative;
}

.class_news_list .news-item a {
    color: var(--color-text-500);
    flex: 1 1 auto;
    min-width: 0;
}

.class_news_list .news-item::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-theme-300);
    transition: all .3s;
}

.class_news_list .news-item:hover::after{
    width: 100%;
}

.class_news_list .news-item:hover a {
    color: var(--color-theme-300);
}

.class_news_list .news-item:hover a.btn {
    color: var(--color-text-000);
}

.class_news_list .news-item .btn {
    color: var(--color-text-000);
    flex: 0 0 auto;
    background: var(--color-theme-200);
    font-size: var(--size-news-content);
}

.class_news_list .news-item .btn:hover {
    color: var(--color-text-000);
    background: var(--color-bg-active);
}

.class_news_list .news-item .news {
    padding: 0.5em 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: small;
    color: var(--color-text-400);
}
.class_news_list .list-tit .btn {
    background: var(--color-theme-300);
    color: var(--color-text-000);
}
.class_news_list .list-tit .btn:hover {
    background: var(--color-theme-400);
}
/*新闻详情页*/
.location {
    font-size: var(--size-news-content);
    color: var(--color-text-500);
    padding: .5rem 1rem;
}

.location a:nth-last-child(1) {
    color: #888;
}

.detail {
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    border-radius: 1rem;
}

.detail iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.detail .artTit {
    border-bottom: 1px dashed var(--color-bg-300);
}

.detail .artTit h2 {
    text-align: center;
    font-size: var(--size-boldtitle);
    font-weight: bold;
    font-family: var(--bs-font-sans-serif);
    line-height: 1.6;
    color: var(--color-text-500);
}

.detail .artTit h3 {
    text-align: center;
    margin: 1em auto;
    font-family: fangsong;
    font-size: var(--size-news-title);
    font-weight: bold;
}

.detail .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.detail .info .item {
    flex: 1 0 auto;
    font-size: var(--size-news-info);
    color: var(--color-text-100);
    padding: .5rem 1rem;
}

.detail .info .item span {
    color: var(--color-text-300);
}

.detail .info .print {
    color: var(--color-theme-300);
    cursor: pointer;
}

.detail .info .big {
    font-size: 20px;
}

.detail .info .midd {
    font-size: 16px;
}

.detail .info .small {
    font-size: 14px;
}

.attachment-list {
    padding: 1em;
    border-radius: 1rem;
    background: var(--color-bg-100);
    margin: 1em;
}

.attachment-list h3 {
    margin-bottom: .5em;
    color: var(--color-text-500);
}

.attachment-list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.5em;
}

.attachment-list ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
    line-height: 1.6;
}

.attachment-list ul li a {
    color: var(--color-text-500);
}

.attachment-list ul li a:hover {
    color: var(--color-theme-300);
    padding-left: .5em;
}

.attachment-info {
    color: var(--color-text-200);
    font-size: var(--size-news-info);
}

.attachment-list .icon {
    font-size: 1.5em;
}

#imgBox img,
#imgBox video,
#imgBox table,
#imgBox iframe,
#imgBox p,
#imgBox div,
#imgBox span,
#imgBox h1,
#imgBox h2,
#imgBox h3,
#imgBox h4,
#imgBox h5,
#imgBox h6,
#imgBox audio {
    max-width: 100% !important;
    color: var(--color-text-500);
    object-fit: contain;
}

/* 相册详情 */
#photo-app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.photo-ui-big-images {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.photo-ui-big-image {
    width: 100%;
    margin-right: -100%;
}

.photo-ui-big-image img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 20%;
    object-position: center 20%;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-height: 600px) {
    .photo-ui-big-image img {
        -o-object-position: center center;
        object-position: center center;
    }
}

.photo-ui-thumbnails {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    gap: 10px;
    background-color: rgb(255 255 255 / 80%);
    display: flex;
    justify-content: flex-start;
    padding: 0 1rem;
    padding-top: .5rem;
    padding-right: calc(45% + .5rem);
    min-height: 20vh;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}

.photo-ui-thumbnail {
    display: block;
    cursor: pointer;
    flex: 1 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.photo-ui-cuticle {
    background-color: #D4A12D;
    position: absolute;
    bottom: 0;
    height: .25rem;
    width: 100%;
}

.photo-ui-thumbnail>img {
    width: auto;
}

.photo-ui-content {
    position: absolute;
    width: 44%;
    right: 1%;
    bottom: 0;
    height: 30%;
}

.photo-ui-articles {
    background: #493e56;
    color: white;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 15% 0 0 0;
}

.photo-ui-article {
    padding: 1.5rem;
    width: 100%;
    margin-right: -100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.photo-ui-paragraph {
    margin: 0;
    text-align: justify;
    font-size: var(--size-news-info);
    color: var(--color-text-100);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: auto;
    word-break: break-word;
    line-height: 1.6;
    padding-right: 12px;
    transition: color 0.3s ease;
}

.photo-ui-paragraph:hover {
    color: #D4A12D;
}

.photo-ui-paragraph::-webkit-scrollbar {
    width: 6px;
}

.photo-ui-nav {
    position: absolute;
    right: 0;
    bottom: 100%;
    background: inherit;
}

.photo-ui-nav button {
    background: #493e56;
    border: none;
    -webkit-ui-appearance: none;
    -moz-ui-appearance: none;
    ui-appearance: none;
    padding: .5em;
    width: 2em;
    color: #FFF;
    font-family: monospace;
    transition: inherit;
    transition-duration: 300ms;
}

.photo-ui-nav button:hover,
.photo-ui-nav button:focus {
    background: #D4A12D;
    outline: none;
}

.photo-ui-nav button:active {
    outline: none;
    -webkit-transform: translateY(0.25em);
    transform: translateY(0.25em);
    transition-duration: 100ms;
}

.photo-ui-heading {
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: normal;
}

.photo-ui-heading:before {
    content: '图片详情';
    font-size: .5rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: .5rem;
    letter-spacing: 1px;
}

.photo-ui-big-image {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.photo-ui-big-image img {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}

.photo-ui-big-image[data-active]~.photo-ui-big-image {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.photo-ui-big-image[data-active] {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.photo-ui-big-image[data-active] img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.photo-ui-article {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.photo-ui-article:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D4A12D;
    opacity: 1;
    transition-duration: 0.35s;
    z-index: -1;
}

.photo-ui-article[data-active]~.photo-ui-article {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.photo-ui-article[data-active] {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.photo-ui-article[data-active]:before {
    opacity: 0;
}

.photo-ui-thumbnail>img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition-duration: 0.35s;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.photo-ui-thumbnail:active>img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition-duration: 100ms;
}

.photo-ui-thumbnail:focus {
    outline: none;
}

.photo-ui-cuticle {
    display: none;
}

.photo-ui-thumbnail[data-active]>img,
.photo-ui-thumbnail:hover>img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.photo-ui-thumbnail[data-active] .photo-ui-cuticle {
    display: block;
}

.new-jiajia ul.nav {
    flex-direction: row;
}

/*平板*/
@media (max-width: 992px) {
    :root {
        --size-bigtitle: 34px;
        --size-boldtitle: 28px;
        --size-news-title: 22px;
        --size-nav-title: 20px;
        --size-class-info: 18px;
        --size-news-content: 16px;
        --size-news-info: 14px;
        --size-news-time: 12px;
    }
}

/* 小屏（移动端） */
@media (max-width: 768px) {
    :root {
        --size-bigtitle: 24px;
        --size-boldtitle: 20px;
        --size-news-title: 18px;
        --size-nav-title: 16px;
        --size-class-info: 14px;
        --size-news-content: 13px;
        --size-news-info: 11px;
        --size-news-time: 10px;
    }

    .jhgk_info .bg {
        border: transparent;
        border-radius: 5px;
        aspect-ratio: auto;
    }

    .jhgk_info .boder,
    .zwfw_nav img {
        display: none;
    }

    .floating-menu {
        right: 10px;
        bottom: 80px;
    }

    #mainNavbar li a {
        font-size: var(--size-boldtitle);
        font-family: auto, 'fzdbs';
        letter-spacing: .1em;
    }

    .group-links {
        position: static;
        box-shadow: none;
        border: none;
    }
}