            .banner-slider {
                position: relative;
                width: 100%;
                height: 400px;
                overflow: hidden;
                border-radius: 8px;
                margin-bottom: 20px;
            }
            
            .banner-list {
                height: 100%;
            }
            
            .banner-item {
                position: absolute;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 0.5s ease;
                /* 确保链接可点击 */
                pointer-events: none;
            }
            
            .banner-item.active {
                opacity: 1;
                /* 激活状态下允许点击 */
                pointer-events: auto;
            }
            
            .banner-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .banner-info {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 40px;
                background: linear-gradient(transparent, rgba(0,0,0,0.8));
                color: #fff;
            }
            
            .banner-info h2 {
                margin: 0;
                font-size: 24px;
                text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            }
            
            .banner-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 40px;
                height: 40px;
                border: none;
                border-radius: 50%;
                background: rgba(255,255,255,0.2);
                color: #fff;
                cursor: pointer;
                z-index: 2;
                transition: all 0.3s ease;
            }
            
            .banner-btn:hover {
                background: rgba(255,255,255,0.3);
            }
            
            .banner-btn.prev { left: 20px; }
            .banner-btn.next { right: 20px; }
            
            .banner-dots {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 8px;
                z-index: 2;
            }
            
            .dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255,255,255,0.4);
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .dot.active {
                background: #fff;
                transform: scale(1.2);
            }

            /* 移动端响应式样式优化 */
            @media screen and (max-width: 768px) {
                .banner-slider {
                    height: auto;
                    padding-bottom: 50%;
                    border-radius: 0;
                    background: #f5f5f5;
                }

                .banner-item {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .banner-item img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .banner-info {
                    padding: 15px;
                    background: linear-gradient(transparent, rgba(0,0,0,0.7));
                }

                .banner-info h2 {
                    font-size: 16px;
                    line-height: 1.4;
                    text-align: center;
                    margin: 0;
                    padding: 0 30px;
                }

                .banner-btn {
                    width: 32px;
                    height: 32px;
                    font-size: 14px;
                    background: rgba(0,0,0,0.2);
                    backdrop-filter: blur(2px);
                }

                .banner-btn:hover {
                    background: rgba(0,0,0,0.3);
                }

                .banner-btn.prev { left: 8px; }
                .banner-btn.next { right: 8px; }

                .banner-dots {
                    bottom: 12px;
                    gap: 6px;
                }

                .dot {
                    width: 6px;
                    height: 6px;
                    background: rgba(255,255,255,0.6);
                }

                .dot.active {
                    background: #fff;
                    transform: scale(1.2);
                }
            }

            /* 小屏幕设备进一步优化 */
            @media screen and (max-width: 480px) {
                /* // .banner-slider {
                //     padding-bottom: 62.5%;
                // } */

                .banner-btn {
                    width: 28px;
                    height: 28px;
                    font-size: 12px;
                }

                .banner-info {
                    padding: 12px 10px;
                }

                .banner-info h2 {
                    font-size: 14px;
                    padding: 0 25px;
                }
            }

            /* 超小屏幕优化 */
            @media screen and (max-width: 360px) {
                .banner-slider {
                    padding-bottom: 66.67%;
                }

                .banner-btn {
                    width: 24px;
                    height: 24px;
                    font-size: 10px;
                }

                .banner-info h2 {
                    padding: 0 20px;
                }
            }
