.footer {
    border-top: 4px solid #d64444;
}
.foot-selectBox {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
    color: #000;
    width: 1400px;
    margin: 0 auto;
}
.foot-selectBox .selectItem {
    display: flex;
    position: relative;
    cursor: pointer;
    align-items: center;
    height: 34px;
    flex-shrink: 0;
}

.foot-selectBox .label {
    display: flex;
    align-items: center;
}
.foot-selectBox .label .icon-select {
    width: 9px;
    height: 5px;
    margin-left: 9px;
    display: block;
}

.foot-selectBox .selectItem .selectList {
    display: none;
    position: absolute;
    width: 130%;
    background-color: #fff;
    top: 0;
    left: 50%;
    transform: translate(-50%,-100%);
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    padding: 5px 10px;
    box-shadow: 0 0 3px rgba(0,0,0,.1);
}
.foot-selectBox .selectItem:hover .selectList {
    display: block;
}

.foot-selectBox .selectItem .selectList a {
    line-height: 1.5;
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.foot-selectBox .selectItem .selectList a:hover {
    color: #C23B3C;
}

.foot-selectBox .selectItem .selectList a:not(:last-child) {
    margin-bottom: 8px;
}

.footer-message {
    padding: 32px calc((100% - 1400px) / 2) 40px;
    background: #C23B3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tabs:nth-child(1) {
    font-size: 16px;
    line-height: 2;
}

.tabs:nth-child(2) {
    color: #FFF;
    font-size: 14px;
    padding: 0 20px;
    line-height: 1.5;
    box-sizing: border-box;
    text-align: center;
    display: flex;
}

.tabs .code img {
    margin: 0 auto;
    display: block;
}

.tabs .code:not(:last-child) {
    margin-right: 40px;
}


@media screen and (max-width: 768px)  {
    .foot-selectBox .selectItem:not(:last-child) {
        margin-right: 0!important;
    }
    .foot-selectBox .selectItem {
        width: 50%!important;
    }
}