.nav-box{
    z-index: 1;
}
.nav-box a{
    font-size: 14px;
}
.container {
    width: 1200px;
}

.I_title {
    padding: 30px 0 30px 38px;
    font-size: 20px;
    font-weight: 500;
    background: url(../images/dot.png) 0/28px 26px no-repeat;
}

.news-silder {
    width: 640px;
    height: 380px;
    overflow: hidden;
}


.news-silder .hd {
    z-index: 100;
    bottom: 10px;
}

.news-silder .hd ul {
    width: 140px;
}

.news-silder .hd ul li {
    height: 4px;
    width: 40px;
    opacity: .4;
    background: #fff;
}
.news-silder .bd a img{
    width: 640px;
    height: 390px;
}
/*万年历*/
.calendar-box{
    width: 520px;
}
.calendar-hader span:not(:nth-child(2)){
    cursor: pointer;
}
.calendar-day>div{
    border:1px solid #dee2e6;
    width: 75px;
    height: 50px;
    overflow: hidden;
}
.calendar-day>div:not(:nth-child(7n)){
    margin-right: -1px;
}
.calendar-day>div span{
    font-size: 20px;
    line-height: 1;
    padding-top: 2px;
    display: inline-block;
}
/*周日红色*/
.calendar-day>div:nth-child(7n - 6) span{
    color: #f00;
}
.calendar-day>div div{
    margin-top: -4px;
}
.calendar-day>div div a{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #f00;
}
#calenderDay > .c-disable{
    opacity: .4 !important;
}

.card-title {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 39px;
}

.card-date{
    font-size: 14px;
    color: #666;
}
.card-info{
    font-size: 12px;
    color: #999;
}
.card-btn a {
    font-size: 12px;
}
.active-list .card-img-top{
    max-height: 154px;
}

.active-list .col-3{
    position: relative;
}

/* 点击弹出二维码 */
.card-qr{
    cursor: pointer;
}
.clients-qr{
    width: 150px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    opacity: 0;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: -1;
}

.active-list .col-3 .card-qr:before{
    content: '';
    display: block;
    position: absolute;
    left:  calc(var(--bs-gutter-x) * .5);
    top: 0;
    right:  calc(var(--bs-gutter-x) * .5);
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all .3s;
}

.active-list .col-3:hover .card-qr:before{
    opacity: 1;
}
.active-list .col-3:hover .clients-qr{
    opacity: 1;
    z-index: 3;
}

@media screen and (max-width: 960px){
    .container{
        width: 100%;
    }
    .news-box{
        flex-wrap: wrap;
    }
    .news-silder{
        width: 100%;
        height: auto;
    }
    .calendar-box{
        width: 100%;
        height: auto;
    }
    .col-3{
        width: 100%;
    }
    .active-list .card-img-top{
        width: 100%;
        height: auto;
        max-height: 100%!important;
    }
}