
.banner{
    width: 100%;
    overflow: hidden;
}
.banner .swiper-button-prev, .banner .swiper-button-next{
    color: #ffffff;
    z-index: 99999999;
}
.banner-section-bg{
    height: 600px;
    width:100%;
    background-position:center center;
    background-size: 100% 100%;
    filter: blur(50px);
    position: absolute;
    z-index: -1;
    left:0;
    top:0;
}
.banner-section {
    background-image: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-section .banner-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: #fff;
    text-align: right;
}

.banner-section .banner-badge {
    margin-bottom: 20px;
    font-size: 14px;
}

.banner-section .banner-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    white-space: nowrap
}

.banner-section .banner-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-section .banner-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.banner-section .banner-btns .layui-btn{
    border-radius: 0;
    margin: 0;
}

@media (max-width: 576px) {
    .banner-section .banner-content{
        right: 0px;
        width: 100%;
        text-align: center;
    }
    .banner-section .banner-title{
        font-size:24px;
    }
    .banner-section .banner-btns{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
    .banner-section .banner-btns .layui-btn{
        display: block;
        width: 80%;
    }
}