/* ==========================================
   Inner Page Banner & Content Style - 1:1 Pixel Match UI
   ========================================== */
.inner{
    max-width:1300px;
    margin:0 auto;
}
/* 1. Flat Inner Page Banner (Image only) */
.inner-page-banner {
    display: block;
    position: relative;
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    z-index: 5;
}

/* High-Tech Banner Section (Top) */
.about-banner1 {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Light white-blue radial-gradient overlay to match premium tech UI background */
.about-banner1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 255, 0.9) 50%, rgba(225, 238, 255, 0.75) 100%);
    z-index: 1;
}

.banner1-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Banner Left Info Layout */
.banner1-left {
    max-width: 55%;
}

.main-titles {
    margin-bottom: 18px;
}

.main-titles .title-en-cn {
    font-size: 42px;
    font-weight: 700;
    color: #1a2233;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.main-titles .title-sub {
    font-size: 38px;
    font-weight: 700;
    color: #004bb4;
    letter-spacing: 2px;
    margin: 4px 0 0 0;
    line-height: 1.2;
}

/* Tagline sloped badge */
.tagline-badge {
    display: inline-flex;
    align-items: center;
    background: #003fa8;
    color: #ffffff;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    transform: skewX(-15deg);
    margin-bottom: 22px;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 63, 168, 0.15);
}

.tagline-badge span {
    display: inline-block;
    transform: skewX(15deg);
}

.slogan-text {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.slogan-line {
    width: 110px;
    height: 3px;
    background: #004bb4;
    margin-bottom: 28px;
    border-radius: 2px;
}

/* 4 Core Badges Layout */
.badges-row {
    display: flex;
    gap: 15px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 76px;
    padding: 12px 5px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #e1e9f5;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 75, 180, 0.04);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    border-color: #004bb4;
    box-shadow: 0 10px 22px rgba(0, 75, 180, 0.08);
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004bb4;
    margin-bottom: 6px;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-label {
    font-size: 12px;
    color: #555555;
    font-weight: 600;
}

/* Banner Right Futuristic Rotating Dial Area */
.banner1-right {
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-dial-outer {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-dial-ring {
    position: absolute;
    border-radius: 50%;
}

.dial-ring-1 {
    width: 310px;
    height: 310px;
    border: 2.5px solid rgba(0, 75, 180, 0.08);
    border-top: 3px solid #004bb4;
    border-bottom: 3px solid #004bb4;
    animation: spin-clockwise 18s linear infinite;
}

.dial-ring-2 {
    width: 260px;
    height: 260px;
    border: 2px dashed rgba(0, 120, 255, 0.25);
    animation: spin-counter-clockwise 12s linear infinite;
}

.dial-ring-3 {
    width: 210px;
    height: 210px;
    border: 1.5px solid rgba(0, 75, 180, 0.1);
    border-left: 3.5px solid #004bb4;
    animation: spin-clockwise 8s linear infinite;
}

.tech-dial-core {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #ffffff 0%, #f0f6ff 70%, #dbe8ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 75, 180, 0.15), inset 0 2px 8px rgba(255,255,255,0.8);
    border: 4px solid #ffffff;
}

.core-text {
    font-size: 34px;
    font-weight: 800;
    color: #004bb4;
    letter-spacing: 1px;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 75, 180, 0.1);
}

@keyframes spin-clockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-counter-clockwise {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* Slider Pagination Control Bar at bottom right */
.slider-control-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 56px;
    background: #004bb4;
    display: flex;
    align-items: center;
    padding: 0 35px 0 55px;
    clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 10;
    color: #ffffff;
}

.pagination-num {
    font-size: 14px;
    font-weight: 600;
    margin-right: 25px;
    letter-spacing: 0.5px;
}

.pagination-num .divider {
    opacity: 0.6;
    margin: 0 3px;
}

.pagination-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
    position: relative;
}

.dot.active::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #ffffff;
    border-radius: 50%;
}


/* 2. Sub Navigation Tabs Bar */
.about-tabs-bar {
    background-color: #f7f9fc;
    border-bottom: 1px solid #eaeef2;
    position: relative;
    z-index: 15;
}

.tab-list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.tab-item a {
    display: block;
    padding: 0 35px;
    height: 100%;
    line-height: 64px;
    color: #444444;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tab-item:hover a {
    color: #004bb4;
}

.tab-item.active {
    background: #004bb4;
    transform: skewX(-20deg);
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 75, 180, 0.12);
}

