/*顶部导航条样式*/
.bottom-common {
    height: clamp(48px, calc(100vw * 96 / 1920), 192px);
    background: #171F36;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(28px, calc(100vw * 56 / 1920), 112px);
    font-size: 12px;
    color: #FFFFFF;
    background: rgba(23,31,54,0.56);
}
.bottom-common .bottom-logo {
    width: clamp(86px, calc(100vw * 171 / 1920), 342px);
    height: clamp(17px, calc(100vw * 34 / 1920), 68px);
}
.bottom-common .bottom-logo img {
    width: 100%;
    height: 100%;
}

