/* 全局重置 - 与原网站一致 */
* {
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Microsoft Yahei", "微软雅黑", sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f9f9f9;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #444;
}

a:hover {
    text-decoration: none;
    color: #f08300;
}

img {
    border: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.clearfix {
    zoom: 1;
}

/* ===== 顶部信息栏 ===== */
#topbar {
    width: 100%;
    height: 30px;
    background-color: #0070bf;
    line-height: 30px;
    font-size: 12px;
    color: #fff;
}

#topbar .topbar_inner {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topbar a {
    color: #fff;
    font-size: 12px;
    margin: 0 5px;
}

#topbar a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* ===== 头部 HEAD ===== */
#head {
    width: 100%;
    height: 110px;
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15%;
    box-sizing: border-box;
}

#title {
    width: 35%;
    height: 88px;
    margin: 0 auto;
    background: url(../images/logo1.png) no-repeat;
    float: left;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.site-name {
    font-size: 24px;
    font-weight: bold;
    color: #c00;
    letter-spacing: 1px;
}

.site-domain {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

#search_div {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.search {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.search form {
    display: flex;
    width: 100%;
}

.search_input {
    flex: 1;
    height: 50px;
    border: 2px solid #d83b01;
    border-right: none;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.search_button {
    width: 70px;
    height: 50px;
    background-color: #d83b01;
    border: 2px solid #d83b01;
    border-left: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
    margin-left: 0;
}

.search_button:hover {
    background-color: #b83300;
}

#tel_div {
    width: 30%;
    height: 88px;
    margin: 0 auto;
    background: url(../images/tel.png) no-repeat;
    float: left;
}

.tel-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tel-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tel-info {
    display: flex;
    flex-direction: column;
}

.tel-label {
    font-size: 12px;
    color: #666;
}

.tel-numbers {
    display: flex;
    flex-direction: column;
    margin-top: 2px;
}

.tel-numbers span {
    font-size: 16px;
    font-weight: bold;
    color: #c00;
    line-height: 1.4;
}

/* ===== 导航菜单 ===== */
#menu {
    background-color: #0070bf;
    width: 100%;
    height: 35px;
}

#menu ul {
    list-style: none;
    width: 1350px;
    height: 35px;
    margin: 0 auto;
    display: flex;
}

#menu ul li {
    float: left;
    font-size: 15px;
    font-weight: bold;
    flex: 1;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

#menu ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    height: 35px;
    line-height: 35px;
}

#menu ul li a:hover,
#menu ul li.active a {
    font-size: 15px;
    color: #ffcc00;
    background-color: #005fa3;
    text-decoration: none;
}

/* ===== 轮播图 ===== */
.fullSlide {
    width: 1350px;
    margin: 0 auto;
    display: block;
    position: relative;
    height: 320px;
    background: #000;
    overflow: hidden;
}

.fullSlide .slide-track {
    display: flex;
    height: 320px;
    transition: transform 0.5s ease;
}

.fullSlide .slide-item {
    min-width: 1350px;
    height: 320px;
    overflow: hidden;
}

.fullSlide .slide-item a {
    display: block;
    height: 320px;
}

.fullSlide .slide-item img {
    width: 1350px;
    height: 320px;
    display: block;
}

.slide-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slide-dots span {
    display: inline-block;
    width: 42px;
    height: 11px;
    margin: 1px;
    background: #000;
    opacity: 0.5;
    cursor: pointer;
    line-height: 999px;
    overflow: hidden;
}

.slide-dots span.on {
    background: #f00;
    opacity: 1;
}

/* ===== 主体内容区 ===== */
.content {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
}

.con {
    width: 1350px;
    height: auto;
    margin: 0 auto;
}

em {
    color: #ccc;
    margin-left: 10px;
    font-size: 16px;
    font-style: normal;
}

/* ===== 五个图标 ===== */
.pic {
    height: 105px;
    width: 100%;
    margin: 10px 0;
}

