.banner-section {
    width: 100%;
}
.banner-section .banner-container{
    width: 100%;
    position: relative;
}

.banner-container .banner-img {
    width: 100%;
}
.banner-container .banner-text {
    position: absolute;
    left: 16vw;
    bottom: 3.5vw;
    height: 11.4rem;
    max-height: 209px;
}

.search-section {
    width: 100%;
    background: white;
}

.search-section .search-container {
    width: 67.7vw;
    margin: 4.7rem auto 9.4rem auto;
}
.search-container .search-title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-container .search-title h3 {
    flex: 0 0 100%;
    text-align: center;
    color: var(--base-font-color-info);
    font-size: var(--base-font-size-xxlarge);
}

.search-title .search-input-container {
    flex: 0 0 58.7%;
    margin-top: 2.3rem;
    height: 4.4rem;
    border-radius: 2.2rem;
    background: linear-gradient(90deg, #2948A3, #FFBA26);
    position: relative;
}
.search-title .search-input-container .search-input-box {
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: calc(2.2rem - 1px);
    background: white;
    left: 1px;
    top: 1px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.search-input-box .search-input-label {
    flex: 1;
    height: 100%;
}
.search-input-label input {
    width: 100%;
    border-radius: calc(2.2rem - 1px);
    outline: none;
    border: none;
    height: 100%;
    padding-left: 2.7rem;
    font-size: var(--base-font-size-small);
}
.search-img_btn-label {
    flex: 0 0 3.8rem;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.search-img_btn-label img {
    width: 1.6rem;
}

.search-result-container,
.search-tip-container{
    width: 100%;
    margin-top: 4.4rem;
}

.search-result-container .result-title,
.search-tip-container .tip-title{
    font-size: var(--base-font-size-large);
    color: var(--base-font-color-tip-title);
    font-weight: bold;
}
.search-result-container .result-content {
    width: 100%;
    /*height: 8.5vw;*/
    background: white;
    border: 1px solid var(--base-border-color-result);
    margin-top: 2rem;
    border-radius: 0.6rem;
    padding: 1vw;
}

.search-result-container .result-content p{
    margin: 0.1vw 0;
}

.search-tip-container .tip-title {
    margin-bottom: 2.2rem;
}

.search-tip-container p {
    font-size: var(--base-font-size-default);
    color: var(--base-font-color-text);
    line-height: 2rem;
}

@media (max-width: 991px) {
    .banner-container .banner-text {
        height: 40% !important;
    }

    .search-section .search-container {
        width: calc(100% - 40px);
        margin: 4.7rem auto;
    }

    .search-result-container .result-content {
        height: 13rem;
    }
}