.tab-item.active a {
    color: #ffffff !important;
    font-weight: 600;
    transform: skewX(20deg);
}

.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) skewX(20deg);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #004bb4 transparent transparent transparent;
    z-index: 11;
}


/* 3. Main Content Section (Profile Area) */
.about-content {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.profile-section {
    position: relative;
    z-index: 5;
}

/* Decorative Background Shapes */
.deco-bg-left {
    position: absolute;
    left: -120px;
    top: 10%;
    width: 480px;
    height: 480px;
    background: linear-gradient(135deg, rgba(0, 75, 180, 0.05) 0%, rgba(255, 255, 255, 0) 75%);
    clip-path: polygon(0 0, 100% 35%, 25% 100%);
    z-index: 1;
    pointer-events: none;
}

.deco-bg-right {
    position: absolute;
    right: -120px;
    bottom: 5%;
    width: 480px;
    height: 480px;
    background: linear-gradient(-135deg, rgba(0, 75, 180, 0.05) 0%, rgba(255, 255, 255, 0) 75%);
    clip-path: polygon(100% 100%, 0 65%, 75% 0);
    z-index: 1;
    pointer-events: none;
}

.profile-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.profile-header h2 {
    font-size: 32px;
    color: #222222;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 2px;
}

.profile-header p {
    font-size: 14px;
    color: #888888;
    margin: 0;
    letter-spacing: 0.5px;
}

.profile-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

.profile-left {
    width: 58%;
}

.profile-left h3 {
    font-size: 24px;
    color: #222222;
    font-weight: 600;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
}

.profile-desc {
    font-size: 14px;
    color: #666666;
    line-height: 2.2;
    text-align: justify;
    margin-bottom: 45px;
}

.profile-desc p {
    margin: 0 0 15px 0;
    text-indent: 2em;
}

.profile-desc p:last-child {
    margin-bottom: 0;
}

/* Statistics milestones row */
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.stats-item {
    width: 22%;
    text-align: center;
}

.stats-num {
    font-size: 32px;
    font-weight: 700;
    color: #004bb4;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.stats-num .unit {
    font-size: 13px;
    font-weight: 500;
    margin-left: 2px;
    color: #004bb4;
}

.stats-label {
    font-size: 13px;
    color: #777777;
    margin-top: 8px;
    margin-bottom: 12px;
}

/* Curved bracket milestones underline */
.stats-line {
    width: 64px;
    height: 2px;
    background: #004bb4;
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.stats-line::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 10%;
    width: 80%;
    height: 4px;
    border-bottom: 1.5px solid #004bb4;
    border-radius: 50%;
}

/* Right office image layout with 1:1 offset frame styling */
.profile-right {
    width: 38%;
}

.image-frame-container {
    position: relative;
    padding: 0 18px 18px 0;
    margin-top: 15px;
}

/* Light blue solid offset block background */
.image-frame-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 96%;
    height: 96%;
    background-color: #a4c2f4;
    border-radius: 8px;
    z-index: 1;
}

/* Image container frame */
.image-frame {
    position: relative;
    border: 5px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 75, 180, 0.12);
    z-index: 2;
}

.image-frame img {
    width: 100%;
    display: block;
    height: 360px;
    object-fit: cover;
}

/* Frame overlay caption strip */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 15, 45, 0.7);
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    padding: 12px 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Top-left decorative triangle badge */
.image-decor-triangle {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 0 16px;
    border-color: transparent transparent transparent #004bb4;
    z-index: 10;
}


/* ==========================================
   5. Contact Page Styles (Anti-Conflict Prefixes)
   ========================================== */