.pic ul {
    width: 1100px;
    height: 105px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.pic ul li {
    float: left;
    width: 112px;
    height: 105px;
    margin: 0 54px;
}

.pic ul li a {
    font-size: 0;
    color: #fff;
    text-decoration: none;
    display: block;
    width: 112px;
    height: 105px;
}

.pic ul .s1 a { background: url("../images/s1.png") no-repeat; }
.pic ul .s2 a { background: url("../images/s2.png") no-repeat; }
.pic ul .s3 a { background: url("../images/s3.png") no-repeat; }
.pic ul .s4 a { background: url("../images/s4.png") no-repeat; }
.pic ul .s5 a { background: url("../images/s5.png") no-repeat; }
.pic ul .s1 a:hover { background: url("../images/s1_h.png") no-repeat; }
.pic ul .s2 a:hover { background: url("../images/s2_h.png") no-repeat; }
.pic ul .s3 a:hover { background: url("../images/s3_h.png") no-repeat; }
.pic ul .s4 a:hover { background: url("../images/s4_h.png") no-repeat; }
.pic ul .s5 a:hover { background: url("../images/s5_h.png") no-repeat; }

/* ===== 第一行三栏 ===== */
.first_left {
    float: left;
    width: 550px;
    height: 240px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px 0;
}

.first_cen {
    float: left;
    width: 460px;
    height: 240px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px 15px;
}

.first_right {
    float: left;
    width: 300px;
    height: 240px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px 0;
}

.first_left_top,
.first_cen_top,
.first_right_top {
    width: 90%;
    height: 35px;
    line-height: 35px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    font-size: 17px;
}

.first_left_top span,
.zp_top span,
.first_cen_top span,
.first_right_top span,
.second_left_top span,
.second_right_top span {
    font-size: 17px;
    font-weight: bold;
}

.first_right_top img,
.first_left_top img,
.first_cen_top img,
.zp_top img,
.second_left_top img,
.second_right_top img {
    float: right;
    margin-top: 10px;
}

.first_left_con,
.first_cen_con {
    width: 90%;
    height: auto;
    margin: 5px auto 0;
}

/* 新闻列表 */
.xinwen li {
    float: left;
    padding: 0 1%;
    width: 104%;
    height: 30px;
    list-style: none;
}

.xinwen li a {
    text-decoration: none;
    color: #666;
    background: url("../images/d.png") no-repeat scroll 0 center;
    float: left;
    line-height: 30px;
    padding-left: 15px;
    width: 95%;
    display: block;
}

.xinwen li a:hover {
    color: #f08300;
}

.xinwen li h3 {
    float: left;
    font-weight: normal;
    overflow: hidden;
    width: 74%;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xinwen li span {
    float: right;
    color: #ccc;
    font-size: 12px;
}

/* 滚动招聘列表 */
#activit {
    height: 200px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

#activit ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

#activit ul li {
    height: 30px;
    line-height: 30px;
    border-bottom: 1px dashed #eee;
    display: block;
    font-size: 12px;
}

#activit li a {
    color: #444;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

#activit li a:hover {
    color: #f08300;
}

#activit span {
    color: #f08300;
    float: right;
    font-size: 12px;
}

#activit li h3 {
    float: left;
    font-weight: normal;
    overflow: hidden;
    width: 75%;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 会员中心 */
#g_list {
    list-style: none;
    padding: 5px 5%;
}

#g_list li {
    height: 36px;
    line-height: 36px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

#g_list li span {
    font-size: 14px;
    width: 45px;
    flex-shrink: 0;
}

.inputstyle {
    border: 1px solid #ccc;
    height: 26px;
    padding: 0 5px;
    font-size: 13px;
    width: 160px;
    outline: none;
}

.inputstyle:focus {
    border-color: #0070bf;
}

#g_list li label {
    font-size: 12px;
    margin-left: 5px;
}

#g_list li label a {
    color: #0070bf;
    font-size: 12px;
}

