/* ==========================================================================
   世纪英才 项目页 - 样式
   模板：template/index/default/list/project.html
   依赖：index.css 中的 yc-test-* 系列
   ========================================================================== */

:root {
    --yc-proj-container: 1200px;
    --yc-proj-left-w: 860px;
    --yc-proj-right-w: 310px;
    --yc-proj-gap: 25px;
    --yc-proj-blue: #003371;
    --yc-proj-orange: #DDA054;
    --yc-proj-text: #001b2e;
    --yc-proj-text-sub: #666;
    --yc-proj-bg-card: #ffffff;
    --yc-proj-bg-gray: #f4f6fa;
    --yc-proj-border: #e8eaed;
    --yc-proj-radius: 4px;
}

/* ==================== 面包屑 ==================== */
.yc-proj-crumb {
    background: #f5f5f5;
    border-bottom: 1px solid #efefef;
    padding: 16px 0;
    margin-top: 0;
}

.hx-container.hx-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.el-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1;
    color: #666666;
}

.el-breadcrumb__item {
    display: inline-flex;
    align-items: center;
}

.el-breadcrumb__inner {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.el-breadcrumb__inner[href] {
    text-decoration: none;
}

.el-breadcrumb__inner.is-link {
    color: #666666;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.el-breadcrumb__inner.is-link:hover {
    color: #003371;
}

.el-breadcrumb__separator {
    margin: 0 12px;
    color: #c4c4c4;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
}

.el-breadcrumb__item:last-child .el-breadcrumb__inner,
.el-breadcrumb__item:last-child .el-breadcrumb__inner.is-link {
    color: #333333;
    cursor: text;
    font-weight: 400;
}

.el-breadcrumb__item:last-child .el-breadcrumb__separator {
    display: none;
}

/* ==================== 主体两栏 ==================== */
.yc-proj-main {
    background: #f5f5f5;
    padding: 0 0 60px;
}

.yc-proj-cta-section {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.yc-proj-cta-section::before,
.yc-proj-cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yc-proj-cta-section::before {
    background-image: url('https://www.huanxingshengshi.com/static/img/company_home_bg.81e1a3b.png');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.yc-proj-cta-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.yc-proj-cta-text {
    max-width: 900px;
}

.yc-proj-cta-title {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 33px;
    line-height: 1.25;
    font-weight: 700;
}

.yc-proj-cta-desc-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 42px;
    max-width: 100%;
}

.yc-proj-cta-desc-wrap::before,
.yc-proj-cta-desc-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: calc(100% + 18px);
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
}

.yc-proj-cta-desc-wrap::before {
    left: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.9);
}

