.footer {
    width: 100%;
    min-height: 730px;
    background-color: #1D1D1D;

}

.footer-content {
    width: 100%;
    min-height: 485px;
    background: url('../image/footer-bg.png') no-repeat center;
    background-size: cover;
    gap: 22px;
}

.footer-content-title {
    font-weight: bold;
    font-size: 64px;
    color: #FFFFFF;
}

.footer-content-btn {
    width: 160px;
    height: 42px;
    background: #FFFFFF;
    border-radius: 21px 21px 21px 21px;
    font-weight: bold;
    font-size: 24px;
    color: #2D78DB;
    gap: 8px;
    cursor: pointer;
}

.footer-phone-img {
    width: 24px;
    height: 25px;
}

.footer-bottom {
    min-height: 245px;
    width: 100%;
}

.bottom-menu {
    width: 1400px;
    margin: 0 auto;
}

.bottom-menu-item {
    width: 275px;
    height: 36px;
    border: 1px solid #FFFFFF;
    display: flex;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    position: relative;
    border-radius: 18px;
    cursor: pointer;

    position: relative;

}

.bottom-menu-item:hover .bottom-menu-list {
    display: flex;
}

.bottom-menu-list {
    width: 185px;
    height: 169px;
    position: absolute;
    padding-bottom: 10px;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    /* border-radius: 10px; */
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    bottom: 35px;

}

.bottom-menu-list-item {
    width: 100%;
    min-height: 59px;
    overflow-y: auto;
    gap: 16px;
    background: #FFFFFF;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;

    padding: 9px;
}

.menu-list-child {
    font-weight: 500;
    font-size: 12px;
    color: #626262;
    width: 100%;
    height: 13px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;

}

.menu-list-child:hover {
    background-color: #f1f1f1;

}


.bottom-menu-item::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10pX solid #fff;
    position: absolute;


    right: 20px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.bah-image {
    width: 206px;
    height: 66px;
    /* transform: scale(1.2); */
}

.bottom-bah {
    margin-top: 80px
}

.mt36 {
    margin-top: 36px;
}

.bah-text {
    font-size: 14px;
    color: #5E6264;
    line-height: 21px;
    display: flex;
    align-items: center;
    cursor: pointer;
}


/* 整个滚动条 */
::-webkit-scrollbar {
    width: 6px;
    /* 垂直滚动条的宽度 */
    height: 46px;
    /* 水平滚动条的高度 */
}

/* 滚动条的轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 轨道背景色 */
}

/* 滚动条的滑块 */
::-webkit-scrollbar-thumb {
    background: #818181;
    /* 滑块颜色 */
    border-radius: 3px;
    /* 滑块圆角 */
}

/* 滚动条的滑块在鼠标悬停时 */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* 滑块悬停颜色 */
}


/* 火狐浏览器 */


/* 整个滚动条 */
scrollbar {
    width: 6px;
    /* 垂直滚动条的宽度 */
    height: 46px;
    /* 水平滚动条的高度 */
}

/* 滚动条的轨道 */
scrollbar track {
    background: #f1f1f1;
    /* 轨道背景色 */
}

/* 滚动条的滑块 */
scrollbar thumb {
    background: #818181;
    /* 滑块颜色 */
    border-radius: 3px;
    /* 滑块圆角 */
}

/* 滚动条的滑块在鼠标悬停时 */
scrollbar thumb:hover {
    background: #555;
    /* 滑块悬停颜色 */
}

@media (max-width: 760px) {
    .bottom-menu {
        width: 1200px;
        margin: 0 auto;
    }
}