#HLMB .mainCenterItemMainContainer {
    display: flex;
    padding: 5% 16%;
}

#HLMB .center {
    display: flex;
    flex-wrap: wrap;
}

#HLMB .top {
    text-align: left;
}

#HLMB .left {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#HLMB .boxBg {
    width: 27vw;
    height: 23vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#HLMB .boxBgCard {
    width: 5vw;
    height: 5vw;
    position: absolute;
    background-color: #0084ff;
}

#HLMB .bannerBox {
    width: 26vw;
    height: 22vw;
    background-color: white;
    padding: 1vw;
    border-radius: 1vw;
    z-index: 100;
}

#HLMB .right {
    flex: 3;
}

#HLMB .listItem {
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 12px;
    padding: 1vh;
    border-radius: calc(1vh + 1vw);
    flex-basis: 17%;
    margin: calc(0.5vh);
    margin-left: 0;
}

#HLMB .listItem:hover {
    color: #0084ff;
    cursor: pointer;
}

#HLMB .button {
    width: calc(1vh + 10vw);
    padding: 5px;
    align-items: center;
    border-radius: 2vw;
    justify-content: end;
    background-color: rgba(0, 132, 255, 0.5);
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

#HLMB .button:hover {
    cursor: pointer;
    background-color: #0084ff;
}

#HLMB .icon {
    min-width: 2vw;
    min-height: 2vw;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2vw;
}

#HLMB .icon img {
    transition: all 0.5s;
}

#HLMB .icon img:hover {
    transform: translateX(25%);
}

#HLMB .navText:hover {
    color: #0084ff;
    border-bottom-color: #0084ff;
    border-radius: 2px;
    cursor: pointer;
}

#HLMB .navText {
    padding-bottom: calc(0.5vw);
    border-bottom: 2px solid transparent;
    margin: calc(1vh + 1vw) calc(1vh + 1vw) 0 calc(1vh + 1vw);
}

#HLMB .mainCenterItemMainNav {
    display: flex;
    justify-content: center;
}