.yc-proj-cta-desc-wrap::after {
    right: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.yc-proj-cta-desc {
    margin: 0;
    color: #e0e8f0;
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yc-proj-cta-desc-line {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-proj-cta-desc-line-main {
    max-width: 100%;
}

.yc-proj-cta-desc-line-sub {
    width: 70%;
    margin: 2px auto 0;
    text-align: center;
}

.yc-proj-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 170px;
    height: 52px;
    padding: 0 12px 0 26px;
    border: 1px solid #0a3f86;
    border-radius: 999px;
    background: #0a3f86;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    margin-top: 34px;
}

.yc-proj-cta-button,
.yc-proj-cta-button:hover,
.yc-proj-cta-button:focus,
.yc-proj-cta-button:active {
    text-decoration: none;
}

.yc-proj-cta-button:hover {
    background: #ffffff;
    color: #0a3f86;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.yc-proj-cta-button-text {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

.yc-proj-cta-button-icon {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ffffff;
    flex: 0 0 28px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.yc-proj-cta-button-icon::before,
.yc-proj-cta-button-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #0a3f86;
    transform: translate(-50%, -50%);
}

.yc-proj-cta-button-icon::before {
    width: 10px;
    height: 1.5px;
    margin-left: -1px;
}

.yc-proj-cta-button-icon::after {
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #0a3f86;
    border-right: 1.5px solid #0a3f86;
    background: transparent;
    transform: translate(-12%, -50%) rotate(45deg);
}

.yc-proj-cta-button:hover .yc-proj-cta-button-icon {
    background: #0a3f86;
    border-color: #0a3f86;
}

.yc-proj-cta-button:hover .yc-proj-cta-button-icon::before {
    background: #ffffff;
}

.yc-proj-cta-button:hover .yc-proj-cta-button-icon::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
}

.yc-proj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: var(--yc-proj-gap);
    align-items: flex-start;
    background: transparent;
}

.yc-proj-left {
    flex: 0 0 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
}

.yc-proj-right {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-width: 0;
    background: transparent;
}

.yc-proj-side {
    flex: 0 0 300px;
    max-width: 300px;
    min-width: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.yc-proj-side > .yc-proj-push,
.yc-proj-side > .yc-proj-hot,
.yc-proj-side > .yc-proj-case {
    display: flex;
    flex: 0 0 auto;
    min-height: 0;
    flex-direction: column;
}

.yc-proj-side.yc-proj-side-fill > .yc-proj-push,
.yc-proj-side.yc-proj-side-fill > .yc-proj-hot,
.yc-proj-side.yc-proj-side-fill > .yc-proj-case {
    flex: 1 1 0;
}

.yc-proj-side-gap {
    flex: 0 0 auto;
    height: 0;
}

.yc-proj-page-mobile .yc-proj-mobile-section-nav {
    display: none;
}

.yc-proj-page-mobile .yc-proj-mobile-section-panel {
    display: block !important;
}

/* ==================== 中间栏目板块 ==================== */
.yc-proj-center {
    background: #ffffff;
    min-height: 100%;
    padding: 30px 30px 34px;
    display: flex;
    flex-direction: column;
}

.yc-proj-center-head {
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eceff3;
}

.yc-proj-center-panels {
    flex: 1 1 auto;
    min-height: 0;
}

.yc-proj-center-panel {
    height: 100%;
}

.yc-proj-center-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.yc-proj-center-tab,
.yc-proj-center-more-btn {
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #4f5b67;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.yc-proj-center-tab:hover,
.yc-proj-center-more-btn:hover,
.yc-proj-center-tab.active,
.yc-proj-center-more-wrap.has-active .yc-proj-center-more-btn {
    background: transparent;
    color: #003371;
}

.yc-proj-center-more-wrap {
    position: relative;
}

.yc-proj-center-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.yc-proj-center-more-arrow {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
    transform-origin: center;
}

.yc-proj-center-more-wrap.is-open .yc-proj-center-more-arrow {
    transform: rotate(225deg) translateY(-1px);
}

.yc-proj-center-more-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 172px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 8;
}

.yc-proj-center-more-wrap.is-open .yc-proj-center-more-dropdown {
    display: grid;
    gap: 8px;
}

.yc-proj-center-more-dropdown .yc-proj-center-tab {
    width: 100%;
    text-align: left;
}

.yc-proj-card-list {
    display: flex;
    flex-direction: column;
}

.yc-proj-center-panel.has-pager {
    display: flex;
    flex-direction: column;
}

.yc-proj-center-panel.has-pager .yc-proj-card-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.yc-proj-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 0 26px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
    color: #161616;
    transition: background 0.2s ease;
}

.yc-proj-card,
.yc-proj-card:hover,
.yc-proj-card:focus,
.yc-proj-card:active {
    text-decoration: none;
}

.yc-proj-card + .yc-proj-card {
    padding-top: 26px;
}

.yc-proj-card:hover .yc-proj-card-title {
    color: #003371;
}

.yc-proj-card-title {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #10233b;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: color 0.2s ease;
}

.yc-proj-card-desc {
    margin-bottom: 18px;
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.yc-proj-card-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 10px 12px;
    background: #f6f7f9;
    border-radius: 4px;
}

.yc-proj-card-meta-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    color: #555555;
    font-size: 12px;
    line-height: 1.45;
    min-width: 0;
}

.yc-proj-card-meta-label {
    color: #555555;
    flex-shrink: 0;
}

.yc-proj-card-meta-value {
    color: #2058a8;
    font-weight: 500;
    min-width: 0;
    white-space: nowrap;
}

.yc-proj-center-empty {
    padding: 72px 20px;
    background: #f7f8fa;
    color: #8b95a1;
    font-size: 15px;
    text-align: center;
}

.yc-proj-center-pager {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 2px;
    flex-wrap: wrap;
}

.yc-proj-center-pager.is-visible {
    display: flex;
}

.yc-proj-center-page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #d9e0e8;
    background: #ffffff;
    color: #4b5563;
    font-size: 13px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yc-proj-center-page-btn:hover,
