/* 假设你的CSS文件是styles.css */
.container-with-background {
    background-image: url('/static/img/job2.jpg'); /* 图片路径 */
    background-size: cover; /* 覆盖整个容器 */
    background-position: center; /* 图片居中 */
    background-repeat: no-repeat; /* 不重复图片 */
    /* 其他样式 */
}
/*公司介绍*/
.container-with-background-com {
    background-image: url('/static/img/job4.jpg'); /* 图片路径 */
    background-size: cover; /* 覆盖整个容器 */
    background-position: center; /* 图片居中 */
    background-repeat: no-repeat; /* 不重复图片 */
    /* 其他样式 */
}


/* 工作机会 */
.container-with-background-work {
    background-image: url('/static/img/job.jpg'); /* 图片路径 */
    background-size: cover; /* 覆盖整个容器 */
    background-position: center; /* 图片居中 */
    background-repeat: no-repeat; /* 不重复图片 */
    /* 其他样式 */
}

@keyframes hidePreloader {
    0% {
        width: 100%;
        height: 100%;
    }

    100% {
        width: 0;
        height: 0;
    }
}

body > div.preloader {
    position: fixed;
    background: white;
    width: 100%;
    height: 100%;
    z-index: 1071;
    opacity: 0;
    transition: opacity .5s ease;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded) > div.preloader {
    opacity: 1;
}

body:not(.loaded) {
    overflow: hidden;
}

body.loaded > div.preloader {
    animation: hidePreloader .5s linear .5s forwards;
}

.slice-foot{
    padding-top: 3rem;
}
