.container_main {
    padding: 40px 0;
    background: #fff;
}

.layout {
    margin: 0px auto;
    width: 95%;
    max-width: 1200px;
}

.container {
    display: flex;
    justify-content: space-between;
}

.main {
    width: 70%;
}
.others {
    width: 25%;
}

.divider {
    display: none;
    width: 4px;
}
.link_map {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.link_map div {
    align-items: center;
    display: flex;
}

.link {
    font-size: 14px;
    /* color: #fff; */
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
.link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
    .container {
        flex-direction: column;
    }
    .main {
        width: 100%;
    }
    .others {
        width: 100%;
        margin-top: 50px;
    }
    .link {
        font-size: 12px;
    }
}
@media screen and (max-width: 550px) {
    .link {
        font-size: 11px;
    }
    .link_map {
        margin-bottom: 25px;
    }
}
