* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            background-color: #fff;
        }
        /* 导航栏 lx- 修改高度100px */
        .lx-header-wrap {
            background-color: #0a2040;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            height: 100px;
        }
        .lx-nav-container {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            height: 100%;
        }
        .lx-logo-box {
            display: flex;
            align-items: center;
            gap:8px;
        }
        /* logo图片样式 */
        .lx-logo-img {
            height: 80px;
            width: auto;
            display: block;
        }
        .lx-nav-menu {
            display:flex;
            gap: 32px;
            align-items:center;
        }
        .lx-nav-item {
            position: relative;
        }
        .lx-nav-item > a {
            color:#fff;
            text-decoration:none;
            font-size:18px;
            font-weight:500;
            padding:8px 4px;
            display:block;
        }
        .lx-nav-item > a:hover {
            color:#3483ff;
        }
        /* 二级下拉菜单 */
        .lx-nav-dropdown {
            position:absolute;
            top:100%;
            left:0;
            background:#0f2b52;
            min-width:180px;
            border-radius:4px;
            box-shadow:0 8px 24px rgba(0,0,0,0.25);
            opacity:0;
            visibility:hidden;
            transform: translateY(8px);
            transition: all 0.25s ease;
            z-index:99;
        }
        .lx-nav-item:hover .lx-nav-dropdown {
            opacity:1;
            visibility:visible;
            transform: translateY(0);
        }
        .lx-nav-dropdown a {
            display:block;
            padding:12px 18px;
            color:#fff;
            text-decoration:none;
            font-size:16px;
        }
        .lx-nav-dropdown a:hover {
            background-color:#1a3b6b;
            color:#3483ff;
        }
        .lx-search-input-wrap {
            position:relative;
        }
        .lx-search-input-wrap input {
            background:rgba(255,255,255,0.1);
            border:1px solid rgba(255,255,255,0.2);
            border-radius:20px;
            padding:6px 32px 6px 12px;
            color:#fff;
            font-size:13px;
        }
        .lx-search-input-wrap input::placeholder {
            color:rgba(255,255,255,0.6);
        }
        .lx-search-input-wrap .lx-search-icon{
            position:absolute;
            right:10px;
            top:50%;
            transform:translateY(-50%);
            color:rgba(255,255,255,0.6);
        }
