.bannerWidth {
    width: 80%;
}

.navBar {
    width: 100%;
    height: 2.5rem;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.logo {
    width: 5.05rem;

}

.lang {
    display: inline-block;
    font-size: .45rem;
   
    font-weight: 600;
    color: #a0a0a0;
    cursor: pointer;
}

.select-lang {
    width: 1.25rem;
    height: 1.25rem;
    background: #134498;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.25rem;
    /*transition:all 0.5s;*/
}

.en-banners {
    /* width: 100vw; */
    height: auto;
    /* background: url(/static/img/header-bg.png) no-repeat center; */
    /* background-size: 100%; */
    margin-bottom: 2.725rem;
    margin-top: 2.5rem;
}

.banner {
    display: flex;
    justify-content: center;
    margin-bottom: .75rem;
    height: auto;
}

.leftBox {
    width: 40%;

    margin-right: 2.25rem;
    flex-shrink: 0;

    background-size: cover;
    /* background-size: 100%; */
}

.title {
    font-size: .8rem;
    color: #252525;

    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.name {
    font-size: .9rem;
    color: #134498;
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}



/*定义滚动条样式（高宽及背景）*/
::-webkit-scrollbar {
    /* 滚动条宽度， width：对应竖滚动条的宽度  height：对应横滚动条的高度*/
    width: 4px;
    background: #FFFFFF;
}

/*定义滑块 样式*/
::-webkit-scrollbar-thumb {
    border-radius: 3px;
    height: 100px;
    background-color: #007acc;
}

body::-webkit-scrollbar {
    display: none
}

.banner-detail {
    display: flex;

}

@media (max-width: 996px) {
    .en-banners{
        margin-bottom: 1.5rem;
        margin-top: 2.5rem;
    }
    .name{
        font-size: .5rem;
    }
    .banner-detail {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .leftBox{
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .bannerWidth{
        width: 90%;
    }
}