<!--�ֲ�CSS-->

<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
      
        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        /* �ֲ�������ʽ */
        .slider-container {
            position: relative;
            width: 600px;
            height: 360px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background-color: #1a1a1a;
        }
        
        /* ͼƬ���� */
        .slider {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        /* ÿ�Żõ�Ƭ */
        .slide {
            width: 20%;
            height: 100%;
            position: relative;
        }
        
        /* ͼƬ������ʽ */
        .slide-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .slide-link:hover {
            transform: scale(1.02);
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* ͼƬ��������� */
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            color: white;
            padding: 25px;
        }
        
        .slide h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .slide p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        /* ������ */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-nav-item {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-nav-item.active {
            background-color: #fff;
            transform: scale(1.2);
        }
        
        /* ���ҷ�ҳ��ť - ��ɫ���� */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0.7;
        }
        
        .slider-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.9);
            opacity: 0.9;
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        /* ��Ӧʽ��� */
        @media (max-width: 992px) {
            .slider-container {
                height: 400px;
            }
            
            .slide h3 {
                font-size: 1.5rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .slider-container {
                height: 350px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .slider-container {
                height: 300px;
            }
            
            .slide-content {
                padding: 15px;
            }
            
            .slide h3 {
                font-size: 1.3rem;
            }
            
            .slide p {
                font-size: 0.9rem;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
        }
        
        .info {
            text-align: center;
            margin-top: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
    </style>