        .container {
            max-width: 1000px;
            width: 100%;
            /*background-color: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 20px;*/
        }
        
        .slider-container {
            position: relative;
            width: 969px;
            height: 645px;
            overflow: hidden;
            padding-top: 10px;
            /*border-radius: 10px;*/
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }
        
        .slide {
            width: 25%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 0;
            color: #fff;
            position: relative;
            /* overflow: hidden; */
        }
        
        .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 100% 100%;
            background-position: center;
            transition: transform 0.8s ease;
            z-index: 0;
        }
        
        .slide:hover .slide-image {
            transform: scale(1.1);
        }
        
        .slide::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 15%;
            background: linear-gradient(to top, rgba(0, 0, 0, 1.5), rgba(0, 0, 0, 0.1));
            z-index: 1;
        }
        
        .slide-content {
			position: relative;
			z-index: 2;
			text-align: left;
			width: 100%;
			/* padding: 20px; */
			height: 107px;
        }
        
        .slide-title {
            font-size: 1.5rem;
            color: #fff;
            letter-spacing: 2px;
            line-height: 1.2;
            margin-bottom: 10px;
            padding-left: 30px;
            padding-right: 20px;
            transition: all 0.3s ease;
        }
        
        .slide-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .slide-title a:hover {
            /* color: #ffeb3b; */
            /* text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9); */
        }
        
        .calendar-sticker {
            position: absolute;
            top: -10px;
            left: 0px;
            background-color: #fff;
            /*border-radius: 10px;
            padding: 10px;*/
            /*box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);*/
            z-index: 3;
            text-align: center;
            height: 76px;
            width: 72px;
            border-top: 4px solid #004EB3;
        }
        
        .calendar-day {
            font-size: 28px;
            font-weight: bold;
            color: #000121;
            line-height: 1;
            margin-top: 8px;
        }

        .calendar-day::after {
            content: '';
            position: absolute;
            top: 55%;
            left: 25%;
            width: 50%;
            height: 1px;
            background: #000121;
            opacity: 0.4;
            transform: rotate(-7deg);
        }
        
        .calendar-month {
            font-size: 10px;
            color: #000121;
            opacity: 0.4;
            margin-top: 12px;
        }
        
        .nav-arrows {
            position: absolute;
            bottom: 12px;
            right: 13px;
            display: flex;
            gap: 15px;
            z-index: 3;
        }
        
        .arrow {
            width: 34px;
            height: 34px;
            /*background-color: rgba(255, 255, 255, 0.9);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
            padding: 5px;
            border: none;
            overflow: hidden;
            position: relative;
        }
        
        .arrow:hover {
            /*background-color: rgba(255, 255, 255, 1);*/
            transform: scale(1.1);
        }
        
        /* 箭头图片容器样式 */
        .arrow-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: transparent;
            transition: opacity 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        /* 默认显示普通状态图片，隐藏悬停状态图片 */
        .arrow .normal {
            opacity: 1;
        }
        
        .arrow .hover {
            opacity: 0;
        }
        
        /* 鼠标悬停时显示悬停状态图片，隐藏普通状态图片 */
        .arrow:hover .normal {
            opacity: 0;
        }
        
        .arrow:hover .hover {
            opacity: 1;
        }
        
        /* 图片链接样式 */
        .image-link {
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 4;
        }