.footer {
    width: 100%;
    height: 450px;
    background: #212122;
    min-width: 1200px;
    padding-top: 64px;
    box-sizing: border-box;
    position: relative;
}

.footer-body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 900px;
    max-width: 1208px;
    margin: auto;
}

.footer-body-list-item {
    margin-left: 20px;
}

.list-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

/* .list-children-list{
    background-color: #333;
} */
.list-children-list-item {
    height: 28px;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 10px;
}

.list-children-list-item a {
    color: #c5c1c1;
    text-decoration: none;
    /*删除下划线 */
}

.list-children-list-item a:hover {
    color: #1B91FF !important;
    ;
}

.footer-body-attention-company {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 左对齐 */
    text-align: left;
    /* 确保内部文本左对齐 */
}

.logo-svg {
    width: 130px;
    height: 80px;
    margin-left: 33px;
    
}
.logo-svg img{
    height: 100%;
}

.attention-company-title {
    margin-left: 33px;
    height: 25px;
    margin-top: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    /* 左对齐文本 */
}

.attention-company-code-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* 左对齐 */
    margin-top: 24px;
    gap: 10px;
    margin-left: 0;
    width: 100%;
    /* 确保占满容器宽度 */
}

.code-list-item {
    width: calc(50% - 5px);
    /* 使用width而不是flex，避免盒子变大 */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 图片和标题都居中对齐 */
    text-align: center;
    /* 标题居中对齐 */
}

.code-list-item img {
    width: 88px;
    height: 88px;
    margin-bottom: 5px;
    display: block;
    /* 确保图片为块级元素 */
}

.code-list-item-title {
    color: #c5c1c1;
    font-size: 14px;
    text-align: center;
    /* 标题居中对齐 */
    margin-top: 5px;
    width: 100%;
    /* 确保标题占满容器宽度 */
}

.footer-copyright {
    padding-top: 70px;
    width: 100%;
    height: 32px;
    color: #666;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
}

.footer-copyright:hover {
    color: #1B91FF !important;
}