/* 求职快讯主题设计令牌 */
:root {
    --career-navy: #10233f;
    --career-navy-deep: #09182c;
    --career-ink: #152238;
    --career-blue: #176bff;
    --career-blue-dark: #0b57d8;
    --career-green: #42e39a;
    --career-green-soft: #dffbed;
    --career-sky: #edf4ff;
    --career-bg: #f4f7fb;
    --career-card: #ffffff;
    --career-line: #dfe6ef;
    --career-muted: #66758a;
    --career-muted-light: #94a0b1;
    --career-shadow: 0 18px 46px rgba(14, 35, 66, 0.09);
    --career-shadow-soft: 0 8px 24px rgba(14, 35, 66, 0.07);
    --career-radius: 18px;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
}

body {
    color: #333;
    background-color: #f7f9fd;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3399ff;
    text-decoration: none;
}

img {
    vertical-align: middle;
}

li {
    list-style: none;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

/* 按钮样式 */
button {
    display: inline-block;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

input[type="text"], textarea, select {
    display: inline-block;
}

input[type="text"]:focus, textarea:focus, select:focus {
    outline: 0;
}

.box {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

header {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.header-logo {
    float: left;
}

.header-logo img {
    margin-top: -4px;
}

.header-logo h1 {
    color: #007bff;
}

nav {
    float: left;
    margin-left: 50px;
}

nav li {
    float: left;
    margin-right: 30px;
}

nav li:hover {
    border-bottom: 2px #3399ff solid;
}

nav li a {
    color: #333;
    text-decoration: none;
}

.header-search {
    float: right;
    padding-top: 12px;
}

.search-btn {
    display: none;
}

.header-search input {
    width: 180px;
    height: 36px;
    border: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 10px;
    float: left;
    border-right: none;
}

.header-search input:focus {
    border: 1px #3399ff solid;
    outline: none;
    border-right: none;
}

.header-search button {
    width: 80px;
    height: 36px;
    font-size: 15px;
    color: #fff;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    float: left;
    background: url(images/ss-ico.png) no-repeat #3399ff 13px center;
    background-size: 20px 20px;
    padding-left: 20px;
}

.header-search button:hover {
    background-color: #238df7;
}

.nav-btn {
    display: none;
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: #3399ff;
    position: relative;
    float: right;
    top: 18px;
    right: 10px;
}

.nav-btn i {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgba(51, 153, 255, 1);
    transition: background-color 0.3s;
}

.nav-btn.close i {
    background-color: transparent;
}

.nav-btn i:before,
.nav-btn i:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 153, 255, 1);
    content: '';
    transition: transform 0.3s;
}

.nav-btn i:before {
    transform: translateY(-400%);
}

.nav-btn i:after {
    transform: translateY(400%);
}

.nav-btn.close i:before {
    transform: translateY(0) rotate(45deg);
}

.nav-btn.close i:after {
    transform: translateY(0) rotate(-45deg);
}

.search-btn {
    float: left;
    display: none;
    width: 62px;
    height: 26px;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 2px;
    background: url(images/ss-ico.png) no-repeat #3399ff 6px center;
    background-size: 15px 15px;
    padding-left: 12px;
    margin: 19px 0 0 30px;
}


main {
    width: 100%;
}

.main-left {
    width: 75%;
    float: left;
}

.main-right {
    width: 23%;
    float: right;
}

.index-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-size: 10px;
    --swiper-theme-color: #3399ff;
    --swiper-pagination-color: #3399ff;
    --swiper-navigation-sides-offset: 0px;
    --swiper-pagination-bottom: 10px;
    --swiper-pagination-bullet-inactive-color: #ffffff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 3px;
}

.swiper-slide {
    margin: 0px;
    position: relative;
}

.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.swiper-slide span {
    left: 15px;
    bottom: 10px;
    position: absolute;
    color: #fff;
    font-size: 18px;
}

.swiper-pagination {
    text-align: right;
    width: 20% !important;
    left: auto !important;
    right: 2%;
}

.swiper-pagination-bullet-active {
    width: 17px;
    border-radius: 20px;
}

.index-list {
    width: 100%;
}

.index-list-bt {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbfbfb;
    border: 1px solid #eaeaea;
    padding: 10px 20px;
    margin-bottom: -1px;
}

.index-list-bt h2 {
    font-size: 18px;
    font-weight: normal;
}

.index-list-bt i {
    color: #666;
    font-size: 32px;
}

.index-list-bt i:hover {
    color: #3399ff;
}

.index-list-li {
    width: 100%;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: -1px;
}

.index-list-li:hover {
    background-color: #FAFDFF;
    border-color: #3399ff;
    position: relative;
    z-index: 2;
}

.index-list-li.noimg .list-li-wen {
    width: 100%;
}

.list-li-img {
    width: 25%;
}

.list-li-img img {
    width: 100%;
    border-radius: 5px;
    height: 130px;
}

.list-li-wen {
    width: 72%;
}

.list-li-wen strong {
    color: #0188fb;
    background: none;
}

.list-li-wen-tit {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.list-li-wen-tit .lm {
    color: #fff;
    background-color: #3399ff;
    font-size: 12px;
    padding: 3px 10px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.list-li-wen-tit .lm:hover {
    opacity: 0.95;
    filter: alpha(opacity=95);
}

.list-li-wen-tit .lm i {
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: -4px;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-left: 4px solid #3399ff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.list-li-wen-tit .bt {
    display: inline-block;
    color: #333;
}

.list-li-wen-tit .bt:hover {
    color: #3399ff;
}

.list-li-wen-tit .bt h3 {
    font-size: 18px;
    font-weight: 600;
}

.list-li-wen-info {
    width: 100%;
    line-height: 36px;
    font-size: 13px;
    color: #666;
    margin: 3px 0px 0px 0px;
}

.list-li-wen-info span {
    margin-right: 10px;
}

.list-li-wen-info span i {
    margin-right: 3px;
}

.list-li-wen-con {
    width: 100%;
    line-height: 26px;
    font-size: 15px;
    color: #666;
}

.index-list-yema {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 20px 0px;
}

.index-zz {
    width: 100%;
    height: 350px;
    background: #fff;
    position: relative;
    border-radius: 5px;
    margin-bottom: 20px;
}

.index-zz-img {
    width: 100%;
    height: 120px;
    background-image: url(images/pbg.png);
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 6px;
}

.index-zz-img .tu {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: 20px;
    position: absolute;
    left: 35%;
    top: 50px;
}

.index-zz-img .tu img {
    height: 80px;
    border-radius: 50px;
    border: 3px dotted #fff;
    box-shadow: 2px 4px 10px #b9c8e3;
}

.index-zz-info {
    padding: 10px 0px;
    text-align: center;
}

.index-zz-info p {
    text-align: center;
}

.index-zz-info .p1 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    color: #3399ff;
}

.index-zz-info .p2 {
    color: #666;
    height: 20px;
    overflow: hidden;
}

.index-zz-about {
    text-align: justify;
    overflow: hidden;
    margin-top: 50px;
    font-size: 15px;
    display: none;
}

.index-zz-about p {
    padding: 0px 20px;
    line-height: 28px;
    color: #666;
}

.index-zz-cp {
    text-align: center;
    margin-top: 5px;
    border-top: 1px #ccc dashed;
    padding-top: 7px;
    margin-bottom: 10px;
}

.index-zz-cp .cp-hello {
    margin-bottom: 10px;
    display: inline-block;
}

.index-zz-cp a {
    display: inline-block;
    padding: 3px 10px;
    background: #3399ff;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
}

.index-zz-cp a:hover {
    background: #238df7;
}

.index-zz-num {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5px;
    font-size: 12px;
}

.index-zz-num span {
    color: #666;
    border: 1px #ccc solid;
    padding: 5px 7px;
    border-radius: 3px;
}

.index-zz-num span:hover {
    border: 1px #3399ff solid;
}

.right-hot {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-hot-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-hot-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-hot-ul {
    width: 100%;
}

.right-hot-ul {
    width: 100%;
    padding: 0px 0px 5px 0px;
}

.right-hot-ul li {
    width: 100%;
    border-bottom: 1px #e7e7e7 solid;
    padding: 10px 10px 5px 10px;
    border-left: 2px #fff solid;
}

.right-hot-ul li:hover {
    background: #fdfcfc;
    border-left: 2px #3399ff solid;
}

.right-hot-ul li a {
    display: block;
    width: 100%;
    line-height: 22px;
    font-size: 15px;
    color: #666;
}

.right-hot-ul li a:hover {
    color: #3399ff;
}

.right-hot-ul li span {
    width: 100%;
    line-height: 20px;
    font-size: 12px;
    color: #999;
}

.right-tag {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-tag-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-tag-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-tag-ul {
    width: 100%;
    padding: 5px 10px;
}

.right-tag-ul li {
    margin: 5px 10px 5px 0px;
    display: inline-block;
}

.right-tag-ul li a {
    display: block;
    line-height: 30px;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #f1f1f1;
    transition: all 0.2s ease-in;
    height: 32px;
    overflow: hidden;
    color: #666;
    border-radius: 4px;
    font-size: 14px;
    padding: 0px 7px;
}

.right-tag-ul li a:hover {
    border: 1px solid #3399ff;
    background: #3399ff;
    color: #fff;
}

.right-link {
    width: 100%;
    background: #fff;
    margin-bottom: 20px;
}

.right-link-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-link-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-link-ul {
    width: 100%;
    padding: 5px 10px;
}

.right-link-ul a {
    display: inline-block;
    margin: 5px 10px 5px 0px;
    line-height: 30px;
    color: #666;
    font-size: 14px;
    padding: 0px 7px;
}

.right-link-ul a:hover {
    background: #3399ff;
    color: #fff;
    border-radius: 4px;
}

.right-pic {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-pic-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-pic-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-pic-ul {
    width: 100%;
}

.right-pic-ul {
    width: 100%;
    padding: 0px 0px 5px 0px;
}

.right-pic-ul li {
    width: 100%;
    border-bottom: 1px #e7e7e7 solid;
    padding: 10px 10px 10px 10px;
    border-left: 2px #fff solid;
    display: flex;
    justify-content: space-between;
}

.right-pic-ul li:hover {
    background: #fdfcfc;
    border-left: 2px #3399ff solid;
}

.right-pic-ul .zc {
    width: 30%;
}

.right-pic-ul .zc img {
    width: 100%;
    border-radius: 5px;
}

.right-pic-ul .yc {
    width: 66%;
}

.right-pic-ul .yc h3 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.right-pic-ul .yc h3 a {
    color: #333;
}

.right-pic-ul .yc h3 a:hover {
    color: #3399ff;
}

.right-pic-ul .yc span {
    width: 100%;
    line-height: 20px;
    font-size: 12px;
    color: #999;
    display: block;
}

.right-cata {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.right-cata-bt {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 10px;
}

.right-cata-bt i {
    font-size: 20px;
    margin-right: 7px;
    color: #3399ff;
}

.right-cata-ul {
    width: 100%;
    padding: 5px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 10px;
}

.right-cata-ul li {
    width: calc(50% - 5px);
    margin: 0px 0px;
    display: flex;
    align-items: center;
}

.right-cata-ul li i {
    display: inline-block;
    font-size: 20px;
    color: #3399ff;
}

.right-cata-ul li a {
    display: block;
    line-height: 30px;
    transition: all 0.2s ease-in;
    height: 32px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
}

.right-cata-ul li a:hover {
    color: #3399ff;
}

.main-right .sidebox {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.main-right .sidetitle {
    width: 100%;
    height: 53px;
    line-height: 53px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 18px;
    padding-left: 15px;
    border-left: 2px #3399ff solid;
}

.main-right .sidetitle-ul {
    width: 100%;
    padding: 7px 10px;
    overflow: hidden;
}

.main-right .sidetitle-ul li {
    width: 100%;
    margin: 5px 0px;
}

.main-right .sidetitle-ul li a {
    display: block;
    line-height: 30px;
    padding-left: 5px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease-in;
    height: 32px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
}

.main-right .sidetitle-ul li a:hover {
    color: #007bff;
    background: #fbfbfb;
}

.main-right .sidetitle-ul span {
    width: 100%;
    margin: 5px 0px;
}

.main-right .sidetitle-ul .cp-hello {
    margin-bottom: 10px;
    display: inline-block;
}

.main-right .sidetitle-ul #tbCalendar {
    width: 100%;
}

.sidetitle-ul input[type="text"] {
    width: 67%;
    height: 32px;
    border: 1px solid #ccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 10px;
    float: left;
    border-right: none;
}

.sidetitle-ul input[type="submit"] {
    width: 33%;
    height: 32px;
    font-size: 14px;
    color: #fff;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    float: left;
    background: url(images/ss-ico.png) no-repeat #3399ff 13px center;
    background-size: 20px 20px;
    padding-left: 20px;
}

#divContorPanel .sidetitle-ul {
    text-align: center;
}


footer {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

footer p {
    text-align: center;
    color: #666;
    font-size: 14px;
}

footer p a {
    color: #666;
    text-decoration: none;
    margin: 0px 5px;
}

.go-top {
    z-index: 10000;
    bottom: 90px;
    right: 10%;
    position: fixed;
    display: none;
}

.go-top a {
    width: 36px;
    height: 36px;
    border: 1px solid #999;
    border-radius: 5px;
    display: block;
    background: url(images/gotop.png) #fff no-repeat center center;
    background-size: 50%;
}

.weizhi {
    width: 100%;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 20px;
}

.weizhi a {
    color: #666;
}

.weizhi a:hover {
    color: #3399ff;
}

.weizhi i {
    margin-right: 5px;
}

.weizhi b {
    color: #167ff1;
}

.yema a {
    display: inline-block;
    padding: 2px 10px;
    margin: 0 2px;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    color: #666;
}

.yema a:hover {
    background-color: #3399ff;
    color: #fff;
    border-color: #3399ff;
}

.yema span {
    background-color: #3399ff;
    color: #fff;
    display: inline-block;
    padding: 2px 10px;
    margin: 0 2px;
    border: 1px solid #3399ff;
    border-radius: 3px;
}


.text-main {
    padding: 25px 25px;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.text-zw h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 15px;
}

.text-zw-xx {
    font-size: 14px;
    border-bottom: 1px #ccc solid;
    color: #666;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.text-zw-xx span {
    margin-right: 10px;
}

.text-zw-xx a {
    color: #007bff;
}

.text-zw-zy {
    background-color: #f7f7f7;
    border-radius: 4px;
    margin: 20px 0;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.text-zw-nr p {
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin-bottom: 15px;
}

.text-zw-nr p img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.text-dy-nr {
    border-top: 1px #ccc solid;
    padding: 20px 0px;
    margin-bottom: 30px;
}

.text-zw-sm {
    background-color: #f7f7f7;
    border-radius: 4px;
    margin: 20px 0;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.text-zw-sm a {
    color: #007bff;
}

.text-zw-sxp {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
    margin-bottom: 20px;
    line-height: 30px;
}

.text-zw-sxp div {
    display: block;
    width: 49%;
    padding: 7px;
    position: relative;
}

.text-zw-sxp div:hover {
    background: #f5f5f5;
    border-radius: 5px;
}

.text-zw-sxp a {
    display: block;
}

.text-zw-sxp .sp {
    padding-left: 35px;
    text-align: left;
}

.text-zw-sxp .sp a::after {
    left: 5px;
    content: '«';
    font-family: "Microsoft Yahei";
    position: absolute;
    font-size: 38px;
    top: 23%;
    color: #ccc;
}

.text-zw-sxp .xp {
    padding-right: 35px;
    text-align: right;
}

.text-zw-sxp .xp a::after {
    right: 5px;
    content: '»';
    font-family: "Microsoft Yahei";
    position: absolute;
    font-size: 38px;
    top: 23%;
    color: #ccc;
}

.text-tj {
    width: 100%;
    margin-bottom: 30px;
}

.text-tj-bt {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.text-tj-bt i {
    margin-right: 3px;
    font-size: 22px;
}

.text-tj-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.text-tj-ul li {
    width: calc(25% - 15px);
}

.text-tj-ul li a {
    display: block;
    color: #333;
}

.text-tj-ul li a:hover {
    color: #007bff;
}

.text-tj-ul li a img {
    width: 100%;
    margin-bottom: 8px;
    height: 130px;
}

.text-tj-ul li a span {
    line-height: 20px;
    display: block;
    font-size: 15px;
}

.text-zw-bq {
    width: 100%;
    font-size: 14px;
    margin: 25px 0px;
}

.text-zw-bq span {
    color: #666;
}

.text-zw-bq i {
    margin-right: 3px;
    color: #666;
}

.text-zw-bq a {
    display: inline-block;
    padding: 3px 10px;
    margin: 0px 2px;
    background: #f5f5f5;
    color: #666;
    border-radius: 3px;
}

.text-pl {
    width: 100%;
    margin-bottom: 30px;
}

.text-pl-bt {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.text-pl-bt i {
    margin-right: 3px;
    font-size: 22px;
}

.text-pl-hf {
    margin-bottom: 15px;
}

.text-pl-hf a {
    color: #007bff;
    margin-right: 15px;
}

.text-pl-bd {
    width: 100%;
}

.text-pl-bd-xx li {
    float: left;
    margin-bottom: 1em;
    width: 38.3%;
    padding-right: 3%;
    position: relative;
    list-style: none;
}

.text-pl-bd-xx li input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-left: 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-indent: 10px;
}

.text-pl-bd-xx li input.yzm {
    width: 60%;
}

.text-pl-bd-xx li img {
    width: 37% !important;
    height: 38px !important;
}

.text-pl-bd-nr .textarea {
    border-radius: 3px;
    text-indent: 5px;
    margin: 0 0 20px 0;
    padding: 5px;
    width: 98%;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-appearance: none;
    font-size: 14px;
}

.text-pl-bd-an button {
    border-radius: 3px;
    border: none;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    background: #107bec;
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    opacity: .8;
    margin-right: 10px;
}

.text-pl-bd-an button:hover {
    opacity: 1;
}

.text-pl-bd-an button.qxhf {
    background: #f3a004;
}


.pl-list {
    width: 100%;
}

.pl-list-bt {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.pl-list-bt i {
    margin-right: 3px;
    font-size: 22px;
}

.pl-list-lb .ul {
    border-top: 1px solid #ededed;
    font-size: 14px;
}

.pl-list-lb .li {
    overflow: hidden;
    padding: 15px;
}

.pl-list-lb .li:hover {
    background: #f8f8f8
}

.pl-list-lb .li img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    float: left;
}

.pl-list-lb .li .yc {
    margin-left: 70px
}

.pl-list-lb .li .yc-yhhf {
    height: 20px;
}

.pl-list-lb .li .yc-yhhf a {
    color: #007bff;
}

.pl-list-lb .li .yc-yhhf span {
    float: right;
}

.pl-list-lb .li .yc-yhhf span a {
    color: #999;
}

.pl-list-lb .li .yc-yhhf span a:hover {
    color: #007bff;
}

.pl-list-lb .li .yc-hfsj {
    color: #666;
}

.pl-list-lb .li .yc p {
    word-wrap: break-word;
    font-size: 16px;
    line-height: 2;
    margin-top: 3px;
}

.pl-list-lb .ul .ul {
    margin-left: 4%
}

.pl-list-ym {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding: 20px 0px;
}


@media (max-width: 768px) {
    .box {
        width: 98%;
    }

    header {
        margin-bottom: 10px;
    }

    .header-logo {
        margin-left: 10px;
    }

    .nav-btn {
        display: block;
    }

    .search-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        border-top: 2px #3399ff solid;
        margin-left: 0px;
    }

    nav li {
        width: 100%;
        padding: 0 0 0 20px;
        border-bottom: 1px solid #f0f0f0;
        line-height: 40px;
        font-size: 14px
    }

    nav li:hover {
        border-bottom: none;
    }

    .header-search {
        display: none;
        position: absolute;
        top: 60px;
        z-index: 99;
        background: #fff;
        width: 100%;
        border-top: 2px #3399ff solid;
        padding: 15px;
    }

    .header-search input {
        width: 70%;
    }

    .header-search button {
        width: 30%;
    }

    .main-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .main-right {
        width: 100%;
    }

    .index-banner {
        height: 200px;
        margin-bottom: 10px;
    }

    .swiper-slide span {
        left: 10px;
        bottom: 11px;
        font-size: 14px;
    }

    .index-list {
        margin-bottom: 10px;
    }

    .index-list-bt {
        padding: 0px 15px;
    }

    .index-list-bt h2 {
        font-size: 16px;
    }

    .index-list-bt i {
        font-size: 26px;
    }

    .index-list-li {
        padding: 10px;
        align-items: center;
    }

    .list-li-img img {
        max-height: 60px;
    }

    .list-li-wen-tit .lm {
        display: none;
    }

    .list-li-wen-tit .bt h3 {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        overflow: hidden;
    }

    .list-li-wen-info {
        font-size: 12px;
        line-height: 25px;
    }

    .list-li-wen-info span {
        margin-right: 0px;
    }

    .list-li-wen-info span i {
        display: none;
    }

    .list-li-wen-con {
        display: none;
    }

    .index-zz {
        display: none;
    }

    .right-pic {
        margin-bottom: 10px;
    }

    .right-pic-ul .yc h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .right-hot {
        margin-bottom: 10px;
    }

    .right-tag {
        margin-bottom: 10px;
    }

    footer p {
        font-size: 12px;
    }

    .weizhi {
        margin-bottom: 10px;
    }

    .text-main {
        padding: 15px;
    }

    .text-zw-xx {
        font-size: 13px;
    }

    .text-zw-sxp {
        flex-direction: column;
    }

    .text-zw-sxp div {
        width: 100%;
    }

    .text-tj-ul {
        gap: 20px;
    }

    .text-tj-ul li {
        width: calc(50% - 10px);
    }

    .text-pl-bd-xx li {
        width: 50%;
    }

    .pl-list-lb .li {
        padding: 10px;
    }

}

/* =========================================================
   Career editorial redesign
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--career-ink);
    background: var(--career-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection {
    color: #fff;
    background: var(--career-blue);
}

a {
    color: inherit;
}

a:hover {
    color: var(--career-blue);
}

img {
    max-width: 100%;
}

.box {
    width: min(1200px, calc(100% - 40px));
    max-width: 1200px;
    overflow: visible;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.section-eyebrow {
    color: var(--career-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.13em;
}

.reading-progress {
    position: fixed;
    z-index: 10050;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--career-blue), var(--career-green));
    box-shadow: 0 0 12px rgba(66, 227, 154, 0.55);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 76px;
    margin: 0;
    line-height: normal;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(223, 230, 239, 0.9);
    box-shadow: 0 5px 24px rgba(16, 35, 63, 0.04);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-logo {
    float: none;
    flex: 0 0 auto;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--career-ink);
}

.header-logo a:hover {
    color: var(--career-ink);
}

.header-custom-logo {
    display: block;
    width: auto;
    max-width: 190px;
    height: 44px;
    object-fit: contain;
}

.header-brand-mark {
    position: relative;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: var(--career-blue);
    border-radius: 12px 12px 12px 3px;
    box-shadow: 0 8px 18px rgba(23, 107, 255, 0.24);
    font-size: 22px;
    font-weight: 900;
}

.header-brand-mark::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: -9px;
    width: 25px;
    height: 25px;
    background: var(--career-green);
    border-radius: 50%;
    opacity: 0.9;
}

.header-brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.header-brand-copy strong {
    max-width: 180px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-brand-copy small {
    max-width: 180px;
    margin-top: 2px;
    overflow: hidden;
    color: var(--career-muted);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header nav {
    float: none;
    margin: 0 auto 0 18px;
}

.site-header nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header nav li {
    position: relative;
    float: none;
    margin: 0;
    border: 0;
}

.site-header nav li:hover {
    border: 0;
}

.site-header nav li a {
    display: block;
    padding: 29px 0 27px;
    color: #3e4d61;
    font-size: 15px;
    font-weight: 600;
}

.site-header nav li a::after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 18px;
    left: 50%;
    height: 3px;
    background: var(--career-blue);
    border-radius: 3px;
    transition: left 0.2s ease, right 0.2s ease;
}

.site-header nav li a:hover,
.page-index .site-header nav #navbar-item-index a {
    color: var(--career-blue);
}

.site-header nav li a:hover::after,
.page-index .site-header nav #navbar-item-index a::after {
    right: 25%;
    left: 25%;
}

.header-search {
    float: none;
    flex: 0 0 286px;
    padding: 0;
}

.header-search form {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f1f5fa;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search form:focus-within {
    background: #fff;
    border-color: var(--career-blue);
    box-shadow: 0 0 0 3px rgba(23, 107, 255, 0.09);
}

.header-search input {
    width: 100%;
    min-width: 0;
    height: 42px;
    float: none;
    padding: 0 6px 0 14px;
    color: var(--career-ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.header-search input:focus {
    border: 0;
}

.header-search input::placeholder {
    color: #8a97a8;
}

.header-search button {
    width: 58px;
    height: 32px;
    margin-right: 5px;
    float: none;
    flex: 0 0 auto;
    padding: 0;
    color: var(--career-blue);
    background: #fff;
    border: 0;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
}

.header-search button:hover {
    color: #fff;
    background: var(--career-blue);
}

/* Homepage hero */
.home-main {
    overflow: hidden;
}

.career-hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 68px;
    background: var(--career-navy);
}

.career-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.25;
    mask-image: linear-gradient(90deg, transparent 4%, #000 45%, #000 100%);
}

.career-hero::after {
    content: '';
    position: absolute;
    right: -110px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    background: var(--career-blue);
    border-radius: 50%;
    opacity: 0.13;
}

.career-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 70px;
    align-items: center;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #c3cddd;
    font-size: 13px;
    font-weight: 600;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    color: var(--career-green);
    background: rgba(66, 227, 154, 0.1);
    border: 1px solid rgba(66, 227, 154, 0.25);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.career-hero-copy h1 {
    color: #fff;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.035em;
}

.career-hero-copy h1 em {
    color: var(--career-green);
    font-style: normal;
}

.hero-intro {
    max-width: 620px;
    margin-top: 22px;
    color: #b8c5d6;
    font-size: 17px;
    line-height: 1.85;
}

.hero-search {
    display: flex;
    max-width: 625px;
    margin-top: 30px;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(2, 12, 28, 0.24);
}

.hero-search:focus-within {
    box-shadow: 0 0 0 3px rgba(66, 227, 154, 0.22), 0 18px 40px rgba(2, 12, 28, 0.24);
}

.hero-search input {
    width: 100%;
    min-width: 0;
    height: 49px;
    padding: 0 18px;
    color: var(--career-ink);
    background: #fff;
    border: 0;
    font-size: 16px;
}

.hero-search input::placeholder {
    color: #8290a2;
}

.hero-search button {
    min-width: 132px;
    height: 49px;
    color: #fff;
    background: var(--career-blue);
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-search button:hover {
    background: var(--career-blue-dark);
    transform: translateY(-1px);
}

.hero-search button span {
    margin-left: 6px;
    font-size: 18px;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
    color: #91a2b8;
    font-size: 13px;
}

.hero-keywords::before {
    content: '关注方向';
    color: #d8e0eb;
}

.hero-keywords span::before {
    content: '#';
    margin-right: 2px;
    color: var(--career-green);
}

.briefing-card {
    position: relative;
    overflow: hidden;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 22px 22px 22px 7px;
    box-shadow: 0 28px 70px rgba(0, 10, 27, 0.3);
}

.briefing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 6px;
    background: var(--career-green);
    border-radius: 0 22px 0 6px;
}

.briefing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 13px;
    color: var(--career-muted);
    font-size: 13px;
}

.briefing-head > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.briefing-head strong {
    color: var(--career-ink);
    font-size: 17px;
    font-weight: 800;
}

.live-dot {
    position: relative;
    display: block;
    width: 9px;
    height: 9px;
    background: #18bf6d;
    border-radius: 50%;
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(24, 191, 109, 0.36);
    border-radius: 50%;
}

.briefing-list {
    overflow: hidden;
    border: 1px solid #e7ecf2;
    border-radius: 13px;
}

.briefing-item {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr) 22px;
    gap: 13px;
    align-items: center;
    padding: 15px 14px;
    background: #fff;
    border-bottom: 1px solid #edf0f4;
}

.briefing-item:last-child {
    border-bottom: 0;
}

.briefing-item:hover {
    color: var(--career-ink);
    background: var(--career-sky);
}

.briefing-bullet {
    width: 6px;
    height: 6px;
    background: var(--career-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.09);
}

.briefing-item-copy {
    min-width: 0;
}

.briefing-item-copy strong {
    display: block;
    overflow: hidden;
    color: var(--career-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.briefing-item-copy small {
    display: block;
    margin-top: 3px;
    color: var(--career-muted-light);
    font-size: 12px;
}

.briefing-arrow {
    color: #a0aaba;
    font-size: 17px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.briefing-item:hover .briefing-arrow {
    color: var(--career-blue);
    transform: translate(2px, -2px);
}

.briefing-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px 8px;
    color: var(--career-blue);
    font-size: 13px;
    font-weight: 700;
}

/* Homepage feed */
.career-content {
    padding: 56px 0 64px;
}

.career-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.career-layout .main-left,
.career-layout .main-right {
    width: auto;
    float: none;
}

.index-list-bt {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 20px;
    padding: 0;
    background: transparent;
    border: 0;
}

.index-list-bt h2 {
    margin-top: 7px;
    color: var(--career-ink);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.index-list-bt > span {
    color: var(--career-muted);
    font-size: 13px;
}

.career-feed-list {
    display: grid;
    gap: 14px;
}

.index-list-li {
    position: relative;
    display: flex;
    min-height: 182px;
    margin: 0;
    padding: 20px;
    justify-content: flex-start;
    gap: 22px;
    overflow: hidden;
    background: var(--career-card);
    border: 1px solid var(--career-line);
    border-radius: var(--career-radius);
    box-shadow: 0 2px 8px rgba(16, 35, 63, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.index-list-li:hover {
    z-index: 1;
    background: var(--career-card);
    border-color: rgba(23, 107, 255, 0.38);
    box-shadow: var(--career-shadow-soft);
    transform: translateY(-2px);
}

.index-list-li.noimg::before {
    content: '';
    width: 5px;
    align-self: stretch;
    flex: 0 0 5px;
    background: linear-gradient(180deg, var(--career-blue), #6d9eff);
    border-radius: 6px;
}

.list-li-img {
    width: 220px;
    flex: 0 0 220px;
}

.list-li-img a,
.list-li-img img {
    display: block;
    width: 100%;
    height: 140px;
}

.list-li-img img {
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.35s ease;
}

.index-list-li:hover .list-li-img img {
    transform: scale(1.025);
}

.list-li-wen,
.index-list-li.noimg .list-li-wen {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
}

.list-li-wen-tit {
    display: block;
}

.list-li-wen-tit .lm {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 4px 9px;
    color: var(--career-blue);
    background: var(--career-sky);
    border: 1px solid #d9e7ff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.list-li-wen-tit .lm i {
    display: none;
}

.list-li-wen-tit .lm:hover {
    color: #fff;
    background: var(--career-blue);
}

.list-li-wen-tit .bt {
    display: block;
    color: var(--career-ink);
}

.list-li-wen-tit .bt h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.012em;
}

.list-li-wen-tit .bt:hover,
.list-li-wen-tit .bt:hover h3 {
    color: var(--career-blue);
}

.list-li-wen-con {
    margin: 8px 0 12px;
    color: var(--career-muted);
    font-size: 14px;
    line-height: 1.75;
}

.list-li-wen-con p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.list-li-wen-info {
    display: flex;
    width: 100%;
    margin-top: auto;
    align-items: center;
    gap: 16px;
    color: var(--career-muted-light);
    font-size: 12px;
    line-height: 1.4;
}

.list-li-wen-info span {
    margin: 0;
}

.list-li-wen-info i {
    margin-right: 4px;
}

.list-li-wen-info .read-more {
    margin-left: auto;
    color: var(--career-blue);
    font-size: 13px;
    font-weight: 800;
}

.list-li-wen-info .read-more span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.list-li-wen-info .read-more:hover span {
    transform: translateX(3px);
}

.index-list-yema {
    margin-top: 22px;
    padding: 5px 0;
    background: transparent;
    border: 0;
}

.yema a,
.yema span {
    min-width: 38px;
    padding: 7px 11px;
    margin: 0 3px;
    text-align: center;
    border-radius: 9px;
}

.yema a {
    color: var(--career-muted);
    background: #fff;
    border-color: var(--career-line);
}

.yema a:hover,
.yema span {
    color: #fff;
    background: var(--career-blue);
    border-color: var(--career-blue);
}

/* Sidebar */
.career-aside {
    position: relative;
}

.career-checklist {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 26px;
    color: #fff;
    background: linear-gradient(145deg, var(--career-navy), #173a68);
    border-radius: var(--career-radius);
    box-shadow: var(--career-shadow-soft);
}

.career-checklist::after {
    content: '';
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    background: var(--career-green);
    border-radius: 50%;
    opacity: 0.09;
}

.career-checklist .section-eyebrow {
    color: var(--career-green);
}

.career-checklist h2 {
    margin: 8px 0 20px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
}

.career-checklist ol {
    display: grid;
    gap: 17px;
}

.career-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.career-checklist li > span {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    color: var(--career-green);
    background: rgba(66, 227, 154, 0.11);
    border: 1px solid rgba(66, 227, 154, 0.24);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.career-checklist li p {
    min-width: 0;
}

.career-checklist li strong,
.career-checklist li small {
    display: block;
}

.career-checklist li strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.career-checklist li small {
    margin-top: 3px;
    color: #aebdd0;
    font-size: 12px;
    line-height: 1.55;
}

.main-right .sidebox,
.right-hot,
.right-tag,
.right-link,
.right-pic,
.right-cata {
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--career-line);
    border-radius: var(--career-radius);
    box-shadow: 0 4px 14px rgba(16, 35, 63, 0.035);
}

.main-right .sidetitle,
.right-hot-bt,
.right-tag-bt,
.right-link-bt,
.right-pic-bt,
.right-cata-bt {
    height: auto;
    padding: 17px 20px 13px;
    color: var(--career-ink);
    border: 0;
    border-bottom: 1px solid #edf0f4;
    border-left: 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.main-right .sidetitle::before,
.right-hot-bt::before,
.right-tag-bt::before,
.right-link-bt::before,
.right-pic-bt::before,
.right-cata-bt::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    margin-right: 9px;
    background: var(--career-blue);
    border-radius: 4px;
    vertical-align: -1px;
}

.right-hot-bt i,
.right-tag-bt i,
.right-link-bt i,
.right-pic-bt i,
.right-cata-bt i {
    display: none;
}

.main-right .sidetitle-ul {
    padding: 10px 17px 15px;
}

.main-right .sidetitle-ul li {
    margin: 0;
}

.main-right .sidetitle-ul li a {
    height: auto;
    min-height: 38px;
    padding: 8px 3px;
    color: #526176;
    border-bottom: 1px solid #eff2f6;
    font-size: 14px;
    line-height: 1.55;
}

.main-right .sidetitle-ul li:last-child a {
    border-bottom: 0;
}

.main-right .sidetitle-ul li a:hover {
    color: var(--career-blue);
    background: transparent;
}

.right-cata-ul {
    gap: 8px;
    padding: 14px 17px 18px;
}

.right-cata-ul li {
    width: calc(50% - 4px);
}

.right-cata-ul li i {
    display: none;
}

.right-cata-ul li a {
    width: 100%;
    height: auto;
    padding: 8px 10px;
    color: #4c5b70;
    background: #f4f7fb;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.right-cata-ul li a::before {
    content: '#';
    margin-right: 4px;
    color: var(--career-blue);
}

.right-cata-ul li a:hover {
    color: #fff;
    background: var(--career-blue);
}

.right-cata-ul li a:hover::before {
    color: var(--career-green);
}

.right-hot-ul li,
.right-pic-ul li {
    padding: 12px 17px;
    border-bottom-color: #edf0f4;
    border-left: 0;
}

.right-hot-ul li:hover,
.right-pic-ul li:hover {
    background: var(--career-sky);
    border-left: 0;
}

.right-hot-ul li a {
    color: #4c5b70;
    line-height: 1.55;
}

.right-tag-ul,
.right-link-ul {
    padding: 12px 17px 16px;
}

.right-tag-ul li,
.right-link-ul a {
    margin: 4px 5px 4px 0;
}

.right-tag-ul li a,
.right-link-ul a {
    color: #526176;
    background: #f4f7fb;
    border: 1px solid transparent;
    border-radius: 7px;
}

.right-tag-ul li a:hover,
.right-link-ul a:hover {
    color: var(--career-blue);
    background: var(--career-sky);
    border-color: #d6e5ff;
}

#tbCalendar {
    width: 100%;
    color: var(--career-muted);
    border-collapse: collapse;
    text-align: center;
    font-size: 12px;
}

#tbCalendar caption {
    padding: 4px 0 12px;
    color: var(--career-ink);
    font-size: 14px;
    font-weight: 700;
}

#tbCalendar th,
#tbCalendar td {
    width: 14.28%;
    height: 32px;
}

#tbCalendar td a {
    display: inline-grid;
    width: 27px;
    height: 27px;
    place-items: center;
    padding: 0;
    color: #fff;
    background: var(--career-blue);
    border: 0;
    border-radius: 7px;
}

#divContorPanel .sidetitle-ul {
    padding: 17px;
    color: var(--career-muted);
    font-size: 13px;
    text-align: left;
}

#divContorPanel .cp-login a,
#divContorPanel .cp-vrs a {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 10px;
    color: var(--career-blue);
    background: var(--career-sky);
    border-radius: 7px;
}

.sidetitle-ul input[type="text"] {
    height: 38px;
    border-color: var(--career-line);
    border-radius: 9px 0 0 9px;
}

.sidetitle-ul input[type="submit"] {
    height: 38px;
    padding: 0;
    background: var(--career-blue);
    border-radius: 0 9px 9px 0;
}

/* Shared list/detail groundwork */
.weizhi {
    margin: 0;
    padding: 16px 0;
    color: var(--career-muted);
    background: #fff;
    border-bottom: 1px solid var(--career-line);
    font-size: 13px;
    line-height: 1.6;
}

.weizhi a {
    color: #526176;
}

.weizhi a:hover,
.weizhi i {
    color: var(--career-blue);
}

/* Footer */
footer {
    height: auto;
    margin-top: 0;
    padding: 30px 0;
    color: #8b99aa;
    background: var(--career-navy-deep);
    box-shadow: none;
    line-height: 1.8;
}

footer p {
    color: #8b99aa;
    font-size: 13px;
}

footer p a {
    color: #b4c1d1;
}

.go-top {
    right: max(20px, calc((100vw - 1200px) / 2 - 55px));
    bottom: 28px;
}

.go-top a {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border: 1px solid var(--career-line);
    border-radius: 12px;
    box-shadow: var(--career-shadow-soft);
}

/* Tablet */
@media (max-width: 1050px) {
    .header-inner {
        gap: 18px;
    }

    .header-brand-copy small {
        display: none;
    }

    .site-header nav {
        margin-left: 4px;
    }

    .site-header nav ul {
        gap: 20px;
    }

    .header-search {
        flex-basis: 230px;
    }

    .career-hero-grid {
        gap: 38px;
    }

    .career-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 24px;
    }

    .list-li-img {
        width: 185px;
        flex-basis: 185px;
    }
}

/* Mobile navigation and layout */
@media (max-width: 820px) {
    .box {
        width: min(100% - 28px, 1200px);
    }

    .site-header {
        height: 68px;
    }

    .header-inner {
        gap: 0;
    }

    .header-logo {
        margin: 0;
    }

    .header-brand-mark {
        width: 39px;
        height: 39px;
        font-size: 20px;
    }

    .header-brand-copy strong {
        max-width: 140px;
        font-size: 16px;
    }

    .nav-btn {
        display: block;
        top: auto;
        right: auto;
        order: 4;
        margin-left: 18px;
    }

    .nav-btn i,
    .nav-btn i::before,
    .nav-btn i::after {
        background: var(--career-ink);
    }

    .search-btn {
        display: block;
        width: auto;
        height: 34px;
        margin: 0 0 0 auto;
        padding: 0 12px;
        color: var(--career-blue);
        background: var(--career-sky);
        border-radius: 9px;
        font-size: 13px;
        font-weight: 700;
    }

    .site-header nav {
        position: absolute;
        top: 68px;
        left: 0;
        display: none;
        width: 100%;
        margin: 0;
        padding: 9px 18px 14px;
        background: #fff;
        border-top: 1px solid var(--career-line);
        border-bottom: 1px solid var(--career-line);
        box-shadow: 0 15px 30px rgba(16, 35, 63, 0.1);
    }

    .site-header nav ul {
        display: block;
    }

    .site-header nav li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #edf0f4;
        line-height: 1.4;
    }

    .site-header nav li:last-child {
        border-bottom: 0;
    }

    .site-header nav li a {
        padding: 12px 4px;
    }

    .site-header nav li a::after {
        display: none;
    }

    .header-search {
        position: absolute;
        z-index: 99;
        top: 68px;
        left: 0;
        display: none;
        width: 100%;
        padding: 14px;
        background: #fff;
        border-top: 1px solid var(--career-line);
        border-bottom: 1px solid var(--career-line);
        box-shadow: 0 15px 30px rgba(16, 35, 63, 0.1);
    }

    .header-search form {
        max-width: 620px;
        margin: 0 auto;
    }

    .header-search input {
        width: 100%;
    }

    .header-search button {
        width: 58px;
    }

    .career-hero {
        padding: 44px 0 48px;
    }

    .career-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .career-hero-copy h1 {
        font-size: clamp(34px, 8.2vw, 46px);
    }

    .hero-intro {
        font-size: 16px;
    }

    .briefing-card {
        max-width: 620px;
    }

    .career-content {
        padding: 40px 0 48px;
    }

    .career-layout {
        grid-template-columns: 1fr;
    }

    .career-aside {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .career-aside > * {
        min-width: 0;
    }

    .career-aside .career-checklist,
    .career-aside .sidebox,
    .career-aside .right-hot,
    .career-aside .right-tag,
    .career-aside .right-link,
    .career-aside .right-pic,
    .career-aside .right-cata {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .box {
        width: min(100% - 24px, 1200px);
    }

    .header-brand-copy strong {
        max-width: 108px;
    }

    .nav-btn {
        margin-left: 12px;
    }

    .career-hero {
        padding: 38px 0 40px;
    }

    .hero-kicker {
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .career-hero-copy h1 {
        font-size: 34px;
        line-height: 1.28;
    }

    .career-hero-copy h1 br {
        display: none;
    }

    .hero-intro {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-search {
        margin-top: 22px;
        padding: 5px;
    }

    .hero-search input {
        height: 46px;
        padding: 0 12px;
        font-size: 14px;
    }

    .hero-search button {
        min-width: 96px;
        height: 46px;
        font-size: 14px;
    }

    .hero-keywords {
        gap: 8px 12px;
    }

    .hero-keywords span:nth-last-child(-n+2) {
        display: none;
    }

    .briefing-card {
        border-radius: 18px 18px 18px 6px;
    }

    .briefing-item {
        padding: 13px 11px;
    }

    .briefing-item-copy strong {
        font-size: 14px;
    }

    .career-content {
        padding: 34px 0 40px;
    }

    .index-list-bt {
        align-items: flex-start;
    }

    .index-list-bt h2 {
        font-size: 24px;
    }

    .index-list-bt > span {
        display: none;
    }

    .index-list-li {
        min-height: 0;
        padding: 16px;
        gap: 13px;
        border-radius: 14px;
    }

    .index-list-li.noimg::before {
        width: 4px;
        flex-basis: 4px;
    }

    .index-list-li:not(.noimg) {
        display: block;
    }

    .list-li-img {
        width: 100%;
        margin-bottom: 15px;
    }

    .list-li-img a,
    .list-li-img img {
        height: 180px;
    }

    .list-li-wen-tit .lm {
        display: inline-flex;
    }

    .list-li-wen-tit .bt h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .list-li-wen-con {
        display: block;
    }

    .list-li-wen-info {
        margin-top: 12px;
        gap: 10px;
    }

    .list-li-wen-info .read-more {
        font-size: 12px;
    }

    .career-aside {
        display: block;
    }

    .career-aside .career-checklist,
    .career-aside .sidebox,
    .career-aside .right-hot,
    .career-aside .right-tag,
    .career-aside .right-link,
    .career-aside .right-pic,
    .career-aside .right-cata {
        margin-bottom: 16px;
    }

    footer {
        padding: 24px 0;
    }

    footer p {
        font-size: 12px;
        line-height: 1.8;
    }
}

/* Article detail */
.article-breadcrumb .box {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-page {
    padding: 42px 0 68px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 30px;
    align-items: start;
}

.article-layout .main-left,
.article-layout .main-right {
    width: auto;
    float: none;
}

.article-main {
    min-width: 0;
}

.article-main .text-main {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.text-zw {
    padding: 46px 54px 42px;
    background: #fff;
    border: 1px solid var(--career-line);
    border-radius: 22px 22px 22px 7px;
    box-shadow: var(--career-shadow-soft);
}

.article-header .section-eyebrow {
    display: inline-block;
    margin-right: 10px;
}

.article-header {
    width: 100%;
    height: auto;
    margin: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
    line-height: normal;
}

.article-category {
    display: inline-flex;
    padding: 5px 9px;
    color: var(--career-blue);
    background: var(--career-sky);
    border: 1px solid #d9e7ff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.article-category:hover {
    color: #fff;
    background: var(--career-blue);
}

.text-zw .article-header h1,
.text-zw h1 {
    margin: 18px 0 17px;
    color: var(--career-ink);
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.34;
    letter-spacing: -0.025em;
}

.text-zw-xx.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin: 0;
    padding: 0;
    color: var(--career-muted-light);
    border: 0;
    font-size: 13px;
    line-height: 1.6;
}

.article-meta span {
    margin: 0;
}

.article-meta i {
    margin-right: 5px;
}

.article-meta a {
    color: var(--career-muted);
}

.article-meta a:hover {
    color: var(--career-blue);
}

.text-zw-zy.article-summary {
    position: relative;
    margin: 32px 0 34px;
    padding: 20px 22px 20px 26px;
    color: #526176;
    background: linear-gradient(110deg, var(--career-sky), #f8fbff);
    border: 1px solid #dce9fa;
    border-radius: 13px;
    font-size: 15px;
    line-height: 1.85;
}

.article-summary::before {
    content: '';
    position: absolute;
    top: 19px;
    bottom: 19px;
    left: 0;
    width: 4px;
    background: var(--career-blue);
    border-radius: 0 4px 4px 0;
}

.article-summary strong {
    display: block;
    margin-bottom: 5px;
    color: var(--career-blue);
    font-size: 13px;
    font-weight: 900;
}

.article-summary p {
    margin: 0;
}

.article-body {
    color: #27364a;
    font-size: 17px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.text-zw-nr.article-body p {
    margin: 0 0 1.3em;
    color: #27364a;
    font-size: 17px;
    line-height: 1.95;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    position: relative;
    color: var(--career-ink);
    font-weight: 900;
    line-height: 1.48;
}

.article-body h2 {
    margin: 2.1em 0 0.85em;
    padding-left: 15px;
    font-size: 25px;
}

.article-body h2::before {
    content: '';
    position: absolute;
    top: 0.18em;
    bottom: 0.18em;
    left: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--career-blue), var(--career-green));
    border-radius: 5px;
}

.article-body h3 {
    margin: 1.8em 0 0.7em;
    font-size: 21px;
}

.article-body h4 {
    margin: 1.5em 0 0.6em;
    font-size: 18px;
}

.article-body a {
    color: var(--career-blue);
    border-bottom: 1px solid rgba(23, 107, 255, 0.25);
}

.article-body a:hover {
    border-bottom-color: var(--career-blue);
}

.article-body ul,
.article-body ol {
    margin: 1em 0 1.4em;
    padding-left: 1.45em;
}

.article-body ul li {
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

.article-body li {
    margin: 0.45em 0;
    padding-left: 0.2em;
}

.article-body blockquote {
    margin: 1.5em 0;
    padding: 18px 22px;
    color: #526176;
    background: #f6f8fb;
    border-left: 4px solid var(--career-green);
    border-radius: 0 10px 10px 0;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

.article-body img,
.text-zw-nr p img {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 1.7em auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.09);
}

.article-body table {
    display: block;
    width: 100%;
    margin: 1.5em 0;
    overflow-x: auto;
    border-collapse: collapse;
    font-size: 15px;
}

.article-body th,
.article-body td {
    min-width: 120px;
    padding: 11px 13px;
    border: 1px solid var(--career-line);
    text-align: left;
}

.article-body th {
    color: var(--career-ink);
    background: var(--career-sky);
    font-weight: 800;
}

.text-zw-bq.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 34px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--career-line);
    font-size: 13px;
}

.article-tags > span {
    display: inline-flex;
    align-items: center;
    margin-right: 3px;
    color: var(--career-muted);
    font-weight: 700;
}

.article-tags a {
    margin: 0;
    padding: 6px 10px;
    color: #526176;
    background: #f3f6fa;
    border: 1px solid transparent;
    border-radius: 7px;
}

.article-tags a:hover {
    color: var(--career-blue);
    background: var(--career-sky);
    border-color: #d9e7ff;
}

.text-zw-sm.article-source-note {
    display: flex;
    gap: 14px;
    margin: 30px 0;
    padding: 18px 20px;
    color: #526176;
    background: #f4fbf7;
    border: 1px solid #d9f2e5;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.75;
}

.source-note-mark {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    color: #0c9253;
    background: var(--career-green-soft);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.article-source-note p {
    margin: 0 0 4px;
}

.article-source-note p:last-child {
    margin-bottom: 0;
}

.article-source-note a {
    color: var(--career-blue);
    overflow-wrap: anywhere;
}

.text-zw-sxp.article-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    float: none;
    clear: both;
    margin: 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--career-line);
    border-bottom: 0;
}

.article-pager div {
    width: auto;
    min-width: 0;
    padding: 16px 17px;
    background: #f7f9fc;
    border: 1px solid #edf0f4;
    border-radius: 11px;
    line-height: 1.55;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.article-pager div:hover {
    background: var(--career-sky);
    border-color: #d4e4ff;
    border-radius: 11px;
}

.article-pager small {
    display: block;
    margin-bottom: 5px;
    color: var(--career-muted-light);
    font-size: 11px;
    font-weight: 800;
}

.article-pager a {
    display: -webkit-box;
    overflow: hidden;
    color: #344358;
    font-size: 14px;
    font-weight: 700;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-pager a:hover {
    color: var(--career-blue);
}

.article-pager .sp {
    padding-left: 17px;
    text-align: left;
}

.article-pager .xp {
    padding-right: 17px;
    text-align: right;
}

.article-pager .sp a::after,
.article-pager .xp a::after {
    display: none;
}

.text-tj {
    margin: 26px 0 0;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--career-line);
    border-radius: var(--career-radius);
    box-shadow: 0 4px 16px rgba(16, 35, 63, 0.035);
}

.text-tj-bt {
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-tj-bt h2 {
    margin-top: 7px;
    color: var(--career-ink);
    font-size: 23px;
    font-weight: 900;
}

.text-tj-ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.text-tj-ul li {
    width: auto;
    min-width: 0;
}

.text-tj-ul li a {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 15px;
    height: 100%;
    padding: 12px;
    color: var(--career-ink);
    background: #f7f9fc;
    border: 1px solid #edf0f4;
    border-radius: 11px;
}

.text-tj-ul li a:hover {
    color: var(--career-blue);
    background: var(--career-sky);
    border-color: #d7e6ff;
}

.text-tj-ul li a img,
.related-placeholder {
    grid-row: 1 / 3;
    width: 110px;
    height: 76px;
    margin: 0;
    object-fit: cover;
    border-radius: 8px;
}

.related-placeholder {
    display: grid;
    place-items: center;
    color: #7ea4df;
    background: linear-gradient(145deg, #eaf2ff, #dce9ff);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.text-tj-ul li a small {
    color: var(--career-blue);
    font-size: 11px;
    font-weight: 800;
}

.text-tj-ul li a strong {
    display: -webkit-box;
    margin-top: 4px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-comments {
    margin-top: 26px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--career-line);
    border-radius: var(--career-radius);
}

.article-comments .text-pl-bt,
.article-comments .pl-list-bt {
    margin-bottom: 18px;
    color: var(--career-ink);
    font-size: 21px;
    font-weight: 900;
}

.article-comments .text-pl-bd-xx {
    overflow: hidden;
}

.article-comments .text-pl-bd-xx li {
    width: 50%;
}

.article-comments input,
.article-comments textarea {
    color: var(--career-ink);
    border-color: var(--career-line) !important;
    border-radius: 9px !important;
    font-size: 14px !important;
}

.article-comments input:focus,
.article-comments textarea:focus {
    border-color: var(--career-blue) !important;
    box-shadow: 0 0 0 3px rgba(23, 107, 255, 0.08);
}

.article-comments .text-pl-bd-an button {
    height: 42px;
    padding: 0 18px;
    color: #fff;
    background: var(--career-blue);
    border-radius: 9px;
    font-weight: 700;
    line-height: 42px;
    opacity: 1;
}

.article-aside {
    position: sticky;
    top: 100px;
}

.article-search-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 26px;
    color: #fff;
    background: linear-gradient(145deg, var(--career-navy), #173a68);
    border-radius: var(--career-radius);
    box-shadow: var(--career-shadow-soft);
}

.article-search-card::after {
    content: '';
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 125px;
    height: 125px;
    background: var(--career-blue);
    border-radius: 50%;
    opacity: 0.18;
}

.article-search-card .section-eyebrow {
    color: var(--career-green);
}

.article-search-card h2 {
    margin: 8px 0 10px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
}

.article-search-card > p:not(.section-eyebrow) {
    color: #b3c1d2;
    font-size: 13px;
    line-height: 1.75;
}

.article-search-card form {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: 18px;
    padding: 5px;
    background: #fff;
    border-radius: 11px;
}

.article-search-card input {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 10px;
    color: var(--career-ink);
    border: 0;
    font-size: 14px;
}

.article-search-card button {
    width: 58px;
    flex: 0 0 58px;
    color: #fff;
    background: var(--career-blue);
    border: 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 950px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 22px;
    }

    .text-zw {
        padding: 38px 38px 36px;
    }

    .text-tj-ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .article-page {
        padding: 30px 0 48px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .article-aside > * {
        min-width: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .article-page {
        padding: 22px 0 38px;
    }

    .text-zw {
        padding: 28px 20px 26px;
        border-radius: 16px 16px 16px 6px;
    }

    .text-zw .article-header h1,
    .text-zw h1 {
        margin-top: 14px;
        font-size: 28px;
        line-height: 1.42;
    }

    .article-meta {
        gap: 6px 13px;
    }

    .article-summary {
        margin: 24px 0 27px !important;
        padding: 17px 17px 17px 21px !important;
    }

    .article-body,
    .text-zw-nr.article-body p {
        font-size: 16px;
        line-height: 1.92;
    }

    .article-body h2 {
        font-size: 22px;
    }

    .article-body h3 {
        font-size: 19px;
    }

    .article-source-note {
        padding: 16px !important;
    }

    .article-pager {
        grid-template-columns: 1fr !important;
    }

    .article-pager .xp {
        text-align: left;
    }

    .text-tj,
    .article-comments {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .text-tj-ul li a {
        grid-template-columns: 88px minmax(0, 1fr);
        column-gap: 12px;
    }

    .text-tj-ul li a img,
    .related-placeholder {
        width: 88px;
        height: 68px;
    }

    .article-comments .text-pl-bd-xx li {
        width: 100%;
        padding-right: 0;
    }

    .article-aside {
        display: block;
    }

    .article-aside > * {
        margin-bottom: 16px;
    }
}

/* Search results page */
.search-page {
    min-height: calc(100vh - 250px);
    padding: 42px 0 64px;
}

.search-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 30px;
    align-items: start;
}

.search-layout.no-sidebar {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.search-layout .main-left,
.search-layout .main-right {
    width: auto;
    min-width: 0;
    float: none;
}

.search-intro {
    position: relative;
    overflow: hidden;
    padding: 31px 34px 32px;
    background: #fff;
    border: 1px solid var(--career-line);
    border-radius: 20px 20px 20px 7px;
    box-shadow: var(--career-shadow-soft);
}

.search-intro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg, var(--career-blue), var(--career-green));
    border-radius: 0 20px 0 7px;
}

.search-intro h1 {
    margin-top: 8px;
    color: var(--career-ink);
    font-size: 31px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.search-intro h1 em {
    color: var(--career-blue);
    font-style: normal;
}

.search-intro > p:not(.section-eyebrow) {
    margin-top: 7px;
    color: var(--career-muted);
    font-size: 14px;
}

.search-again {
    display: flex;
    margin-top: 23px;
    padding: 5px;
    background: #f3f6fa;
    border: 1px solid var(--career-line);
    border-radius: 12px;
}

.search-again:focus-within {
    background: #fff;
    border-color: var(--career-blue);
    box-shadow: 0 0 0 3px rgba(23, 107, 255, 0.08);
}

.search-again input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    color: var(--career-ink);
    background: transparent;
    border: 0;
    font-size: 15px;
}

.search-again input::placeholder {
    color: var(--career-muted-light);
}

.search-again button {
    min-width: 116px;
    height: 46px;
    color: #fff;
    background: var(--career-blue);
    border: 0;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
}

.search-again button:hover {
    background: var(--career-blue-dark);
}

.search-again button span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.search-again button:hover span {
    transform: translateX(3px);
}

.search-results {
    margin-top: 30px;
}

.search-results-head {
    margin-bottom: 19px;
}

.search-results .list-li-wen-tit .bt h3 strong {
    color: var(--career-blue);
    background: transparent;
}

.search-results .list-li-wen-con {
    display: block;
}

.search-results .index-list-yema {
    margin-bottom: 0;
}

.search-empty {
    padding: 56px 30px;
    color: var(--career-muted);
    background: #fff;
    border: 1px dashed #cfd9e6;
    border-radius: var(--career-radius);
    text-align: center;
}

.search-empty > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    place-items: center;
    color: var(--career-blue);
    background: var(--career-sky);
    border-radius: 14px 14px 14px 4px;
    font-size: 23px;
    font-weight: 900;
}

.search-empty h2 {
    color: var(--career-ink);
    font-size: 20px;
    font-weight: 800;
}

.search-empty p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.75;
}

.search-aside {
    position: sticky;
    top: 100px;
}

@media (max-width: 820px) {
    .search-page {
        padding: 30px 0 48px;
    }

    .search-layout,
    .search-layout.no-sidebar {
        grid-template-columns: 1fr;
    }

    .search-aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .search-aside > * {
        min-width: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .search-page {
        padding: 22px 0 38px;
    }

    .search-intro {
        padding: 25px 19px 22px;
        border-radius: 16px 16px 16px 6px;
    }

    .search-intro h1 {
        font-size: 25px;
    }

    .search-again {
        margin-top: 18px;
    }

    .search-again input {
        height: 43px;
        padding: 0 10px;
        font-size: 14px;
    }

    .search-again button {
        min-width: 90px;
        height: 43px;
        font-size: 13px;
    }

    .search-results {
        margin-top: 25px;
    }

    .search-empty {
        padding: 42px 20px;
    }

    .search-aside {
        display: block;
    }

    .search-aside > * {
        margin-bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