.contact-page-section {
    background-color: #E8EDF7;
    position: relative;
    padding: 80px 0;
}
.contact-page-section .inner{
    padding:0 30px;
    max-width:100%!important;
}
.contact-page-card {
    display: flex;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 50px rgba(0, 75, 180, 0.06);
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Area: Title and QR */
.contact-page-left {
    width: 45%;
    padding: 0px 0 60px 80px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.contact-page-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.contact-page-subtitle {
    font-size: 14px;
    color: #999;
    margin: 0 0 40px 0;
}

/* White QR Card */
.contact-page-qr-card {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
}

.contact-page-info {
    font-size: 16px;
    color: #666;
    margin: 0 0 12px 0;
    padding-left: 0;
}

.contact-page-qrcode {
    width: 140px;
    height: 140px;
    padding: 0;
    background: transparent;
    border: none;
}

.contact-page-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-page-qr-hint {
    font-size: 16px;
    color: #999;
    width: 140px;
    text-align: center;
}

/* Right Area: Slanted Blue Sections */
.contact-page-right-trapezoid {
    width: 60%;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 160px;
    color: #ffffff;
}

/* Three-layer sloped ribbon effect */
.contact-page-slant-bg-1 {
    display: none;
}

.contact-page-slant-bg-2 {
    display: none;
}

.contact-page-slant-bg-3 {
    display: none;
}

.contact-page-right-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-page-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-page-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.contact-page-item-value {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.contact-page-item-value.person-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-page-item-value.landlines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-page-item-value.landlines p {
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px;
}

.contact-page-item-value.mobile-num {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}


/* 6. Responsive Styles */
@media (max-width: 1200px) {
    .about-banner1 {
        height: 460px;
    }
    .main-titles .title-en-cn {
        font-size: 36px;
    }
    .main-titles .title-sub {
        font-size: 32px;
    }
    .tech-dial-outer {
        width: 260px;
        height: 260px;
    }
    .dial-ring-1 { width: 250px; height: 250px; }
    .dial-ring-2 { width: 210px; height: 210px; }
    .dial-ring-3 { width: 170px; height: 170px; }
    .tech-dial-core { width: 130px; height: 130px; }
    .core-text { font-size: 28px; }
    
    .profile-body {
        flex-direction: column;
        align-items: center;
    }
    .profile-left {
        width: 100%;
        margin-bottom: 50px;
    }
    .profile-right {
        width: 100%;
        max-width: 500px;
    }
    .image-frame img {
        height: 320px;
    }
    
    .contact-page-card {
        height: auto;
        flex-direction: column;
    }
    .contact-page-left {
        width: 100%;
        padding: 35px 30px;
        align-items: center;
    }
    .contact-page-qr-card {
        width: 100%;
        max-width: 320px;
    }
    .contact-page-right-trapezoid {
        width: 100%;
        clip-path: none;
        padding: 40px 30px;
        justify-content: center;
    }
    .contact-page-right-trapezoid::before {
        clip-path: none;
        left: 0;
    }
    .contact-page-right-content {
        align-items: center;
        text-align: center;
    }
    .contact-page-item-header {
        justify-content: center;
    }
}

/* News Category Navigation */
.news-category-bar {
    display: flex;
    justify-content: center;
    line-height:50px;
    background: linear-gradient(90deg, rgba(239, 241, 247, 1) 0%, rgba(227, 235, 250, 1) 100%);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.news-category-list {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0 15px;
    white-space: nowrap;
}

.news-category-item {
    position: relative;
    transition: all 0.3s ease;
}

.news-category-item a {
    display: block;
    padding: 8px 20px;
    font-size: 16px;
    color: #444444;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.news-category-item.active {
    background: #144eab;
    transform: skewX(-25deg);
    box-shadow: 0 4px 12px rgba(20, 78, 171, 0.2);
}

.news-category-item.active a {
    color: #ffffff;
    transform: skewX(25deg);
    font-weight: 600;
}

.news-category-item:not(.active):hover a {
    color: #144eab;
}

@media (max-width: 768px) {
    .inner-page-banner {
        height: 250px;
    }
    .about-banner1 {
        height: auto;
        padding: 50px 0 80px 0;
    }
    .banner1-container {
        flex-direction: column;
        gap: 40px;
    }
    .banner1-left {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner1-right {
        max-width: 100%;
    }
    .badges-row {
        justify-content: center;
    }
    .slider-control-bar {
        display: none;
    }
    .tab-list {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding: 0 10px;
    }
    .tab-item a {
        padding: 0 20px;
    }
    .stats-container {
        flex-wrap: wrap;
    }
    .stats-item {
        width: 50%;
        margin-bottom: 25px;
    }
}

/* Case List Mobile Adjustments */
@media (max-width: 1200px) {
    .case-page-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-page-list {
        grid-template-columns: 1fr;
    }
    .case-page-item {
        padding: 30px 20px;
    }
}

/* .padd {
    padding: 80px 0;
} */

/* ==========================================
   8. Case Page Styles (Anti-Conflict Prefixes)
   ========================================== */

.product-page-section {
    position: relative;
    width: 100%;
  background: linear-gradient(180deg, rgba(226, 233, 245, 0) 0%, rgba(227, 234, 246, 0.96) 6.7%, rgba(237, 243, 251, 0.57) 100%);
}
.case-page-section {
    position: relative;
    width: 100%;
   background: linear-gradient(180deg, rgba(226, 233, 245, 0) 0%, rgba(227, 234, 246, 0.96) 6.7%, rgba(237, 243, 251, 0.57) 100%);
}

.case-page-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.case-page-item {
    background: #ffffff url('/public/style/new1/images/video-bg.png') no-repeat center !important;
    background-size: 100% 100% !important;
    border-radius: 12px;
    position: relative;
    padding: 30px 20px 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 25px rgba(0, 75, 180, 0.08);
    border: 1px solid rgba(20, 78, 171, 0.1);
    z-index: 1;
}

.case-page-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20, 78, 171, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.case-page-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 75, 180, 0.1);
}

/* Corner Decors - Ensure visibility on top of background */
.case-page-decor {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    opacity: 0.8;
}

.case-page-decor-tl {
    top: 10px;
    left: 10px;
}

.case-page-decor-br {
    bottom: 10px;
    right: 10px;
}

/* Index Badge - Precise positioning */
.case-page-badge {
    position: absolute;
    top: 0;
    left: 10px;
    width: 44px;
    height: 44px;
    background: url('/public/style/new1/images/num-bg.png') no-repeat center !important;
    background-size: 100% 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.case-page-badge span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.case-page-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 2;
}

.case-page-img {
    width: 100%;
    height: 220px;
    margin-bottom: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-page-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.case-page-item:hover .case-page-img img {
    transform: scale(1.08);
}

.case-page-info {
    text-align: left;
    padding: 20px 15px;
   border-radius: 10px;
background: rgba(239, 244, 252, 1);
    margin: 15px 0 10px 0;
    position: relative;
}

.case-page-title {
    font-size: 18px;
    color: #004bb4;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-page-more {
    display: flex;
    justify-content: flex-start;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.case-page-more img {
    height: 34px;
    width: auto;
    display: block;
}

.case-page-item:hover .case-page-more {
    transform: scale(1.05);
}

/* ==========================================
   7. News Page Styles (Anti-Conflict Prefixes)
   ========================================== */
.news-page-section {
   background: linear-gradient(180deg, rgba(226, 233, 245, 0) 0%, rgba(227, 234, 246, 0.96) 6.7%, rgba(237, 243, 251, 0.57) 100%);
    position: relative;
}

.news-page-wrapper {
    margin:20px;
   border-radius: 20px;
      padding:40px 20px;
  border: 1px solid #ABC4E8;
    background: linear-gradient(181.02deg, rgba(187, 210, 240, 0.47) 0%, rgba(255, 255, 255, 0) 100%);

  box-sizing: border-box;
  }
  
.product-page-wrapper,.case-page-wrapper {
    margin:20px;
   border-radius: 20px;
      padding:40px 20px;
  border: 1px solid #ABC4E8;
    background: linear-gradient(181.02deg, rgba(187, 210, 240, 0.47) 0%, rgba(255, 255, 255, 0) 100%);

  box-sizing: border-box;
  }
.product-page-wrapper .inner{
    width:100%;
    max-width:100%;
 
} 
.case-page-wrapper .inner{
    width:100%;
    max-width:100%;
 
} 
.news-page-wrapper  .inner{
    max-width:1300px;
}
.news-page-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

/* ==========================================
   13. About Profile Section Styles
   ========================================== */
.about-profile-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-profile-header {
    margin-bottom: 60px;
    text-align: center;
}

.about-profile-main-title {
    font-size: 30px;
    color: #333;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.about-profile-main-title::before,
.about-profile-main-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
}

.about-profile-main-title::before { 
    left: 0; 
    background: linear-gradient(90deg, rgba(204, 204, 204, 0) 0%, rgba(21, 73, 171, 1) 100%); 
}

.about-profile-main-title::after { 
    right: 0; 
    background: linear-gradient(90deg, rgba(21, 73, 171, 1) 0%, rgba(204, 204, 204, 0) 100%); 
}

.about-profile-sub-title {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.about-profile-content {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.about-profile-left {
    flex: 1;
    padding: 50px;
    position: relative;
    box-sizing: border-box;
}

.profile-text-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left:50px;
}

.profile-company-name {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

.profile-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
}

.profile-desc p {
    margin-bottom: 15px;
}

.profile-stats-row {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-num {
    font-size: 36px;
    color: #004bb4;
    font-weight:500;
}

.stat-num .unit {
    font-size: 16px;
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.stat-deco {
    width: 120px;
    height: 25px;
    background: url('/public/style/new1/images/dz.png') no-repeat center !important;
    background-size: contain !important;
    margin: 5px auto 0;
    opacity: 1;
}

.about-profile-right {
    flex: 1;
    box-sizing: border-box;
}

.profile-image-box {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ABC4E8;
    background: linear-gradient(181.02deg, rgba(187, 210, 240, 0.47) 0%, rgba(255, 255, 255, 0) 100%);
}

.profile-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .about-profile-content {
        flex-direction: column;
    }
}
.about-honor-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-honor-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-honor-main-title {
    font-size: 30px;
    color: #333;
    position: relative;
    padding: 0 40px;
}

.about-honor-main-title::before,
.about-honor-main-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
}

.about-honor-main-title::before { left: 0;background: linear-gradient(90deg, rgba(204, 204, 204, 0) 0%, rgba(21, 73, 171, 1) 100%); }
.about-honor-main-title::after { right: 0; background: linear-gradient(90deg, rgba(204, 204, 204, 0) 0%, rgba(21, 73, 171, 1) 100%);}

.about-honor-sub-title {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.about-honor-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 200px; 
}


.honor-list-wrapper {
    overflow: hidden;
    position: relative;
}

.honor-list {
    display: flex;
    gap: 30px; /* 增加间距 */
    transition: transform 0.5s ease-in-out;
}

.honor-item {
    flex: 0 0 calc(25% - 22.5px); /* 保持4个显示，并略微增大 */
    background: #fff;
    padding: 6px; /* 稍微增加内边距 */
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.honor-item img {
    width: 100%;
    height: 220px; /* 增大高度 */
    object-fit: cover;
    display: block;
}

.honor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 38px;
    background: url('/public/style/new1/images/next.png') no-repeat center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.honor-arrow:hover {
    filter: brightness(1.1);
}

.honor-arrow svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.honor-prev { 
    left: 90px; /* 离左边20px */
    transform: translateY(-50%) rotate(180deg);
}
.honor-next { 
    right: 90px; /* 离右边20px */
}

@media (max-width: 1400px) {
    .about-honor-content {
        padding-left: 0;
        background: rgba(255,255,255,0.8);
        padding: 40px 20px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .honor-item {
        flex: 0 0 calc(50% - 10px);
    }
}
.about-culture-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-culture-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-culture-main-title {
    font-size: 30px;
    color: #333;
}

.about-culture-sub-title {
    font-size: 16px;
    color: #999;
}

.about-culture-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.about-culture-list {
    width: 65%; /* 预留右侧背景图图标空间 */
    display: flex;
    flex-direction: column;
    gap: 80px; /* 三组内容之间的垂直间距 */
}

.about-culture-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-culture-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 15px;
}

.about-culture-item .label {
    color: #004bb4;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 5px;
}

.about-culture-item .text {
    color: #555;
    margin: 0;
}

@media (max-width: 1200px) {
    .about-culture-list {
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        padding: 40px;
        border-radius: 10px;
    }
}
.about-structure-section {
    position: relative;
    background: url('/public/style/new1/images/team.png') no-repeat center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    padding-top:80px;
}

.about-structure-header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-structure-main-title {
    font-size: 30px;
    color: #fff;
}

.about-structure-sub-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.about-structure-list {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-structure-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 模拟背景人物图的效果 */
.about-structure-item {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    min-height: 500px;
    padding-top: 40px;
}

.about-structure-info {
    max-width: 450px;
    margin: 0 auto;
}

.about-structure-name {
    font-size: 28px;
    color: #fff;
    text-align: center;
}

.about-structure-line {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 30px;
}

.about-structure-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: justify;
}

.about-structure-desc p {
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .about-structure-list {
        flex-direction: column;
        gap: 80px;
    }
    .about-structure-item {
        min-height: auto;
        padding-bottom: 60px;
    }
}
.about-media-section {
    position: relative;
    padding-top:80px;
}

.about-media-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-media-expand{
    text-align: center;
}
.about-media-main-title {
    font-size: 30px;
    color: #333;
    text-align: center;
}

.about-media-sub-title {
    font-size: 16px;
    color: #999;
    text-align: center;
}

.about-media-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-media-card-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.about-media-card-line {
    width: 40px;
    height: 4px;
    background: #004bb4;
    margin: 0 auto 40px;
}

.about-media-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.about-media-text p {
    margin-bottom: 20px;
}

.about-media-expand {
    margin-top: 30px;
}

.about-media-expand .expand-btn {
    color: #004bb4;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-media-expand .expand-btn:hover {
    opacity: 0.8;
}

.about-media-expand .icon {
    font-size: 12px;
}

@media (max-width: 768px) {
    .about-media-card {
        padding: 40px 20px;
    }
    .about-media-main-title {
        font-size: 26px;
    }
}

.news-page-item {
    background: url('/public/style/new1/images/news-bg.png') no-repeat center;
    background-size: 100% 100%;
    border-radius: 12px;
    position: relative;
    padding: 45px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 75, 180, 0.03);
    margin-bottom: 10px;
}

.news-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 75, 180, 0.08);
}

/* Corner Decors */
.news-page-decor {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.news-page-decor-tl {
    top: 15px;
    left: 15px;
}

.news-page-decor-br {
    bottom: 15px;
    right: 15px;
}

/* Index Badge */
.news-page-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 32px;
    background: url('/public/style/new1/images/num-bg.png') no-repeat center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.news-page-badge span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-bottom: 2px;
}

.news-page-link-wrapper {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 40px;
}

.news-page-img-box {
    width: 340px;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.news-page-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-page-title {
    font-size: 20px;
    color: rgba(20, 78, 171, 1);
    font-weight: 600;
    margin: 0 0 18px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page-desc {
    font-size: 16px;
    color: rgba(102, 102, 102, 1);
    line-height: 1.8;
    margin: 0 0 45px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.news-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.news-page-more {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-page-more img {
    display: block;
    max-width: 150px; /* 适当限制宽度 */
    height: auto;
}

.news-page-item:hover .news-page-more {
    opacity: 0.85;
    transform: translateX(5px);
}

.news-page-date {
    font-size: 15px;
    color: #888888;
    font-family: Arial, sans-serif;
    padding-bottom: 5px;
}

/* Pagination Styling Override */
.pages {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
}

.pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.pagination li {
    display: block;
}

.pagination li a, 
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    background: #ffffff;
    color: #666666;
    text-decoration: none;
    border: 1px solid #e1e9f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
}

.pagination li a:hover {
    background: #f0f7ff;
    color: #144eab;
    border-color: #144eab;
    transform: translateY(-2px);
}

.pagination li.active span {
    background: #144eab;
    color: #ffffff;
    border-color: #144eab;
    box-shadow: 0 4px 10px rgba(20, 78, 171, 0.2);
}

.pagination li.disabled span {
    color: #cccccc;
    background: #fcfdfe;
    border-color: #edf2f7;
    cursor: not-allowed;
}

.pagination li:first-child a, 
.pagination li:first-child span,
.pagination li:last-child a, 
.pagination li:last-child span {
    font-size: 18px; /* 增大箭头符号大小 */
}

/* ==========================================
   14. News Detail Page Styles
   ========================================== */
.news-detail-section, .case-detail-section, .product-detail-section, .video-detail-section {
    background: linear-gradient(180deg, rgba(226, 233, 245, 0) 0%, rgba(227, 234, 246, 0.96) 6.7%, rgba(237, 243, 251, 0.57) 100%);
    position: relative;
    padding-bottom: 80px;
}

.news-detail-wrapper, .case-detail-wrapper, .product-detail-wrapper, .video-detail-wrapper {
    margin: 20px;
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid #ABC4E8;
    background: linear-gradient(181.02deg, rgba(187, 210, 240, 0.47) 0%, rgba(255, 255, 255, 0) 100%);
    box-sizing: border-box;
}

.news-detail-container, .case-detail-container, .product-detail-container, .video-detail-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 75, 180, 0.05);
}

.news-detail-header, .case-detail-header, .product-detail-header, .video-detail-header {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.case-detail-badge, .product-detail-badge, .video-detail-badge {
    display: inline-block;
    background: #144eab;
    color: #fff;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.news-detail-title, .case-detail-title, .product-detail-title, .video-detail-title {
    font-size: 32px;
    color: #144eab;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-detail-meta, .case-detail-meta, .product-detail-meta, .video-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
    font-size: 14px;
}

.case-main-img, .product-main-img, .video-main-img {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.case-main-img img, .product-main-img img, .video-main-img img {
    width: 100%;
    display: block;
}

.news-detail-content, .case-detail-content, .product-detail-content, .video-detail-content {
    font-size: 16px;
    color: #444;
    line-height: 2;
    text-align: justify;
}

.news-detail-content p, .case-detail-content p, .product-detail-content p, .video-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content img, .case-detail-content img, .product-detail-content img, .video-detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
}

.news-detail-footer, .case-detail-footer, .product-detail-footer, .video-detail-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.prev-next-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.link-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.link-item:hover {
    background: #fff;
    border-color: #144eab;
    box-shadow: 0 5px 15px rgba(20, 78, 171, 0.1);
    transform: translateY(-2px);
}

.link-item.next {
    text-align: right;
}

.link-item span {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.link-item a {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.link-item:hover a {
    color: #144eab;
}

.back-to-list {
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #144eab;
    color: #fff !important;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(20, 78, 171, 0.2);
}

.back-btn:hover {
    background: #0d3a82;
    box-shadow: 0 6px 20px rgba(20, 78, 171, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .prev-next-links {
        flex-direction: column;
    }
    
    .link-item.next {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .all, .head {
        min-width: 100% !important;
    }
    
    .news-detail-wrapper, .case-detail-wrapper, .product-detail-wrapper, .video-detail-wrapper {
        padding: 20px 10px;
        margin: 10px 5px;
        border-radius: 10px;
    }
    
    .news-detail-container, .case-detail-container, .product-detail-container, .video-detail-container {
        padding: 15px;
    }
    
    .news-detail-title, .case-detail-title, .product-detail-title, .video-detail-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .news-detail-meta, .case-detail-meta, .product-detail-meta, .video-detail-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        font-size: 12px;
    }
}

/* 详情页内容溢出处理与样式统一 */
.news-detail-content, .case-detail-content, .product-detail-content, .video-detail-content {
    word-wrap: break-word;
    word-break: break-all;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px !important; /* 统一字号 */
    color: #444 !important;
    line-height: 2 !important;
}

/* 强制去掉背景颜色和统一字号 */
.news-detail-content *, .case-detail-content *, .product-detail-content *, .video-detail-content * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    background-color: transparent !important; /* 去掉背景颜色 */
    font-size: 16px !important; /* 统一字号 */
    font-family: inherit !important;
}

/* 段落缩进与间距 */
.news-detail-content p, .case-detail-content p, .product-detail-content p, .video-detail-content p {
    text-indent: 2em; /* 首行缩进 */
    margin-bottom: 1.5em !important;
    text-align: justify;
}

/* 图片不缩进 */
.news-detail-content p:has(img), .case-detail-content p:has(img), .product-detail-content p:has(img), .video-detail-content p:has(img),
.news-detail-content img, .case-detail-content img, .product-detail-content img, .video-detail-content img {
    text-indent: 0 !important;
}

.news-detail-content img, .case-detail-content img, .product-detail-content img, .video-detail-content img {
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
    border-radius: 8px;
}

.news-detail-content table, .case-detail-content table, .product-detail-content table, .video-detail-content table {
    width: 100% !important;
    display: table !important; /* 恢复 table 布局 */
    margin-bottom: 20px !important;
}

/* 针对手机端表格的特殊处理：容器滚动 */
@media (max-width: 768px) {
    .news-detail-content, .case-detail-content, .product-detail-content, .video-detail-content {
        overflow-x: visible; /* 允许内部滚动 */
    }
    
    /* 强制编辑器生成的带宽度的 div/p 重置 */
    .news-detail-content div, .news-detail-content p, .news-detail-content section {
        width: auto !important;
        height: auto !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #144eab;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(20, 78, 171, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0d3a82;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(20, 78, 171, 0.4);
}

.back-to-top .arrow {
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    transform: rotate(45deg);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top .arrow {
        width: 10px;
        height: 10px;
        border-left: 2px solid #fff;
        border-top: 2px solid #fff;
    }
}
