::-webkit-scrollbar {
    width: 8px;
    /* vertical scrollbar width */
    height: 8px;
    /* horizontal scrollbar height */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* light gray track */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    /* gray thumb */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
    /* darker gray on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    /* thumb and track color */
}

/* For IE and Edge (legacy) */
body {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.active-nav {
    color: #F47009!important;
    font-weight: bold;
}

.top-bg {
    position: fixed;
    top: 0;
    left: 0;
    background: url("../images/title.png");
    background-size: 100% 100%;
    width: 100%;
    height: 142px;
    z-index: 1000;
    background-color: rgba(34,33,34,0.5);
}

.navbar {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item {
    font-size: 20px;
    color: #FFBA21;
    display: flex;
    align-items: center;
    margin-right: 40px;
    cursor: pointer;
}

.nav-item img {
    margin-right: 8px;
}

.nav-item:last-child {
    margin-right: 0px;
}


.left-panel {
    position: fixed;
    top: 160px;
    left: 40px;
    z-index: 1000;
     background-color: rgba(34,33,34,0.5);
}


.right-panel {
    position: fixed;
    top: 160px;
    right: 40px;
    z-index: 1000;
     background-color: rgba(34,33,34,0.5);
}

.pie-area {
    width: 100%;
    height: 200px;
}

.line-area {
    width: 100%;
    height: 230px;
}


.sec-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;

}

.title-left {
    background: url(../images/title-bg.png);
    font-size: 14px;
    color: #E9E9E9;
    width: 138px;
    height: 29px;
    line-height: 25px;
    text-indent: 8px;
}


.count-label {
    font-weight: bold;
    font-size: 32px;
    color: #FFFFFF;
    margin-right: 10px;
}


.sec-3 {
    margin-top: 20px;
}


.moniter-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 5px;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.moniter-item {
    width: 100%;
    height: 109px;

}

.moniter-item img {
    width: 100%;
    object-fit: cover;
}

.intro-area {
    display: flex;
    flex-direction: column;
    background: url(../images/jqgk-bg.png);
    padding: 15px;
    margin: 15px 20px;
}

.intro-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #FFFFFF;
}

/* .intro-navlist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #B1B1B1;
}

.intro-navitem {
    position: relative;
}

.active-intronav:after {
    position: absolute;
    bottom: 10px;
    content: "";
    color: #FFBA21;
    height: 2px;
    width: 44px;
} */




.intro-navlist {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;


    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    width: 100%;
    padding: 0 20px 8px;
}

.intro-navlist::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.intro-navitem {
    /* padding: 10px 20px; */
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.intro-navitem:hover {
    color: #FFBA21;
}

.intro-navitem.active-intronav {
    color: #FFBA21;
    font-weight: bold;
}

.intro-navitem.active-intronav::after {
    content: '';
    position: absolute;
    bottom: -9px;
    /* Adjust based on your padding-bottom value */
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #FFBA21;
    border-radius: 2px;
}

.intro-navlist img {
    margin: 0 5px;
    height: 16px;
    /* Adjust based on your divider image */
    opacity: 0.5;
}

.intro-body {
    height: 415px;
    width: 390px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 30px;
    overflow: auto;
    margin-bottom: 25px;
    padding: 0 20px;
}



/* swiper------------------------------- */

.swiper-container {
    width: 390px;
    height: 219px;
    position: relative;
    overflow: hidden;
    margin: 0px auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 10;
}

.swiper-nav {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.swiper-button {
    position: unset;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 186, 33, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-weight: bold;
    user-select: none;
}

.swiper-button:hover {
    background-color: #FFBA21;
}

.swiper-button:after {
    content: unset !important;
}

/* swiper-------------------------------end */


.system-date {
    position: absolute;
    right: 0;
}

.date-container {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    padding: 10px 36px;

    border-radius: 5px;
    display: inline-block;

}

.gregorian-date {}

.lunar-date {

    margin: 0 5px;
}

.date-container{
    display: flex;
    align-items: center;
}

.weekday-time{
    margin-left: 20px;
}

.weekday {}

.time {}