.login_button {
    display: flex;
    gap: 10px;
    padding: 5px 5%;
    margin-top: 5px;
}

.login_button .btn {
    flex: 1;
    height: 30px;
    background-color: #0070bf;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.login_button .btn:hover {
    background-color: #005fa3;
}

.login_button .btn-reg {
    background-color: #f08300;
}

.login_button .btn-reg:hover {
    background-color: #d07200;
}

/* 会员登录后状态 */
.member-center-info {
    padding: 10px 5%;
    text-align: center;
}

.member-center-info .welcome {
    font-size: 15px;
    color: #0070bf;
    font-weight: bold;
    margin-bottom: 8px;
}

.member-center-info a.center-btn {
    display: block;
    background: #0070bf;
    color: #fff;
    padding: 6px 0;
    margin: 5px 0;
    font-size: 13px;
    text-align: center;
}

.member-center-info a.center-btn:hover {
    background: #005fa3;
}

.member-center-info a.logout-link {
    font-size: 12px;
    color: #999;
}

/* ===== 中部通栏轮播 ===== */
.mid-banner-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mid-banner-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.mid-banner-slide {
    flex-shrink: 0;
    width: 100%;
}

.mid-banner-slide a {
    display: block;
    width: 100%;
}

.mid-banner-slide img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    display: block;
}

.mid-banner-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.mid-banner-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.mid-banner-dots span.on {
    background: #fff;
}

/* ===== 热招职位 / 最新简历 ===== */
#zpinfos {
    float: none;
    clear: both;
    width: 100%;
    min-height: 100px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px 0;
    box-sizing: border-box;
}

#intros {
    float: none;
    clear: both;
    width: 100%;
    margin: 10px 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.zp_top {
    width: auto;
    height: 35px;
    line-height: 35px;
    margin: 0 20px;
    border-bottom: 1px solid #ccc;
    font-size: 17px;
    font-weight: bold;
}

/* 职位列表 */
.companyjobs {
    width: 90%;
    margin: 5px auto;
    border-bottom: 1px dashed #eee;
    padding: 5px 0;
    overflow: hidden;
}

.companyjobs .job_title {
    float: left;
    width: 65%;
}

.companyjobs .job_title a {
    color: #0180cf;
    font-size: 13px;
    font-weight: bold;
}

.companyjobs .job_title a:hover {
    color: #f08300;
}

.companyjobs .job_date {
    float: right;
    color: #c2a599;
    font-size: 12px;
}

.companyjobs .company {
    float: left;
    width: 65%;
    color: #666;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.companyjobs .industry {
    float: right;
    color: #999;
    font-size: 12px;
}

.companyjobs .salary {
    color: red;
    font-size: 12px;
    font-weight: bold;
}