.yc-proj-center-page-btn.is-active {
    border-color: #003371;
    background: #003371;
    color: #ffffff;
}

.yc-proj-center-page-btn.is-disabled {
    opacity: 0.4;
    cursor: default;
}

/* ==================== 右侧政策推送 ==================== */
.yc-proj-push {
    background: #ffffff;
    padding: 24px 24px 26px;
}

.yc-proj-push-title {
    display: inline-block;
    margin: 0 0 22px;
    padding-bottom: 10px;
    color: #0f2c4e;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.yc-proj-push-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

.yc-proj-push-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
}

.yc-proj-push-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #333333;
}

.yc-proj-push-item::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 11px;
    width: 1px;
    height: calc(100% + 12px);
    background: #d7e3f0;
    transform: translateX(-50%);
}

.yc-proj-push-item,
.yc-proj-push-item:hover,
.yc-proj-push-item:focus,
.yc-proj-push-item:active {
    text-decoration: none;
}

.yc-proj-push-dot {
    position: relative;
    z-index: 1;
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border: 2px solid #8fb0d4;
    border-radius: 50%;
    box-sizing: border-box;
    background: #ffffff;
}

.yc-proj-push-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yc-proj-push-date {
    color: #a0a0a0;
    font-size: 12px;
    line-height: 12px;
}

.yc-proj-push-text {
    color: #333333;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color 0.2s ease;
}

.yc-proj-push-item:hover .yc-proj-push-text {
    color: #003371;
}

.yc-proj-push-item-placeholder {
    cursor: default;
    pointer-events: none;
}

.yc-proj-push-item-placeholder .yc-proj-push-date,
.yc-proj-push-item-placeholder .yc-proj-push-text {
    color: #b0b0b0;
}

.yc-proj-push-item-placeholder .yc-proj-push-text {
    min-height: 44px;
}

.yc-proj-push-item-placeholder .yc-proj-push-dot {
    border-color: #d6d6d6;
}

.yc-proj-push-empty {
    padding: 36px 0;
    color: #9aa3ad;
    font-size: 14px;
    text-align: center;
}

/* ==================== 右侧热门项目推荐 ==================== */
.yc-proj-hot {
    background: #ffffff;
    padding: 28px 28px 30px;
}

.yc-proj-hot-title {
    display: inline-block;
    margin: 0 0 24px;
    padding-bottom: 10px;
    color: #0a2c4e;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.yc-proj-hot-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

.yc-proj-hot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
    flex: 1 1 auto;
}

.yc-proj-hot-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.12;
    overflow: hidden;
    text-decoration: none;
    background: #dbe5ef;
}

.yc-proj-hot-card,
.yc-proj-hot-card:hover,
.yc-proj-hot-card:focus,
.yc-proj-hot-card:active {
    text-decoration: none;
}

.yc-proj-hot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease;
}

.yc-proj-hot-image-placeholder {
    background: linear-gradient(135deg, #d9e4ef, #b7c8da);
}

.yc-proj-hot-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46%;
    background: linear-gradient(to top, rgba(10, 44, 78, 0.92), rgba(10, 44, 78, 0));
}

