.aolei-banner {
    position: relative;
    z-index: 100;
}

.aolei-banner .swiper {
    overflow: hidden !important;
}

.aolei-banner .swiper-slide {
    background: rgba(0, 0, 0, 0.4);
}

.aolei-banner .banner-bg {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.aolei-banner .banner-content {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: left;
    z-index: 150;
    display: flex;
    align-items: center;
    color: #FFF;
}
.aolei-banner
  .swiper-slide[data-swiper-slide-index="1"]
  .banner-content {
    top: 28%;
}
.aolei-banner .banner-content .container {
    padding-left: 10%;
    position: relative;
}

.aolei-banner .banner-title {
    font-size: var(--font-56);
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    font-family: var(--title-font-family);
    margin-bottom: 10px;
}

.aolei-banner .banner-third-title {
    font-size: var(--font-16);
    font-weight: 500;
    line-height: 1.5;
    color: #FFF;
}

.aolei-banner .banner-sub-title {
    font-size: var(--font-24);
    font-weight: 400;
    line-height: 1.5;
    color: #FFF;
}

.aolei-banner .banner-content .btn-box {
    display: flex;
    padding: 30px 0;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, var(--color-primary) 40%, #E1E2E6 40%) 1;
    width: 60%;
    margin-bottom: 24px;
    position: relative;
}

.aolei-banner .aolei-search-container {
    position: relative;
    flex: 1;
}

.aolei-banner .aolei-search-input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 1px solid #E1E2E6;
    background: #FFF;
    color: #333;
    font-size: var(--font-16);
}

.aolei-banner .aolei-search-results {
    position: absolute;
    /* top, left, width 将由 JS 动态计算注入 */
    background: #FFF;
    border: 1px solid #E1E2E6;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9999;
}

.aolei-banner .search-result-item {
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    transition: background 0.3s;
    text-decoration: none;
    background: #FFF;
}

.aolei-banner .search-result-item:hover {
    background: #EEE;
}

.aolei-banner .search-result-item .search-title {
    font-size: var(--font-16);
    font-weight: 700;
    line-height: normal;
    font-family: var(--font-family);
    color: #333;
}

.aolei-banner .search-result-item .search-type {
    font-size: var(--font-16);
    font-weight: 400;
    line-height: normal;
    font-family: var(--font-family);
    color: #999;
}

.aolei-banner .search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #333;
    font-size: var(--font-16);
    font-weight: 400;
    line-height: normal;
    font-family: var(--font-family);
    display: none;
}

.aolei-banner .search-no-results svg {
    display: block;
    margin: 0 auto 15px;
}

.aolei-banner .go-solutions {
    color: var(--color-primary);
    text-decoration: underline;
    margin-left: 5px;
}

.aolei-banner .banner-content-btn {
    position: relative;
    flex-shrink: 0;
    font-size: var(--font-16);
    font-weight: 700;
    background: var(--color-primary);
    font-family: var(--font-family);
    line-height: 1.25;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 36px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aolei-banner .banner-content-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% - 1px);
    width: 20px;
    height: 100%;
    background: var(--color-primary);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    transition: all 0.3s ease;
}

.aolei-banner .banner-content-btn:hover,
.aolei-banner .banner-content-btn:hover::after {
    background: var(--btn-hover);
}

.aolei-banner .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.aolei-banner .swiper-pagination {
    position: relative !important;
    width: auto !important;
}

.aolei-banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #FFF;
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.aolei-banner .swiper-pagination-bullet-active {
    background-color: var(--color-primary) !important;
}

.aolei-banner .swiper-button-prev,
.aolei-banner .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFF;
    border: 1px solid #FFF;
    transition: all 0.3s ease;
    z-index: 10;
}

.aolei-banner .swiper-button-prev::after,
.aolei-banner .swiper-button-next::after {
    font-size: 16px;
}

.aolei-banner .swiper-button-prev:hover,
.aolei-banner .swiper-button-next:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 1200px) {
    .aolei-banner .banner-content .container {
        /* padding-left: 20%; */
    }

    .aolei-banner .swiper-slide {
        height: 600px;
    }
}

@media screen and (max-width: 992px) {
  .aolei-banner .banner-content{
    top: 35%;
  }
    .aolei-banner .banner-content .container {
       
        padding-left: 15px;
    }

    .aolei-banner .swiper-slide {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .aolei-banner .banner-content .btn-box {
        width: 80%;
    }
    .aolei-banner .banner-content .container { 
        width: 80%;
    }
    .aolei-banner .banner-content-btn {
        padding: 18px;
    }
    .aolei-banner .aolei-search-input {
        padding: 0 8px;
    }
    .aolei-banner .swiper-button-prev,
    .aolei-banner .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .aolei-banner .swiper-slide {
        height: 450px;
    }

    .aolei-banner .banner-content .btn-box {
        width: 100%;
    }

    .aolei-banner .search-no-results {
        padding: 10px 15px;
    }
}