  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
   
        .page-title {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 0.5rem;
             margin-top: 1.5rem;
        }
        .subtitle {
            font-size: 1.2rem;
            color: #2b6cb0;
            margin-bottom: 2rem;
        }
        .container {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap; /* 响应式换行 */
        }
        /* 日历控件样式 */
        .calendar-section {
            width: 30%;
            min-width: 300px; /* 最小宽度，保证日历显示完整 */
        }
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .calendar-header button {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        .calendar-header button:hover {
            background-color: #f7fafc;
        }
        .calendar-header h2 {
            font-size: 1.5rem;
            color: #2d3748;
        }
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }
        .calendar-grid .day-label {
            text-align: center;
            font-weight: bold;
            color: #4a5568;
            padding: 0.5rem 0;
        }
        .calendar-grid .day {
            text-align: center;
            padding: 0.5rem 0;
            color: #4a5568;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        .calendar-grid .day:hover {
            background-color: #f7fafc;
        }
        .calendar-grid .day.active {
            background-color: #e53e3e;
            color: white;
            font-weight: bold;
        }
        .calendar-grid .day.other-month {
            color: #cbd5e0; /* 其他月份日期置灰 */
            cursor: default;
        }
        .calendar-grid .day.other-month:hover {
            background-color: transparent;
        }
        .calendar-grid .day.event-day {
            position: relative;
        }
        .calendar-grid .day.event-day::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background-color: #e53e3e;
            border-radius: 50%;
        }
        /* 新闻区域样式 */
        .news-section {
            width: 65%;
            min-width: 300px;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            min-height: 200px;
            padding: 1rem 0;
        }
        .news-image {
            background: #f7fafc;
            padding: 1rem;
            border: 1px solid #e2e8f0;
        }
        .news-image img {
            width: 180px;
            height: auto;
        }
        .news-content h3 {
            font-size: 1.2rem;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        .news-content h2 {
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        .news-content .date {
            color: #4a5568;
            margin-bottom: 0.3rem;
        }
        .news-content .location {
            color: #4a5568;
            margin-bottom: 0.8rem;
        }
        .news-content a {
            color: #2b6cb0;
            text-decoration: none;
            font-weight: bold;
        }
        .news-content a:hover {
            text-decoration: underline;
        }
        .no-event {
            color: #718096;
            font-style: italic;
            padding: 2rem;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .calendar-section, .news-section {
                width: 100%;
            }
            
              .news-section {
            width: 100%;
            min-width: 300px;
            display: block;
         
            min-height: 200px;
          
        }
        
              .news-image {
            background: #f7fafc;
            padding: 1rem;
            width: 100%;
            border: 1px solid #e2e8f0;
        }
        
                .news-image img {
            max-width: 100%!important;
            height: auto;
        }
        .news-content{margin-top:20px}
           .news-card {
            width: 100%!important; /* 关键：精确计算卡片宽度（抵消padding） */
            margin: 0 1.5rem; /* 用margin替代padding，避免宽度溢出 */
            flex-shrink: 0; /* 禁止卡片收缩，保证宽度固定 */
        }
        }
        
        
        
                    /* 容器基础样式 */
        .news-container {
            position: relative;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 滑动按钮样式 */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: #00b358;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-size: 20px;
            color: #fff;
            cursor: pointer;
            z-index: 10;
            opacity: 1;
            pointer-events: auto;
            /* 仅当只有1张卡片时禁用按钮 */
        }
        .slider-btn:disabled {
            opacity: 0.3;
            pointer-events: none;
        }
        .prev-btn {
            left: 10px;
        }
        .next-btn {
            right: 10px;
        }

        /* 滑动容器核心样式 */
        .news-slider {
            display: flex;
            transition: transform 0.3s ease;
            will-change: transform;
        }

        /* 新闻卡片样式 */
        .news-card {
            flex: 0 0 auto;
            width: calc(100% / 3);
            padding: 0 10px;
            box-sizing: border-box;
        }
        .news-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        .date {
            color: #999;
            font-size: 12px;
            margin-bottom: 8px;
        }
        .news-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .news-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .learn-more {
            color: #0066cc;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
        }

        /* 移动端自适应 */
        @media (max-width: 768px) {
            .news-card {
                width: 100%; /* 手机端每行1张 */
                
                    margin: 0 .1rem;
    flex-shrink: 0;
            }
        }
        @media (min-width: 769px) and (max-width: 992px) {
            .news-card {
                width: 50%; /* 平板端每行2张 */
            }
        }

        .wow {
            visibility: visible !important;
        }