.links {
    background: #327CE4;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding: 20px;

    :is(a) {
        color: #fff;
        font-weight: 400;
        font-size: 14px;
        margin-right: 20px;
    }
}

.bg-black {
    background: #222222;
    color: white;
    font-size: 14px;
}

.pt58px {
    padding-top: 58px;
}

.code {
    width: 100px;
    height: 100px;
}

.logo {
    width: 74px;
    height: 90px;
}

.letter-spacing {
    letter-spacing: 30px
}

.line-height-24 {
    line-height: 24px;
}

.text-align-right {
    display: flex;
    justify-content: space-between;
    line-height: 24px;
    margin-right: 10px; /* 可根据需要调整右边距 */
}


.mgl60 {
    margin-left: 60px;
}

.foot {
    width: 1200px;
    height: 64px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
}

.under {
    border-bottom: 1px solid rgba(255, 255, 255, .6);

}

@media screen and (max-width: 1200px) {
    .mgb40 {
        flex-direction: column;
        padding: 20px;

        > div:nth-child(2) {
            margin-top: 20px;

            .code {
                width: 80px;
                height: 80px;
            }
        }
    }

    .foot {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;

        > div:nth-child(2) {
            margin-top: 10px;
        }
    }

}

ul.horizontal-list {
    list-style: none;
    display: flex;
    padding: 0;
}

li.horizontal-list-item {
    margin-right: 10px; /* 设置<li>之间的间距 */
}


