

/* banner样式 - 修改为全屏宽度 */
.banner {
    width: 100%;
    margin: 0 auto;
    padding: 0; /* 移除内边距 */
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* 移除圆角以适应全屏 */
}

/* 内容区域样式 */
.content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .content {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .content {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 20px 15px;
    }
}

/*banner代码*/
#bannerPagination{bottom: 20px}
/* 简洁响应式版本 */
.banner .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    background: #061b4e;
    opacity: 1;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    background: #E1AC14;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .banner .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .banner .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
    }

    .banner .swiper-pagination-bullet-active {
        border-width: 1.5px;
    }
    #bannerPagination{bottom: 10px}
}

@media (max-width: 480px) {
    .banner .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .banner .swiper-pagination-bullet-active {
        border-width: 1px;
    }
}