.active{
	color: #0085ff !important;
}
        /* Contact 主体区块 */
        .lx-contact-section {
            background-color:#0a2040;
            padding:60px 20px;
        }
        .lx-contact-container {
            max-width:1320px;
            margin:0 auto;
            display:grid;
            grid-template-columns: 1fr 1.3fr;
            gap:50px;
        }
        .lx-contact-left h1 {
            font-size:36px;
            margin-bottom:12px;
        }
        .lx-contact-left .lx-sub-title {
            font-size:18px;
            margin-bottom:20px;
            opacity:0.9;
        }
        .lx-contact-desc {
            font-size:14px;
            line-height:1.6;
            opacity:0.75;
            margin-bottom:32px;
            max-width:240px;
        }
        .lx-contact-info-item {
            display:flex;
            align-items:flex-start;
            gap:12px;
            margin-bottom:20px;
        }
        .lx-contact-info-item .lx-icon-box {
            margin-top:3px;
            opacity:0.8;
            font-size:23px;
        }
        .lx-contact-info-text h4 {
            font-size:14px;
            margin-bottom:4px;
        }
        .lx-contact-info-text p {
            font-size:13px;
            opacity:0.72;
        }
        /* 表单 */
        .lx-contact-form-wrap {
            background:#ffffff;
            color:#222;
            padding:32px;
            border-radius:6px;
        }
        .lx-form-row {
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:16px;
            margin-bottom:16px;
        }
        .lx-form-group label {
            display:block;
            font-size:13px;
            margin-bottom:4px;
            color:#333;
        }
        .lx-form-group input,
        .lx-form-group select,
        .lx-form-group textarea {
            width:100%;
            border:1px solid #dde2ec;
            border-radius:4px;
            padding:9px 12px;
            font-size:14px;
        }
        .lx-form-full {
            margin-bottom:16px;
        }
        .lx-form-group textarea {
            min-height:110px;
            resize:vertical;
        }
        .lx-submit-btn {
            background:#0a2040;
            color:#fff;
            border:none;
            padding:11px 28px;
            border-radius:3px;
            font-weight:600;
            cursor:pointer;
            display:flex;
            align-items:center;
            gap:8px;
        }
        .lx-submit-btn:hover {
            background:#143464;
        }
        /* 世界地图区块 */
        .lx-worldmap-section {
            min-height:440px;
            position:relative;
            width:100%;
            overflow:hidden;
        }
        .lx-worldmap-img-box{
            width:100%;
            height:100%;
            position:absolute;
            inset:0;
        }
        .lx-worldmap-img-box img{
            width:100%;
            height:100%;
            object-fit:cover;
        }
        .lx-worldmap-inner{
            max-width:1320px;
            margin:0 auto;
            position:relative;
            z-index:2;
            height:440px;
        }
        .lx-world-tags {
            width:100%;
            height:400px;
        }
        .lx-tag-item {
            position:absolute;
            background:#fff;
            color:#112b50;
            padding:10px 20px;
            border-radius:99px;
            font-weight:600;
            font-size:16px;
        }
        .lx-tag-na {
            top:140px;
            left:8%;
        }
        .lx-tag-eu {
            top:100px;
            left:47%;
        }
        .lx-tag-me {
            top:180px;
            left:58%;
        }
        .lx-tag-af {
            top:280px;
            left:49%;
        }
        /* CTA 底部横幅 */
        .lx-cta-banner {
            padding:60px 20px;
            background-color:#0a2040;
        }
        .lx-cta-container {
            max-width:1320px;
            margin:0 auto;
            display:grid;
            grid-template-columns: 1.3fr 1fr;
            gap:40px;
            align-items:center;
        }
        .lx-cta-text h2 {
            font-size:32px;
            margin-bottom:12px;
        }
        .lx-cta-subtext {
            font-size:22px;

            opacity:0.85;
            margin-bottom:0;
        }
        .lx-cta-buttons {
            display:flex;
            gap:20px;
        }
        .lx-btn-primary {
            background:#2478ff;
            color:#fff;
            text-decoration:none;
            padding:14px 32px;
            border-radius:4px;
            font-weight:600;
            display:flex;
            align-items:center;
            gap:10px;
        }
        .lx-btn-outline {
            border:1px solid #fff;
            color:#fff;
            text-decoration:none;
            padding:14px 32px;
            border-radius:4px;
            font-weight:600;
            display:flex;
            align-items:center;
            gap:10px;
        }
        /*页脚 lx-footer-wrap*/
        .lx-footer-wrap{
            background:#061428;
            padding:60px 20px 24px;
        }
        .lx-footer-container{
            max-width:1320px;
            margin:0 auto;
        }
        .lx-footer-top{
            display:grid;
            grid-template-columns: 1.4fr repeat(3,1fr);
            gap:40px;
            margin-bottom:40px;
        }
        .lx-footer-logo{
            display:flex;
            align-items:center;
            gap:8px;
            font-size:20px;
            font-weight:700;
            margin-bottom:16px;
        }
        .lx-footer-desc{
            font-size:16px;
            opacity:0.7;
            line-height:1.7;
        }
        .lx-footer-col h4{
            font-size:18px;
            margin-bottom:18px;
        }
        .lx-footer-col ul{
            list-style:none;
        }
        .lx-footer-col ul li{
            margin-bottom:12px;
        }
        .lx-footer-col ul li a{
            color:#ffffff;
            opacity:0.7;
            text-decoration:none;
            font-size:16px;
        }
        .lx-footer-col ul li a:hover{
            opacity:1;
            color:#3483ff;
        }
        .lx-footer-contact-item{
            display:flex;
            gap:10px;
            align-items:flex-start;
            margin-bottom:14px;
            font-size:16px;
			line-height: 1.5;
            opacity:0.7;
        }
        .lx-footer-contact-item i{
            margin-top:3px;
        }
        .lx-footer-bottom{
            border-top:1px solid rgba(255,255,255,0.1);
            padding-top:24px;
            display:flex;
            justify-content:space-between;
            align-items:center;
        }
        .lx-footer-copyright{
            font-size:13px;
            opacity:0.6;
        }
        .lx-footer-social a{
            color:#fff;
            font-size:18px;
            margin-left:16px;
            opacity:0.7;
        }
        .lx-footer-social a:hover{
            opacity:1;
        }

.lx-footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
}
        /* 响应式 */
        @media(max-width:1024px){
            .lx-contact-container {
                grid-template-columns:1fr;
            }
            .lx-nav-menu {
                gap:16px;
            }
            .lx-cta-container{
                grid-template-columns:1fr;
            }
            .lx-cta-text h2 {
                font-size:30px;
            }
            .lx-footer-top{
                grid-template-columns:1fr 1fr;
            }
            .lx-footer-bottom{
                flex-direction:column;
                gap:12px;
                text-align:center;
            }
            /* 移动端导航高度适配 */
            .lx-header-wrap {
                height:auto;
                padding:12px 0;
            }
            .lx-nav-container {
                height:auto;
                flex-wrap:wrap;
            }
            .lx-logo-img {
                height:40px;
            }
        }
        @media(max-width:768px){
            .lx-footer-top{
                grid-template-columns:1fr;
            }
            .lx-cta-buttons{
                flex-wrap:wrap;
            }
        }


.new-banner-wrap {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
        }
        .new-banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .new-banner-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(10, 32, 64, 0.55);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        .new-banner-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .new-banner-subtitle {
            font-size: 20px;
            opacity: 0.85;
            max-width: 700px;
        }

        /* 卡片容器 1320px居中 */
        .new-card-section {
            padding: 80px 20px;
        }
        .new-card-container {
            max-width: 1320px;
            margin: 0 auto;
        }
        .new-card-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        /* 卡片样式：左图右文 */
        .new-card-item {
            display: flex;
            background-color: #0f2b52;
            border-radius: 8px;
            overflow: hidden;
        }
        .new-card-img-box {
            width: 35%;
            flex-shrink: 0;
        }
        .new-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .new-card-text-box {
            width: 65%;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }
        /* hover整个卡片，全部文字区域向右浮动 */
        .new-card-item:hover .new-card-text-box {
            transform: translateX(8px);
        }

        .new-card-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .new-card-desc {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0.8;
            margin-bottom: 24px;
        }
        .new-card-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.25s ease;
        }
        .new-card-btn:hover {
            color: #3483ff;
            gap: 16px;
        }

        /* 响应式 */
        @media(max-width: 1024px) {
            .new-card-list {
                grid-template-columns: 1fr;
            }
            .new-card-item {
                flex-direction: column;
            }
            .new-card-img-box,
            .new-card-text-box {
                width: 100%;
            }
            .new-banner-title {
                font-size: 36px;
            }
            .new-banner-wrap {
                height: 400px;
            }
            /* 移动端关闭横向位移，避免溢出 */
            .new-card-item:hover .new-card-text-box {
                transform: translateX(0);
            }
        }
        @media(max-width: 768px) {
            .new-banner-title {
                font-size: 28px;
            }
            .new-banner-subtitle {
                font-size: 16px;
            }
            .new-banner-wrap {
                height: 320px;
            }
            .new-card-section {
                padding: 50px 20px;
            }
        }




