.footer-box {
    background: #F8F8F8;
}

.footer {

    height: 354px;
    width: 1456px;
    margin: 0 auto;
    padding-top: 72px;
    font-size: 20px;
    color: #AAABAD;
}

.footer-start {
    display: flex;
    justify-content: flex-start;
}

.footer-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 5px
}

.footer-item {
    font-size: 14px;
    margin-top: 50px;
    text-align: center;
    width: 100px;
    color: #5F5F5F;
    position: relative;
    cursor: pointer;
}

/* 隐藏的二维码容器 */
.qr-box {
    display: none;
    /* 默认隐藏 */
    position: absolute;
    top: -130px;
    /* 向上偏移显示 */
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 保持图片比例 */
}

/* 电话号码文本样式 */
.phone-boxs {
    display: none;
    /* 默认隐藏 */
    position: absolute;
    top: -80px;
    /* 向上偏移显示 */
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 60px;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.phone-boxs:not(img) {
    line-height: 36px;
    /* 垂直居中单行文本 */
    font-size: 18px;
    color: #333;
}

.footer-item:hover .phone-boxs {
    display: block;
    animation: fadeIn 0.3s;
}

/* 鼠标移入显示效果 */
.footer-item:hover .qr-box {
    display: block;
    animation: fadeIn 0.3s;
}

.footer-tips {
    font-size: 14px;
    color: #5F5F5F;
    margin-top: 30px;
}
.beian:hover{
    cursor: pointer;
    color:#BD9757
}
.beian{
    padding-top:5px;
}
/* 右侧 */
.footer-right {
    margin-left: 140px;
    display: flex;
    justify-content: space-between;
}

.link-item {
    width: 140px;
}

.link-names {
    font-weight: 600;
    text-align: center;
    margin-top:10px;
}

.link-names:hover {
    color: #BD9757;
}

.link-items {
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}

.link-items:hover {
    color: #BD9757;
}

.footer-icons {
    width: 363px;
    height: 25px;
}