/* records.css */
jp-container {
    overflow: hidden;
}
body{
    background-color:  #F3F3F4;
}
.main-container {
    background-color: #fff;
    max-width: 1300px;
    margin: 45px auto;
    padding: 0 40px ;
}
.records-hero {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 100px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.records-container {
    max-width: 1300px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.records-hero--has-subbanner .records-container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 370px;
}

.records-hero--has-subbanner .records-hero__content {
    flex: 0 1 auto;
}

.records-hero__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.records-hero__media {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

/* 边缘渐变底图：虚化 + 径向遮罩；主图叠于上层保持清晰 */
.records-hero__media--edge-bg {
    padding: 0 60px;
    isolation: isolate;
    overflow: hidden;
}

.records-hero__media--edge-bg::before {
    content: "";
    position: absolute;
    left: -18%;
    right: -18%;
    top: -18%;
    bottom: -18%;
    z-index: 0;
    background-image: url("https://aivon.obs.la-north-2.myhuaweicloud.com/aivon/product/20260518/Rectangle-34625896-compress.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 96%;
    filter: blur(22px);
    opacity: 0.9;
    -webkit-mask-image: radial-gradient(
        ellipse 78% 74% at 50% 50%,
        #000 32%,
        rgba(0, 0, 0, 0.55) 62%,
        transparent 88%
    );
    mask-image: radial-gradient(
        ellipse 78% 74% at 50% 50%,
        #000 32%,
        rgba(0, 0, 0, 0.55) 62%,
        transparent 88%
    );
    pointer-events: none;
}

/* 边缘压暗遮罩，与 hero 深蓝氛围衔接 */
.records-hero__media--edge-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    /* background: radial-gradient(
        ellipse 88% 82% at 50% 46%,
        rgba(14, 34, 57, 0) 38%,
        rgba(14, 34, 57, 0.32) 68%,
        rgba(0, 0, 0, 0.42) 100%
    ); */
    pointer-events: none;
}

.records-hero__media .records-hero__subbanner-img {
    position: relative;
    z-index: 1;
}

.records-hero__subbanner-img {
    display: block;
    max-width: 580px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.records-hero__title {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-13, 32px);
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    max-width: none;
    text-align: left;
    white-space: nowrap;
}

.records-hero__title-line {
    display: block;
    white-space: nowrap;
}

.records-hero__subtitle {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 32px 0;
}

.records-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;

}

.records-hero__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0E2239;
    backdrop-filter: blur(4px);
    background-color: #E2E4E7;
    border:1px solid #185193;
    cursor: pointer;
}
.records-hero__tag:hover{
    background-color: #185193;
    color: #fff;
    border:1px solid #E2E4E7;
}
.records-hero__action {
    display: flex;
    justify-content: center;
}

/* Custom button wrapper if jp-button1 doesn't have exactly what we want */
.records-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    font-weight: 500;
    color: #ffffff;
    background-color: var(--primary-color, #0060FF);
    padding: 12px 24px;
    border-radius: var(--aiv-radio-s, 4px);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.records-btn:hover {
    background-color: var(--primary-color__hover, #3E86FD);
}

/* Sections */
.records-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
    margin-bottom: 80px;
}

.records-section:last-child {
    margin-bottom: 20px !important;
}

.records-section__title {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-12, 28px);
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin: 0 0 40px 0;
}

/* PCB Specifications Table */
.records-spec__table-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--aiv-size-4, 8px);
    overflow: hidden;
}

.records-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
}

/* 表头：浅蓝底，与参数/值两两成组布局一致 */
.records-table thead th {
    padding: 12px 16px;
    min-height: 48px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background-color: #eef2ff;
    color: #374151;
    font-weight: 500;
    box-sizing: border-box;
}

/* 数据行：奇数列参数名灰底，偶数列值白底 */
.records-table tbody td {
    padding: 12px 16px;
    min-height: 48px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    color: #333333;
    box-sizing: border-box;
}

.records-table tbody td:nth-child(odd) {
    background-color: #f9fafb;
}

.records-table tbody td:nth-child(even) {
    background-color: #ffffff;
}

.records-table tr:last-child td {
    border-bottom: none;
}

.records-table thead th:last-child,
.records-table tbody td:last-child {
    border-right: none;
}