.yc-proj-hot-text {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 12px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.yc-proj-hot-card:hover .yc-proj-hot-image {
    transform: scale(1.04);
}

.yc-proj-hot-empty {
    padding: 32px 0;
    color: #9aa3ad;
    font-size: 14px;
    text-align: center;
}

.yc-proj-case {
    background: #ffffff;
    padding: 28px 28px 30px;
}

.yc-proj-case-title {
    display: inline-block;
    margin: 0 0 24px;
    padding-bottom: 10px;
    color: #0a2c4e;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.yc-proj-case-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

.yc-proj-case-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.yc-proj-case-item {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    text-decoration: none;
}

.yc-proj-case-item,
.yc-proj-case-item:hover,
.yc-proj-case-item:focus,
.yc-proj-case-item:active {
    text-decoration: none;
}

.yc-proj-case-item:last-child {
    border-bottom: 0;
}

.yc-proj-case-line {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.yc-proj-case-line-a {
    margin-top: 8px;
}

.yc-proj-case-tag {
    flex: 0 0 auto;
    width: 28px;
    height: 18px;
    border-radius: 9px;
    background: #e7b47d;
    color: #ffffff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

.yc-proj-case-q {
    flex: 1 1 auto;
    min-width: 0;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yc-proj-case-a {
    flex: 1 1 auto;
    min-width: 0;
    color: #777777;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.yc-proj-case-item:hover .yc-proj-case-q {
    color: #003371;
}

.yc-proj-case-empty {
    padding: 32px 0;
    color: #9aa3ad;
    font-size: 14px;
    text-align: center;
}

/* ==================== 通用区块卡片 ==================== */
.yc-proj-block {
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 24px 26px;
}

.yc-proj-left .yc-proj-block + .yc-proj-block {
    margin-top: 0;
}

.yc-proj-block-title {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    color: #161616;
    line-height: 1.25;
}

.yc-proj-block-title::after {
    display: none;
}

/* ==================== Part 2：表单 ==================== */
.yc-proj-form {
    padding-bottom: 0;
    border-radius: 4px;
}

.yc-proj-form .yc-proj-block-title {
    display: inline-block;
    margin: 0 0 18px;
    padding-bottom: 10px;
    color: #003371;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.yc-proj-form .yc-proj-block-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #003371;
    border-radius: 2px;
    display: block;
}

.yc-proj-form-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yc-proj-form-body .yc-test-field {
    margin: 0;
    border: none;
    border-radius: 5px;
    background: #f7f8fa;
    padding: 0 14px;
    min-height: 44px;
}

.yc-proj-form-body .yc-test-field-prefix {
    width: 120px;
    flex-shrink: 0;
    text-align: left;
    padding-right: 8px;
    font-size: 13px;
    color: #555555;
    font-weight: 600;
    margin-right: 0;
}

.yc-proj-form-body .yc-test-field-short .yc-test-field-prefix {
    width: 84px;
}

.yc-proj-form-body .yc-test-field-text,
.yc-proj-form-body .yc-test-cs-trigger {
    flex: 1;
    min-width: 0;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 5px;
    padding: 0 26px 0 0;
    font-size: 13px;
    color: #161616;
    transition: color 0.2s ease;
}
.yc-proj-form-body .yc-test-field-text:focus,
.yc-proj-form-body .yc-test-cs-trigger:focus {
    outline: none;
    background: transparent;
}

.yc-proj-form-body .yc-test-field-text::placeholder,
.yc-proj-form-body .yc-test-cs-text {
    color: #a9a9a9;
    font-size: 13px;
}

.yc-proj-form-body .yc-test-cs-arrow {
    right: 0;
    width: 12px;
    height: 12px;
    background-size: 12px;
}

.yc-proj-form-submit {
    display: block;
    width: 100%;
    height: 44px;
    margin-top: 4px;
    background: #e8954a;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0;
    padding-left: 0;
    transition: background 0.2s ease, transform 0.1s ease;
}
.yc-proj-form-submit:hover {
    background: #dd8640;
}
.yc-proj-form-submit:active {
    transform: translateY(1px);
}

/* ==================== Part 4：英才动态 ==================== */
.yc-proj-policy {
    padding-bottom: 0;
}

.yc-proj-policy-list {
    display: flex;
    flex-direction: column;
}

.yc-proj-policy-item {
    display: flex;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}
.yc-proj-policy-item,
.yc-proj-policy-item:hover,
.yc-proj-policy-item:focus,
.yc-proj-policy-item:active {
    text-decoration: none;
}

/* 第一条：大图 + 内容 */
.yc-proj-policy-item-first {
    flex-direction: column;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 14px;
}

.yc-proj-policy-first-img {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    background: #f5f7fa;
    margin-bottom: 14px;
}
.yc-proj-policy-first-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.yc-proj-policy-item-first:hover .yc-proj-policy-first-img img {
    transform: scale(1.03);
}
.yc-proj-policy-img-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.yc-proj-policy-first-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yc-proj-policy-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #161616;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yc-proj-policy-desc {
    font-size: 13px;
    line-height: 22px;
    color: #686868;
}

.yc-proj-policy-first-body .yc-proj-policy-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 紧凑列表：日期方框 + 标题/内容/详情 */
.yc-proj-policy-item-compact {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 14px;
}
.yc-proj-policy-item-compact:last-child {
    border-bottom: 0;
}

.yc-proj-policy-date {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    background: #f4f4f4;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
}
.yc-proj-policy-day {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    color: #161616;
}
.yc-proj-policy-month {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.yc-proj-policy-compact-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}
.yc-proj-policy-compact-body .yc-proj-policy-title {
    font-size: 13px;
    font-weight: 600;
    -webkit-line-clamp: 2;
}
.yc-proj-policy-more {
    font-size: 13px;
    color: #003371;
    margin-top: 0;
    font-weight: 500;
}
.yc-proj-policy-item-compact:hover .yc-proj-policy-more {
    color: #dda054;
}
.yc-proj-policy-item-compact:hover .yc-proj-policy-title {
    color: #003371;
}

/* ==================== 项目页专属补充 ==================== */
.yc-proj-page .yc-about-graybox {
    height: auto;
    padding: 0;
    background: transparent;
    align-items: flex-start;
}
.yc-proj-page .yc-about-graybox-intro {
    width: 100%;
}
.yc-proj-page .yc-about-plan-grid {
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 18px;
}
.yc-proj-page .yc-about-plan-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #666666;
    font-size: 15px;
    line-height: 1.35;
    min-width: 0;
}
.yc-proj-page .yc-about-plan-item,
.yc-proj-page .yc-about-plan-item:hover,
.yc-proj-page .yc-about-plan-item:focus,
.yc-proj-page .yc-about-plan-item:active {
    text-decoration: none;
}
.yc-proj-page .yc-about-plan-icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e9b15a;
}
.yc-proj-page .yc-about-plan-icon::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(40deg);
}
.yc-proj-page .yc-about-plan-text {
    flex: 0 1 auto;
    min-width: 0;
    color: #666666;
}
.yc-proj-page .yc-about-plan-arrow {
    flex: 0 0 auto;
    color: #b8b8b8;
    margin-left: 4px;
    font-size: 16px;
    line-height: 1;
}
.yc-proj-page .yc-about-plan-item-empty {
    cursor: default;
    color: #b8b8b8;
}
.yc-proj-page .yc-about-plan-item-empty .yc-about-plan-text {
    color: #b8b8b8;
}

.yc-proj-page .yc-about-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 170px;
    height: 52px;
    padding: 0 12px 0 26px;
    border: 1px solid #0a3f86;
    border-radius: 999px;
    background: #0a3f86;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    margin-top: 22px;
}
.yc-proj-page .yc-about-consult-btn,
.yc-proj-page .yc-about-consult-btn:hover,
.yc-proj-page .yc-about-consult-btn:focus,
.yc-proj-page .yc-about-consult-btn:active {
    text-decoration: none;
}
.yc-proj-page .yc-about-consult-btn:hover {
    background: #ffffff;
    color: #dda054;
    border-color: #ffffff;
    transform: translateY(-1px);
}
.yc-proj-page .yc-about-consult-btn-text {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}
.yc-proj-page .yc-about-consult-btn-icon {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ffffff;
    flex: 0 0 28px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.yc-proj-page .yc-about-consult-btn-icon::before,
.yc-proj-page .yc-about-consult-btn-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #0a3f86;
    transform: translate(-50%, -50%);
}
.yc-proj-page .yc-about-consult-btn-icon::before {
    width: 10px;
    height: 1.5px;
    margin-left: -1px;
}
.yc-proj-page .yc-about-consult-btn-icon::after {
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #0a3f86;
    border-right: 1.5px solid #0a3f86;
    background: transparent;
    transform: translate(-12%, -50%) rotate(45deg);
}
.yc-proj-page .yc-about-consult-btn:hover .yc-about-consult-btn-icon {
    background: #dda054;
    border-color: #dda054;
}
.yc-proj-page .yc-about-consult-btn:hover .yc-about-consult-btn-icon::before {
    background: #ffffff;
}
.yc-proj-page .yc-about-consult-btn:hover .yc-about-consult-btn-icon::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
}

