
    body {
      font-family: "PingFang SC", "Noto Sans SC", "SimSun", "Microsoft YaHei", Arial, sans-serif !important;
    }
    .care-days-banner {
        position: relative;
        min-height: 650px;
        overflow: hidden;
        margin-bottom: 0;
    }
    .banner-content-box{
        z-index:2;
        position:absolute;
        right: 0;
        bottom: 0;
        width: 50%;
    }
    .banner-content{
      position: relative;
      background: #00A2EA;
      width: 100%;
      height: 80px;
      line-height:80px;
      border-radius: 100px 0 0 0;
      color: #FFF;
      font-size: 20px;
      text-align:left;
      padding:0 60px;
      overflow: hidden;
      text-overflow:ellipsis;
      white-space: nowrap;
    }
    .banner-content::after{
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 30%;
        height: 100%;
        background: #ACCE22;
    }
    .care-days-banner img {
        width: 100%;
        height: auto;
    }
    
    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0, 162, 234, 0.8), rgba(0, 116, 204, 0.6));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }
    
    .banner-content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .banner-info {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        padding: 15px 30px;
        border-radius: 50px;
        display: inline-block;
        margin-top: 20px;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .content-section {
        padding-top: 80px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
    }
    
    .section-title::after {
        content: '';
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #00A2EA, #0074CC);
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }
    
    .activity-content {
        color: #3E3A39;
        text-align: justify;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 48px; /* 200% */
    }
    
    /* 活动照片模块 */
    .gallery-section {
        padding-top: 80px;
        background: white;
    }
    
    .photos-title {
        font-size: 40px;
        font-weight: 600;
        color: #333;
        margin-bottom: 40px;
    }
    
    .photos-grid {
        display: grid;
        grid-template-columns: 4fr 1fr;
        gap: 20px;
    }
    
    .main-photo-container {
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    @media screen and (max-width: 1200px) {
        .main-photo-container, .side-photos {
            height: 424px;
        }
    }
    @media screen and (min-width: 1200px) {
        .main-photo-container, .side-photos {
            height: 530px;
        }
    }
    @media screen and (min-width: 1680px) {
        .main-photo-container, .side-photos {
            height: 624px;
        }
    }
    @media screen and (min-width: 1920px) {
        .main-photo-container, .side-photos {
            height: 728px;
        }
    }
    .main-photo {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
    
    .photo-nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 24px;
        color: #005BAC;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .photo-nav-arrow img{
      width: 100%;
      height: 100%;
    }
    
    .photo-nav-arrow:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .photo-nav-arrow.prev {
        left: 20px;
    }
    
    .photo-nav-arrow.next {
        right: 20px;
    }
    
    .photo-counter {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: white;
        padding: 8px 16px;
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        border-radius: 100px;
        background: rgba(0, 0, 0, 0.25);
    }
    
    .side-photos-container{
      overflow-y: scroll;
    }
    .side-photos-container::-webkit-scrollbar-thumb {
        background: transparent;
     }
     .side-photos-container::-webkit-scrollbar {
        width: 0px;
     }
    .side-photo-item {
        width: 100%;
        /* height: 135px;
        aspect-ratio: 16/9; */
        flex-shrink: 0;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex: 1;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: .8rem;
    }
    
    .side-photo-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }
    
    .side-photo-item.active {
        border: 2px solid #005BAC;
    }
    
    .side-photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .featured-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #FF6B6B, #FF5722);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
    }
    
    /* 活动视频模块 */
    .video-section {
        padding-top: 80px;
        background: #fff;
    }
    
    .videos-title {
        font-size: 40px;
        font-weight: 600;
        color: #333;
        margin-bottom: 40px;
    }
    
    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .video-item {
        background: white;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .video-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    .video-thumbnail {
        position: relative;
        width: 100%;
        height: 277px;
        overflow: hidden;
    }
    
    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgb(215 224 231 / 46%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .play-icon:hover {
        background: rgba(0, 91, 172, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .video-description {
        padding: 20px;
        color: #3E3A39;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .view-more-btn {
        display: block;
        width: 200px;
        margin: 0 auto;
        padding: 12px 30px;
        border: 1px solid #005BAC;
        border-radius: 0;
        background: white;
        color: #005BAC;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .view-more-btn:hover {
        background: #005BAC;
        color: white;
        text-decoration: none;
    }
    
    /* 活动报道模块 */
    .reports-section {
        padding: 50px 0 80px;
        background: white;
    }
    
    .reports-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .reports-title {
        font-size: 40px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }
    
    .reports-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .report-card {
        background: white;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .report-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    .report-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .report-content {
        padding: 20px;
    }
    
    .report-title {
        color: #3E3A39;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 20px;
        line-height: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
        word-break: break-all;
    }
    
    .report-description {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 12px;
    }
    
    .report-date {
        color: #0061AE;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    
    .learn-more-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 64px;
        flex-shrink: 0;
        padding: 0;
        border: 1px solid #005BAC;
        border-radius: 0;
        background: white;
        color: #005BAC;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .learn-more-btn:hover {
        background: #005BAC;
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 91, 172, 0.3);
    }
    
    .stats-section {
        background: linear-gradient(135deg, #00A2EA 0%, #0074CC 100%);
        color: white;
        padding: 60px 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 3rem;
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }
    
    @media (max-width: 768px) {
        .banner-content h1 {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .photos-grid {
            grid-template-columns: 1fr;
        }
        
        .side-photos {
            flex-direction: row;
            overflow-x: auto;
        }
        
        .side-photo-item {
            min-width: 200px;
        }
        
        .video-grid,
        .reports-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .photos-title,
        .videos-title,
        .reports-title {
            font-size: 28px;
        }
        
        .reports-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        
        .content-section,
        .gallery-section,
        .video-section,
        .reports-section {
            padding: 50px 0;
        }
    }
    .calender{
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid #005BAC;
        width: 160px;
        margin-top: 70px;
    }
    .session_no{
        width: 100%;
        color: #FFF;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        background: #005BAC;
        text-align: center;
        padding: 4px 0;
    }
    .year{
        width: 160px;
        text-align: center;
        flex-shrink: 0;
        color: #3E3A39;
        font-size: 42px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding: 4px 12px;
    }
    .breadcrumb {
      background-color: #ffffff;
      margin-top: 40px;
      margin-bottom: 0px;
      padding: 0;
    }
    .breadcrumb-item {
      color: #333;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    /* --------------------
    折叠过渡增强动画
 -------------------- */
 .collapse {
   transition: height 0.3s ease, opacity 0.3s ease;
 }

 .collapsing {
   opacity: 0;
   height: 0;
   transition: height 0.3s ease, opacity 0.3s ease;
 }

 .collapse.show {
   opacity: 1;
   transition: height 0.3s ease, opacity 0.3s ease;
 }

/* 分页样式增强 */
.pagination .page-link:hover {
    background: #00A2EA !important;
    border-color: #00A2EA !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 162, 234, 0.3);
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #0074CC !important;
    text-decoration: none !important;
}

.article-link:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

.report-card:hover .report-title a {
    color: #00A2EA !important;
    transition: color 0.3s ease;
}

.hidden {
    display: none;
}
.video-item {
    transition: all 0.3s ease;
}
