/* ==========================================================================
   index_v2.css —— 通信人才网首页 v2（增强美化版）
   自包含样式表，不依赖 index.css；品牌色沿用站内绿/蓝/红。
   桌面端 1000px 定宽居中（与原首页一致），<768px 单栏自适应。
   ========================================================================== */

/* ---------- 设计令牌 ---------- */
:root {
    --v2-green: #5bc189;
    --v2-green-dark: #019875;
    --v2-blue: #2b87ee;
    --v2-blue-dark: #1f6fd0;
    --v2-red: #e64545;
    --v2-text: #333333;
    --v2-text-2: #666666;
    --v2-text-3: #999999;
    --v2-line: #dddddd;
    --v2-line-soft: #eeeeee;
    --v2-bg: #f5f6f8;
    --v2-card: #ffffff;
    --v2-radius: 4px;
    --v2-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

/* ---------- 基础 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font: 12px/1.6 "Microsoft YaHei", "微软雅黑", "SimSun", Arial, sans-serif;
    color: var(--v2-text);
    background: #f2fbff url(../images/index_bj.jpg) no-repeat;
}
a { color: var(--v2-text); text-decoration: none; }
a:hover { color: var(--v2-blue); }
img { border: 0; vertical-align: middle; }
ul, li { list-style: none; }
em, i { font-style: normal; }

/* ---------- 地区分站弹层 ---------- */
.v2-popup {
    position: fixed; left: 50%; top: 160px; margin-left: -240px;
    width: 480px; background: #fff; border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius); box-shadow: var(--v2-shadow); z-index: 9999;
}
.v2-popup-tit {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 15px; border-bottom: 1px solid var(--v2-line-soft);
    font-size: 14px;
}
.v2-popup-cls { font-size: 12px; color: var(--v2-text-3); font-weight: normal; }
.v2-popup-cls:hover { color: var(--v2-red); }
.v2-popup-body { padding: 12px 15px; }
.v2-popup-body a {
    display: inline-block; padding: 4px 10px; color: var(--v2-text-2);
}
.v2-popup-body a:hover { color: var(--v2-blue); background: var(--v2-line-soft); border-radius: 2px; }

/* ---------- 顶部导航（深蓝渐变，沿用原版 #195598 色系） ---------- */
.v2-topnav {
    width: 100%; background: linear-gradient(to bottom, #2a6bb3 0%, #195598 100%);
    border-bottom: 1px solid #123f70;
}
.v2-topnav ul { display: flex; align-items: stretch; width: 1000px; margin: 0 auto; }
.v2-topnav li { position: relative; }
.v2-topnav li > a {
    display: block; padding: 10px 22px; font-size: 14px; color: #d7e3f2;
    transition: color .15s, background .15s;
}
.v2-topnav li > a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.v2-topnav .v2-tn-first a { color: #fff; }
/* 登录/注册/用户中心 下拉 */
.v2-tn-menu {
    display: none; position: absolute; top: 100%; left: 0; min-width: 100%;
    background: #fff; border: 1px solid var(--v2-line); border-top: 0;
    border-radius: 0 0 var(--v2-radius) var(--v2-radius);
    box-shadow: var(--v2-shadow); z-index: 100; white-space: nowrap;
}
.v2-tn-menu a {
    display: block; padding: 8px 22px; font-size: 13px; color: var(--v2-text-2);
}
.v2-tn-menu a:hover { color: var(--v2-green-dark); background: #f0faf5; }
.v2-tn-drop:hover .v2-tn-menu { display: block; animation: v2fade .15s ease; }
@keyframes v2fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 页头 ---------- */
.v2-header {
    width: 1000px; margin: 0 auto; padding: 18px 0 14px;
    display: flex; align-items: center; background: var(--v2-card);
}
.v2-logo { flex: 0 0 auto; padding-left: 10px; }
.v2-logo img { max-height: 64px; }
.v2-entry { flex: 1; text-align: right; padding-right: 30px; }
.v2-entry a {
    display: inline-block; margin-left: 14px; padding: 7px 18px;
    font-size: 14px; border-radius: var(--v2-radius); transition: all .15s;
}
.v2-entry-com { background: var(--v2-green-dark); color: #fff !important; }
.v2-entry-com:hover { background: #018768; }
.v2-entry-price { border: 1px solid var(--v2-line); color: var(--v2-text-2) !important; cursor: pointer; }
.v2-entry-price:hover { border-color: var(--v2-blue); color: var(--v2-blue) !important; }
.v2-tel { flex: 0 0 auto; padding-right: 10px; color: var(--v2-text-2); font-size: 13px; }
.v2-tel strong { color: var(--v2-red); font-size: 16px; margin-left: 4px; }
.v2-tel img { width: 18px; height: 18px; }

/* ---------- 主体两栏 ---------- */
.v2-main {
    width: 1000px; margin: 0 auto; display: flex; gap: 12px;
    background: var(--v2-card); padding: 0 10px 15px;
}

/* ===== 左栏 ===== */
.v2-side { flex: 0 0 253px; width: 253px; }
.v2-side-alljob a {
    display: block; height: 40px; line-height: 40px; text-align: center;
    background: var(--v2-green); color: #fff; font-size: 15px; font-weight: bold;
    border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}
.v2-side-alljob a:hover { background: var(--v2-green-dark); color: #fff; }

/* 职位分类导航（hover 二级弹层，沿用原版交互） */
.v2-cat { border: 1px solid var(--v2-line); border-top: 0; position: relative; background: #fff; }
.v2-cat-item { position: static; padding: 8px 12px; border-bottom: 1px dashed var(--v2-line-soft); cursor: pointer; }
.v2-cat-item h5 { font-size: 15px; color: var(--v2-text); padding-left: 5px; display: flex; justify-content: space-between; }
.v2-cat-item h5 span { color: var(--v2-text-3); font-weight: normal; }
.v2-cat-item:hover, .v2-cat-item:hover h5, .v2-cat-item:hover h5 span { color: #fff; background: var(--v2-green); }
.v2-cat-panel {
    display: none; position: absolute; top: -1px; left: 251px;
    width: 470px; min-height: 120px; max-height: 460px; overflow-y: auto;
    background: #fff; border: 1px solid var(--v2-line); box-shadow: var(--v2-shadow);
    padding: 10px 0; z-index: 200;
}
.v2-cat-item:hover .v2-cat-panel { display: block; animation: v2fade .15s ease; }
.v2-cat-panel dl { display: flex; padding: 10px 0; margin: 0 20px; border-bottom: 1px dashed var(--v2-line); }
.v2-cat-panel dl:last-child { border-bottom: 0; }
.v2-cat-panel dt { flex: 0 0 110px; text-align: right; padding-right: 15px; border-right: 1px solid var(--v2-line); font-weight: bold; }
.v2-cat-panel dt a { color: var(--v2-text); }
.v2-cat-panel dt span { color: var(--v2-text-2); }
.v2-cat-panel dd { flex: 1; margin-left: 15px; }
.v2-cat-panel dd a {
    display: inline-block; padding: 0 8px; line-height: 26px; color: var(--v2-text-2);
}
.v2-cat-panel dd a:hover { color: var(--v2-green-dark); }

/* 订阅职位 */
.v2-subscribe { margin-top: 12px; border: 1px solid var(--v2-line); background: #fff; }
.v2-subscribe-tit {
    display: block; height: 42px; line-height: 42px; padding: 0 15px;
    font-size: 15px; font-weight: bold; color: var(--v2-green-dark);
    border-bottom: 2px solid var(--v2-green-dark);
}
.v2-subscribe-qr { padding: 12px; text-align: center; }
.v2-subscribe-qr img { max-width: 100%; }

/* 左栏通用块：媒体报道 / 通信展会 / 通信职场 */
.v2-side-block { margin-top: 12px; border: 1px solid var(--v2-line); background: #fff; padding-bottom: 8px; }
/* 栏目表头：统一深色渐变底 + 深蓝标题 */
.v2-side-block h5 {
    height: 36px; line-height: 36px; padding: 0 12px; font-size: 14px; font-weight: bold;
    color: #195598; border-bottom: 1px solid #cfdcea;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
}
.v2-media { padding: 8px 10px 0; }
.v2-media-item { display: flex; gap: 8px; padding: 6px 0; }
.v2-media-item span { flex: 0 0 45px; }
.v2-media-item img { border-radius: 2px; }
.v2-media-item em { flex: 1; overflow: hidden; }
.v2-media-item em a {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; font-size: 12px; color: var(--v2-text-2); line-height: 1.5;
}
.v2-media-item em a:hover { color: var(--v2-blue); }
.v2-expo { padding: 8px; text-align: center; }
.v2-expo img { max-width: 100%; border-radius: 2px; }
/* 通信职场：定高行、小方块标记、细分隔线，整齐划一 */
.v2-news-item {
    height: 30px; line-height: 30px; padding: 0 12px;
    border-bottom: 1px dashed var(--v2-line-soft);
}
.v2-news-item:last-child { border-bottom: 0; }
.v2-news-item a {
    display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    color: var(--v2-text-2); font-size: 12px;
}
.v2-news-item a:hover { color: var(--v2-blue); }
.v2-news-item a::before {
    content: ""; display: inline-block; width: 4px; height: 4px;
    background: var(--v2-green); margin: 0 7px 2px 0; vertical-align: middle;
}

/* ===== 右栏 ===== */
.v2-content { flex: 1; min-width: 0; }

/* 搜索框 */
.v2-search { position: relative; padding-top: 5px; }
.v2-search form { display: flex; position: relative; }
#searchType { position: absolute; left: 0; top: 0; z-index: 5; display: flex; }
#searchType li {
    height: 38px; line-height: 38px; padding: 0 14px; font-size: 14px;
    color: var(--v2-text-2); cursor: pointer; background: #f0f1f3;
    border: 1px solid var(--v2-line); border-right: 0; border-radius: var(--v2-radius) 0 0 var(--v2-radius);
}
#searchType li + li { border-radius: 0; }
#searchType li.type_selected { background: var(--v2-green); color: #fff; border-color: var(--v2-green); }
.searchtype_arrow { display: none; }
#search_input {
    flex: 1; height: 38px; line-height: 38px; padding: 0 12px 0 118px;
    border: 1px solid var(--v2-line); border-left: 0; font-size: 14px; outline: none;
    transition: border-color .15s, box-shadow .15s;
}
#search_input:focus { border-color: var(--v2-green); box-shadow: 0 0 0 2px rgba(91, 193, 137, .2); }
#search_button {
    width: 96px; height: 38px; border: 0; cursor: pointer;
    background: var(--v2-green); color: #fff; font-size: 16px;
    border-radius: 0 var(--v2-radius) var(--v2-radius) 0; transition: background .15s;
}
#search_button:hover { background: var(--v2-green-dark); }

/* 热门搜索 */
.v2-hotwords { padding: 8px 2px; }
.v2-hotwords p { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.v2-hotwords span { color: var(--v2-text-3); margin-right: 6px; }
.v2-hotwords a { display: inline-block; margin-right: 12px; color: var(--v2-text-2); font-size: 12px; }
.v2-hotwords a:hover { color: var(--v2-red); }

/* 轮播 + 推荐职位 */
.v2-hero { display: flex; gap: 12px; margin-top: 5px; }
.v2-hero-slider { flex: 0 0 460px; width: 460px; }
.v2-hero-slider .slider {
    position: relative; width: 460px; height: 250px; overflow: hidden;
    border-radius: var(--v2-radius); background: #e9ebee;
}
.v2-hero-slider .conbox { position: absolute; left: 0; top: 0; } /* Xslider scrollx 必要元素：插件靠 left 动画位移 */
.v2-hero-slider .conbox div { float: left; width: 460px; height: 250px; } /* float 横向排开，配合 conbox 总宽滚动 */
.v2-hero-slider .conbox img { width: 460px; height: 250px; object-fit: cover; }
.v2-hero-slider .conbox h3 {
    position: absolute; left: 0; right: 0; bottom: 0; height: 34px; line-height: 34px;
    background: rgba(0, 0, 0, .45); text-align: center; font-size: 14px; font-weight: normal;
}
.v2-hero-slider .conbox h3 a { color: #fff !important; }
.v2-hero-slider .switcher { position: absolute; right: 12px; bottom: 40px; z-index: 10; }
.v2-hero-slider .switcher a {
    display: inline-block; width: 20px; height: 20px; line-height: 20px; margin-left: 6px;
    text-align: center; font-size: 12px; color: #fff; background: rgba(0, 0, 0, .35);
    border-radius: 50%; transition: background .15s;
}
.v2-hero-slider .switcher a.cur, .v2-hero-slider .switcher a:hover { background: var(--v2-green); color: #fff; }
.v2-hero-slider .controler a {
    position: absolute; top: 50%; margin-top: -18px; width: 28px; height: 36px;
    background: rgba(0, 0, 0, .3); border-radius: 2px; z-index: 10; transition: background .15s;
}
.v2-hero-slider .controler a:hover { background: rgba(0, 0, 0, .55); }
.v2-hero-slider .controler .prev { left: 8px; }
.v2-hero-slider .controler .next { right: 8px; }
.v2-hero-slider .controler a i {
    display: block; width: 8px; height: 8px; margin: 14px auto 0;
    border-top: 2px solid #fff; border-left: 2px solid #fff;
}
.v2-hero-slider .controler .prev i { transform: rotate(-45deg); margin-left: 12px; }
.v2-hero-slider .controler .next i { transform: rotate(135deg); margin-left: 8px; }

/* 推荐职位滚动 */
.v2-hero-reco { flex: 1; min-width: 0; border: 1px solid var(--v2-line); border-radius: var(--v2-radius); background: #fff; }
.v2-hero-reco h5 {
    display: flex; justify-content: space-between; align-items: center;
    height: 38px; padding: 0 12px; border-bottom: 1px solid #cfdcea;
    font-size: 14px; font-weight: bold; color: #195598;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
    border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}
.v2-hero-reco h5 a { font-size: 12px; color: var(--v2-text-3); font-weight: normal; }
.v2-hero-reco h5 a:hover { color: var(--v2-blue); }
.scrollDiv { overflow: hidden; position: relative; }
#s2 { height: 205px; padding: 0 12px; }
#s2 li {
    display: flex; justify-content: space-between; align-items: center;
    height: 28px; line-height: 28px; border-bottom: 1px dashed var(--v2-line-soft);
}
#s2 li span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
#s2 li span a { font-size: 13px; color: var(--v2-text); }
#s2 li span a:hover { color: var(--v2-blue); }
#s2 li em { flex: 0 0 auto; margin-left: 8px; color: var(--v2-red); font-size: 12px; }

/* VIP logo 翻转墙 */
.v2-vipwall { margin-top: 12px; }
.v2-vipwall ul { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-vip-item { width: 159px; height: 50px; perspective: 400px; }
.v2-vip-item a { position: relative; display: block; width: 159px; height: 50px; }
.v2-vip-front, .v2-vip-back {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--v2-line); border-radius: 2px; background: #fff;
    backface-visibility: hidden; transition: transform .35s ease;
}
.v2-vip-front img { max-width: 155px; max-height: 46px; }
.v2-vip-back { transform: rotateY(180deg); flex-direction: column; background: #f7f9fb; padding: 2px 6px; }
.v2-vip-back p { font-size: 13px; font-weight: bold; color: var(--v2-blue-dark); line-height: 1.3; }
.v2-vip-back div {
    font-size: 11px; color: var(--v2-text-3); max-width: 145px;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.v2-vip-item a:hover .v2-vip-front { transform: rotateY(180deg); }
.v2-vip-item a:hover .v2-vip-back { transform: rotateY(0); }
.v2-vip-item a:hover { box-shadow: var(--v2-shadow); }

/* 职位直通车 */
.v2-tags { margin-top: 12px; border: 1px solid var(--v2-line); border-radius: var(--v2-radius); background: #fff; }
.v2-tags h5 {
    height: 34px; line-height: 34px; padding-left: 12px; font-size: 14px;
    color: #fff; background: var(--v2-green); border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}
.v2-tags-body { padding: 10px 12px; }
.v2-tags-body a {
    display: inline-block; margin: 3px 4px; padding: 2px 10px;
    border: 1px solid var(--v2-line); border-radius: 20px;
    font-size: 12px; color: var(--v2-text-2); transition: all .15s;
}
.v2-tags-body a:hover { color: #00aaff; border-color: #00aaff; }
.v2-tags-body a img { vertical-align: -2px; margin-right: 3px; }

/* 最新招聘 + 紧急招聘 */
.v2-duo { display: flex; gap: 12px; margin-top: 12px; }
.v2-newjob, .v2-urgent {
    flex: 1; min-width: 0; border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius); background: #fff;
}
.v2-duo-hd {
    display: flex; justify-content: space-between; align-items: center;
    height: 36px; padding: 0 12px; border-bottom: 1px solid #cfdcea;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
    border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}
.v2-duo-hd span { font-size: 14px; font-weight: bold; color: #195598; }
.v2-duo-hd em a { font-size: 12px; color: var(--v2-text-3); }
.v2-duo-hd em a:hover { color: var(--v2-blue); }
.v2-newjob ul { padding: 6px 12px; }
.v2-newjob li { display: flex; height: 27px; line-height: 27px; }
.v2-duo-co { flex: 0 0 108px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.v2-duo-co a { font-size: 12px; color: var(--v2-text); }
.v2-duo-co a:hover { color: var(--v2-blue); text-decoration: underline; }
.v2-duo-jobs { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: var(--v2-text-3); font-size: 12px; }
.v2-duo-jobs a { margin-right: 8px; color: var(--v2-text-2); font-size: 12px; transition: color .15s; }
.v2-duo-jobs a:hover { color: var(--v2-red); }
.v2-urgent { padding-bottom: 6px; }
.v2-urgent-item { display: flex; align-items: center; gap: 8px; padding: 5px 12px; }
.v2-urgent-logo { flex: 0 0 88px; }
.v2-urgent-logo img { border: 1px solid var(--v2-line-soft); border-radius: 2px; }
.v2-urgent-job { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.v2-urgent-job a { font-size: 13px; color: var(--v2-text); }
.v2-urgent-job a:hover { color: var(--v2-red); }

/* 推荐通信企业 + 地区分站 */
.v2-paying { margin-top: 12px; border: 1px solid var(--v2-line); border-radius: var(--v2-radius); background: #fff; }
.v2-paying-hd {
    display: flex; justify-content: space-between; align-items: center;
    height: 36px; padding: 0 12px; border-bottom: 1px solid #cfdcea;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
    border-radius: var(--v2-radius) var(--v2-radius) 0 0;
}
.v2-paying-tit { font-size: 14px; font-weight: bold; color: #195598; }
.v2-paying-hd em { font-size: 12px; }
.v2-area-label { color: #e6a23c; }
.v2-paying-hd em a { margin-left: 6px; color: var(--v2-text-2); }
.v2-paying-hd em a:hover { color: var(--v2-blue); }
/* 推荐通信企业：定高行、四列等宽、hover 底色，整齐划一 */
.v2-paying ul { display: flex; flex-wrap: wrap; padding: 6px 6px 10px; }
.v2-paying li { flex: 0 0 25%; min-width: 0; }
.v2-paying li a {
    display: block; height: 30px; line-height: 30px; margin: 1px 4px; padding: 0 10px;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    font-size: 12px; color: var(--v2-text-2); border-radius: 2px;
    border-bottom: 1px dashed var(--v2-line-soft); transition: all .15s;
}
.v2-paying li a:hover {
    color: var(--v2-blue); background: #f0f6ff; text-decoration: none;
    border-bottom-color: transparent;
}
.v2-paying li a {
    display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    font-size: 12px; color: var(--v2-text-2); padding-right: 10px;
}
.v2-paying li a:hover { color: var(--v2-blue); text-decoration: underline; }

/* ---------- 热门招聘企业 logo 墙（两栏合并为一墙，填充同原版） ---------- */
.v2-hotco { width: 1000px; margin: 0 auto; background: var(--v2-card); padding: 0 10px 15px; }
.v2-hotco h5 {
    height: 38px; line-height: 38px; font-size: 15px; font-weight: bold; padding: 0 12px;
    color: #195598; border-bottom: 1px solid #cfdcea; margin-bottom: 12px;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
}
.v2-hotco-wall { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.v2-hotco-logo a { display: block; border: 1px solid var(--v2-line); border-radius: 2px; transition: box-shadow .15s; }
.v2-hotco-logo a:hover { box-shadow: var(--v2-shadow); }
.v2-hotco-logo img { display: block; max-width: 250px; }

/* ---------- 推荐人才 ---------- */
.v2-talent { width: 1000px; margin: 0 auto; background: var(--v2-card); padding: 0 10px 15px; }
.v2-talent-hd {
    display: flex; justify-content: space-between; align-items: center;
    height: 38px; padding: 0 12px; border-bottom: 1px solid #cfdcea; margin-bottom: 12px;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
}
.v2-talent-hd p { font-size: 15px; font-weight: bold; color: #195598; }
.v2-talent-hd a { font-size: 12px; color: var(--v2-text-3); }
.v2-talent-hd a:hover { color: var(--v2-blue); }
.v2-talent-list { display: flex; flex-wrap: wrap; gap: 10px; }
.v2-talent-card {
    flex: 0 0 calc(50% - 5px); min-width: 0; display: flex; gap: 10px; padding: 12px;
    border: 1px solid var(--v2-line); border-radius: var(--v2-radius); background: #fff;
    transition: box-shadow .15s, border-color .15s;
}
.v2-talent-card:hover { border-color: var(--v2-green); box-shadow: var(--v2-shadow); }
/* 头像固定 93x93，object-fit 防止图片比例不一导致变形 */
.v2-talent-avatar { flex: 0 0 93px; width: 93px; height: 93px; overflow: hidden; border-radius: var(--v2-radius); }
.v2-talent-avatar img { width: 93px; height: 93px; object-fit: cover; border-radius: var(--v2-radius); }
.v2-talent-info { flex: 1; min-width: 0; }
.v2-talent-line1 { display: flex; align-items: baseline; overflow: hidden; white-space: nowrap; }
.v2-talent-name { font-size: 14px; font-weight: bold; color: var(--v2-text); }
.v2-talent-line1 a:hover .v2-talent-name { color: var(--v2-blue); }
.v2-talent-meta { font-size: 12px; color: var(--v2-text-3); overflow: hidden; text-overflow: ellipsis; }
.v2-talent-line2 {
    margin-top: 4px; font-size: 12px; color: var(--v2-text-2);
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.v2-talent-line3 { display: flex; margin-top: 4px; font-size: 12px; color: var(--v2-text-3); }
.v2-talent-target { flex: 0 0 auto; }
.v2-talent-about { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* ---------- 友情链接 ---------- */
.v2-flinks { width: 1000px; margin: 0 auto; background: var(--v2-card); padding: 0 10px 15px; }
.v2-flinks h5 {
    height: 36px; line-height: 36px; font-size: 14px; font-weight: bold; padding: 0 12px;
    color: #195598; border-bottom: 1px solid #cfdcea; margin-bottom: 8px;
    background: linear-gradient(to bottom, #e9eff7, #d9e4f0);
}
.v2-flinks h5 span { float: right; font-size: 12px; color: var(--v2-text-3); font-weight: normal; }
#s3 { height: 30px; }
#s3 li { height: 30px; line-height: 30px; }
#s3 li a { display: inline-block; margin-right: 18px; font-size: 12px; color: var(--v2-text-2); }
#s3 li a:hover { color: var(--v2-blue); }
.v2-flinks-extra { display: none; }

/* ---------- 页脚 ---------- */
.v2-footer { margin-top: 15px; background: #3a4454; color: #b8c0cc; }
.v2-footer-main {
    width: 1000px; margin: 0 auto; padding: 24px 10px 16px;
    display: flex; gap: 30px;
}
.v2-footer-logo { flex: 0 0 220px; }
.v2-footer-logo img { max-width: 180px; }
.v2-footer-logo p { margin-top: 10px; font-size: 12px; }
.v2-footer-logo a { color: #b8c0cc; }
.v2-footer-logo a:hover { color: #fff; }
.v2-footer-info { flex: 1; font-size: 12px; }
.v2-footer-info li { line-height: 2; }
.v2-footer-info a { color: #b8c0cc; }
.v2-footer-info a:hover { color: #fff; }
.v2-footer-beian { margin-top: 8px; }
.v2-footer-badges { flex: 0 0 400px; text-align: center; }
.v2-footer-badges img { margin: 0 4px; }
.v2-footer-links {
    width: 1000px; margin: 0 auto; padding: 12px 10px 20px;
    text-align: center; font-size: 12px; border-top: 1px solid #4a5568;
}
.v2-footer-links a { color: #b8c0cc; margin: 0 4px; }
.v2-footer-links a:hover { color: #fff; }

/* ---------- 移动端适配（<768px 单栏堆叠，桌面端不受影响） ---------- */
@media screen and (max-width: 1000px) {
    .v2-topnav, .v2-header, .v2-main, .v2-hotco, .v2-talent, .v2-flinks,
    .v2-footer-main, .v2-footer-links { width: 100%; }
}

@media screen and (max-width: 768px) {
    .v2-topnav ul { flex-wrap: wrap; }
    .v2-topnav li > a { padding: 8px 12px; font-size: 13px; }
    .v2-header { flex-wrap: wrap; padding: 10px; }
    .v2-logo img { max-height: 44px; }
    .v2-entry { padding-right: 0; }
    .v2-tel { width: 100%; text-align: center; padding: 8px 0 0; }

    .v2-main { flex-direction: column; padding: 0 8px 12px; }
    .v2-side { flex: none; width: 100%; }
    /* 分类导航移动端：平铺一级分类，隐藏二级弹层 */
    .v2-cat { display: flex; flex-wrap: wrap; border: 1px solid var(--v2-line); }
    .v2-cat-item { flex: 0 0 33.33%; border-bottom: 1px solid var(--v2-line-soft); padding: 8px; }
    .v2-cat-item h5 { font-size: 13px; }
    .v2-cat-panel { display: none !important; }
    .v2-cat-item:hover, .v2-cat-item:hover h5, .v2-cat-item:hover h5 span { color: inherit; background: none; }
    .v2-cat-item h5 span { display: none; }

    #search_input { padding-left: 100px; font-size: 13px; }
    #searchType li { padding: 0 10px; }
    #search_button { width: 72px; }

    .v2-hero { flex-direction: column; }
    .v2-hero-slider { flex: none; width: 100%; }
    .v2-hero-slider .slider { width: 100%; height: auto; min-height: 180px; }
    .v2-hero-slider .conbox div { width: 100%; height: auto; }
    .v2-hero-slider .conbox img { width: 100%; height: auto; }
    .v2-hero-reco { margin-top: 0; }

    .v2-duo { flex-direction: column; }
    .v2-duo-co { flex-basis: 96px; }

    .v2-paying li { flex-basis: 50%; }

    .v2-hotco, .v2-talent, .v2-flinks { padding: 0 8px 12px; }
    .v2-talent-card { flex: 0 0 100%; }

    .v2-footer-main { flex-direction: column; gap: 16px; padding: 18px 12px; }
    .v2-footer-badges { flex: none; text-align: left; }
    .v2-popup { width: 92%; margin-left: 0; left: 4%; }
}