/* Manufacturing Timeline */
.records-timeline__container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.records-timeline__img-wrapper {
    flex: 1;
    min-width: 0;
    border-radius: var(--aiv-size-4, 8px);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: #f5f5f5;
}

.records-timeline__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 视频：屏上见右侧 1px 黑线、截图常消失 ≈ GPU 层接缝 + translate 新层放大问题；勿用 center+transform，用 clip 去掉右侧 1 像素 */
.records-timeline__img-wrapper > video.records-timeline__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
    -webkit-clip-path: inset(0 1px 0 0);
    clip-path: inset(0 1px 0 0);
    background-color: #ebedf0;
    /* 子像素/缝仍偶发时可改为 inset(0 2px 0 0) */
}

.records-timeline__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.records-timeline__progress-block {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: var(--aiv-size-4, 8px);
    padding: 30px;
    flex: 1;
}

.records-timeline__list {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.records-timeline__item {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 30px;
}

.records-timeline__item--last {
    padding-bottom: 0;
}

.records-timeline__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 2;
    margin-right: 8px;
    flex-shrink: 0;
}

.records-timeline__line {
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background-color: #ebebeb;
    z-index: 1;
}

.records-timeline__item--completed .records-timeline__line {
    background-color: var(--primary-color, #0060FF);
}

.records-timeline__text {
    flex: 1;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    color: #333333;
    line-height: 24px;
}

.records-timeline__date {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-6, 12px);
    color: #999999;
    line-height: 24px;
    margin-left: 16px;
}

.records-progress {
    margin-top: 10px;
}

.records-progress__label {
    display: flex;
    justify-content: space-between;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-6, 12px);
    color: #666666;
    margin-bottom: 8px;
}

.records-progress__value {
    color: var(--primary-color, #0060FF);
    font-weight: 500;
}

.records-progress__bar {
    height: 8px;
    background-color: #ebebeb;
    border-radius: 4px;
    overflow: hidden;
}

.records-progress__fill {
    height: 100%;
    background-color: var(--primary-color, #0060FF);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.records-timeinfo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.records-timeinfo__item {
    background: #f7f9fc;
    border-radius: var(--aiv-size-4, 8px);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.records-timeinfo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.records-timeinfo__text {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.records-timeinfo__text strong {

font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 26px;
/* or 186% */

color: #26272A;


}

.records-timeinfo__desc {

font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 13px;
line-height: 26px;
/* or 200% */

color: #26272A;


}

.records-section--mt {
    margin-top: 80px;
}

.records-section__title--center {
    text-align: center;
}

/* Logistics Information */
.records-logistics {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 20px 0;
}

.records-logistics__subtitle {
    margin-bottom: 60px;
}

.records-logistics__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: #F9F9F9;
    border-radius: var(--aiv-size-4, 8px);
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    color: #535D6D;
    font-weight: 500;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 26px;
/* or 186% */

color: #26272A;


}

.records-logistics__cards {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 80px;
    padding:0 60px ;
    box-sizing: border-box;
}

.records-logistics__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 16px;
}

.records-logistics__icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9E7FF;
    border-radius: 50%;
}

.records-logistics__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.records-logistics__label {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-8, 16px);
    font-weight: 700;
    color: #26272A;
    margin-bottom: 2px;
}

.records-logistics__value {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    color: #535D6D;
}

/* Key Manufacturing Processes */
.records-process__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 40px;
}

.records-process__nav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F3F3F4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.records-process__nav:hover {
    background: #e5e7eb;
}

.records-process__steps {
    display: flex;
    align-items: center;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.records-process__steps::-webkit-scrollbar {
    display: none;
}

.records-process__step {
    display: flex;
    align-items: center;
    position: relative;
    opacity: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1;
}

.records-process__line {
    height: 2px;
    background-color: #E8E8E8;
    flex: 1;
    margin: 0;
    min-width: 40px;
    position: relative;
    z-index: 0;
}

.records-process__circle {
    position: absolute;
    left: -13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #9EC4FF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-6, 12px);
    font-weight: 600;
    flex-shrink: 0;
    border: 0px solid #ffffff;
    box-sizing: content-box;
    z-index: 2;
}

.records-process__box {
    background: #F7F7F7;
    padding: 10px 20px 10px 26px;
    min-height: 80px;
    min-width: 240px;
    border-radius: 10px;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    color: #26272A;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
}

.records-process__box::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #F7F7F7;
    z-index: 1;
}

