/* News detail page */
.newsdetaiPage {
    background: #fff;
    color: #22262d;
}

.newsdetaiPage .newsDetailBanner {
    min-height: clamp(260px, 22vw, 420px);
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: clamp(52px, 5vw, 82px);
}

.newsdetaiPage .newsDetailBanner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .56);
}

.newsdetaiPage .newsDetailBanner .Wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsdetaiPage .newsDetailBanner h1 {
    color: #fff;
    font-size: clamp(48px, 4.2vw, 76px);
    line-height: 1.1;
    font-weight: 800;
}

.newsdetaiPage .newsDetailCrumbs {
    background: #fff;
}

.newsdetaiPage .newsDetailCrumbs .Wrapper {
    min-height: 72px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #b5b7bd;
    font-size: 16px;
    line-height: 1.5;
}

.newsdetaiPage .newsDetailCrumbs a {
    color: #b5b7bd;
    transition: color .3s;
}

.newsdetaiPage .newsDetailCrumbs a:hover {
    color: #0076c8;
}

.newsdetaiPage .newsDetailCrumbs strong {
    color: #171a20;
    font-weight: 600;
}

.newsdetaiPage .newsDetailSection {
    padding: clamp(48px, 5vw, 82px) 0 clamp(58px, 6vw, 105px);
}

.newsdetaiPage .newsDetailLayout {
    /*display: grid;*/
    /*grid-template-columns: minmax(0, 1fr) 340px;*/
    /*gap: clamp(48px, 6vw, 92px);*/
    align-items: start;
}

.newsdetaiPage .newsArticle,
.newsdetaiPage .newsDetailAside {
    min-width: 0;
}

.newsdetaiPage .newsArticleHead {
    text-align: center;
    padding-bottom: 26px;
    margin-bottom: clamp(48px, 5vw, 72px);
    border-bottom: 1px solid #d9d9d9;
}

.newsdetaiPage .newsArticleHead h1 {
    max-width: 960px;
    margin: 0 auto 22px;
    color: #23272f;
    font-size: clamp(30px, 2.5vw, 42px);
    line-height: 1.22;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.newsdetaiPage .newsArticleHead time {
    display: block;
    color: #666b73;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.newsdetaiPage .newsArticleContent {
    color: #4f535b;
    font-size: 20px;
    line-height: 1.65;
}

.newsdetaiPage .newsArticleContent > *:first-child {
    margin-top: 0;
}

.newsdetaiPage .newsArticleContent > *:last-child {
    margin-bottom: 0;
}

.newsdetaiPage .newsArticleContent p,
.newsdetaiPage .newsArticleContent li {
    font-size: 20px;
    line-height: 1.65;
}

.newsdetaiPage .newsArticleContent p {
    margin: 0 0 30px;
}

.newsdetaiPage .newsArticleContent h2,
.newsdetaiPage .newsArticleContent h3,
.newsdetaiPage .newsArticleContent h4 {
    color: #23272f;
    line-height: 1.35;
    font-weight: 700;
    margin: 42px 0 18px;
}

.newsdetaiPage .newsArticleContent h2 {
    font-size: clamp(25px, 2vw, 34px);
    color: #0076c8;
    position: relative;
    padding-bottom: 14px;
}

.newsdetaiPage .newsArticleContent h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 62px;
    height: 3px;
    background: linear-gradient(90deg, #0076c8 0%, #50a8e8 100%);
}

.newsdetaiPage .newsArticleContent h3 {
    font-size: clamp(22px, 1.6vw, 28px);
}

.newsdetaiPage .newsArticleContent h4 {
    font-size: 20px;
}

.newsdetaiPage .newsArticleContent a {
    color: #0076c8;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.newsdetaiPage .newsArticleContent ul,
.newsdetaiPage .newsArticleContent ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.newsdetaiPage .newsArticleContent ul {
    list-style: none;
    padding-left: 0;
}

.newsdetaiPage .newsArticleContent ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.newsdetaiPage .newsArticleContent ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0076c8;
    box-shadow: 0 0 0 5px rgba(0, 118, 200, .12);
    position: absolute;
    left: 2px;
    top: .78em;
    transform: translateY(-50%);
}

.newsdetaiPage .newsArticleContent img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 34px auto;
}

.newsdetaiPage .newsArticleContent figure {
    margin: 34px 0;
}

.newsdetaiPage .newsArticleContent figcaption {
    color: #6a7280;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-top: 10px;
}

.newsdetaiPage .newsArticleContent blockquote {
    margin: 34px 0;
    padding: 24px 30px;
    border-left: 4px solid #0076c8;
    background: #f5f8fb;
    color: #23272f;
    font-size: 18px;
    line-height: 1.85;
}

.newsdetaiPage .newsArticleContent table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 16px;
}

.newsdetaiPage .newsArticleContent th,
.newsdetaiPage .newsArticleContent td {
    border: 1px solid #e5e8ed;
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
}

