.footer {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 30px;
    color: #999999FF;
    font-size: 12px;
}
.footer .subtitle {
    color: #eee;
    font-size: 14px;
}
.footer label a { color: #555555FF }
.footer .footer-main li {
    margin-top: 10px;
}
.footer .about-us {
    width: 256px;
    text-align: center;
}
.footer .about-us img { width: 114px; height: 114px }
.footer .FAQ { padding: 12px 0 }
.footer .FAQ label {
    color: #eee;
    margin-right: 20px;
}
.footer .FAQ li {
    position: relative;
    flex: 1;
}
.footer .FAQ li::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    background: #EEEEEEFF;
    left: 0;
    top: 0;
}
.footer .popular-services-container li {
    margin-left: 12px;
}
.footer .popular-services-container li:last-child { margin-left: 0 }


.bg-footer{
    background: #474747;
    color: #eee;
    width: 100%;
}


.el-popover {
    background: #fff;
    border: 1px solid #ebeef5;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    color: #606266;
    font-size: 14px;
    line-height: 1.4;
    min-width: 150px;
    padding: 12px;
    position: absolute;
    text-align: justify;
    word-break: break-all;
    z-index: 2000;
}

/* 基础箭头容器（定位用） */
.el-popper .popper__arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-width: 6px; /* 箭头大小，数值越大箭头越大 */
    border-style: solid;
    border-color: transparent; /* 先把所有边框设为透明 */
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .03)); /* 保留原有阴影 */
    left: 128.5px; /* 你的原有定位 */
    top: -10px;    /* 你的原有定位 */
    /* 防止伪元素超出容器 */
    overflow: hidden;
}

/* 核心：伪元素画三角形（推荐用伪元素，避免主体元素样式冲突） */
.el-popper .popper__arrow:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    /* 关键：控制箭头方向和颜色 */
    /* 向上箭头（弹窗在下方，箭头指向弹窗）：border-bottom有颜色，其余透明 */
    border-bottom-color: #ffffff; /* 箭头填充色（匹配弹窗背景） */
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    /* 调整伪元素位置，对齐容器 */
    top: -6px;
    left: -6px;
}