.header-box {
    width: 100%;
    display: flex;
}

.header {
    width: 100%;
    margin: 0 auto;
    max-width: 1390px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-left img {
    width: 40vw;
}

.header-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search {
    margin: 10px 0;
}

.header-search, .information-search {
    background: var(--global-primary-light-color);
    color: #666;
    cursor: pointer;
    padding: 0 15px;
}

.header-search i {
    margin-right: 15px;
}

.header-search:hover {
    filter: brightness(1.05);
}

@media (max-width: 1390px) {
    .header-box {
        padding: 0 30px;
    }
}

@media (max-width: 1000px) {
    .header {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .header {
        height: 200px;
        flex-direction: column;
        justify-content: center;
    }

    .header-left img {
        width: 80vw;
        max-width: 1200px;
    }

    .header-right img {
        width: 80vw;
        max-width: 1200px;
    }
}

@media (max-width: 350px) {
    .header {
        height: 150px;
    }
}