.yc-proj-page .yc-about-image-section {
    overflow: visible;
}
.yc-proj-page .yc-about-xiao-frame {
    position: absolute;
    right: 175px;
    bottom: -60px;
    width: 320px;
    height: 350px;
    background: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.yc-proj-page .yc-about-xiao-img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1240px) {
    :root {
        --yc-proj-left-w: 100%;
        --yc-proj-right-w: 100%;
    }
    .yc-proj-page-mobile .yc-proj-right {
        order: 1;
    }
    .yc-proj-page-mobile .yc-proj-left {
        order: 2;
    }
    .yc-proj-page-mobile .yc-proj-side {
        order: 3;
    }
    .yc-proj-container {
        flex-direction: column;
    }
    .yc-proj-left,
    .yc-proj-right,
    .yc-proj-side {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }
    .yc-proj-center {
        padding: 24px 24px 28px;
        height: auto !important;
    }
    .yc-proj-push {
        padding: 24px;
    }
    .yc-proj-hot {
        padding: 24px;
    }
    .yc-proj-case {
        padding: 24px;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-nav {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        padding: 0 4px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-nav::-webkit-scrollbar {
        display: none;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-tab {
        flex: 0 0 auto;
        height: 36px;
        padding: 0 16px;
        border: 1px solid #d8e2ef;
        border-radius: 999px;
        background: #ffffff;
        color: #4f5b67;
        font-size: 14px;
        line-height: 34px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-tab.active {
        border-color: #003371;
        background: #003371;
        color: #ffffff;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-panel {
        display: none !important;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-panel.is-active {
        display: block !important;
    }
    .yc-proj-page-mobile .yc-proj-side-gap {
        display: none;
    }
    .yc-proj-cta-section {
        height: auto;
        min-height: 280px;
    }
    .yc-proj-cta-container {
        padding: 40px 24px;
    }
    .yc-proj-cta-button {
        margin-top: 26px;
    }
    .yc-proj-page .yc-about-plan-grid {
        column-gap: 40px;
    }
    .yc-proj-page .yc-about-xiao-frame {
        right: 145px;
        bottom: -50px;
        width: 300px;
        height: 330px;
    }
}

@media (max-width: 768px) {
    .yc-proj-page.yc-proj-page-mobile .yc-about {
        padding-bottom: 20px;
    }
    .yc-proj-crumb {
        padding: 12px 0;
    }
    .hx-container.hx-breadcrumb {
        padding: 0 16px;
    }
    .el-breadcrumb,
    .el-breadcrumb__inner {
        font-size: 13px;
    }
    .el-breadcrumb__separator {
        margin: 0 8px;
        font-size: 11px;
    }
    .yc-proj-form .yc-proj-block-title {
        font-size: 20px;
    }
    .yc-proj-form-body {
        gap: 12px;
    }
    .yc-proj-form-body .yc-test-field {
        padding: 0 12px;
        min-height: 44px;
    }
    .yc-proj-form-body .yc-test-field-prefix {
        width: 108px;
        padding-right: 8px;
        font-size: 13px;
    }
    .yc-proj-form-body .yc-test-field-short .yc-test-field-prefix {
        width: 70px;
    }
    .yc-proj-form-body .yc-test-field-text,
    .yc-proj-form-body .yc-test-cs-trigger,
    .yc-proj-form-body .yc-test-field-text::placeholder,
    .yc-proj-form-body .yc-test-cs-text {
        font-size: 13px;
    }
    .yc-proj-block {
        padding: 18px 16px 20px;
    }
    .yc-proj-block-title {
        font-size: 18px;
    }
    .yc-proj-container {
        gap: 20px;
        padding: 0 16px;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-nav {
        gap: 8px;
        margin-bottom: 14px;
        padding: 0 2px;
    }
    .yc-proj-page-mobile .yc-proj-mobile-section-tab {
        height: 34px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 32px;
    }
    .yc-proj-cta-section {
        min-height: 280px;
    }
    .yc-proj-cta-container {
        padding: 34px 16px;
    }
    .yc-proj-cta-title {
        margin-bottom: 22px;
        font-size: 26px;
    }
    .yc-proj-cta-desc-wrap {
        padding: 0 28px;
    }
    .yc-proj-cta-desc-wrap::before,
    .yc-proj-cta-desc-wrap::after {
        width: 12px;
        height: calc(100% + 12px);
    }
    .yc-proj-cta-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    .yc-proj-cta-desc-line-sub {
        width: 78%;
    }
    .yc-proj-cta-button {
        min-width: 156px;
        height: 46px;
        padding: 0 10px 0 22px;
        gap: 12px;
    }
    .yc-proj-cta-button-text {
        font-size: 14px;
    }
    .yc-proj-cta-button-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
    .yc-proj-center {
        padding: 18px 16px 22px;
        height: auto !important;
    }
    .yc-proj-center-head {
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    .yc-proj-center-nav {
        gap: 10px;
    }
    .yc-proj-center-tab,
    .yc-proj-center-more-btn {
        height: 34px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 34px;
    }
    .yc-proj-center-more-dropdown {
        left: 0;
        right: auto;
        min-width: 150px;
    }
    .yc-proj-card {
        padding-bottom: 18px;
    }
    .yc-proj-card + .yc-proj-card {
        padding-top: 18px;
    }
    .yc-proj-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .yc-proj-card-desc {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 14px;
    }
    .yc-proj-card-meta {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 14px;
    }
    .yc-proj-card-meta-item {
        font-size: 13px;
        line-height: 1.6;
    }
    .yc-proj-center-empty {
        padding: 40px 16px;
        font-size: 14px;
    }
    .yc-proj-center-pager {
        margin-top: 18px;
    }
    .yc-proj-center-page-btn {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        font-size: 12px;
        line-height: 28px;
    }
    .yc-proj-push {
        padding: 18px 16px 22px;
    }
    .yc-proj-push-title {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .yc-proj-push-list {
        gap: 18px;
    }
    .yc-proj-push-text {
        font-size: 14px;
        line-height: 1.65;
    }
    .yc-proj-hot {
        padding: 18px 16px 22px;
    }
    .yc-proj-hot-title {
        margin-bottom: 18px;
        font-size: 18px;
    }
    .yc-proj-hot-grid {
        gap: 10px;
    }
    .yc-proj-hot-text {
        left: 8px;
        right: 8px;
        bottom: 10px;
        font-size: 14px;
    }
    .yc-proj-case {
        padding: 18px 16px 22px;
    }
    .yc-proj-case-title {
        margin-bottom: 18px;
        font-size: 18px;
    }
    .yc-proj-case-tag {
        width: 26px;
        height: 18px;
    }
    .yc-proj-case-q {
        font-size: 14px;
    }
    .yc-proj-case-a {
        font-size: 13px;
    }
    .yc-proj-policy-first-img {
        height: 160px;
    }
    /* 项目页手机端补充 */
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 10px;
        row-gap: 10px;
        overflow-x: visible;
        padding-bottom: 0;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-item {
        min-width: 0;
        min-height: 38px;
        padding: 0 10px;
        gap: 5px;
        justify-content: flex-start;
        border: 1px solid #f1dc9a;
        border-radius: 10px;
        background: #fffdf5;
        color: #0a3f86;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-icon {
        flex: 0 0 12px;
        width: 12px;
        height: 10px;
        border-radius: 0;
        background: transparent;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-icon::after {
        left: 1px;
        top: 0;
        width: 6px;
        height: 10px;
        border-right: 2px solid #0a3f86;
        border-bottom: 2px solid #0a3f86;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-text {
        color: #0a3f86;
        font-size: 12px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-arrow {
        display: none;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-item-empty {
        color: #0a3f86;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-plan-item-empty .yc-about-plan-text {
        color: #0a3f86;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-about-consult-btn {
        display: none;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-section {
        position: relative;
        padding: 30px 0;
        margin-top: 16px;
        overflow: hidden;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(7, 26, 53, 0.82) 0%, rgba(7, 26, 53, 0.72) 45%, rgba(7, 26, 53, 0.58) 100%);
        z-index: 0;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-container {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0 16px;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-text {
        display: block;
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-subtitle,
    .yc-proj-page.yc-proj-page-mobile .yc-cta-title,
    .yc-proj-page.yc-proj-page-mobile .yc-cta-desc {
        display: block;
        color: #ffffff;
        opacity: 1;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-subtitle {
        margin-bottom: 4px;
        font-size: 10px;
        line-height: 1.5;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-title {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.45;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-desc {
        font-size: 11px;
        line-height: 1.5;
        white-space: nowrap;
    }
    .yc-proj-page.yc-proj-page-mobile .yc-cta-button {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 88px;
        height: 34px;
        padding: 0 14px;
        font-size: 12px;
        line-height: 1;
        border-radius: 999px;
        white-space: nowrap;
        margin-top: 0;
        align-self: center;
        text-align: center;
    }
    .yc-proj-page .yc-about-xiao-frame {
        right: 60px;
        bottom: -40px;
        width: 280px;
        height: 300px;
    }
}