.de-detail-wrap {
            padding: 80px 20px;
        }
        .de-detail-container {
            max-width: 1320px;
            margin: 0 auto;
        }

        /* 立体卡片 白底黑字，立体阴影效果 */
        .de-detail-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.18);
            padding: 48px 52px;
        }

        /* 标题居中 */
        .de-detail-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #000000;
        }

        /* 日期、浏览次数行 */
        .de-detail-meta {
            display: flex;
            justify-content: center;
            gap: 32px;
            font-size: 15px;
            opacity: 0.78;
            margin-bottom: 40px;
            color: #333333;
        }
        .de-detail-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* 正文靠左内容区域 */
        .de-detail-content {
            text-align: left;
            line-height: 1.85;
            font-size: 16px;
            opacity: 0.92;
            margin-bottom: 48px;
            color: #111111;
        }
        .de-detail-content p {
            margin-bottom: 16px;
        }

        /* 上一篇、下一篇导航 左右分布 */
        .de-prevnext-wrap {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            border-top: 1px solid rgba(0,0,0,0.12);
            padding-top: 32px;
        }
        .de-prev-link,
        .de-next-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #000000;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.25s ease;
        }
        .de-prev-link:hover,
        .de-next-link:hover {
            color:#155CC6;
        }
        .de-next-link {
            flex-direction: row-reverse;
        }

        /* 响应式适配 */
        @media(max-width: 1024px) {
            .de-detail-card {
                padding: 32px 24px;
            }
            .de-detail-title {
                font-size: 26px;
            }
            .de-prevnext-wrap {
                flex-direction: column;
            }
        }
        @media(max-width: 768px) {
            .de-detail-wrap {
                padding: 40px 16px;
            }
            .de-detail-meta {
                flex-direction: column;
                align-items: center;
                gap:10px;
            }
            .de-detail-title {
                font-size:22px;
            }
        }