/* 简历列表 */
.personalintros {
    width: 90%;
    margin: 5px auto;
    border-bottom: 1px dashed #eee;
    padding: 5px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.personalintros .resume_avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.personalintros .resume_avatar img {
    width: 40px;
    height: 40px;
}

.personalintros .resume_info {
    flex: 1;
    overflow: hidden;
}

.personalintros .resume_name a {
    color: #0180cf;
    font-size: 13px;
    font-weight: bold;
}

.personalintros .resume_name a:hover {
    color: #f08300;
}

.personalintros .resume_detail {
    font-size: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== 图片中心 ===== */
.second_left {
    float: left;
    width: 997px;
    min-height: 280px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px 0;
    overflow: hidden;
}

/* 图片中心滚动包裹 */
.gallery-scroll-wrap {
    width: 96%;
    margin: 20px 20px;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-track {
    display: flex;
    gap: 12px;
    width: max-content;
    transition: transform 0.3s ease;
}

.gallery-item {
    flex-shrink: 0;
    width: 225px;
    text-align: center;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 225px;
    height: 150px;
    /*object-fit: cover;*/
    border: 1px solid #eff0f0;
    display: block;
    transition: opacity 0.2s;
}

.gallery-item img:hover {
    opacity: 0.85;
}

.gallery-item p {
    color: #666;
    font-size: 12px;
    padding-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 180px;
}

.second_left_top {
    width: 95%;
    height: 35px;
    line-height: 35px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    font-size: 17px;
}

.cplist1 {
    margin-top: 3px;
    padding: 0;
    float: left;
    font-size: 12px;
    margin-left: 15px;
    width: 960px;
    display: flex;
    flex-wrap: wrap;
}

.cplist1 li {
    color: #999;
    display: block;
    float: left;
    margin: 0 8px;
    height: 210px;
    width: 200px;
    text-align: center;
}

.cplist1 li a {
    display: block;
    text-align: center;
    text-decoration: none;
}

.cplist1 li img {
    border: 1px solid #eff0f0;
    height: 160px;
    margin-top: 10px;
    width: 200px;
    object-fit: cover;
}

.cplist1 li:hover {
    color: #841616;
}

.cplist1 li p {
    color: #666;
    padding-top: 5px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== 视频中心 ===== */
.second_right {
    float: left;
    width: 334px;
    min-height: 280px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px 0 10px 15px;
}

.second_right_top {
    width: 90%;
    height: 35px;
    line-height: 35px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    font-size: 17px;
}

.second_right_con {
    width: 90%;
    margin: 5px auto;
    height: auto;
    color: #666;
}

.second_right_con video {
    width: 100%;
    height: auto;
    min-height: 180px;
    display: block;
    margin-top: 5px;
    object-fit: contain;
    background: #000;
}

/* ===== 友情链接 ===== */
.friendslink {
    width: 100%;
    margin: 10px 0;
    background: #fff;
    border: 1px solid #ddd;
}

.friendslink .friends {
    width: auto;
    height: 35px;
    line-height: 35px;
    margin: 0 20px;
    border-bottom: 1px solid #ccc;
    background: url('../images/link.png') no-repeat left center;
    padding-left: 20px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.friendslink .friends_list {
    padding: 8px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.friendslink .friends_list a {
    color: #333;
    font-size: 13px;
    padding: 3px 10px;
    display: inline-block;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.friendslink .friends_list a:hover {
    color: #0070bf;
    text-decoration: underline;
}

/* ===== 合作企业 ===== */
.partner_box {
    width: 1350px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

/* ===== 底部 FOOTER ===== */
.foot {
    width: 100%;
    background-color: #e8e8e8;
    margin-top: 15px;
    padding: 20px 0 0;
}

.footer_box {
    width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
}

.footer_box .list {
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid #ccc;
}

.footer_box .list:last-child {
    border-right: none;
}

.footer_box .list h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.footer_box .list ul {
    display: flex;
    flex-wrap: wrap;
}

.footer_box .list ul li {
    width: 50%;
    margin-bottom: 5px;
}

.footer_box .list ul li a {
    color: #666;
    font-size: 12px;
}

.footer_box .list ul li a:hover {
    color: #0070bf;
}

.foot_bottom {
    width: 100%;
    background-color: #f9f9f9;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

.foot_bottom p,
.foot_bottom span {
    color: #666;
    font-size: 12px;
    line-height: 22px;
    display: block;
}

/* ===== 内容列表页（栏目页） ===== */
.gcon1right {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    margin: 9px 0 10px;
    min-height: 300px;
    overflow: hidden;
}

.gcentertit2 {
    width: 94%;
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #ccc;
    margin: 0 3%;
    padding: 0;
}

.titleft2 {
    display: block;
    float: left;
    height: 35px;
    line-height: 35px;
    font-size: 17px;
    font-weight: bold;
    color: #333;
    padding-left: 12px;
    border-left: 3px solid #0070bf;
    margin-top: 0;
}

.titright {
    float: right;
    height: 35px;
    line-height: 35px;
    color: #666;
    font-size: 12px;
    margin-right: 5px;
}

.titright a {
    color: #666;
    font-size: 12px;
    text-decoration: none;
}

.titright a:hover {
    color: #0070bf;
}

.gslaw {
    float: left;
    width: 98%;
    height: auto;
    margin: 0 1%;
}

.new_list {
    float: left;
    width: 98%;
    padding: 0 1% 10px;
    list-style: none;
}

.new_list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.new_list li {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px dashed #ccc;
    margin: 0 5px;
    font-size: 14px;
    overflow: hidden;
}

.new_list li a {
    text-decoration: none;
    color: #666;
    background: url("../images/d.png") no-repeat scroll 0 center;
    float: left;
    line-height: 40px;
    padding-left: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_list li a:hover {
    color: #f08300;
}

.new_list li a .f1 {
    float: left;
    overflow: hidden;
    width: 80%;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.new_list li a .f2 {
    float: right;
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
}

/* 分页 */
#pages {
    text-align: right;
    font-size: 14px;
    color: #000;
    padding: 5px 0;
}

#pages a,
#pages span {
    display: inline-block;
    padding: 2px 8px;
    margin: 0 2px;
    border: 1px solid #ddd;
    color: #333;
    font-size: 13px;
    text-decoration: none;
}

#pages span {
    background-color: #0070bf;
    color: #fff;
    border-color: #0070bf;
}

#pages a:hover {
    background-color: #0070bf;
    color: #fff;
    border-color: #0070bf;
}

/* ===== 内容列表页 ===== */
.page-header-bar {
    background-color: #0070bf;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content-list {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px 15px;
}

.content-list li {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li a {
    color: #444;
    font-size: 13px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 12px;
    background: url("../images/d.png") no-repeat left center;
}

.content-list li a:hover {
    color: #f08300;
}

.content-list .date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
}

/* ===== 详情页 ===== */
.detail-wrap {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
}

.detail-wrap h1 {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.detail-meta {
    text-align: center;
    color: #999;
    font-size: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.detail-meta span {
    margin: 0 8px;
}

.detail-content {
    line-height: 1.8;
    color: #333;
    font-size: 14px;
}

.detail-content p {
    margin-bottom: 10px;
}

.detail-content img {
    max-width: 100%;
}

/* ===== 分页 ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 5px;
}

.pagination a,
.pagination span {
    padding: 5px 12px;
    border: 1px solid #ddd;
    color: #333;
    font-size: 13px;
}

.pagination a:hover {
    background-color: #0070bf;
    color: #fff;
    border-color: #0070bf;
}

.pagination .current {
    background-color: #0070bf;
    color: #fff;
    border-color: #0070bf;
}

/* ===== 消息提示 ===== */
.messages {
    width: 1350px;
    margin: 10px auto;
}

.alert {
    padding: 10px 20px;
    border-radius: 3px;
    margin-bottom: 8px;
    font-size: 13px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ===== 表单样式 ===== */
/* ===== 内容详情页 ===== */
.article-wrap {
    width: 94%;
    margin: 0 3% 20px;
    min-height: 200px;
}

.article-title {
    font-size: 20px;
    color: #333;
    text-align: center;
    padding: 15px 0 10px;
    font-weight: bold;
    line-height: 1.5;
}

.article-info {
    text-align: center;
    color: #999;
    font-size: 12px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.article-body {
    line-height: 1.9;
    color: #333;
    font-size: 14px;
    word-break: break-all;
}

.article-body p {
    margin-bottom: 10px;
}

.article-body h2 {
    font-size: 17px;
    color: #0070bf;
    margin: 15px 0 8px;
    border-left: 3px solid #0070bf;
    padding-left: 8px;
}

.article-body img {
    max-width: 100%;
    height: auto;
}

.article-body ul, .article-body ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.article-body li {
    list-style: disc;
    margin-bottom: 5px;
    line-height: 1.8;
}

.article-related {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.related-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 3px solid #0070bf;
}

/* ===== 表单样式 ===== */
.form-wrap {
    width: 500px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
}

.form-wrap h2 {
    font-size: 18px;
    color: #0070bf;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0070bf;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-group label {
    width: 80px;
    color: #666;
    font-size: 13px;
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    height: 32px;
    border: 1px solid #ddd;
    padding: 0 8px;
    font-size: 13px;
    outline: none;
}

.form-group textarea {
    height: 80px;
    padding: 8px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0070bf;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    padding: 8px 40px;
    background-color: #0070bf;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.form-submit .btn:hover {
    background-color: #005fa3;
}

.form-links {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.form-links a {
    color: #0070bf;
}

/* ===== 会员中心登录表单样式 ===== */
.member-login-form {
    padding: 15px;
}

.member-login-form .login-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.member-login-form .login-row label {
    width: 50px;
    font-size: 14px;
    color: #333;
}

.member-login-form .login-row input {
    flex: 1;
    height: 32px;
    border: 1px solid #ddd;
    padding: 0 10px;
    font-size: 13px;
    outline: none;
}

.member-login-form .login-row input:focus {
    border-color: #0070bf;
}

.member-login-form .login-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-left: 50px;
}

.member-login-form .btn-login,
.member-login-form .btn-register {
    flex: 1;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.member-login-form .btn-login {
    background-color: #0070bf;
    color: #fff;
}

.member-login-form .btn-login:hover {
    background-color: #005fa3;
}

.member-login-form .btn-register {
    background-color: #f08300;
    color: #fff;
}

.member-login-form .btn-register:hover {
    background-color: #d67300;
}

/* ===== 首页热招职位和简历列表样式 ===== */

/* 热招职位网格布局 */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px 20px;
    box-sizing: border-box;
}

.job-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px;
    transition: all 0.2s;
}

.job-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #0180cf;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.job-card-header .job-title {
    color: #0180cf;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    flex: 1;
    margin-right: 8px;
    word-break: break-all;
}

.job-card-header .job-title:hover {
    color: #f08300;
}

.job-card-header .job-date {
    color: #f08300;
    font-size: 12px;
    white-space: nowrap;
    background: #fff5e8;
    padding: 1px 6px;
    border-radius: 3px;
}

.job-company {
    color: #333;
    font-size: 13px;
    margin-bottom: 8px;
    word-break: break-all;
}

.job-salary-row {
    margin-bottom: 8px;
}

.job-salary {
    color: #e4393c;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
}

.job-num {
    color: #666;
    font-size: 12px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #999;
    font-size: 12px;
}

.job-meta span {
    word-break: break-all;
}

/* 响应式：平板显示3列 */
@media (max-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 响应式：手机显示2列 */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式：小手机显示1列 */
@media (max-width: 480px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

/* 旧样式兼容 */
.jobs-container {
    padding: 10px;
}

.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.job-row:last-child {
    border-bottom: none;
}

.job-row .job-info {
    flex: 1;
    overflow: hidden;
}

.job-row .job-link {
    color: #0180cf;
    font-size: 13px;
    font-weight: bold;
}

.job-row .job-link:hover {
    color: #f08300;
}

.job-row .job-desc {
    color: #666;
    font-size: 12px;
    margin-left: 10px;
}

.job-row .job-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

/* 最新简历列表 */
/* 最新简历4列网格布局 */
.resumes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px 20px;
    padding-bottom: 15px;
}

.resume-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px;
    transition: all 0.2s;
}

.resume-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #0180cf;
}

.resume-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.resume-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.resume-info {
    flex: 1;
    min-width: 0;
}

.resume-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.resume-name {
    color: #0180cf;
    font-size: 15px;
    font-weight: bold;
}

.resume-edu {
    color: #666;
    font-size: 12px;
}

.resume-time {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

.resume-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
    flex-wrap: wrap;
}

.resume-id {
    color: #e4393c;
    font-weight: bold;
}

.resume-location {
    color: #666;
}

.resume-exp {
    color: #e4393c;
}

.resume-position {
    font-size: 13px;
    color: #333;
    padding-top: 8px;
    border-top: 1px dashed #eee;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 响应式：平板3列 */
@media (max-width: 1024px) {
    .resumes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 响应式：手机2列 */
@media (max-width: 768px) {
    .resumes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式：小手机1列 */
@media (max-width: 480px) {
    .resumes-grid {
        grid-template-columns: 1fr;
    }
}

/* 旧样式兼容 */
.resumes-container {
    padding: 10px;
}

.resume-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.resume-row:last-child {
    border-bottom: none;
}

.resume-row .resume-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.resume-row .resume-info {
    flex: 1;
    overflow: hidden;
}

.resume-row .resume-name {
    color: #0180cf;
    font-size: 13px;
    font-weight: bold;
}

.resume-row .resume-name:hover {
    color: #f08300;
}

.resume-row .resume-summary {
    color: #666;
    font-size: 12px;
    margin-left: 5px;
}

.resume-row .resume-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

/* 合作企业 */
.partner_logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 10px 0;
    background: transparent;
}

.partner_logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 12px 8px;
    text-decoration: none;
    transition: background 0.2s;
    height: 80px;
}

.partner_logos a:hover {
    background: #f5f5f5;
}

.partner_logos img {
    width: 100%;
    height: 60px;
    /* object-fit: contain; */
    vertical-align: middle;
}

.partner_logos span {
    font-size: 13px;
    color: #666;
    text-align: center;
    word-break: break-all;
}

/* ===== 会员注册页面样式 ===== */
.register-container {
    width: 100%;
    background: #f5f5f5;
    padding: 30px 0;
    min-height: 600px;
}

.register-box {
    width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px 50px;
}

.register-title {
    font-size: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.register-form .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    min-height: 36px;
}

.register-form .form-label {
    width: 100px;
    text-align: right;
    padding-right: 10px;
    font-size: 14px;
    color: #333;
}

.register-form .form-label.required::before {
    content: '*';
    color: #c00;
    margin-right: 3px;
}

.register-form .form-input,
.register-form .form-select {
    width: 350px;
    height: 32px;
    border: 1px solid #5cb85c;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}

.register-form .form-input:focus,
.register-form .form-select:focus {
    border-color: #4cae4c;
}

.register-form .form-radio-group {
    display: flex;
    gap: 20px;
}

.register-form .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.register-form .radio-label input {
    margin-right: 5px;
}

.register-form .file-upload-group {
    display: flex;
    gap: 5px;
}

.register-form .file-input {
    width: 200px;
}

.register-form .btn-preview,
.register-form .btn-upload {
    padding: 0 15px;
    height: 32px;
    border: none;
    background: #5bc0de;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.register-form .btn-preview:hover,
.register-form .btn-upload:hover {
    background: #46b8da;
}

.register-form .submit-row {
    margin-top: 30px;
    padding-left: 100px;
}

.register-form .btn-register-submit {
    width: 120px;
    height: 40px;
    background: #c00;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 5px;
}

.register-form .btn-register-submit:hover {
    background: #a00;
}

/* 多选框样式 */
.multi-select-box {
    width: 350px;
    height: 32px;
    border: 1px solid #5cb85c;
    padding: 0 10px;
    font-size: 14px;
    line-height: 32px;
    cursor: pointer;
    background: #fff;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multi-select-box:hover {
    border-color: #4cae4c;
}

/* 弹框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 4px;
}

.modal-header {
    background: #c00;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

/* 工种弹框样式 */
.selected-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    color: #f08300;
}

.category-row {
    display: flex;
    margin-bottom: 10px;
}

.category-name {
    width: 60px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.category-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.checkbox-label input {
    margin-right: 4px;
}

/* 行业弹框样式 */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.industry-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    padding: 5px;
}

.industry-item:hover {
    background: #f5f5f5;
}

.industry-item input {
    margin-right: 6px;
}
