.contact {
    /* min-height: 400px; */
    padding:15px 0 35px 0;
}

/* 清除浮动 */
.contact::after {
    content: "";
    display: block;
    clear: both;
}

/* 左侧信息（浮动） */
.contact-info {
    float: left;
    width: 830px;
}

/* 标题与列表 */
.contact-info h2 {
    font-size: 18px;
    margin: 0 0 12px;
    color: #222;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.info-list .label {
    display: inline-block;
    width: 110px;
    color: #666;
    vertical-align: top;
}

.info-list .value {
    display: inline-block;
    color: #333;
    font-weight: 500;
}

.address {
    margin-top: 10px;
    color: #333;
    line-height: 1.8;
}

/* 右侧二维码（浮动） */
.contact-qrcode {
    float: right;
    width: 160px;
    /* 2*160 + 间距 */
    text-align: center;
}

.qr {
    float: left;
    width: 160px;
    margin-left: 24px;
}

.qr:first-child {
    margin-left: 0;
}

.qr img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    background-color: #fff;
}

.qr-title {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}


/* 在线留言表单（浮动布局） */
.contact-form {
    margin-top: 24px;
}
.contact-form p{
    margin: 0 0 10px 0;
}
.contact-form form::after {
    content: "";
    display: block;
    clear: both;
}

/* 两列 */
.contact-form {
    width: 100%;
 
    /* margin: 0 auto; */
}
#messageForm{
    display: flex;
    gap: 10px;
    padding: 15px 0;
}
.contact-form .form-left,.contact-form .form-right{
    flex: 1;
}

/* 行与标签/输入 */
.form-row {
    margin-bottom: 10px;
}

.form-row::after {
    content: "";
    display: block;
    clear: both;
}

.form-label {
    float: left;
    width: 100px;
    color: #666;
    line-height: 44px;
}

.form-input {
    float: left;
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: none;
    background-color: #eeeeee;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
}

.form-input--short {
    width: 180px;
}

.form-textarea {
    width: 100%;
    height: 314px;
    padding: 12px;
    border: none;
    background-color: #eeeeee;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    outline: none;

}

/* 验证码区域 */
.captcha-row {
    margin-top: 10px;
}

.captcha-image {
    float: left;
    width: 140px;
    height: 44px;
    margin-left: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.captcha-refresh {
    float: left;
    margin-left: 10px;
    line-height: 44px;
    color: #0b5bd3;
    text-decoration: underline;
}

/* 按钮 */
.form-actions {
    margin-top: 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 80px;
    border-radius: 0px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0b5bd3;
    color: #fff;
}

.btn-grey {
    background-color: #999;
    color: #fff;
    margin-left: 16px;
}

.contact-recruit {
    /* margin-top: 24px; */
}

.recruit-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.recruit-main {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); */
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.recruit-table tr{
    cursor: pointer;
}
.recruit-table thead tr {
    background: #eef1f6;
}

.recruit-table th,
.recruit-table td {
padding: 0 30px;
    color: #333;
    height: 45px;
    text-align: left;
    font-size: 14px;
color: #666666;
    border-bottom: 1px solid #f0f0f0;
}

.recruit-table th {
    font-weight: normal;
    height: 34px;
    color: #1f3d7a;
 background: rgba(1,64,138,0.1);
}

.recruit-table td:nth-child(1),
.recruit-table th:nth-child(1) {
    width: 20%;
}

.recruit-table td:nth-child(2),
.recruit-table th:nth-child(2) {
    width: 45%;
}

.recruit-table td:nth-child(3),
.recruit-table th:nth-child(3) {
    width: 15%;
}

.recruit-table td:nth-child(4),
.recruit-table th:nth-child(4) {
    width: 20%;
}

.recruit-table tbody tr.is-active {
   background: #E6ECF4;
}

.recruit-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #ffffff;
}

.recruit-total {
    color: #666;
    font-size: 14px;
}

.recruit-page {
    display: flex;
    align-items: center;
    gap: 16px;
}

.recruit-page__size {
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.recruit-page__pager {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pager-btn,
.pager-ellipsis {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    background: #fff;
}

.pager-btn.is-current {
    background: #0b5bd3;
    color: #fff;
    border-color: #0b5bd3;
}

.recruit-page__jump {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recruit-page__jump input {
    width: 44px;
    height: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
}

.recruit-side {
    width: 340px;
}

.recruit-side__card {
    background: #ffffff;
    /* border: 1px solid #e9e9e9; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); */
    padding: 24px;
    position: relative;
}

.recruit-side__title {
   font-weight: bold;
font-size: 16px;
color: #000000;
    margin-bottom: 12px;
    padding-left: 10px;
   position: relative;
   line-height: 24px;
}
.recruit-side__title::before{ 
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
height: 16px;
background: #01408A;
}

.recruit-side__list {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 18px 0;
    color: #666;
    font-size: 14px;
    line-height: 2;
}
.recruit-side__list li{
    position: relative;
}
.recruit-side__list li::before{ 
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #666;
    position: absolute;
    left: -15px;
    top: 11px;
}

.recruit-side__btn {
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
   background: #01408A;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}
html.hy-dialog--lock,
body.hy-dialog--lock {
    overflow: hidden;
}

.hy-dialog {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.hy-dialog.is-open {
    display: flex;
}

.hy-dialog__mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hy-dialog__panel {
    position: relative;
    width: 420px;
    max-width: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.hy-dialog.is-open .hy-dialog__panel {
    transform: translateY(0);
    opacity: 1;
}

.hy-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f7f7f7;
    border-bottom: 1px solid #eeeeee;
}

.hy-dialog__title {
    font-size: 16px;
    color: #111111;
    font-weight: 600;
}

.hy-dialog__close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    position: relative;
}

.hy-dialog__close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.hy-dialog__close::before,
.hy-dialog__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: #666666;
    transform-origin: center;
}

.hy-dialog__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.hy-dialog__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hy-dialog__body {
    padding: 18px 16px;
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    word-break: break-word;
}

.hy-dialog__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 16px 16px;
    border-top: 1px solid #f0f0f0;
    background: #ffffff;
}

.hy-dialog__btn {
    height: 36px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
}

.hy-dialog__btn--primary {
    background: #0b5bd3;
    border-color: #0b5bd3;
    color: #ffffff;
}