.pro-product-wrap {
            padding: 80px 20px;
        }
        .pro-product-container {
            max-width: 1320px;
            margin: 0 auto;
        }
        .pro-product-row {
            display: flex;
            gap: 40px;
        }

        /* 左侧产品分类栏 */
        .pro-product-sidebar {
            width: 260px;
            flex-shrink: 0;
        }
        .pro-sidebar-title {
			color: #00336e;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 24px;
            padding-bottom:12px;
            border-bottom: 2px solid #155CC6;
        }
        .pro-category-list {
            list-style: none;
        }
        .pro-category-item {
            margin-bottom:12px;
        }
        .pro-category-link {
            display:flex;
            align-items:center;
            gap:8px;
            text-decoration:none;
            color:#333;
            font-size:16px;
            padding:12px 14px;
            border-radius:6px;
            transition:0.25s ease;
        }
        .pro-category-link i {
            font-size:14px;
        }
        .pro-category-link:hover {
            background-color:#155CC6;
            color:#fff;
        }

        /* 右侧产品区域 */
        .pro-product-main {
            flex:1;
        }
        .pro-product-grid {
            display:grid;
            grid-template-columns: repeat(3, 1fr);
            gap:30px;
        }

        /* 产品卡片 */
        .pro-product-card {
            background:#ffffff;
            border-radius:10px;
            box-shadow:0 8px 26px rgba(0,0,0,0.12);
            overflow:hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .pro-product-card:hover {
            transform: translateY(-6px);
            box-shadow:0 14px 36px rgba(0,0,0,0.16);
        }
        .pro-card-img-box {
            width:100%;
            height:220px;
            overflow:hidden;
        }
        .pro-card-img {
            width:100%;
            height:100%;
            object-fit:cover;
        }
        .pro-card-text {
            padding:22px 20px;
        }
        .pro-card-title {
			color: #00336e;
            font-size:18px;
            font-weight:600;
            margin-bottom:10px;
        }
        .pro-card-desc {
            font-size:14px;
            line-height:1.65;
            color:#555;
            margin-bottom:18px;
        }
        .pro-card-btn {
			    border-radius: 10px;
    padding: 10px;
    border: 1px solid #136fba;
            display:inline-flex;
            align-items:center;
            gap:7px;
            text-decoration:none;
            color:#155CC6;
            font-weight:500;
            font-size:15px;
            transition:0.25s ease;
        }
        .pro-card-btn i {
            transition: transform 0.25s ease;
        }
        .pro-card-btn:hover {
            color:#0f49a3;
        }
        .pro-card-btn:hover i {
            transform: translateX(4px);
        }

        /* 响应式 */
        @media(max-width:1024px) {
            .pro-product-row {
                flex-direction:column;
            }
            .pro-product-sidebar {
                width:100%;
            }
            .pro-product-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }
        @media(max-width:768px) {
            .pro-product-grid {
                grid-template-columns: 1fr;
            }
            .pro-product-wrap {
                padding:40px 16px;
            }
        }



.pde-banner-wrap {
            width: 100%;
            background-color: #0f2540;
            padding: 100px 20px;
        }

        .pde-banner-container {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .pde-banner-text {
            flex-basis: 48%;
            color: #ffffff;
        }

        .pde-banner-tag {
            font-size: 15px;
            color: #4299ff;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .pde-banner-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .pde-banner-sub {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .pde-banner-desc {
            font-size: 16px;
            line-height: 1.75;
            color: #b8d0ee;
            margin-bottom: 32px;
        }

        .pde-banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #3483dd;
            color: #fff;
            text-decoration: none;
            padding: 14px 32px;
            font-weight: 600;
            transition: 0.25s ease;
        }

        .pde-banner-btn:hover {
            background-color: #246bb8;
        }

        .pde-banner-image-box {
            flex-basis: 52%;
        }

        .pde-banner-img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* ========== 新增 Product Detail 模块 ========== */
        .pde-detail-wrap {
            max-width: 1320px;
            margin: 80px auto;
            border: 1px solid #dddddd;
            border-radius: 16px;
            padding: 40px;
        }
        .pde-detail-title {
			color: #02335f;
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .pde-detail-divider {
            width: 70px;
            height: 3px;
            background-color: #155CC6;
            margin: 0 auto 30px;
        }
        .pde-detail-content {
            text-align: left;
            line-height: 1.8;
            font-size: 16px;
            color: #333333;
        }
        /* ============================================ */

        .pde-card-section {
            padding: 0 20px 80px;
        }

        .pde-card-container {
            max-width: 1320px;
            margin: 0 auto;
        }

        .pde-section-head {
            text-align: center;
            margin-bottom: 48px;
        }

        .pde-section-title {
			color: #02335f;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .pde-section-line {
            width: 70px;
            height: 3px;
            background-color: #155CC6;
            margin: 0 auto;
        }

        .pde-card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        /* 修改后的卡片样式：图片在上，标题、描述、按钮依次向下排列 */
        .pde-item-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            transition: transform 0.32s ease, box-shadow 0.32s ease;
        }

        .pde-item-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
        }

        .pde-card-imgbox {
            width: 100%;
            height: 240px;
            padding: 24px;
        }

        .pde-card-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .pde-card-body {
            padding: 0 22px 28px;
        }

        .pde-card-title {
			color: #000;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pde-card-subtitle {
            font-size: 16px;
            color: #556680;
            margin-bottom: 20px;
            line-height:1.6;
        }

        /* 按钮：hover蓝色背景 */
        .pde-card-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            width: 100%;
            border: 2px solid #155CC6;
            color: #155CC6;
            text-decoration: none;
            padding: 14px 10px;
            border-radius: 8px;
            font-weight: 600;
            transition: 0.25s ease;
        }

        .pde-card-btn:hover {
            background-color: #155CC6;
            color: #ffffff;
        }

        .pde-popular-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: #0f2540;
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
        }

        .pde-card-top-tag {
            position: relative;
        }

        @media (max-width: 1200px) {
            .pde-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pde-banner-container {
                flex-direction: column;
            }

            .pde-banner-title {
                font-size: 48px;
            }
            .pde-detail-wrap{
                margin:60px 20px;
            }
        }

        @media (max-width: 768px) {
            .pde-banner-title {
                font-size: 36px;
            }

            .pde-banner-wrap {
                padding: 60px 16px;
            }

            .pde-card-grid {
                grid-template-columns: 1fr;
            }

            .pde-card-section {
                padding: 0 16px 50px;
            }
            .pde-detail-wrap{
                margin:40px 16px;
                padding:24px 20px;
            }
        }




.ab-hero-wrap {
            width: 100%;
            padding: 80px 20px;
        }
        .ab-hero-container {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .ab-hero-img-box {
            flex: 0 0 50%;
        }
        .ab-hero-img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
        }
        .ab-hero-text-box {
            flex: 0 0 50%;
        }
        .ab-hero-subtitle {
            font-size: 15px;
            color: #155CC6;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .ab-hero-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #0f2540;
        }