.newsdetaiPage .newsArticleContent th {
    color: #23272f;
    background: #f5f8fb;
    font-weight: 700;
}

.newsdetaiPage .news-doc-intro {
    font-size: 20px;
    line-height: 1.75;
}

.newsdetaiPage .news-doc-main-image img {
    max-width: 720px;
}

.doc-four-media-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
    margin: 34px 0 42px;
    align-items: start;
}

.doc-four-media-text__item {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.doc-four-media-text__item figure {
    margin: 0;
    width: 100%;
    aspect-ratio: 1.36 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.doc-four-media-text__item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
}

.doc-four-media-text__body {
    margin-top: 12px;
    padding: 14px 16px 16px;
    border: 1px solid #d6d6d6;
    background: #fff;
}

.doc-four-media-text__body h3 {
    color: #111;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 10px;
}

.doc-four-media-text__body p {
    color: #202630;
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.newsdetaiPage .news-doc-image-row,
.newsdetaiPage .news-doc-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 34px 0 42px;
}

.newsdetaiPage .news-doc-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsdetaiPage .news-doc-image-row figure,
.newsdetaiPage .news-doc-gallery figure {
    margin: 0;
}

.newsdetaiPage .news-doc-image-row img,
.newsdetaiPage .news-doc-gallery img {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
}

.newsdetaiPage .news-doc-gallery figure {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.newsdetaiPage .news-doc-materials,
.newsdetaiPage .news-doc-applications {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    padding-left: 20px;
}

.doc-industry-section {
    margin: 38px 0 52px;
}

.doc-industry-section__text h2 {
    margin-top: 0;
}

.doc-industry-section__text p strong {
    color: #202630;
    font-weight: 800;
}

.doc-industry-section__image {
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.doc-industry-section__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
}

.doc-reference-link {
    padding-top: 22px;
    border-top: 1px solid #e5e8ed;
    word-break: break-word;
}

.newsdetaiPage .newsDetailAside {
    padding-top: 10px;
    position: sticky;
    top: 120px;
}

.newsdetaiPage .newsDetailAside h2 {
    color: #23272f;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;
    padding-bottom: 18px;
    margin-bottom: 30px;
    border-bottom: 1px solid #d9d9d9;
}

.newsdetaiPage .latestNewsList {
    display: grid;
    gap: 15px;
}

.newsdetaiPage .latestNewsCard {
    min-height: 96px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: stretch;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    transition: transform .3s, box-shadow .3s;
}

.newsdetaiPage .latestNewsCard.noImage {
    grid-template-columns: 1fr;
}

.newsdetaiPage .latestNewsCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.newsdetaiPage .latestNewsImg {
    width: 96px;
    height: 96px;
    overflow: hidden;
    background: #f5f5f5;
}

.newsdetaiPage .latestNewsImg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

.newsdetaiPage .latestNewsCard:hover img {
    transform: scale(1.05);
}

.newsdetaiPage .latestNewsText {
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 16px 20px;
}

.newsdetaiPage .latestNewsText strong {
    color: #111;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .3s;
}

.newsdetaiPage .latestNewsCard:hover strong {
    color: #0076c8;
}

@media screen and (max-width: 1200px) {
    .newsdetaiPage .newsDetailLayout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 48px;
    }
}

@media screen and (max-width: 950px) {
    .newsdetaiPage .newsDetailBanner {
        margin-top: 60px;
    }

    .newsdetaiPage .newsDetailLayout {
        grid-template-columns: 1fr;
    }

    .newsdetaiPage .newsDetailAside {
        padding-top: 0;
    }

    .newsdetaiPage .latestNewsList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .newsdetaiPage .newsDetailSection {
        padding: 40px 0 58px;
    }

    .newsdetaiPage .newsArticleContent,
    .newsdetaiPage .newsArticleContent p,
    .newsdetaiPage .newsArticleContent li {
        font-size: 16px;
        line-height: 1.85;
    }

    .newsdetaiPage .latestNewsList {
        grid-template-columns: 1fr;
    }

    .doc-four-media-text,
    .newsdetaiPage .news-doc-image-row,
    .newsdetaiPage .news-doc-gallery,
    .newsdetaiPage .news-doc-materials,
    .newsdetaiPage .news-doc-applications {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .newsdetaiPage .newsDetailBanner {
        min-height: 220px;
        padding-top: 45px;
    }

    .newsdetaiPage .newsDetailCrumbs .Wrapper {
        min-height: 58px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .newsdetaiPage .latestNewsCard {
        grid-template-columns: 88px minmax(0, 1fr);
        min-height: 88px;
    }

    .newsdetaiPage .latestNewsImg {
        width: 88px;
        height: 88px;
    }

    .newsdetaiPage .latestNewsText {
        padding: 12px 14px;
    }
}

.newsDetailLayout .fl-row-fixed-width {
    max-width: none;
}
