.yuedong_foot {
    background: #1E1E2A;
    padding-top: 1.875rem;
}

.yuedong_foot a:hover {
    color: #FFF;
}

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

.yuedong_foot .yuedong_foot_content_item h3 {
    position: relative;
    color: #FFF;
    font-family: var(--font-family);
    font-size: max(18px, 0.75rem);
    font-weight: 700;
    line-height: 1.25;
}

.yuedong_foot .yuedong_foot_content_item h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.375rem;
    width: 1.5rem;
    height: 1px;
    background: var(--color-primary);
}

.yuedong_foot_content_item ul,
.yuedong_foot_content_item_about_content {
    margin-top: 1.3125rem;
}

.yuedong_foot_content_item li {
    color: #BFBFD2;
    font-size: max(14px, 0.5rem);
    font-weight: 500;
    line-height: 2.125;
}



.yuedong_foot_content_item_about_content p {
    color: #BFBFD2;
    font-size: max(14px, 0.5rem);
    font-weight: 400;
    line-height: 1.625;
}

.yuedong_foot_content_item_about {
    max-width: 20%;
}

.yuedong_foot_content_item_contact {
    max-width: 22%;
}

.yuedong_foot_content_item_follow ul {
    display: flex;
    gap: 8px;
}

.yuedong_foot_content_item_follow li {
    width: max(36px, 1.4063rem);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
}

.yuedong_foot_content_item_follow li a {
    display: block;
    width: 50%;
}

.yuedong_foot_content_item_follow li img {
    width: 100%;
    height: 100%;
}

.yuedong_foot_copyright {
    margin-top: 1.25rem;
    border-top: 1px solid #3D3D3D;
    padding: 0.5625rem 0;
    color: #C3C3C3;
    font-size: 14px;
    font-weight: 400;
    line-height: 3.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1630px) {
    .yuedong_foot .container {
        max-width: 1530px;
    }
}

@media screen and (max-width: 992px) {
    .yuedong_foot .yuedong_foot_content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .yuedong_foot_content_item {
        width: 100%;
        max-width: none !important;
    }
}

@media screen and (max-width: 768px) {
    .yuedong_foot .yuedong_foot_content {
        grid-template-columns: repeat(1, 1fr);
    }
}