.ab-hero-text-box p {
            font-size: 16px;
            line-height: 1.8;
            color: #445470;
            margin-bottom: 32px;
        }
        .ab-hero-desc {
            font-size: 16px;
            line-height: 1.8;
            color: #445470;
            margin-bottom: 32px;
        }
        .ab-hero-buttons {
            display: flex;
            gap: 20px;
        }
        .ab-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #155CC6;
            color: #fff;
            text-decoration: none;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: 6px;
            transition: 0.25s ease;
        }
        .ab-btn-primary:hover {
            background-color: #0f49a3;
        }
        .ab-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid #155CC6;
            color: #155CC6;
            text-decoration: none;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: 6px;
            transition: 0.25s ease;
        }
        .ab-btn-outline:hover {
            background-color: #155CC6;
            color: #ffffff;
        }

        /* 四大优势图标模块 - 增加卡片立体感 */
        .ab-feature-section {
            padding: 70px 20px;
        }
        .ab-feature-container {
            max-width: 1320px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 28px 32px;
            border-radius: 18px;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
            border: 1px solid #e9ecef;
        }
        .ab-feature-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap:30px;
        }
        .ab-feature-item {
            display: flex;
            align-items: center;
            gap:14px;
            padding:12px 8px;
            border-right:1px solid #e9ecef;
        }
        .ab-feature-item:last-child{
            border-right:none;
        }
        .ab-feature-icon {
            font-size:42px;
            color:#2c3b64;
        }
        .ab-feature-text h4{
            font-size:20px;
            font-weight:700;
            color:#1a2744;
            margin-bottom:4px;
        }
        .ab-feature-text p{
            color:#445470;
        }

        /* Mission & Vision 模块 */
        .ab-mv-wrap {
            background-color:#f5f7fa;
            padding:70px 20px;
        }
        .ab-mv-container {
            max-width:1320px;
            margin:0 auto;
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:60px;
        }
        .ab-mv-block h3{
            font-size:32px;
            font-weight:700;
            margin-bottom:18px;
            color:#0f2540;
        }
        .ab-mv-block p{
            font-size:16px;
            line-height:1.8;
            color:#445470;
        }

        /* 数据统计深蓝色区块 */
        .ab-stat-wrap {
            background-color:#0f2540;
            padding:75px 20px;
        }
        .ab-stat-container {
            max-width:1320px;
            margin:0 auto;
            display:grid;
            grid-template-columns: repeat(4,1fr);
            gap:24px;
            text-align:center;
        }
        .ab-stat-num {
            font-size:64px;
            font-weight:700;
            color:#ffffff;
            margin-bottom:8px;
        }
        .ab-stat-label {
            font-size:17px;
            color:#b8d0ee;
        }

        /* ========== 新增：统计下方 工厂核心能力模块 ========== */
        .ab-advantage-wrap{
            padding:80px 20px;
            background:#ffffff;
        }
        .ab-advantage-container{
            max-width:1320px;
            margin:0 auto;
        }
        .ab-advantage-head{
            text-align:center;
            margin-bottom:50px;
        }
        .ab-advantage-sub{
            color:#155CC6;
            font-size:15px;
            letter-spacing:1px;
            margin-bottom:12px;
        }
        .ab-advantage-title{
            font-size:36px;
            font-weight:700;
            color:#0f2540;
        }
        .ab-advantage-grid{
            display:grid;
            grid-template-columns: repeat(3,1fr);
            gap:30px;
        }
        .ab-advantage-card{
            background:#ffffff;
            border-radius:16px;
            padding:32px 26px;
            box-shadow:0 8px 28px rgba(0,0,0,0.08);
            border:1px solid #e9ecef;
            transition:0.25s ease;
        }
        .ab-advantage-card:hover{
            transform:translateY(-6px);
            box-shadow:0 14px 38px rgba(0,0,0,0.12);
        }
        .ab-advantage-icon{
            width:60px;
            height:60px;
            background-color:#155CC6;
            border-radius:12px;
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:22px;
        }
        .ab-advantage-icon i{
            color:#fff;
            font-size:28px;
        }
        .ab-advantage-card h4{
            font-size:22px;
            font-weight:700;
            color:#0f2540;
            margin-bottom:14px;
        }
        .ab-advantage-card p{
            font-size:16px;
            line-height:1.75;
            color:#445470;
        }

        /* ========== 新增：工厂车间展示模块 ========== */
        .ab-workshop-wrap{
            padding:80px 20px;
            background:#f5f7fa;
        }
        .ab-workshop-container{
            max-width:1320px;
            margin:0 auto;
            display:flex;
            align-items:center;
            gap:60px;
        }
        .ab-workshop-img-box{
            flex:0 0 50%;
        }
        .ab-workshop-img{
            width:100%;
            border-radius:14px;
            object-fit:cover;
        }
        .ab-workshop-text-box{
            flex:0 0 50%;
        }
        .ab-workshop-sub{
            font-size:15px;
            color:#155CC6;
            letter-spacing:1px;
            margin-bottom:12px;
        }
        .ab-workshop-title{
            font-size:34px;
            font-weight:700;
            color:#0f2540;
            margin-bottom:20px;
        }
        .ab-workshop-desc{
            font-size:16px;
            line-height:1.8;
            color:#445470;
            margin-bottom:24px;
        }
        .ab-workshop-list{
            list-style:none;
        }
        .ab-workshop-list li{
            display:flex;
            align-items:center;
            gap:10px;
            font-size:16px;
            color:#223348;
            margin-bottom:14px;
        }
        .ab-workshop-list li i{
            color:#155CC6;
            font-size:18px;
        }

        /* ==========新增企业工商档案模块 ab‑profile‑wrap ========== */
        .ab-profile-wrap {
            padding: 80px 0;
            background: #f7f9fc;
        }
        .ab-profile-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .ab-profile-head {
            text-align: center;
            margin-bottom: 40px;
        }
        .ab-profile-sub {
            font-size: 15px;
            color: #155CC6;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .ab-profile-title {
            font-size: 34px;
            color: #0b2040;
            font-weight: 700;
        }

        .lk-faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .lk-faq-item {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: 0.3s ease;
        }
        .lk-faq-item:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.09);
        }

        .lk-faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
        }
        .lk-faq-label {
            font-size: 18px;
            font-weight: 700;
            color: #0b2040;
        }

        .lk-faq-icon {
            width: 22px;
            height: 22px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .lk-faq-icon::before,
        .lk-faq-icon::after {
            content: '';
            position: absolute;
            background-color: #155CC6;
            border-radius: 2px;
        }
        .lk-faq-icon::before {
            width: 100%;
            height: 2px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        .lk-faq-icon::after {
            width: 2px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .lk-faq-item.active .lk-faq-icon::after {
            opacity: 0;
            transform: translateX(-50%) rotate(90deg);
        }

        .lk-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .lk-faq-answer-inner {
            padding: 0 24px 24px;
            font-size: 15px;
            line-height: 1.7;
            color: #444854;
        }

        .lk-faq-item.active .lk-faq-answer {
            max-height: 300px;
        }

        @media (max-width: 768px) {
            .ab-profile-title {
                font-size: 26px;
            }
            .lk-faq-label {
                font-size: 16px;
            }
        }
        .ab-profile-content{
            background:#f7f9fc;
            border-radius:16px;
            padding:40px;
            border:1px solid #e9ecef;
        }
        .ab-profile-row{
            display:grid;
            grid-template-columns:220px 1fr;
            gap:16px;
            padding:14px 0;
            border-bottom:1px solid #e2e6ec;
        }
        .ab-profile-row:last-child{
            border-bottom:none;
        }
        .ab-profile-label{
            font-weight:600;
            color:#0f2540;
        }
        .ab-profile-value{
            color:#445470;
        }






        /* 响应式 */
        @media (max-width:1200px) {
            .ab-hero-container{
                flex-direction: column;
            }
            .ab-hero-img-box,.ab-hero-text-box{
                flex:0 0 100%;
                width:100%;
            }
            .ab-feature-grid {
                grid-template-columns: repeat(2,1fr);
            }
            .ab-feature-item:nth-child(2){
                border-right:none;
            }
            .ab-mv-container {
                grid-template-columns:1fr;
                gap:40px;
            }
            .ab-stat-container {
                grid-template-columns: repeat(2,1fr);
            }
            .ab-hero-title {
                font-size:34px;
            }
            .ab-advantage-grid{
                grid-template-columns: repeat(2,1fr);
            }
            .ab-workshop-container{
                flex-direction:column;
            }
            .ab-workshop-img-box,.ab-workshop-text-box{
                flex:0 0 100%;
                width:100%;
            }
            .ab-profile-row{
                grid-template-columns:1fr;
                gap:6px;
            }
        }
        @media (max-width:768px) {
            .ab-feature-grid {
                grid-template-columns:1fr;
            }
            .ab-feature-item {
                border-right:none;
                border-bottom:1px solid #e9ecef;
                padding:16px 8px;
            }
            .ab-feature-item:last-child{
                border-bottom:none;
            }
            .ab-stat-container {
                grid-template-columns:1fr;
            }
            .ab-stat-num {
                font-size:48px;
            }
            .ab-hero-buttons{
                flex-direction: column;
            }
            .ab-hero-wrap {
                padding:50px 16px;
            }
            .ab-feature-section,.ab-mv-wrap,.ab-advantage-wrap,.ab-workshop-wrap,.ab-profile-wrap {
                padding:45px 16px;
            }
            .ab-feature-container{
                padding:20px 16px;
            }
            .ab-advantage-grid{
                grid-template-columns:1fr;
            }
            .ab-advantage-title{
                font-size:28px;
            }
            .ab-workshop-title{
                font-size:26px;
            }
            .ab-profile-title{
                font-size:28px;
            }
            .ab-profile-content{
                padding:24px 18px;
            }
        }



.xg-wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== 1.全屏轮播模块 xg‑banner ========== */
        .xg-banner {
            width: 100%;
            height: 620px;
            position: relative;
            overflow: hidden;
        }
        .xg-banner-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.7s ease-in-out;
        }
        .xg-banner-item.active {
            opacity: 1;
        }
        .xg-banner-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        .xg-banner-mask {
            width:100%;
            height:100%;
            background: linear-gradient(90deg, rgba(11,32,64,0.82), rgba(11,32,64,0.45));
            display:flex;
            align-items:center;
        }
        .xg-banner-text {
			    margin-left: 280px;
            max-width:740px;
            color:#fff;
            
            padding-right:20px;
        }
        .xg-banner-text h1 {
            font-size:44px;
            font-weight:700;
            line-height:1.25;
            margin-bottom:18px;
        }
        .xg-banner-text p {
            font-size:17px;
            color:#c6d4e8;
            line-height:1.7;
            margin-bottom:32px;
        }
        .xg-banner-buttons {
            display:flex;
            gap:16px;
        }
        .xg-btn-blue {
            background:#155CC6;
            color:#fff;
            text-decoration:none;
            padding:13px 26px;
            border-radius:4px;
            font-weight:600;
            transition:0.24s;
            display:inline-flex;
            align-items:center;
            gap:8px;
        }
        .xg-btn-blue:hover {
            background:#0f49a3;
        }
        .xg-btn-border {
			
            border: 1px solid #007aff;
    color: #000000;
            text-decoration:none;
            padding:13px 26px;
            border-radius:4px;
            font-weight:600;
            transition:0.24s;
            display:inline-flex;
            align-items:center;
            gap:8px;
        }
        .xg-btn-border:hover {
            background:rgba(255,255,255,0.15);
        }
        /*轮播箭头*/
        .xg-banner-arrow {
            position:absolute;
            top:50%;
            transform:translateY(-50%);
            z-index:10;
            width:48px;
            height:48px;
            border-radius:50%;
            background:rgba(255,255,255,0.22);
            color:#fff;
            border:none;
            font-size:20px;
            cursor:pointer;
            transition:0.25s;
        }
        .xg-banner-arrow:hover {
            background:#155CC6;
        }
        .xg-arrow-prev {
            left:24px;
        }
        .xg-arrow-next {
            right:24px;
        }
        /*轮播小圆点*/
        .xg-banner-dots {
            position:absolute;
            bottom:26px;
            left:50%;
            transform:translateX(-50%);
            display:flex;
            gap:12px;
            z-index:10;
        }
        .xg-dot {
            width:12px;
            height:12px;
            border-radius:50%;
            background:rgba(255,255,255,0.35);
            border:none;
            cursor:pointer;
            transition:0.25s;
        }
        .xg-dot.active {
            background:#155CC6;
        }

        /* ========== 2.产品立体卡片模块 xg‑card‑section 悬浮上浮效果 ========== */
        .xg-card-section {
            padding:70px 0;
            background:#f8f9fb;
        }
        .xg-card-grid {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:26px;
        }
        .xg-card-item {
            background:#ffffff;
            border-radius:12px;
            padding:30px;
            display:flex;
            align-items:center;
            gap:24px;
            box-shadow:0 3px 14px rgba(0,0,0,0.07);
            transition: transform 0.32s ease, box-shadow 0.32s ease;
        }
        .xg-card-item:hover {
            transform: translateY(-8px);
            box-shadow:0 12px 28px rgba(0,0,0,0.11);
        }
        .xg-card-imgbox {
            flex:0 0 180px;
        }
        .xg-card-img {
            width:100%;
            height:auto;
        }
        .xg-card-text h4 {
            font-size:28px;
            font-weight:700;
            color:#0b2040;
            margin-bottom:12px;
        }
        .xg-card-text p {
            font-size:16px;
            color:#54637c;
            line-height:1.65;
            margin-bottom:14px;
        }
        .xg-card-link {
            font-size:18px;
            color:#155CC6;
            text-decoration:none;
            font-weight:600;
            display:inline-flex;
            align-items:center;
            gap:6px;
        }

        /* ==========3.左文右图模块 xg‑about‑section 图片hover放大 ========== */
        .xg-about-section {
            padding:80px 0;
        }
        .xg-about-row {
            display:grid;
            grid-template-columns: 1fr 1fr;
            gap:48px;
            align-items:center;
        }
        .xg-about-text small {
            font-size:15px;
            color:#155CC6;
            display:block;
            margin-bottom:10px;
        }
        .xg-about-text h2 {
            font-size:48px;
            color:#0b2040;
            margin-bottom:22px;
        }
        .xg-about-text p {
            font-size:16px;
            line-height:1.8;
            color:#445470;
            margin-bottom:30px;
        }
        .xg-about-buttons {
            display:flex;
            gap:18px;
        }
        .xg-img-wrap {
            border-radius:12px;
            overflow:hidden;
            box-shadow:0 4px 20px rgba(0,0,0,0.09);
        }
        .xg-img {
            width:100%;
            height:auto;
            transition: transform 0.4s ease;
        }
        .xg-img-wrap:hover .xg-img {
            transform: scale(1.06);
        }

        /* ==========4.tab切换+三列卡片模块 xg‑tab‑section ========== */
        .xg-tab-section {
            padding:80px 0;
            background:#f7f9fc;
        }
        .xg-tab-title-wrap {
            text-align:center;
            margin-bottom:40px;
        }
        .xg-tab-title {
            font-size:34px;
            color:#0b2040;
        }
        /*tab导航居中*/
        .xg-tab-nav {
            display:flex;
            justify-content:center;
            flex-wrap:wrap;
            gap:10px;
            margin-bottom:42px;
        }
        .xg-tab-btn {
            border:none;
            background:transparent;
            padding:11px 22px;
            font-size:18px;
            color:#445470;
            cursor:pointer;
            border-radius:8px;
            transition:0.25s;
        }
        .xg-tab-btn.active {
			    font-size: 18px;
            background-color:#073f93;
            color:#ffffff !important;
        }
        .xg-tab-btn:hover:not(.active) {
            background-color:#e8edf7;
        }
        /*三列卡片容器 一行3个*/
        .xg-three-card-wrap {
            display:grid;
            grid-template-columns: repeat(3,1fr);
            gap:26px;
        }
        .xg-three-card-item {
            background:#ffffff;
            border-radius:12px;
            padding:28px;
            box-shadow:0 3px 14px rgba(0,0,0,0.06);
            transition:transform 0.3s ease, box-shadow 0.3s ease;
        }
        .xg-three-card-item:hover {
            transform: translateY(-6px);
            box-shadow:0 10px 24px rgba(0,0,0,0.10);
        }
        .xg-three-card-item h4 {
            font-size:20px;
            color:#0b2040;
            margin-bottom:14px;
        }
        .xg-three-card-item p {
            font-size:15px;
            line-height:1.7;
            color:#54637c;
            margin-bottom:18px;
        }
        .xg-three-card-link {
            font-size:14px;
            color:#155CC6;
            text-decoration:none;
            font-weight:600;
            display:inline-flex;
            align-items:center;
            gap:6px;
        }
        .xg-tab-panel {
            display:none;
        }
        .xg-tab-panel.active {
            display:block;
        }

        /* ==========响应式适配 ========== */
        @media(max-width:992px){
            .xg-card-grid {
                grid-template-columns:1fr;
            }
            .xg-about-row {
                grid-template-columns:1fr;
            }
            .xg-three-card-wrap {
                grid-template-columns: repeat(2,1fr);
            }
        }
        @media(max-width:768px){
            .xg-banner{
                height: 680px;
            }
            .xg-banner-text {
                padding:0 20px;
            }
            .xg-banner-text h1 {
                font-size:32px;
            }
            .xg-banner-buttons {
                flex-direction:column;
            }
            .xg-three-card-wrap {
                grid-template-columns:1fr;
            }
            .xg-card-item {
                flex-direction:column;
                text-align:center;
            }
        }

.xg-three-card-item {
    overflow: hidden;
}
.xg-three-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 16px;
}
.xg-three-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.xg-three-card-item:hover .xg-three-card-img img {
    transform: scale(1.05);
}


/*
.xg-banner-wrap{
    position: relative;
    overflow: hidden;
}
*/
/*
.xg-banner-item{
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}
.xg-banner-item.active{
    opacity: 1;
    visibility: visible;
    position: relative;
}
*/



/* ==========Our Advantages 优势模块 ========== */
.xg-advantage-section{
    padding:80px 0;
}
.xg-advantage-head{
    text-align:center;
    margin-bottom:50px;
}
.xg-advantage-head small{
    color:#155CC6;
    font-size:15px;
    display:block;
    margin-bottom:10px;
}
.xg-advantage-head h2{
    font-size:34px;
    color:#0b2040;
}
.xg-advantage-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
.xg-advantage-item{
    text-align:center;
    padding:30px 20px;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 3px 12px rgba(0,0,0,0.06);
    transition:0.3s;
}
.xg-advantage-item:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 22px rgba(0,0,0,0.09);
}
.xg-advantage-icon{
    font-size:42px;
    color:#155CC6;
    margin-bottom:16px;
}
.xg-advantage-item h4{
    font-size:18px;
    color:#0b2040;
    margin-bottom:12px;
}
.xg-advantage-item p{
    font-size:16px;
    color:#54637c;
    line-height:1.7;
}

