.rczp-hear {
    width: 1400px;
    margin: 70px auto;
    min-height: 800px;
    display: flex;
}

.rczp-left {
    width: 1050px;
    min-height: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.rczp-left-bt {
    display: flex;
    justify-content: center;
}

.rczp-left-bt p {
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 34px;
    margin: 0; /* 移除默认的段落边距 */
}

.rczp-left-dh {
    width: 90px;
    height: 60px;
    margin: auto;
    display: flex;
    justify-content: center;
    background-color: rgb(14, 76, 184);
}

.rczp-left-dh p {
    font-size: 18px;
    color: rgb(255, 255, 255);
    padding-left: 80px;
    padding-right: 80px;
}


.rczp-left-dh {
    display: flex;
    justify-content: space-between; /* 将标题元素水平分散排列 */
}

/* 居中表格 */
.center-table {
    width: 960px;
    min-height: 800px;
    margin: 0 auto; /* 左右居中 */
}

/* 自定义表格样式 */
.center-table table {
    border-collapse: collapse; /* 合并边框 */
}

.center-table th, .center-table td {
    padding: 8px; /* 设置内边距 */
    text-align: center; /* 文字居中 */
}

.center-table th {
    background-color: #f2f2f2; /* 设置表头背景颜色 */
}

.expandable-content {
    height: 100px;
    background-color: #f2f2f2;
}

.expandable-content td {
    padding: 40px;
    border-bottom: 1px solid #ddd;
    text-align: left; /* Ensure left alignment */
}

.expandable-content h1 {
    font-size: 18px;
}

.expandable-content p {
    font-size: 14px;
    margin: 2px;
    line-height: 1.6; /* 增加行高 */
}

.float-right {
    float: right;
    margin-top: 1px; /* 可选：根据需要调整位置 */
    color: #ffffff;
    margin-right: 10px; /* 可选：根据需要调整位置 */
    text-decoration: none; /* 移除下划线 */
    background-color: #0c67d6; /* 按钮背景色 */
    padding: 10px 30px; /* 按钮内边距 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
}

.float-right:hover {
    background-color: #0336ff; /* 悬停时更改背景颜色 */
}

.rczp-right {
    margin-top: 50px;
    margin-left: 30px;
}

#userInput {
    width: 250px;
    height: 35px;
    border-radius: 0; /* 取消圆角 */
    border: 1px solid #000; /* 设置细边框 */
    outline: none; /* 去掉点击时的默认边框线 */
}

#userInput:focus {
    border: 1px solid #000; /* 点击时边框线不加粗 */
}

#submitButton {
    width: 40px;
    height: 40px;
    height: auto;
    color: #000000; /* 文字颜色 */
    border: none; /* 无边框 */
    cursor: pointer; /* 鼠标悬停时变为指针 */
}

#submitButton img {
    width: 100%;
    height: auto;

}

#submitButton:hover {
}

input {
    display: inline-block;
    vertical-align: middle; /* Align items vertically */
}

#cityText {
    margin-left: 15px; /* Adjust the value as needed */
}


.expandable-row {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
    transition: background-color 0.3s ease; /* 添加过渡效果，0.3秒持续时间 */
}

.expandable-row:hover {
    background-color: #f0f0f0; /* 鼠标悬停时的背景色 */
}

.checkbox-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.checkbox-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px; /* Adjust as needed */
    height: 15px; /* Adjust as needed */
    border: 1.5px solid rgb(200, 194, 194);
    border-radius: 0; /* Make it square */
    outline: none;

    border-radius: 2px; /* Rounded corners */
    position: relative;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '\2714'; /* Unicode for checkmark */
    font-size: 14px; /* Adjust size of checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.refine-link {
    right: 150px;
    margin-top: 50px;
}

.refine-link a {
    padding: 15px 30px; /* Adjust padding as needed */
    background-color: #08249f; /* Adjust background color as needed */
    color: #ffffff; /* Text color */
    text-decoration: none; /* Remove underline */
}


.form-container {
    background-color: #fff;

    border-radius: 8px;
    width: 1300px;
    margin-top: 70px; /* 你可以根据需要调整这个值 */
    margin-bottom: 60px; /* 你可以根据需要调整这个值 */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-tables {
    display: flex;
    justify-content: space-between;
    width: 100%;

}

.form-table {
    width: 48%;
    border-collapse: collapse;

}

.form-table td {
    padding: 10px;
    vertical-align: middle;

}

.form-table td.label {
    text-align: right;

}

.form-table td.input {
    text-align: left;
}

.form-table input,
.form-table select,
.form-table textarea {
    width: 90%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-table textarea {
    resize: vertical;
}

.form-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.form-buttons button {
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 10px;
}

.form-buttons button[type="submit"] {
    background-color: #007bff;
    color: #fff;
}

.form-buttons button[type="reset"] {
    background-color: #6c757d;
    color: #fff;
}

/* 特定标签宽度设置 */
.label-position {
    width: 100px; /* 修改应聘岗位标签的宽度 */
}

/* 缩短验证码输入框的宽度 */
.captcha-container {
    display: flex;
    align-items: center;
}

.captcha-container input {
    width: 50px; /* 进一步缩短输入框宽度 */
    flex: 1; /* 使输入框占用可用空间 */
}

.captcha-container img {
    margin-left: 10px; /* 添加左边距 */
}

