body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffffff;
    color: rgb(255, 255, 255);
    padding: 15px;
    text-align: center;
    position: fixed;
    top: -100px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.139);
}

header input[type="text"] {
    width: 550px;
    height: 50px;
    padding: 10px 10px 10px 35px;
    border: 1px solid rgba(195, 195, 195, 0.489);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    background-color: #ffffff;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
    background-position: 10px center;
    background-repeat: no-repeat;
}

header input[type="text"]:focus {
    outline: none;
    background-color: rgb(255, 255, 255);
}

.index-button input[type="text"] {
    position: relative;
    top: -120px;
    left: -180px;
    width: 600px;
    height: 80px;
    padding: 10px 10px 10px 35px;
    border: 1px solid rgba(195, 195, 195, 0.489);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    fill: #ffffff;
    color: #ffffff;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
    background-position: 10px center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.139);
    backdrop-filter: blur(6px);
}

.index-button input[type="text"]:focus {
    outline: none;
}

.index-button input::-webkit-input-placeholder {
    color: white;
}

.container {
    display: flex;
}

.filter-panel {
    background-color: #ffffff;
    width: 250px;
    height: 50%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-left: none;
    border-top: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.139);
}

.filter-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
    accent-color: #007BFF;
}

.job-list-container {
    flex: 1;
    padding: 20px;
}

.job-list {
    list-style-type: none;
    padding: 0;
}

.job-item {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.job-item:hover {
    border: 1px solid blue;
}

.job-item:hover h2 {
    color: blue;
}

.job-item h2 {
    margin-top: 0;
    font-size: 28 px;
}

.job-item span {
    font-size: 20px;
}

.job-item p {
    color: rgb(91, 91, 91);
    font-size: 16px;
}


/* 隐藏原生多选框 */

input[type="checkbox"] {
    display: none;
}


/* 自定义多选框样式 */

input[type="checkbox"]+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

input[type="checkbox"]+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    transition: all 0.3s ease;
}


/* 选中状态样式 */

input[type="checkbox"]:checked+label::before {
    border-color: #007BFF;
    transform: rotate(45deg);
    width: 4px;
    height: 15px;
    border-top-color: transparent;
    border-left-color: transparent;
    top: -5px;
    left: 5px;
}

* {
    margin: 0;
    padding: 0;
    /* background: #000000; */
    box-sizing: border-box;
    transition: ease all 0.5s;
    font-family: SOURCEHANSANSSC-NORMAL;
}

#container {
    min-height: 100%;
    display: flex;
    /* 容器为flex布局 */
    flex-direction: column;
    /* 方向为纵向，保持正常的从上到下文档流 */
}

a {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

.index {
    position: relative;
}

.index-video-box {
    position: relative;
    height: 100vh;
    background-color: #C1CFF7;
    /*进行视频裁剪*/
    overflow: hidden;
    /* filter: blur(6px); */
}

.index-video-box .index-video-background {
    position: absolute;
    left: 50%;
    top: 50%;
    /*保证视频内容始终居中*/
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    /*保证视频充满屏幕*/
    object-fit: cover;
    min-height: 800px;
    /* filter: blur(5px); */
    /* filter: blur(0.6px); */
}

.index-logo {
    position: absolute;
    z-index: 100;
    top: -20px;
    width: 20%;
}

.index-title h2 {
    align-items: center;
    position: absolute;
    left: 280px;
    color: white;
    outline: none;
    font-size: 80px;
    z-index: 100;
}

.index-button {
    position: absolute;
    z-index: 100;
    left: 520px;
    top: 350px;
}

.index-button button {
    width: 200px;
    height: 70px;
    border-radius: 15px;
    outline: none;
    margin-top: 10px;
    display: block;
    font-size: 20px;
    transition: 0.2s;
}


/* .index-button button:nth-of-type(1) {
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 85, 255, 0.7);
    background: rgba(0, 85, 255, 0.5);
} */

.index-button button:nth-of-type(1) {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(215, 215, 215, 0.7);
    background: rgba(171, 171, 171, 0.5);
}

.index-button button:hover {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.5);
}

.index-line {
    top: 150px;
    left: 300px;
}

.index-line-special {
    color: aqua;
}

.icon {
    position: absolute;
    z-index: 100;
    top: 280px;
    left: 1000px;
    /* filter: invert(100%); */
    transition: 0.3s;
}

.icon:hover {
    transform: scale(1.05);
}

.container {
    margin-left: 50px;
    margin-right: 50px;
}