/*响应式*/
@media(max-width:992px){
    .xg-advantage-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .xg-advantage-grid{
        grid-template-columns:1fr;
    }
}



.lk-contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.lk-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.lk-contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  align-items: stretch;
}
.lk-contact-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lk-contact-title h3 {
  font-size: 42px;
  color: #0b2040;
  margin-bottom: 12px;
}
.lk-contact-title p {
  color: #54637c;
  margin-bottom: 48px;
  line-height: 1.7;
  font-size: 20px;
}
.lk-info-item {
  margin-bottom: 36px;
}
.lk-info-item h4 {
  font-size: 24px;
  color: #0b2040;
  margin-bottom: 8px;
  font-weight: 600;
}
.lk-info-item span {
  font-size: 20px;
  color: #54637c;
  line-height: 1.6;
}

.lk-form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.lk-form-item {
  margin-bottom: 22px;
}
.lk-form-item input,
.lk-form-item textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #dde2ec;
  border-radius: 6px;
  font-size: 20px;
  background: #fff;
  color: #223348;
}
.lk-form-item textarea {
  min-height: 220px;
  resize: none;
}
.lk-submit-btn {
  background: #155CC6;
  color: #fff;
  border: none;
  padding: 18px 44px;
  border-radius: 6px;
  font-weight: 600;
  font-size:20px;
  cursor: pointer;
  transition: 0.24s;
}
.lk-submit-btn:hover {
  background: #0f49a3;
}

@media(max-width:992px) {
  .lk-contact-card {
    grid-template-columns: 1fr;
    gap:30px;
  }
  .lk-contact-right {
    margin-top: 0; /* 移动端取消上边距 */
  }
  .lk-contact-title h3 {
    font-size:32px;
  }
}
@media(max-width:768px) {
  .lk-form-row-two {
    grid-template-columns: 1fr;
  }
  .lk-contact-card {
    padding: 24px 20px;
  }
  .lk-contact-title h3 {
    font-size:28px;
  }
  .lk-contact-title p{
    font-size:16px;
  }
  .lk-info-item h4{
    font-size:20px;
  }
  .lk-info-item span{
    font-size:16px;
  }
  .lk-form-item input,
  .lk-form-item textarea{
    font-size:16px;
    padding:14px 16px;
  }
  .lk-submit-btn{
    font-size:16px;
    padding:14px 30px;
  }
}