.records-process__step:last-child .records-process__box::after {
    display: none;
}

/* Manufacturing Summary */
.records-summary__card {
    background: #ffffff;
    border: 1px solid #E4E4E4;
    border-radius: var(--aiv-size-4, 8px);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.records-summary__icon {
    width: 86px;
    height: 86px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.records-summary__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.records-summary__title {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-9, 18px);
    font-weight: 700;
    color: #26272A;
    margin: 0;
}

.records-summary__desc {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    color: #535D6D;
    line-height: 1.6;
    margin: 0;
    display: block;
    overflow: visible;
}

.records-summary__desc img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px 0;
    border-radius: var(--aiv-size-4, 8px);
}

/* Explore More PCB Manufacturing Resources */
.records-resources__cards {
    display: flex;
    gap: 40px;
    width: 100%;
}

.records-resources__card {
    flex: 1;
    background: #ffffff;
    /* border: 1px solid #ebebeb; */
    /* border-radius: var(--aiv-size-4, 8px); */
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.records-resources__card-body {
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.records-resources__card:hover .records-resources__card-body {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.records-resources__card:hover .records-resources__card-img {
    transform: scale(1.05);
}

.records-resources__card:hover .records-resources__card-icon {
    transform: translateX(12px);
}

.records-resources__card:hover .records-resources__card-action {
    color:  #0060FF;
}

.records-resources__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 8px;
}

.records-resources__card-bar {
    width: 4px;
    height: 16px;
    background-color: var(--primary-color, #0060FF);
    border-radius: 2px;
}

.records-resources__card-title {
    flex: 1;
    min-width: 0;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-8, 16px);
    font-weight: 700;
    color: #26272A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.records-resources__card-img-wrapper {
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.records-resources__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.records-resources__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
}

.records-resources__card-action {
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-8, 16px);
    font-weight: 700;
    color: #26272A;
    transition: color 0.3s ease;
font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 700;
font-size: 22px;
line-height: 26px;

color: #242631;


}

.records-resources__card-icon {
    color: #26272A;
    transition: transform 0.3s ease;
}

/* Real Production Records */
.records-real__table-wrapper {
    width: 100%;
}

.records-real__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
    font-family: "HarmonyOS Sans", sans-serif;
    font-size: var(--aiv-size-7, 14px);
    border: 1px solid #ebebeb;
}

.records-real__table th,
.records-real__table td {
    border: 1px solid #ebebeb;
}

.records-real__table th {
    background-color: #F7F7F7;
    color: #333333;
    font-weight: 500;
    padding: 16px 24px;
    white-space: nowrap;
}

.records-real__table td {
    padding: 16px 24px;
    color: #26272A;
}

.records-real__link {
    color: var(--primary-color, #0060FF);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.records-real__link:hover {
    color: var(--primary-color__active, #0060FF);
}

/* === Timeline Scroll Animation === */
/* Items are always visible — no fade-in, only icon color changes */

/* Override SVG colors to gray for animation initial state */
.records-timeline__item--anim-off .records-timeline__icon svg circle {
    stroke: #D9D9D9;
}
.records-timeline__item--anim-off .records-timeline__icon svg path {
    fill: #CCCCCC;
}

/* Override ALL line colors to gray during animation */
.records-timeline__item--anim-off .records-timeline__line {
    background-color: #ebebeb !important;
}

/* Anim-on: force all SVG icons and lines to blue when scroll reaches this step */
.records-timeline__item--anim-on .records-timeline__icon svg circle {
    stroke: #0060FF;
}
.records-timeline__item--anim-on .records-timeline__icon svg path {
    fill: #0060FF;
}
.records-timeline__item--anim-on .records-timeline__line {
    background-color: #0060FF !important;
}

/* SVG color transitions — slow and smooth */
.records-timeline__icon svg circle {
    transition: stroke 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}
.records-timeline__icon svg path {
    transition: fill 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}

/* Line color transition */
.records-timeline__line {
    transition: background-color 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.15s;
}

/* Progress bar animation enhancement — slow and smooth */
.records-progress__fill {
    transition: width 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Counter text */
.records-progress__count {
    display: inline-block;
}

.records-hero__tag{
    
}