/* ==========================================================================
   世纪英才 首页 - 自定义样式
   模板：template/index/default/index/index.html
   ========================================================================== */

/* ==================== 通用容器 ==================== */
.body-inner {
    position: relative;
    overflow: hidden;
    padding-top: var(--yc-header-height, 64px);
}

/* ==================== 板块1：页头 ==================== */
/* 头部使用公共 menu 引入，不在此定义 */

/* ==================== 板块2：轮播图 ==================== */
.yc-banner {
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}
.yc-banner-swiper {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
}
.yc-banner-swiper .swiper-wrapper { height: 100%; }
.yc-banner-swiper .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}
.yc-banner-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.yc-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.yc-banner-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 10;
    text-align: center;
    line-height: 0;
}
.yc-banner-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    background: #ffffff;
    opacity: 0.5;
    border-radius: 1px;
    margin: 0 4px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
}
.yc-banner-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffffff;
    width: 40px;
}

/* ==================== 板块3：项目介绍 ==================== */
.yc-pintro {
    width: 100%;
    padding: 70px 0 80px;
    background: #ffffff;
}
.yc-pintro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.yc-pintro-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}
.yc-pintro-titles { text-align: left; }
.yc-pintro-en {
    font-size: 18px;
    color: #0b305c;
    margin: 0 0 6px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.yc-pintro-cn {
    font-size: 30px;
    font-weight: 700;
    color: #001b2e;
    margin: 0;
    line-height: 1.2;
}
.yc-pintro-more {
    display: inline-block;
    padding: 8px 22px;
    font-size: 14px;
    color: #0b305c;
    background: #ffffff;
    border: 1px solid #0b305c;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.yc-pintro-more:hover { background: #0b305c; color: #ffffff; }
.yc-pintro-more-wrap {
    margin-top: 28px;
    text-align: center;
}
.yc-pintro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.yc-pintro-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.yc-pintro-card:hover {
    border-color: #0b305c;
    box-shadow: 0 16px 40px rgba(11, 48, 92, 0.18);
    transform: translateY(-12px);
}
.yc-pintro-card-imgwrap {
    position: relative;
    width: calc(100% - 24px);
    height: 180px;
    margin: 12px 12px 0 12px;
    overflow: hidden;
    border-radius: 4px;
    background: #eaeaea;
}
.yc-pintro-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.yc-pintro-card:hover .yc-pintro-card-img { transform: scale(1.05); }
.yc-pintro-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}
.yc-pintro-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.yc-pintro-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}
.yc-pintro-card-tag {
    position: absolute;
    top: 175px;
    right: 12px;
    z-index: 2;
    background: #0b305c;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    line-height: 1.6;
}
.yc-pintro-card-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 12px;
    min-height: 44px;
}
.yc-pintro-card-advantages {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.7;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.yc-pintro-card-advantage-label {
    color: #c96f2b;
    font-weight: 600;
}
.yc-pintro-card-advantage-text { color: #c96f2b; font-weight: 500; }
.yc-pintro-card-detail {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 6px 22px;
    font-size: 13px;
    color: #0b305c;
    background: #ffffff;
    border: 1px solid #0b305c;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.yc-pintro-card-detail:hover { background: #0b305c; color: #ffffff; }

/* ==================== 板块4：移居项目测试 ==================== */
.yc-test {
    width: 100%;
    margin-top: 40px;
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    z-index: 1;
}
.yc-test::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.huanxingshengshi.com/static/img/company_home_bg.81e1a3b.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
}
.yc-test-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.yc-test-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px;
    line-height: 1.2;
}
.yc-test-title-en {
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    margin-left: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    vertical-align: middle;
}
.yc-test-form { width: 100%; }
.yc-test-area {
    background: #ffffff;
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 14px;
}
.yc-test-area-label {
    font-size: 13px;
    color: #555555;
    margin-bottom: 10px;
}
.yc-test-area-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.yc-test-area-pill {
    flex-shrink: 0;
    padding: 8px 22px;
    font-size: 13px;
    color: #333333;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.yc-test-area-pill:hover {
    background: #ffffff;
    color: #0b305c;
    border-color: #0b305c;
}
.yc-test-area-pill.is-selected {
    background: #0b305c;
    color: #ffffff;
    border-color: #0b305c;
}
.yc-test-area-pill.is-selected:hover {
    background: #0b305c;
    color: #ffffff;
    border-color: #0b305c;
}
.yc-test-area-other {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}
.yc-test-area-other-label {
    font-size: 13px;
    color: #999999;
    flex-shrink: 0;
}
.yc-test-area-other-input {
    flex: 0 0 calc(33.333% - 12px);
    max-width: 280px;
    height: 34px;
    padding: 0 16px;
    font-size: 13px;
    color: #333333;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    outline: none;
    transition: all 0.3s ease;
}
.yc-test-area-other-input::placeholder { color: #bbbbbb; }
.yc-test-area-other-input:focus {
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}
.yc-test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.yc-test-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    height: 44px;
    padding: 0 14px;
}
.yc-test-field-prefix {
    font-size: 13px;
    color: #555555;
    white-space: nowrap;
    margin-right: 10px;
    flex-shrink: 0;
}
.yc-test-cs {
    flex: 1;
    min-width: 0;
    height: 100%;
    position: relative;
}
.yc-test-cs-trigger {
    width: 100%;
    height: 100%;
    padding: 0 22px 0 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #bbbbbb;
    text-align: left;
    font-family: inherit;
}
.yc-test-cs-trigger.is-selected { color: #333333; }
.yc-test-cs-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    transition: transform 0.25s ease;
    pointer-events: none;
}
.yc-test-cs.is-open .yc-test-cs-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.yc-test-cs-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 6px 0;
    z-index: 1000;
    display: none;
}
.yc-test-cs-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.04));
}
.yc-test-cs.is-open .yc-test-cs-dropdown { display: block; }
.yc-test-cs-options {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 240px;
    overflow-y: auto;
}
.yc-test-cs-option {
    padding: 10px 16px;
    font-size: 13px;
    color: #333333;
    cursor: pointer;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.yc-test-cs-option:hover { background: #f5f7fa; }
.yc-test-cs-option.is-selected { color: #0077b6; background: #eaf6fb; }
.yc-test-field-text {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0;
    font-size: 13px;
    color: #333333;
    background: transparent;
    border: none;
    outline: none;
}
.yc-test-field-text::placeholder { color: #bbbbbb; }
.yc-test-submit {
    display: inline-block;
    width: calc(33.333% - 9.3px);
    max-width: 280px;
    height: 44px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(11, 48, 92, 0.6);
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 4px;
}
.yc-test-submit:hover { background: #ffffff; color: #0077b6; }

/* ==================== 板块4.5：公司简介 ==================== */
.yc-about {
    width: 100%;
    padding: 50px 0 60px;
    background: #ffffff;
}
.yc-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.yc-about-content { width: 657px; flex-shrink: 0; }
.yc-about-en {
    color: #003371;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}
.yc-about-cn {
    color: #161616;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    margin: 14px 0 0;
    white-space: nowrap;
}
.yc-about-mobile-hero { display: none; }
.yc-about-intro {
    color: #484848;
    font-size: 14px;
    line-height: 26px;
    margin: 36px 0 0;
    text-align: justify;
}
.yc-about-graybox {
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 320px;
    padding-top: 22px;
    margin-top: 25px;
}
.yc-about-graybox-intro {
    color: #003371;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    width: 603px;
}
.yc-about-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
    margin-top: 25px;
    padding-left: 41px;
    width: 100%;
}
.yc-about-advantage { display: block; }
.yc-about-advantage-wide { width: 350px; }
.yc-about-advantage:not(.yc-about-advantage-wide) { width: 250px; }
.yc-about-advantage-header { display: flex; align-items: center; }
.yc-about-advantage-bullet {
    display: inline-block;
    background-color: #003371;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}
.yc-about-advantage-title {
    color: #161616;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    margin: 0 0 0 12px;
}
.yc-about-advantage-desc {
    color: #686868;
    font-size: 14px;
    line-height: 22px;
    margin-top: 6px;
    padding-left: 21px;
}
.yc-about-image-section {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.yc-about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 415px;
    height: 562px;
    border: 1px solid #e8bf8b;
}
.yc-about-image-wrapper {
    width: 395px;
    height: 542px;
    overflow: hidden;
}
.yc-about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.yc-about-image:hover { transform: scale(1.1); }
.yc-about-quote-box {
    position: absolute;
    bottom: 51px;
    right: 175px;
    width: 310px;
    height: 160px;
    background-color: #003371;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    padding: 18px 23px 18px 26px;
    text-align: justify;
    box-sizing: border-box;
}

/* ==================== 板块5：案例展示 ==================== */
.yc-case-section {
    width: 100%;
    padding: 50px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.yc-case-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.huanxingshengshi.com/static/img/company_home_bg.81e1a3b.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
}
.yc-case-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.yc-case-subtitle {
    color: #3a6fb0;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}
.yc-case-title {
    color: #ffffff;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    margin: 10px 0 0;
}
.yc-case-grid {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 22px;
}
.yc-case-card {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}
.yc-case-card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.3s ease;
}
.yc-case-card:hover .yc-case-card-image { transform: scale(1.1); }
.yc-case-card-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    height: 62px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.yc-case-card-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    margin: 0;
}
.yc-case-card-title {
    color: #161616;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    margin: 0;
}
.yc-case-card-desc {
    color: #999999;
    font-size: 12px;
    line-height: 14px;
    margin: 4px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.yc-case-card-arrow {
    color: #003371;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 6px;
    line-height: 1;
}
.yc-view-more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 34px;
    border: 1px solid #ffffff;
    border-radius: 18px;
    background: transparent;
    color: #ffffff;
    margin: 26px auto 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.yc-view-more-button:hover { background: #ffffff; }
.yc-view-more-button:hover .yc-view-more-text { color: #003371; }
.yc-view-more-text {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* ==================== 板块6：品牌形象展示 ==================== */
.yc-brand-section {
    width: 100%;
    padding: 100px 0 60px;
    background: #ffffff;
}
.yc-brand-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 66px;
}
.yc-brand-mobile-heading { display: none; }
.yc-brand-image-container {
    flex: 0 0 auto;
    padding: 14px;
    border: 1px solid #dda054;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yc-brand-image-wrapper {
    position: relative;
    width: 420px;
    height: 540px;
    overflow: hidden;
}
.yc-brand-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.yc-brand-consult-box {
    position: absolute;
    left: 40px;
    top: 294px;
    right: 166px;
    bottom: 30px;
    background: rgba(18, 50, 109, 0.38);
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    padding: 50px 0 0 31px;
    box-sizing: border-box;
}
.yc-brand-contact-box {
    position: absolute;
    left: 70px;
    right: 70px;
    top: 448px;
    bottom: 30px;
    display: flex;
    align-items: center;
    background: #ffffff;
}
.yc-brand-contact-icon-box {
    flex: 0 0 62px;
    width: 62px;
    height: 60px;
    background: #003371;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yc-brand-contact-icon {
    width: 26px;
    height: 26px;
    display: block;
    filter: brightness(0) invert(1);
}
.yc-brand-contact-phone {
    flex: 1;
    background: #ffffff;
    color: #003371;
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    padding: 0 0 0 30px;
    display: flex;
    align-items: center;
}
.yc-brand-content-section { flex: 1; min-width: 0; }
.yc-brand-content-subtitle {
    color: #003371;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
}
.yc-brand-content-title {
    color: #161616;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin: 10px 0 0;
}
.yc-brand-content-sub {
    color: #161616;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin: 6px 0 0;
}
.yc-brand-services-list { margin-top: 60px; }
.yc-brand-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.yc-brand-service-icon {
    width: 100px;
    height: 100px;
    max-width: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}
.yc-brand-service-content {
    flex: 1;
    min-width: 0;
    margin-left: 19px;
}
.yc-brand-service-title {
    color: #161616;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
}
.yc-brand-service-desc {
    color: #686868;
    font-size: 16px;
    line-height: 28px;
    margin: 8px 0 0;
}

/* ==================== 板块7：Q&A 香港身份问题答疑 ==================== */
.yc-qa-section {
    width: 100%;
    margin-top: 58.5px;
    padding: 32.25px 0 40px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
}
.yc-qa-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.yc-qa-en {
    color: #6b8fb5;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    text-align: center;
}
.yc-qa-title {
    color: #1a1a1a;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin: 15px 0 0;
    text-align: center;
}
.yc-qa-grid {
    width: 100%;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.yc-qa-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 180px;
    padding: 24px 36px 24px 28px;
    box-sizing: border-box;
    background: url('/static/common/image/qa_card_bg.png') no-repeat center / cover;
    border: 1px solid transparent;
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.yc-qa-item:visited,
.yc-qa-item:focus,
.yc-qa-item:active { text-decoration: none !important; }
.yc-qa-item:hover {
    background: url('/static/common/image/qa_card_bg_hover.png') no-repeat center / cover;
    border-color: #3b7aec;
    box-shadow: 0 4px 14px rgba(59, 122, 236, 0.18);
    text-decoration: none !important;
}
.yc-qa-item:hover .yc-qa-item-bg { background-color: rgba(59, 122, 236, 0.5); }
.yc-qa-item:hover .yc-qa-qtitle { color: #3b7aec; }
.yc-qa-item-bg {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 28px;
    height: 28px;
    background-color: rgba(59, 122, 236, 0.1);
    border-radius: 50%;
}
.yc-qa-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: block;
    width: 42px;
    height: 42px;
    background: url('/static/common/image/qa_icon.png') no-repeat center / cover;
}
.yc-qa-content {
    flex: 1;
    margin-left: 17px;
    padding-top: 5px;
    display: block;
    min-width: 0;
}
.yc-qa-qtitle {
    color: #161616;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.yc-qa-desc {
    color: #686868;
    font-size: 14px;
    line-height: 24px;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yc-qa-link {
    display: block;
    color: #003371;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 16px;
    transition: color 0.2s ease;
}
.yc-qa-item:hover .yc-qa-link { color: #1f5dbb; }

/* ==================== 板块8：新闻资讯 ==================== */
.yc-news-section { width: 100%; background: #ffffff; }
.yc-news-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.yc-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 85px;
}
.yc-news-title-group { width: auto; min-width: 195px; }
.yc-news-title-cn {
    font-size: 36px;
    font-weight: 700;
    color: #161616;
    line-height: 42px;
    margin: 0;
    display: block;
}
.yc-news-title-en {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #003371;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}
.yc-news-nav {
    width: 800px;
    height: 54px;
    background: #f8f9fa;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.yc-news-nav a {
    font-size: 16px;
    color: #161616;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}
.yc-news-nav a:hover, .yc-news-nav a.active { color: #003371; font-weight: 600; }
.yc-news-more-wrap { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.yc-news-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}
.yc-news-more-text { font-size: 16px; color: #161616; }
.yc-news-more-icon { font-size: 12px; color: #161616; transition: transform 0.2s; }
.yc-news-more-wrap:hover .yc-news-more-icon { transform: rotate(180deg); }
.yc-news-more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 120px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 100;
}
.yc-news-more-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0; right: 0;
    height: 10px;
    background: transparent;
}
.yc-news-more-dropdown a {
    font-size: 14px;
    color: #161616;
    text-decoration: none;
    transition: color 0.2s;
}
.yc-news-more-dropdown a:hover { color: #DDA054; }
.yc-news-more-wrap:hover .yc-news-more-dropdown { display: flex; }
.yc-news-content {
    display: flex;
    justify-content: space-between;
    margin-top: 27px;
}
.yc-news-featured {
    position: relative;
    display: block;
    width: 360px;
    height: 460px;
    overflow: hidden;
    text-decoration: none !important;
    flex-shrink: 0;
}
.yc-news-featured-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.yc-news-featured:hover .yc-news-featured-img { transform: scale(1.05); }
.yc-news-featured:hover .yc-news-featured-overlay { background: rgba(221, 160, 84, 0.88); }
.yc-news-featured-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 21px 12px;
    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;
    text-decoration: none !important;
    transition: background 0.3s ease;
}
.yc-news-featured-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none !important;
}
.yc-news-featured-excerpt {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 20px;
    margin-top: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none !important;
}
.yc-news-articles-list {
    width: 390px;
    height: 460px;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.yc-news-article-item {
    display: flex;
    height: 140px;
    background: #ffffff;
    text-decoration: none !important;
    color: inherit;
    transition: box-shadow 0.2s;
}
.yc-news-article-item:hover { box-shadow: 0 4px 12px rgba(221,160,84,0.20); }
.yc-news-article-item:hover .yc-news-article-thumb { background: #DDA054; }
.yc-news-article-item:hover .yc-news-article-title { color: #DDA054; }
.yc-news-article-item:hover .yc-news-article-excerpt { color: #DDA054 !important; }
.yc-news-article-item:hover .yc-news-article-date { color: #DDA054 !important; }
.yc-news-article-item:hover .yc-news-article-link { color: #DDA054; }
.yc-news-article-thumb {
    width: 3px;
    background: #003371;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.yc-news-article-content {
    flex: 1;
    margin-top: 22px;
    padding: 0 16px;
    overflow: hidden;
}
.yc-news-article-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-article-excerpt {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #787878;
    line-height: 20px;
    margin-top: 7px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}
.yc-news-article-date {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 12px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-article-link {
    font-size: 12px;
    font-weight: 400;
    color: #003371;
    line-height: 12px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-article-item:hover .yc-news-article-link { color: #DDA054; }
.yc-news-sidebar-box {
    width: 410px;
    height: 460px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.yc-news-sidebar-featured {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    height: 140px;
    text-decoration: none !important;
    color: inherit;
    transition: box-shadow 0.2s;
}
.yc-news-sidebar-featured:hover { box-shadow: 0 4px 12px rgba(0,51,113,0.10); }
.yc-news-sidebar-image {
    width: 160px;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}
.yc-news-sidebar-content {
    flex: 1;
    padding: 20px 20px 20px 0;
    overflow: hidden;
}
.yc-news-sidebar-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #161616;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-sidebar-excerpt {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #787878;
    line-height: 21px;
    margin-top: 2px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-sidebar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.yc-news-sidebar-date {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 18px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-sidebar-link {
    font-size: 12px;
    font-weight: 400;
    color: #003371;
    line-height: 18px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.yc-news-sidebar-featured:hover .yc-news-sidebar-title { color: #DDA054 !important; }
.yc-news-sidebar-featured:hover .yc-news-sidebar-excerpt { color: #DDA054 !important; }
.yc-news-sidebar-featured:hover .yc-news-sidebar-date { color: #DDA054 !important; }
.yc-news-sidebar-featured:hover .yc-news-sidebar-link { color: #DDA054 !important; }
.yc-news-sidebar-article-box { display: flex; flex-direction: column; }
.yc-news-sidebar-item {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 14px;
    padding: 0 28px 0 18px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none !important;
    transition: color 0.2s;
}
.yc-news-sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666666;
    flex-shrink: 0;
    transition: background 0.2s;
}
.yc-news-sidebar-item:hover { color: #DDA054; }
.yc-news-sidebar-item:hover::before { background: #DDA054; }

/* 空状态 */
.yc-news-empty-box {
    position: relative;
    width: 360px;
    height: 460px;
    flex-shrink: 0;
    background: #f5f7fa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.yc-news-empty-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: grayscale(0.4);
}
.yc-news-empty-text {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 8px;
    z-index: 1;
}
.yc-news-empty-sub {
    position: relative;
    font-size: 13px;
    color: #787878;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}
.yc-news-article-empty {
    background: #f8f9fa;
    cursor: default;
    pointer-events: none;
}
.yc-news-article-empty .yc-news-article-thumb { background: #d6dde6; }
.yc-news-article-empty .yc-news-article-title { color: #b5b5b5; }
.yc-news-article-empty .yc-news-article-excerpt { color: #c8c8c8; }
.yc-news-article-empty:hover { box-shadow: none; }
.yc-news-sidebar-empty { background: #f8f9fa; }
.yc-news-sidebar-image-empty {
    background-color: #e3e8ef;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}
.yc-news-sidebar-empty .yc-news-sidebar-title { color: #b5b5b5; }
.yc-news-sidebar-empty .yc-news-sidebar-excerpt { color: #c8c8c8; }
.yc-news-sidebar-item-empty {
    color: #c8c8c8;
    cursor: default;
    pointer-events: none;
}
.yc-news-sidebar-item-empty:hover { color: #c8c8c8; }
.yc-news-tab-hidden { display: none; }

/* ==================== 板块9：Want to get an Hong Kong identity? ==================== */
.yc-cta-section {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 44px 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.yc-cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.yc-cta-text { flex: 1; min-width: 0; }
.yc-cta-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.yc-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 32px;
    margin: 0 0 6px;
}
.yc-cta-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 20px;
    opacity: 0.92;
}
.yc-cta-button {
    display: inline-block;
    flex-shrink: 0;
    padding: 12px 38px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #DDA054;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}
.yc-cta-button:hover {
    background: #c8924a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(221, 160, 84, 0.35);
}

/* ==================== 响应式 ==================== */
@media (max-width: 1200px) {
    .yc-banner-swiper { height: 480px; }
}
@media (max-width: 1100px) {
    .yc-about-content { width: 540px; }
    .yc-about-cn { font-size: 30px; }
    .yc-about-image-section { flex: 0 0 380px; }
    .yc-about-image-container { width: 380px; height: 514px; }
    .yc-about-image-wrapper { width: 360px; height: 494px; }
    .yc-about-quote-box { right: 145px; bottom: 45px; width: 280px; height: 140px; }
    .yc-case-grid { gap: 24px 16px; }
}
@media (max-width: 991px) {
    .yc-banner-swiper { height: 380px; }
    .yc-pintro-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .yc-pintro { padding: 50px 0 60px; }
}
@media (max-width: 900px) {
    .yc-about-container { flex-direction: column; align-items: flex-start; }
    .yc-about-content { width: 100%; }
    .yc-about-image-section { width: 100%; flex: none; margin-top: 40px; }
    .yc-about-image-container { width: 100%; height: 480px; }
    .yc-about-image-wrapper { width: calc(100% - 20px); height: 460px; }
    .yc-about-quote-box { right: 30px; bottom: 30px; }
    .yc-case-grid { grid-template-columns: repeat(2, 1fr); }
    .yc-brand-container { flex-direction: column; gap: 30px; }
    .yc-brand-mobile-heading {
        display: block;
        width: 100%;
        text-align: left;
    }
    .yc-brand-content-section .yc-brand-content-subtitle,
    .yc-brand-content-section .yc-brand-content-title,
    .yc-brand-content-section .yc-brand-content-sub {
        display: none;
    }
    .yc-brand-image-container {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .yc-brand-image-wrapper { width: 100%; height: auto; aspect-ratio: 16 / 9; }
    .yc-qa-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .yc-banner-swiper {
        height: 248px;
    }
    .yc-brand-section {
        padding: 48px 0 22px;
    }
    .yc-qa-section {
        margin-top: 20px;
        padding: 24px 0 32px;
    }
    .yc-qa-en {
        font-size: 15px;
    }
    .yc-qa-title {
        font-size: 27px;
        margin-top: 12px;
    }
    .yc-qa-grid {
        margin-top: 24px;
    }
    .yc-qa-item {
        height: 156px;
        padding: 22px 30px 22px 24px;
    }
    .yc-qa-qtitle {
        font-size: 16px;
    }
    .yc-qa-desc {
        -webkit-line-clamp: 2;
    }
    .yc-qa-link {
        font-size: 15px;
        margin-top: 12px;
    }
    .yc-brand-content-subtitle,
    .yc-brand-content-title,
    .yc-brand-content-sub {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .yc-brand-mobile-heading .yc-brand-content-subtitle {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }
    .yc-brand-mobile-heading .yc-brand-content-title,
    .yc-brand-mobile-heading .yc-brand-content-sub {
        font-size: 20px;
        line-height: 1.4;
    }
    .yc-brand-mobile-heading .yc-brand-content-title {
        margin: 8px 0 0;
    }
    .yc-brand-mobile-heading .yc-brand-content-sub {
        margin: 6px 0 0;
    }
    .yc-brand-image-container {
        padding: 8px;
    }
    .yc-brand-image-wrapper {
        aspect-ratio: 16 / 9;
    }
    .yc-brand-consult-box {
        left: 14px;
        right: auto;
        top: auto;
        bottom: 64px;
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.5;
        border-width: 1px;
        background: rgba(18, 50, 109, 0.58);
        width: fit-content;
        max-width: calc(100% - 140px);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .yc-brand-contact-box {
        left: 14px;
        right: auto;
        top: auto;
        bottom: 14px;
        min-height: 40px;
        width: auto;
        max-width: calc(100% - 28px);
    }
    .yc-brand-contact-icon-box {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }
    .yc-brand-contact-icon {
        width: 18px;
        height: 18px;
    }
    .yc-brand-contact-phone {
        font-size: 18px;
        line-height: 1.3;
        padding: 0 12px;
        white-space: nowrap;
    }
    .yc-brand-services-list {
        margin-top: 28px;
    }
    .yc-brand-service-item {
        margin-bottom: 20px;
    }
    .yc-brand-service-icon {
        width: 72px;
        height: 72px;
    }
    .yc-brand-service-content {
        margin-left: 14px;
    }
    .yc-brand-service-title {
        font-size: 16px;
        line-height: 1.5;
    }
    .yc-brand-service-desc {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 6px;
    }
    .yc-about-en {
        font-size: 11px;
        line-height: 1.4;
    }
    .yc-about-cn {
        font-size: 26px;
        line-height: 1.3;
        white-space: normal;
    }
    .yc-about-mobile-hero {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-top: 18px;
        align-items: stretch;
        overflow: hidden;
    }
    .yc-about-mobile-blue {
        background: #003371;
        color: #ffffff;
        padding: 16px 14px;
        font-size: 13px;
        line-height: 1.8;
        text-align: justify;
        height: 160px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    .yc-about-mobile-image {
        height: 160px;
        overflow: hidden;
    }
    .yc-about-mobile-image-img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .yc-about-intro {
        margin-top: 18px;
    }
    .yc-about-graybox {
        height: auto;
        padding: 16px 14px 18px;
        margin-top: 18px;
        align-items: stretch;
    }
    .yc-about-graybox-intro {
        width: 100%;
        max-width: none;
        font-size: 13px;
        line-height: 1.8;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .yc-about-advantages {
        grid-template-columns: 1fr;
        row-gap: 14px;
        margin-top: 16px;
        padding-left: 0;
    }
    .yc-about-advantage,
    .yc-about-advantage-wide,
    .yc-about-advantage:not(.yc-about-advantage-wide) {
        width: 100%;
    }
    .yc-about-advantage-header {
        align-items: flex-start;
    }
    .yc-about-advantage-bullet {
        width: 6px;
        height: 6px;
        margin-top: 8px;
    }
    .yc-about-advantage-title {
        font-size: 15px;
        line-height: 1.6;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .yc-about-advantage-desc {
        font-size: 13px;
        line-height: 1.7;
        padding-left: 20px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .yc-about-image-section {
        display: none;
    }
    .yc-banner-pagination { bottom: 14px; }
    .yc-banner-pagination .swiper-pagination-bullet { width: 18px; height: 2px; margin: 0 3px; }
    .yc-banner-pagination .swiper-pagination-bullet-active { width: 26px; }
    .yc-pintro-container,
    .yc-test-container,
    .yc-about-container,
    .yc-case-inner,
    .yc-brand-container,
    .yc-qa-container,
    .yc-cta-container { padding-left: 16px; padding-right: 16px; }
    .yc-pintro { padding: 32px 0 38px; }
    .yc-pintro-header { margin-bottom: 20px; gap: 10px; }
    .yc-pintro-en { font-size: 12px; letter-spacing: 1.5px; margin-bottom: 4px; }
    .yc-pintro-cn { font-size: 22px; }
    .yc-pintro-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 18px;
    }
    .yc-pintro-more-wrap {
        margin-top: 20px;
    }
    .yc-pintro-grid { grid-template-columns: 1fr; gap: 14px; }
    .yc-pintro-titles {
        width: 100%;
        text-align: center;
    }
    .yc-pintro-card {
        border-radius: 16px;
        box-shadow: 0 10px 26px rgba(11, 48, 92, 0.08);
    }
    .yc-pintro-card:hover {
        transform: none;
        box-shadow: 0 10px 26px rgba(11, 48, 92, 0.08);
    }
    .yc-pintro-card-body { padding: 16px 16px 18px; }
    .yc-pintro-card-top {
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .yc-pintro-card-title { font-size: 17px; }
    .yc-pintro-card-tag { padding: 3px 10px; }
    .yc-pintro-card-desc {
        min-height: 0;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .yc-pintro-card-advantages { margin-bottom: 14px; }
    .yc-pintro-card-detail {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }
    .yc-pintro-more {
        width: 150px;
        min-width: 150px;
    }
    .yc-test-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 16px; }
    .yc-test-title { font-size: 22px; margin-bottom: 22px; }
    .yc-test-title-en { display: block; margin-left: 0; margin-top: 6px; font-size: 12px; }
    .yc-test { margin-top: 0; padding: 36px 0 42px; }
    .yc-test-area {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 14px;
    }
    .yc-test-area-label {
        margin-bottom: 0;
        flex: 0 0 8.2em;
        white-space: nowrap;
    }
    .yc-test-area-controls {
        flex: 1;
        min-width: 0;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 8px;
    }
    .yc-test-area-pill {
        width: auto;
        min-height: 36px;
        padding: 8px 14px;
        border-radius: 999px;
    }
    .yc-test-area-other {
        width: auto;
        min-width: 0;
        gap: 8px;
        flex-direction: row;
        align-items: center;
    }
    .yc-test-area-other-input {
        flex: 1;
        width: auto;
        max-width: none;
        min-width: 0;
        height: 36px;
        border-radius: 10px;
    }
    .yc-test-field {
        height: 48px;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 14px;
        flex-direction: row;
        align-items: center;
    }
    .yc-test-field-prefix {
        margin: 0 10px 0 0;
        flex: 0 0 7em;
    }
    .yc-test-cs-trigger,
    .yc-test-field-text {
        min-height: 100%;
        line-height: 1.5;
    }
    .yc-test-submit {
        display: block;
        width: 150px;
        max-width: 150px;
        min-height: 46px;
        margin-right: auto;
        border-radius: 999px;
        letter-spacing: 2px;
    }
    .yc-cta-section { padding: 30px 0; margin-top: 40px; }
    .yc-cta-container {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .yc-cta-text {
        flex: 1;
        min-width: 0;
    }
    .yc-cta-title { font-size: 18px; line-height: 1.4; }
    .yc-cta-subtitle { font-size: 10px; margin-bottom: 4px; }
    .yc-cta-desc { font-size: 12px; line-height: 1.6; }
    .yc-cta-button {
        flex: 0 0 auto;
        min-width: 104px;
        padding: 9px 20px;
        font-size: 13px;
        border-radius: 999px;
        white-space: nowrap;
    }
    .yc-cta-container {
        gap: 10px;
    }
    .yc-cta-title { font-size: 17px; }
    .yc-cta-subtitle { font-size: 9px; }
    .yc-cta-desc { font-size: 11px; }
    .yc-cta-button {
        min-width: 96px;
        padding: 8px 18px;
        font-size: 12px;
        border-radius: 999px;
    }
}
@media (max-width: 600px) {
    .yc-qa-grid { grid-template-columns: 1fr; }
    .yc-qa-title { font-size: 27px; }
}
@media (max-width: 576px) {
    .yc-banner-swiper { height: 220px; }
    .yc-banner-pagination { bottom: 12px; }
    .yc-brand-section {
        padding: 40px 0 18px;
    }
    .yc-qa-section {
        margin-top: 14px;
        padding: 20px 0 28px;
    }
    .yc-qa-en { font-size: 15px; }
    .yc-qa-title {
        font-size: 26px;
        margin-top: 10px;
    }
    .yc-qa-grid { margin-top: 20px; }
    .yc-qa-item {
        height: 148px;
        padding: 20px 24px 20px 20px;
    }
    .yc-qa-qtitle {
        font-size: 16px;
    }
    .yc-qa-desc { -webkit-line-clamp: 2; }
    .yc-qa-link {
        font-size: 15px;
        margin-top: 10px;
    }
    .yc-about-en { font-size: 10px; }
    .yc-about-cn {
        font-size: 26px;
        line-height: 1.35;
        margin-top: 10px;
    }
    .yc-brand-mobile-heading .yc-brand-content-subtitle {
        font-size: 11px;
        line-height: 1.4;
    }
    .yc-brand-mobile-heading .yc-brand-content-title,
    .yc-brand-mobile-heading .yc-brand-content-sub {
        font-size: 18px;
        line-height: 1.4;
    }
    .yc-brand-image-container {
        padding: 6px;
    }
    .yc-brand-image-wrapper {
        aspect-ratio: 17 / 10;
    }
    .yc-brand-consult-box {
        left: 10px;
        right: auto;
        bottom: 54px;
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.45;
        width: fit-content;
        max-width: calc(100% - 110px);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .yc-brand-contact-box {
        left: 10px;
        right: auto;
        bottom: 10px;
        min-height: 34px;
        width: auto;
        max-width: calc(100% - 20px);
    }
    .yc-brand-contact-icon-box {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
    .yc-brand-contact-icon {
        width: 16px;
        height: 16px;
    }
    .yc-brand-contact-phone {
        font-size: 15px;
        padding: 0 10px;
        white-space: nowrap;
    }
    .yc-brand-services-list {
        margin-top: 24px;
    }
    .yc-brand-service-item {
        margin-bottom: 16px;
    }
    .yc-brand-service-icon {
        width: 60px;
        height: 60px;
    }
    .yc-brand-service-content {
        margin-left: 12px;
    }
    .yc-brand-service-title {
        font-size: 14px;
    }
    .yc-brand-service-desc {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 4px;
    }
    .yc-about-mobile-hero {
        gap: 0;
        margin-top: 16px;
    }
    .yc-about-mobile-blue {
        height: 136px;
        padding: 14px 12px;
        font-size: 12px;
        line-height: 1.7;
    }
    .yc-about-mobile-image {
        height: 136px;
    }
    .yc-about-graybox {
        padding: 14px 12px 16px;
    }
    .yc-about-graybox-intro {
        font-size: 12px;
        line-height: 1.7;
    }
    .yc-about-advantages {
        row-gap: 12px;
        margin-top: 14px;
    }
    .yc-about-advantage-bullet {
        width: 5px;
        height: 5px;
        margin-top: 7px;
    }
    .yc-about-advantage-title {
        font-size: 14px;
    }
    .yc-about-advantage-desc {
        font-size: 12px;
    }
    .yc-pintro-grid { grid-template-columns: 1fr; gap: 14px; }
    .yc-pintro { padding: 30px 0 36px; }
    .yc-pintro-header { margin-bottom: 18px; }
    .yc-pintro-cn { font-size: 20px; }
    .yc-pintro-more {
        width: 150px;
        min-width: 150px;
    }
    .yc-pintro-card-top {
        flex-wrap: wrap;
        gap: 8px;
    }
    .yc-test-title { font-size: 20px; }
    .yc-test-submit { min-height: 44px; }
}
@media (max-width: 480px) {
    .yc-test-grid { grid-template-columns: 1fr; }
    .yc-test-area {
        gap: 8px;
    }
    .yc-test-area-label,
    .yc-test-field-prefix {
        flex-basis: 6.4em;
        font-size: 12px;
    }
    .yc-test-area-label {
        flex-basis: 8em;
        white-space: nowrap;
    }
    .yc-test-area-controls {
        grid-template-columns: auto 1fr;
        gap: 6px;
    }
    .yc-test-area-pill {
        padding: 8px 12px;
        font-size: 12px;
    }
    .yc-test-area-other {
        gap: 6px;
    }
    .yc-test-area-other-label,
    .yc-test-area-other-input,
    .yc-test-cs-trigger,
    .yc-test-field-text {
        font-size: 12px;
    }
    .yc-case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
    .yc-news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .yc-news-nav { width: 100%; }
    .yc-news-content { flex-direction: column; gap: 24px; }
    .yc-news-featured { width: 100%; height: 360px; }
    .yc-news-articles-list, .yc-news-sidebar-box { width: 100%; height: auto; }
    .yc-news-articles-list { margin: 0; }
    .yc-news-empty-box { width: 100%; height: 360px; }
}
