.footer{
    width: 100%;
    height: 500px;
    background-color: rgba(51, 51, 51, 1);
}
.footer_show{
    width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_title{
    margin-top: 80px;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font30);
    line-height: 48px;
}
.footer_title_en{
    font-size: var(font16);
    color: rgba(255, 255, 255, 1);
    line-height: 24px;
    position: relative;
}
.footer_title_en::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -90px;
    width: 70px;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 999;
}
.footer_title_en::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -90px;
    width: 70px;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 999;
}
.footer_content{
    width: 100%;
    height: auto;
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.footer_img{
    width: 100px;
    height: 70px;
}
.footer_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.footer_box::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    right: -100px;
    width: 1px;
    height: 144px;
    background-color: rgba(255, 255, 255, 1);
}
.footer_box:last-child::after{
    display: none;
}
.footer_text{
    font-size: var(--font16);
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    margin-top: 20px;
}
.beian{
    width: 100%;
    height: 40px;
    text-align: center;
    font-size: var(--font16);
    background-color: rgba(51, 51, 51, 1);
    color: rgba(255,255,255,1);
}
.careers_content .beian{
    background-color: rgba(255,255,255,0);
    color: rgba(51, 51, 51, 1);
}