/*

Theme Name: PAUWAY   

Theme URI: 这里是主题下载地址

Description: 这里填写主题描述

Author: VAMESTR

Author URI: 个人地址

Version: 1.0

Tags: tag1，tag2.....

*/














body {
    background-color: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'HarmonyOS_Sans_Bold';
    src: url('<?php bloginfo('template_directory'); ?>/static/font/HarmonyOS_Sans_Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS_Sans_Regular';
    src: url('<?php bloginfo('template_directory'); ?>/static/font/HarmonyOS_Sans_Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS_Sans_Thin';
    src: url('<?php bloginfo('template_directory'); ?>/static/font/HarmonyOS_Sans_Thin.ttf') format('truetype');
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "HarmonyOS_Sans_Bold", sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    font-family: "HarmonyOS_Sans_Regular", sans-serif;
}














@media (min-width: 1921px) {

    .mt-80 {
        margin-top: 120px;
    }

    .mb-80 {
        margin-bottom: 120px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .plr-300 {
        padding-left: 300px;
        padding-right: 300px;
    }

    .mlr-300 {
        margin-left: 300px;
        margin-right: 300px;
    }

    .btn1 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #F39800;
        color: #fff;
    }

    .btn1:hover {
        background-color: #fff;
        color: #F39800;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: 1px solid #fff;
        color: #fff;
    }

    .btn2:hover {
        background-color: #1E2380;
        border: 1px solid #1E2380;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn3 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #1E2380;
        color: #fff;
    }

    .btn3:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .bg-gray {
        background-color: #F9F9F9;
    }

    .mtb-20 {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .text-right {
        text-align: right;
    }

    .white {
        color: #fff;
    }

    .black {
        color: #000;
    }











    /* 网站导航栏 */
    .header {
        padding: 20px 30px;
        background-color: white;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 9;
        transition: all 0.3s ease;
    }

    .header.scrolled {
        background-color: rgba(255, 255, 255, 32%);
        backdrop-filter: blur(40px);
    }

    .header-logo img {
        width: 220px;
    }

    .header-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu li {
        margin: 0 15px;
        position: relative;
    }

    .header-menu li a {
        color: #000;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 0;
        display: block;
        transition: color 0.3s ease;
    }

    .header-menu li a:hover {
        color: #F39800;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .header-menu li.active a {
        position: relative;
        color: #1E2380;
        text-decoration: none;
    }
    
    .header-menu-drop.active a::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }
    
    .solution-dropdown-item.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    .dropdown.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    /* Dropdown Menu Styles */
    .header-menu {
        position: relative;
    }

    .header-menu .dropdown {
        position: static;
    }

    .header-menu .dropdown-menu {
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        display: flex;
        padding: 40px 30px 30px 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-menu .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .dropdown-container {
        flex: 1;
        margin: 0 10px;
    }

    .header-menu .dropdown-category {
        color: #000;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px 0;
    }

    .header-menu .dropdown-container ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .dropdown-container li {
        margin: 0;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .dropdown-container li a {
        color: var(--nav-blue);
        padding: 8px 0;
        font-size: 13px;
        text-transform: none;
        transition: color 0.3s ease;
        display: block;
    }

    .header-menu .dropdown-container li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* Solution Dropdown Menu Styles */
    .header-menu .solution-dropdown-item {
        position: relative;
    }

    .header-menu .solution-menu {
        position: absolute;
        top: 130%;
        left: -100%;
        width: 280px;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        padding: 30px;
    }

    .header-menu .solution-dropdown-item:hover .solution-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .solution-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .solution-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .solution-menu li a {
        color: #000;
        padding: 10px 0;
        font-size: 13px;
        text-transform: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: block;
    }

    .header-menu .solution-menu li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .header-menu .dropdown-toggle::after,
    .header-menu .solution-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .header-menu .caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    /* Header Button Styles */
    .header-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 46.4px;
    }

    .header-btn i {
        font-size: 1.2rem;
    }

    .header-btn-search,
    .header-btn-language {
        margin-left: 20px;
        position: relative;
    }

    .header-btn-search .search-toggle {
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-toggle:hover {
        color: #F39800;
    }

    .header-btn-language a {
        color: #000;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .header-btn-language a:hover {
        color: #F39800;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    /* Search Box Styles */
    .header-btn-search .search-box {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 300px;
        border-radius: 0;
        border: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-btn-search .search-box.active {
        opacity: 1;
        visibility: visible;
    }

    .header-btn-search .search-box form {
        display: flex;
        align-items: center;
        background-color: #f9f9f9;
        border-radius: 25px;
        overflow: hidden;
    }

    .header-btn-search .search-box input {
        flex: 1;
        border: none;
        padding: 0 20px;
        background: none;
        font-size: 14px;
        outline: none;
    }

    .header-btn-search .search-box button {
        background: none;
        border: none;
        color: var(--nav-blue);
        font-size: 16px;
        cursor: pointer;
        padding: 5px 10px;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-box button:hover {
        color: #F39800;
    }

    /* 网站导航栏 */














    /* 滚动大图轮播 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 1200px;
        overflow: hidden;
    }

    .swiper-slide-content {
        width: 100%;
        height: 1000px;
        overflow: hidden;
    }

    .swiper-slide-content-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        display: flex;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Slider Image Animation */
    @keyframes zoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.2);
        }
    }

    .swiper-slide-content-bg {
        overflow: hidden;
        position: relative;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: auto;
        animation: zoomIn 10s ease infinite alternate;
    }

    .swiper-slide-content-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e23804f;
        z-index: 1;
    }

    .swiper-slide-content-text {
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        height: 1000px;
        color: #fff;
        z-index: 2;
        width: 70%;
    }

    .swiper-slide-content-text h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.2;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
    }

    .swiper-slide-content-text p {
        font-size: 3.5rem;
        margin-bottom: 40px;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        text-transform: none;
        text-transform: uppercase;
    }

    .swiper-slide-content-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .slider-product {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
    }

    .slider-product-box {
        width: 100%;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, .5);
        backdrop-filter: blur(40px);
    }

    .slider-product-category {
        width: 85%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .slider-product-category-item {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        padding: 30px;
        text-align: center;
    }

    .slider-product-category-item-img a {
        display: flex;
        justify-content: center;
    }

    .slider-product-category-item-img img {
        width: 70%;
    }

    .slider-product-category-item:hover .slider-product-category-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .slider-product-category-item a {
        font-size: 1.2rem;
        color: #000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .slider-product-category-item:hover a {
        color: #1E2380;
        transition: color 0.3s ease;
    }

    .slider-product-btn {
        width: 25%;
    }

    .slider-product-btn button {
        background: #F39800;
        border: none;
        width: 100%;
        height: 260px;
        font-size: 3rem;
        color: #fff;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .slider-product-btn button:hover {
        background-color: #1E2380;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease;
    }


    /* 滚动大图轮播 */






    /* Quote Modal Styles */
    .quote-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(40px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .quote-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .quote-modal-content {
        background-color: #ffffffb5;
        backdrop-filter: blur(40px);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        animation: slideIn 0.3s ease;
        overflow: hidden;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .quote-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .quote-modal-header h3 {
        color: var(--nav-blue);
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

    .quote-modal-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--muted);
        transition: color 0.3s ease;
    }

    .quote-modal-close:hover {
        color: var(--nav-blue);
    }

    .quote-modal-body {
        padding: 20px;
    }

    .quote-form .form-group {
        margin-bottom: 20px;
    }

    .quote-form .form-group span {
        color: red;
    }

    .quote-form label {
        display: block;
        margin-bottom: 8px;
        color: var(--nav-blue);
        font-size: 14px;
        font-weight: 500;
    }

    .quote-form input,
    .quote-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        outline: none;
        border-color: var(--nav-blue);
    }

    .quote-form textarea {
        resize: vertical;
    }

    .form-group button {
        border: none;
    }

    .quote-form .btn1 {
        width: 100%;
        text-align: center;
    }

    /* 留言表单 */







    /* 解决方案 */
    .solution-area-title {
        text-align: center;
    }

    .solution-area-title p {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .solution-area-content {
        margin-top: 30px;
    }

    .solution-area-content-item {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
    }

    .solution-area-content-item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .solution-area-content-item:hover .solution-area-content-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .solution-area-content-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e238057;
        z-index: 1;
    }

    .solution-area-content-item:hover .solution-area-content-item-mask {
        background-color: #1e2380eb;
        transition: background-color 0.3s ease;
    }

    .solution-area-content-item-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .solution-area-content-item-text a {
        text-decoration: none;
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .solution-area-content-item:hover .solution-area-content-item-text a {
        color: #F39800;
        transition: color 0.3s ease;
    }

    /* 解决方案 */















    /* 新闻资讯 */
    .latest-article {
        margin-top: 30px;
    }

    .latest-article-hot {
        width: 100%;
        background-color: #F9F9F9;
    }

    .latest-article-hot-img {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .latest-article-hot-img img {
        width: 100%;
        object-fit: cover;
    }

    .latest-article-hot:hover .latest-article-hot-img img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    .latest-article-hot-text {
        padding: 40px 40px 60px 40px;
    }

    .latest-article-hot:hover .latest-article-hot-text {
        background-color: #1E2380;
        transition: background-color 0.5s ease;
        color: #fff;
    }

    .latest-article-hot-text-title a {
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        transition: color 0.5s ease;
    }

    .latest-article-hot:hover .latest-article-hot-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-title a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-date {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .latest-article-hot-text-date p {
        color: #818181;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-hot-text-content {
        margin-bottom: 40px;
    }

    .latest-article-hot-text-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .latest-article-list-item {
        display: flex;
        background-color: #f8f8f8;
    }

    .latest-article-list-item:hover {
        background-color: #1E2380;
        color: #fff;
        transition: ease-in-out 0.5s ease;
    }

    .latest-article-list-item-date {
        width: 30%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: #1E2380;
        color: #fff;
    }

    .latest-article-list-item-date-day h1 {
        font-size: 3.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .latest-article-list-item-text {
        padding: 30px;
        width: 70%;
    }

    .latest-article-list-item-text-title a {
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .latest-article-list-item:hover .latest-article-list-item-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-list-item-text-content {
        margin-top: 10px;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 新闻资讯 */














    /* 跳转链接 */
    .links-area-item {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item a {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item img {
        width: 100%;
        object-fit: cover;
    }

    .links-area-item:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 跳转链接 */











    /* 网站底部 */
    .footer-area {
        background-color: #1E2380;
    }

    .footer-area-box-quote-btn {
        margin-top: 50px;
        width: 100%;
    }

    .footer-area-box-quote-btn a {
        width: 60%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F39800;
        color: #fff;
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
    }

    .footer-area-box-quote-btn a:hover {
        background-color: #fff;
        color: #F39800;
        transition: ease 0.5s ease;
    }

    .footer-area-box-menu-item-title {
        color: #fff;
    }

    .footer-area-box-menu-item-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-area-box-menu-item-content a {
        color: #fff;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
        text-transform: uppercase;
    }

    .footer-area-box-menu-item-content a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright {
        padding: 20px 300px;
        background-color: #272727;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-area-copyright-social {
        width: 25%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-area-copyright-social a {
        text-decoration: none;
    }

    .footer-area-copyright-social i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-area-copyright-social a:hover i {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-text {
        display: flex;
        gap: 20px;
        width: 50%;
        justify-content: center;
    }

    .footer-area-copyright-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #707070;
    }

    .footer-area-copyright-text a {
        color: #707070;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
    }

    .footer-area-copyright-text a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-logo {
        width: 25%;
    }

    .footer-area-copyright-logo a {
        display: flex;
        justify-content: flex-end;
    }

    .footer-area-copyright-logo img {
        width: 160px;
        object-fit: cover;
    }

    /* 网站底部 */













    /* 内页Banner */
    .page-banner {
        position: relative;
        width: 100%;
        height: 900px;
        overflow: hidden;
    }

    .page-banner-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        display: flex;
        justify-content: center;
    }

    .page-banner-bg img {
        animation: zoomIn 10s ease infinite alternate;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .page-banner-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 300px;
    }

    .page-banner-content span {
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        color: #fff;
        background-color: #1E2380;
        padding: 8px 15px;
        border-radius: 10px;
        width: 150px;
    }

    .page-banner-content h1 {
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        font-size: 3.2rem;
        color: #fff;
        font-weight: 600;
        margin: 10px 0;
    }

    .page-banner-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #fff;
        font-size: 1.5rem;
    }

    .page-banner-content-btn {
        margin-top: 40px;
    }

    /* 内页Banner */














    /* 博威故事 */
    .about-pauway-img img {
        width: 100%;
        object-fit: cover;
    }

    .about-pauway-content2 {
        background-color: #F9F9F9;
    }

    .about-pauway-content {
        display: flex;
        justify-content: space-between;
    }

    .about-pauway-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        width: 49%;
    }

    .story-area-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .story-area-title-line {
        border-bottom: 4px solid #F39800;
        width: 100px;
        margin: 0 auto;
    }

    .story-area-item-content {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        padding: 60px;
    }

    .story-area-item-content h5 {
        margin: 10px 0;
    }

    .story-area-item-content-btn {
        margin-top: 40px;
    }

    .story-area-item-img {
        width: 100%;
        height: 400px;
        display: flex;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .story-area-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .story-area-item-img:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 博威故事 */





















    /* 博威服务 */
    .icare-tab {
        margin-top: 40px;
    }

    .icare-tab-buttons {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .icare-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .icare-tab-btn:hover {
        color: var(--nav-blue);
    }

    .icare-tab-btn.active {
        color: #1E2380;
    }

    .icare-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #1E2380;
    }

    .icare-tab-content {
        padding: 20px 0;
    }

    .icare-tab-pane {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .icare-tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .icare-tab-pane-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .icare-tab-pane-text {
        width: 49%;
        padding: 60px;
    }

    .icare-tab-pane-text span {
        padding: 5px 12px;
        border-radius: 10px;
        background-color: #1E2380;
        color: #fff;
    }

    .icare-tab-pane-text h1 {
        margin-top: 10px;
    }

    .icare-tab-pane-btn {
        margin-top: 40px;
    }

    .icare-tab-pane-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .icare-tab-pane-img {
        width: 50%;
    }

    .icare-tab-pane-img img {
        width: 100%;
        object-fit: cover;
    }

    /* 博威服务 */















    /* 合作伙伴 */
    .pauway-partner p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 合作伙伴 */












    /* 里程碑 */
    .milestone-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .milestone-content {
        margin-top: 50px;
    }

    .milestone-item-box {
        width: 45%;
        height: 200px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .milestone-item-content {
        width: 60%;
        height: 200px;
        padding: 40px;
        background-color: #F9F9F9;
        overflow: hidden;
    }

    .milestone-item-img {
        width: 40%;
        height: 200px;
        display: flex;
        overflow: hidden;
    }

    .milestone-item-img img {
        width: 100%;
    }

    .milestone-item-circle {
        width: 10%;
        display: flex;
        justify-content: center;
    }

    .milestone-item-circle-item {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #F9F9F9;
    }

    .milestone-item-none {
        width: 45%;
    }

    /* 里程碑 */














    /* 联系我们 */
    .contact-support-item {
        display: flex;
        gap: 20px;
        padding: 40px 0;
    }

    .contact-support-item-icon i {
        font-size: 4rem;
    }

    .contact-info-form {
        padding: 50px;
        border: 1px solid #dfdfdf;
        border-radius: 15px;
    }

    .contact-info-form form {
        margin-top: 30px;
    }

    .contact-info-form-item {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-info-form-item label {
        width: 20%;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .contact-info-form-item label span {
        color: red;
    }

    .contact-info-form-item input {
        width: 80%;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }

    .contact-info-form-item textarea {
        width: 80%;
        height: 100px;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }


    .contact-info-form-btn {
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-info-form-btn button {
        padding: 10px 20px;
        border: none;
        background-color: #1E2380;
        color: #fff;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-info-form-btn button:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    .contact-info-box-item {
        margin-top: 30px;
    }

    /* 联系我们页面 */










    /* 荣誉资质 */
    .cert-content {
        margin-top: 50px;
    }

    .honor {
        padding: 100px 0;
    }

    .honor-item {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 3D容器 */
    .image-container {
        position: relative;
        width: 300px;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    /* 单个图片样式 */
    .image-item {
        position: absolute;
        width: 100%;
        backface-visibility: hidden;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.5s ease;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 控制按钮 */
    .control-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #1E2380;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .control-btn:hover {
        background-color: #F39800;
        transition: all 0.3s ease;
    }

    .prev-btn {
        left: 5%;
    }

    .next-btn {
        right: 5%;
    }

    /* 荣誉资质 */













    /* 下载中心 */
    .download-area-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .download-area-item-img {
        width: 50%;
        height: 400px;
        overflow: hidden;
        display: flex;
    }

    .download-area-item-img img {
        width: 100%;
        height: auto;
    }

    .download-area-item:hover .download-area-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .download-area-item-content {
        width: 50%;
        height: 100%;
        padding: 60px;
        background-color: #F9F9F9;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .download-area-item:hover .download-area-item-content {
        background-color: #1E2380;
        color: #fff;
        transition: all 0.3s ease;
    }

    .download-area-item-content-btn {
        margin-top: 40px;
    }

    /* 下载中心 */














    /* 新闻列表 */
    .article-hot-box {
        display: flex;
        justify-content: space-between;
        padding: 40px;
        width: 100%;
        border-radius: 15px;
        border: 1px solid #dfdfdf;
    }

    .article-hot-img {
        width: 48%;
    }

    .article-hot-img a {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-hot-img img {
        width: 100%;
        height: auto;
    }

    .article-hot-box:hover .article-hot-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-hot-content {
        width: 48%;
        padding-top: 20px;
    }

    .article-hot-content span {
        color: #1E2380;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
    }

    .article-hot-content-title {
        margin: 10px 0;
    }

    .article-hot-content-title a {
        font-size: 1.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-hot-content-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-hot-content-btn {
        margin-top: 40px;
    }

    .article-list-item {
        margin-bottom: 60px;
    }

    .article-list-item-line {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 40px;
    }

    .article-list-item-img {
        width: 100%;
    }

    .article-list-item-img a {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-list-item-img img {
        width: 100%;
    }

    .article-list-item:hover .article-list-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-list-item-title {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-title a {
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-content {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 新闻列表 */













    /* 新闻详情 */
    .article-content-detail h2 {
        margin-bottom: 20px;
    }

    .article-content-text img {
        width: 100%;
        margin-bottom: 50px;
    }

    .sidebar-content-item {
        margin-bottom: 40px;
    }

    .sidebar-content-item-title {
        padding: 15px 20px;
        background-color: #1E2380;
    }

    .sidebar-content-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .sidebar-content-item-content {
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
    }

    .sidebar-content-item-content a {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #e9e9e9;
    }

    .sidebar-content-item-content a:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 新闻详情 */












    /* 研发成果 */
    .rd-area-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .rd-area-item img {
        width: 100%;
        filter: blur(1px);
    }

    /* 研发成果 */















    /* 行业应用 */

    /* WebKit 浏览器隐藏滚动条 */
    .solution-area::-webkit-scrollbar {
        display: none;
    }

    /* 每一屏设置为视口高度，启用 snap 对齐 */
    .solution-area-item {
        width: 100%;
        height: 100vh;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .solution-area-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        display: flex;
        justify-content: center;
    }

    .solution-area-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 30%);
        z-index: -1;
    }

    .solution-area-item-content-box {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .solution-area-item-content-box span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .solution-area-item-content-box-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 3rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .solution-area-item-content-box-title:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .solution-area-item-content-box p {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 1.2rem;
        color: #fff;
    }

    .solution-area-item-content-box-btn {
        margin-top: 40px;
    }

    .solution-area-item-content-box-tag {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    /* 行业应用 */















    /* 应用详情 */
    .solution-details-img {
        width: 100%;
        overflow: hidden;
        display: flex;
    }

    .solution-details-content-btn {
        margin-top: 40px;
    }

    .solution-details-img img {
        width: 100%;
    }

    .related-products-content {
        margin-top: 30px;
    }

    .related-products-content-item {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item a {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item img {
        width: 100%;
    }

    .related-products-content-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content {
        margin-top: 30px;
    }

    .latest-news-content-item {
        border: 1px solid #e9e9e9;
    }

    .latest-news-content-item-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .latest-news-content-item-img a {
        width: 100%;
        height: 250px;
        overflow: hidden;
        display: flex;
    }

    .latest-news-content-item-img img {
        width: 100%;
    }

    .latest-news-content-item:hover .latest-news-content-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content-item-text {
        padding: 40px;
    }

    .latest-news-content-item-text span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .latest-news-content-item-text-title {
        margin: 20px 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }

    .latest-news-content-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.2rem;
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-date {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 0.8rem;
        color: #808080;
    }

    .latest-news-content-item-text-line {
        margin: 20px 0;
        width: 100%;
        height: 1px;
        background-color: #e9e9e9;
    }

    .latest-news-content-item-text-btn a {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-btn a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* 应用详情 */














    /* 产品列表 */
    .pro-list-content-text-app {
        margin-top: 30px;
    }

    .pro-list-content-box {
        margin-top: 50px;
    }

    .pro-list-content-box-item {
        margin-bottom: 30px;
        display: flex;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    }

    .pro-list-content-box-item-img {
        width: 20%;
        padding: 30px;
    }

    .pro-list-content-box-item-img a {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .pro-list-content-box-item-img img {
        width: 100%;
    }

    .pro-list-content-box-item-text {
        width: 80%;
        padding: 40px;
    }

    .pro-list-content-box-item-text-title {
        margin-bottom: 10px;
    }

    .pro-list-content-box-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.3rem;
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item {
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pro-list-content-box-item-text-no-item a {
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

























    /* 产品详情 */
    .pro-details-content-img {
        width: 100%;
        border: 1px solid #e9e9e9;
    }

    .pro-details-content-text h5 {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #F39800;
    }

    .pro-details-content-text-btn {
        margin-top: 40px;
    }

    .pro-details-content-img img {
        width: 100%;
    }

    .pro-details-content-tab {
        margin-top: 40px;
    }

    .pro-tab-buttons {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        gap: 1px;
    }

    .pro-tab-btn {
        padding: 15px 30px;
        width: 120px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        background-color: #F9F9F9;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'HarmonyOS_Sans_Bold';
    }

    .pro-tab-btn:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .pro-tab-btn.active {
        background-color: #1E2380;
        color: #fff;
    }

    .pro-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--nav-blue);
    }

    .pro-tab-pane {
        display: none;
    }

    .pro-tab-pane.active {
        display: block;
    }

    .pro-tab-pane table {
        width: 100%;
    }

    .pro-tab-pane table tr {
        border-bottom: 1px solid #e0e0e0;
    }

    .pro-tab-pane table tr td {
        width: 20%;
        padding: 5px;
        text-align: center;
    }

    .pro-tab-pane table tr td h6 {
        margin-bottom: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pro-tab-pane h3 {
        color: var(--nav-blue);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pro-tab-pane p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* 产品详情 */
}











































@media (min-width: 1641px) and (max-width: 1920px) {
    .mt-80 {
        margin-top: 120px;
    }

    .mb-80 {
        margin-bottom: 120px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .plr-300 {
        padding-left: 300px;
        padding-right: 300px;
    }

    .mlr-300 {
        margin-left: 300px;
        margin-right: 300px;
    }

    .btn1 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #F39800;
        color: #fff;
    }

    .btn1:hover {
        background-color: #fff;
        color: #F39800;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: 1px solid #fff;
        color: #fff;
    }

    .btn2:hover {
        background-color: #1E2380;
        border: 1px solid #1E2380;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn3 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #1E2380;
        color: #fff;
    }

    .btn3:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .bg-gray {
        background-color: #F9F9F9;
    }

    .mtb-20 {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .text-right {
        text-align: right;
    }

    .white {
        color: #fff;
    }

    .black {
        color: #000;
    }











    /* 网站导航栏 */
    .header {
        padding: 20px 30px;
        background-color: white;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 9;
        transition: all 0.3s ease;
    }

    .header.scrolled {
        background-color: rgba(255, 255, 255, 32%);
        backdrop-filter: blur(40px);
    }

    .header-logo img {
        width: 220px;
    }

    .header-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu li {
        margin: 0 15px;
        position: relative;
    }

    .header-menu li a {
        color: #000;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 0;
        display: block;
        transition: color 0.3s ease;
    }

    .header-menu li a:hover {
        color: #F39800;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .header-menu li.active a {
        position: relative;
        color: #1E2380;
        text-decoration: none;
    }
    
    .header-menu-drop.active a::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }
    
    .solution-dropdown-item.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    .dropdown.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    /* Dropdown Menu Styles */
    .header-menu {
        position: relative;
    }

    .header-menu .dropdown {
        position: static;
    }

    .header-menu .dropdown-menu {
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        display: flex;
        padding: 40px 30px 30px 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-menu .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .dropdown-container {
        flex: 1;
        margin: 0 10px;
    }

    .header-menu .dropdown-category {
        color: #000;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px 0;
    }

    .header-menu .dropdown-container ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .dropdown-container li {
        margin: 0;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .dropdown-container li a {
        color: var(--nav-blue);
        padding: 8px 0;
        font-size: 13px;
        text-transform: none;
        transition: color 0.3s ease;
        display: block;
    }

    .header-menu .dropdown-container li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* Solution Dropdown Menu Styles */
    .header-menu .solution-dropdown-item {
        position: relative;
    }

    .header-menu .solution-menu {
        position: absolute;
        top: 130%;
        left: -100%;
        width: 280px;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        padding: 30px;
    }

    .header-menu .solution-dropdown-item:hover .solution-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .solution-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .solution-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .solution-menu li a {
        color: #000;
        padding: 10px 0;
        font-size: 13px;
        text-transform: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: block;
    }

    .header-menu .solution-menu li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .header-menu .dropdown-toggle::after,
    .header-menu .solution-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .header-menu .caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    /* Header Button Styles */
    .header-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 46.4px;
    }

    .header-btn i {
        font-size: 1.2rem;
    }

    .header-btn-search,
    .header-btn-language {
        margin-left: 20px;
        position: relative;
    }

    .header-btn-search .search-toggle {
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-toggle:hover {
        color: #F39800;
    }

    .header-btn-language a {
        color: #000;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .header-btn-language a:hover {
        color: #F39800;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    /* Search Box Styles */
    .header-btn-search .search-box {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 300px;
        border-radius: 0;
        border: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-btn-search .search-box.active {
        opacity: 1;
        visibility: visible;
    }

    .header-btn-search .search-box form {
        display: flex;
        align-items: center;
        background-color: #f9f9f9;
        border-radius: 25px;
        overflow: hidden;
    }

    .header-btn-search .search-box input {
        flex: 1;
        border: none;
        padding: 0 20px;
        background: none;
        font-size: 14px;
        outline: none;
    }

    .header-btn-search .search-box button {
        background: none;
        border: none;
        color: var(--nav-blue);
        font-size: 16px;
        cursor: pointer;
        padding: 5px 10px;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-box button:hover {
        color: #F39800;
    }

    /* 网站导航栏 */














    /* 滚动大图轮播 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 1200px;
        overflow: hidden;
    }

    .swiper-slide-content {
        width: 100%;
        height: 1000px;
        overflow: hidden;
    }

    .swiper-slide-content-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        display: flex;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Slider Image Animation */
    @keyframes zoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.2);
        }
    }

    .swiper-slide-content-bg {
        overflow: hidden;
        position: relative;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: auto;
        animation: zoomIn 10s ease infinite alternate;
    }

    .swiper-slide-content-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e23804f;
        z-index: 1;
    }

    .swiper-slide-content-text {
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        height: 1000px;
        color: #fff;
        z-index: 2;
        width: 70%;
    }

    .swiper-slide-content-text h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.2;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
    }

    .swiper-slide-content-text p {
        font-size: 3.5rem;
        margin-bottom: 40px;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        text-transform: none;
        text-transform: uppercase;
    }

    .swiper-slide-content-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .slider-product {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
    }

    .slider-product-box {
        width: 100%;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, .5);
        backdrop-filter: blur(40px);
    }

    .slider-product-category {
        width: 85%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .slider-product-category-item {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        padding: 30px;
        text-align: center;
    }

    .slider-product-category-item-img a {
        display: flex;
        justify-content: center;
    }

    .slider-product-category-item-img img {
        width: 70%;
    }

    .slider-product-category-item:hover .slider-product-category-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .slider-product-category-item a {
        font-size: 1.2rem;
        color: #000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .slider-product-category-item:hover a {
        color: #1E2380;
        transition: color 0.3s ease;
    }

    .slider-product-btn {
        width: 25%;
    }

    .slider-product-btn button {
        background: #F39800;
        border: none;
        width: 100%;
        height: 260px;
        font-size: 3rem;
        color: #fff;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .slider-product-btn button:hover {
        background-color: #1E2380;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease;
    }


    /* 滚动大图轮播 */






    /* Quote Modal Styles */
    .quote-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(40px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .quote-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .quote-modal-content {
        background-color: #ffffffb5;
        backdrop-filter: blur(40px);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        animation: slideIn 0.3s ease;
        overflow: hidden;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .quote-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .quote-modal-header h3 {
        color: var(--nav-blue);
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

    .quote-modal-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--muted);
        transition: color 0.3s ease;
    }

    .quote-modal-close:hover {
        color: var(--nav-blue);
    }

    .quote-modal-body {
        padding: 20px;
    }

    .quote-form .form-group {
        margin-bottom: 20px;
    }

    .quote-form .form-group span {
        color: red;
    }

    .quote-form label {
        display: block;
        margin-bottom: 8px;
        color: var(--nav-blue);
        font-size: 14px;
        font-weight: 500;
    }

    .quote-form input,
    .quote-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        outline: none;
        border-color: var(--nav-blue);
    }

    .quote-form textarea {
        resize: vertical;
    }

    .form-group button {
        border: none;
    }

    .quote-form .btn1 {
        width: 100%;
        text-align: center;
    }

    /* 留言表单 */







    /* 解决方案 */
    .solution-area-title {
        text-align: center;
    }

    .solution-area-title p {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .solution-area-content {
        margin-top: 30px;
    }

    .solution-area-content-item {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
    }

    .solution-area-content-item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .solution-area-content-item:hover .solution-area-content-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .solution-area-content-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e238057;
        z-index: 1;
    }

    .solution-area-content-item:hover .solution-area-content-item-mask {
        background-color: #1e2380eb;
        transition: background-color 0.3s ease;
    }

    .solution-area-content-item-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .solution-area-content-item-text a {
        text-decoration: none;
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .solution-area-content-item:hover .solution-area-content-item-text a {
        color: #F39800;
        transition: color 0.3s ease;
    }

    /* 解决方案 */















    /* 新闻资讯 */
    .latest-article {
        margin-top: 30px;
    }

    .latest-article-hot {
        width: 100%;
        background-color: #F9F9F9;
    }

    .latest-article-hot-img {
        width: 100%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .latest-article-hot-img img {
        width: 100%;
        object-fit: cover;
    }

    .latest-article-hot:hover .latest-article-hot-img img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    .latest-article-hot-text {
        padding: 30px 30px 50px 30px;
    }

    .latest-article-hot:hover .latest-article-hot-text {
        background-color: #1E2380;
        transition: background-color 0.5s ease;
        color: #fff;
    }

    .latest-article-hot-text-title a {
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        transition: color 0.5s ease;
    }

    .latest-article-hot:hover .latest-article-hot-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-title a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-date {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .latest-article-hot-text-date p {
        color: #818181;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-hot-text-content {
        margin-bottom: 40px;
    }

    .latest-article-hot-text-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .latest-article-list-item {
        display: flex;
        background-color: #f8f8f8;
    }

    .latest-article-list-item:hover {
        background-color: #1E2380;
        color: #fff;
        transition: ease-in-out 0.5s ease;
    }

    .latest-article-list-item-date {
        width: 30%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: #1E2380;
        color: #fff;
    }

    .latest-article-list-item-date-day h1 {
        font-size: 3.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .latest-article-list-item-text {
        padding: 30px;
        width: 70%;
    }

    .latest-article-list-item-text-title a {
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .latest-article-list-item:hover .latest-article-list-item-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-list-item-text-content {
        margin-top: 10px;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 新闻资讯 */














    /* 跳转链接 */
    .links-area-item {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item a {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item img {
        width: 100%;
        object-fit: cover;
    }

    .links-area-item:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 跳转链接 */











    /* 网站底部 */
    .footer-area {
        background-color: #1E2380;
    }

    .footer-area-box-quote-btn {
        margin-top: 50px;
        width: 100%;
    }

    .footer-area-box-quote-btn a {
        width: 60%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F39800;
        color: #fff;
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
    }

    .footer-area-box-quote-btn a:hover {
        background-color: #fff;
        color: #F39800;
        transition: ease 0.5s ease;
    }

    .footer-area-box-menu-item-title {
        color: #fff;
    }

    .footer-area-box-menu-item-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-area-box-menu-item-content a {
        color: #fff;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
        text-transform: uppercase;
    }

    .footer-area-box-menu-item-content a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright {
        padding: 20px 300px;
        background-color: #272727;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-area-copyright-social {
        width: 20%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-area-copyright-social a {
        text-decoration: none;
    }

    .footer-area-copyright-social i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-area-copyright-social a:hover i {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-text {
        display: flex;
        gap: 20px;
        width: 60%;
        justify-content: center;
    }

    .footer-area-copyright-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #707070;
    }

    .footer-area-copyright-text a {
        color: #707070;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
    }

    .footer-area-copyright-text a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-logo {
        width: 20%;
    }

    .footer-area-copyright-logo a {
        display: flex;
        justify-content: flex-end;
    }

    .footer-area-copyright-logo img {
        width: 160px;
        object-fit: cover;
    }

    /* 网站底部 */













    /* 内页Banner */
    .page-banner {
        position: relative;
        width: 100%;
        height: 900px;
        overflow: hidden;
    }

    .page-banner-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        display: flex;
        justify-content: center;
    }

    .page-banner-bg img {
        animation: zoomIn 10s ease infinite alternate;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .page-banner-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 300px;
    }

    .page-banner-content span {
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        color: #fff;
        background-color: #1E2380;
        padding: 8px 15px;
        border-radius: 10px;
        width: 150px;
    }

    .page-banner-content h1 {
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        font-size: 3.2rem;
        color: #fff;
        font-weight: 600;
        margin: 10px 0;
    }

    .page-banner-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #fff;
        font-size: 1.5rem;
    }

    .page-banner-content-btn {
        margin-top: 40px;
    }

    /* 内页Banner */














    /* 博威故事 */
    .about-pauway-img img {
        width: 100%;
        object-fit: cover;
    }

    .about-pauway-content2 {
        background-color: #F9F9F9;
    }

    .about-pauway-content {
        display: flex;
        justify-content: space-between;
    }

    .about-pauway-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        width: 49%;
    }

    .story-area-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .story-area-title-line {
        border-bottom: 4px solid #F39800;
        width: 100px;
        margin: 0 auto;
    }

    .story-area-item-content {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        padding: 60px;
    }

    .story-area-item-content h5 {
        margin: 10px 0;
    }

    .story-area-item-content-btn {
        margin-top: 40px;
    }

    .story-area-item-img {
        width: 100%;
        height: 400px;
        display: flex;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .story-area-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .story-area-item-img:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 博威故事 */





















    /* 博威服务 */
    .icare-tab {
        margin-top: 40px;
    }

    .icare-tab-buttons {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .icare-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .icare-tab-btn:hover {
        color: var(--nav-blue);
    }

    .icare-tab-btn.active {
        color: #1E2380;
    }

    .icare-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #1E2380;
    }

    .icare-tab-content {
        padding: 20px 0;
    }

    .icare-tab-pane {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .icare-tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .icare-tab-pane-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .icare-tab-pane-text {
        width: 49%;
        padding: 60px;
    }

    .icare-tab-pane-text span {
        padding: 5px 12px;
        border-radius: 10px;
        background-color: #1E2380;
        color: #fff;
    }

    .icare-tab-pane-text h1 {
        margin-top: 10px;
    }

    .icare-tab-pane-btn {
        margin-top: 40px;
    }

    .icare-tab-pane-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .icare-tab-pane-img {
        width: 50%;
    }

    .icare-tab-pane-img img {
        width: 100%;
        object-fit: cover;
    }

    /* 博威服务 */















    /* 合作伙伴 */
    .pauway-partner p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 合作伙伴 */












    /* 里程碑 */
    .milestone-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .milestone-content {
        margin-top: 50px;
    }

    .milestone-item-box {
        width: 45%;
        height: 200px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .milestone-item-content {
        width: 60%;
        height: 200px;
        padding: 40px;
        background-color: #F9F9F9;
        overflow: hidden;
    }

    .milestone-item-img {
        width: 40%;
        height: 200px;
        display: flex;
        overflow: hidden;
    }

    .milestone-item-img img {
        width: 100%;
    }

    .milestone-item-circle {
        width: 10%;
        display: flex;
        justify-content: center;
    }

    .milestone-item-circle-item {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #F9F9F9;
    }

    .milestone-item-none {
        width: 45%;
    }

    /* 里程碑 */














    /* 联系我们 */
    .contact-support-item {
        display: flex;
        gap: 20px;
        padding: 40px 0;
    }

    .contact-support-item-icon i {
        font-size: 4rem;
    }

    .contact-info-form {
        padding: 50px;
        border: 1px solid #dfdfdf;
        border-radius: 15px;
    }

    .contact-info-form form {
        margin-top: 30px;
    }

    .contact-info-form-item {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-info-form-item label {
        width: 20%;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .contact-info-form-item label span {
        color: red;
    }

    .contact-info-form-item input {
        width: 80%;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }

    .contact-info-form-item textarea {
        width: 80%;
        height: 100px;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }


    .contact-info-form-btn {
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-info-form-btn button {
        padding: 10px 20px;
        border: none;
        background-color: #1E2380;
        color: #fff;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-info-form-btn button:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    .contact-info-box-item {
        margin-top: 30px;
    }

    /* 联系我们页面 */










    /* 荣誉资质 */
    .cert-content {
        margin-top: 50px;
    }

    .honor {
        padding: 100px 0;
    }

    .honor-item {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 3D容器 */
    .image-container {
        position: relative;
        width: 300px;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    /* 单个图片样式 */
    .image-item {
        position: absolute;
        width: 100%;
        backface-visibility: hidden;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.5s ease;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 控制按钮 */
    .control-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #1E2380;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .control-btn:hover {
        background-color: #F39800;
        transition: all 0.3s ease;
    }

    .prev-btn {
        left: 5%;
    }

    .next-btn {
        right: 5%;
    }

    /* 荣誉资质 */













    /* 下载中心 */
    .download-area-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .download-area-item-img {
        width: 50%;
        height: 400px;
        overflow: hidden;
        display: flex;
    }

    .download-area-item-img img {
        width: 100%;
        height: auto;
    }

    .download-area-item:hover .download-area-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .download-area-item-content {
        width: 50%;
        height: 100%;
        padding: 60px;
        background-color: #F9F9F9;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .download-area-item:hover .download-area-item-content {
        background-color: #1E2380;
        color: #fff;
        transition: all 0.3s ease;
    }

    .download-area-item-content-btn {
        margin-top: 40px;
    }

    /* 下载中心 */














    /* 新闻列表 */
    .article-hot-box {
        display: flex;
        justify-content: space-between;
        padding: 40px;
        width: 100%;
        border-radius: 15px;
        border: 1px solid #dfdfdf;
    }

    .article-hot-img {
        width: 48%;
    }

    .article-hot-img a {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-hot-img img {
        width: 100%;
        height: auto;
    }

    .article-hot-box:hover .article-hot-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-hot-content {
        width: 48%;
        padding-top: 20px;
    }

    .article-hot-content span {
        color: #1E2380;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
    }

    .article-hot-content-title {
        margin: 10px 0;
    }

    .article-hot-content-title a {
        font-size: 1.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-hot-content-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-hot-content-btn {
        margin-top: 40px;
    }

    .article-list-item {
        margin-bottom: 60px;
    }

    .article-list-item-line {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 40px;
    }

    .article-list-item-img {
        width: 100%;
    }

    .article-list-item-img a {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-list-item-img img {
        width: 100%;
    }

    .article-list-item:hover .article-list-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-list-item-title {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-title a {
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-content {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 新闻列表 */













    /* 新闻详情 */
    .article-content-detail h2 {
        margin-bottom: 20px;
    }

    .article-content-text img {
        width: 100%;
        margin-bottom: 50px;
    }

    .sidebar-content-item {
        margin-bottom: 40px;
    }

    .sidebar-content-item-title {
        padding: 15px 20px;
        background-color: #1E2380;
    }

    .sidebar-content-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .sidebar-content-item-content {
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
    }

    .sidebar-content-item-content a {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #e9e9e9;
    }

    .sidebar-content-item-content a:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 新闻详情 */












    /* 研发成果 */
    .rd-area-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .rd-area-item img {
        width: 100%;
        filter: blur(1px);
    }

    /* 研发成果 */















    /* 行业应用 */

    /* WebKit 浏览器隐藏滚动条 */
    .solution-area::-webkit-scrollbar {
        display: none;
    }

    /* 每一屏设置为视口高度，启用 snap 对齐 */
    .solution-area-item {
        width: 100%;
        height: 100vh;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .solution-area-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        display: flex;
        justify-content: center;
    }

    .solution-area-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 30%);
        z-index: -1;
    }

    .solution-area-item-content-box {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .solution-area-item-content-box span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .solution-area-item-content-box-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 3rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .solution-area-item-content-box-title:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .solution-area-item-content-box p {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 1.2rem;
        color: #fff;
    }

    .solution-area-item-content-box-btn {
        margin-top: 40px;
    }

    .solution-area-item-content-box-tag {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    /* 行业应用 */















    /* 应用详情 */
    .solution-details-img {
        width: 100%;
        overflow: hidden;
        display: flex;
    }

    .solution-details-content-btn {
        margin-top: 40px;
    }

    .solution-details-img img {
        width: 100%;
    }

    .related-products-content {
        margin-top: 30px;
    }

    .related-products-content-item {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item a {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item img {
        width: 100%;
    }

    .related-products-content-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content {
        margin-top: 30px;
    }

    .latest-news-content-item {
        border: 1px solid #e9e9e9;
    }

    .latest-news-content-item-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .latest-news-content-item-img a {
        width: 100%;
        height: 250px;
        overflow: hidden;
        display: flex;
    }

    .latest-news-content-item-img img {
        width: 100%;
    }

    .latest-news-content-item:hover .latest-news-content-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content-item-text {
        padding: 30px;
    }

    .latest-news-content-item-text span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .latest-news-content-item-text-title {
        margin: 20px 0;
        width: 100%;
        height: 130px;
        overflow: hidden;
    }

    .latest-news-content-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.2rem;
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-date {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 0.8rem;
        color: #808080;
    }

    .latest-news-content-item-text-line {
        margin: 20px 0;
        width: 100%;
        height: 1px;
        background-color: #e9e9e9;
    }

    .latest-news-content-item-text-btn a {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-btn a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* 应用详情 */














    /* 产品列表 */
    .pro-list-content-text-app {
        margin-top: 30px;
    }

    .pro-list-content-box {
        margin-top: 50px;
    }

    .pro-list-content-box-item {
        margin-bottom: 30px;
        display: flex;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    }

    .pro-list-content-box-item-img {
        width: 20%;
        padding: 30px;
    }

    .pro-list-content-box-item-img a {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .pro-list-content-box-item-img img {
        width: 100%;
    }

    .pro-list-content-box-item-text {
        width: 80%;
        padding: 40px;
    }

    .pro-list-content-box-item-text-title {
        margin-bottom: 10px;
    }

    .pro-list-content-box-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.3rem;
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item {
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pro-list-content-box-item-text-no-item a {
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

























    /* 产品详情 */
    .pro-details-content-img {
        width: 100%;
        border: 1px solid #e9e9e9;
    }

    .pro-details-content-text h5 {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #F39800;
    }

    .pro-details-content-text-btn {
        margin-top: 40px;
    }

    .pro-details-content-img img {
        width: 100%;
    }

    .pro-details-content-tab {
        margin-top: 40px;
    }

    .pro-tab-buttons {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        gap: 1px;
    }

    .pro-tab-btn {
        padding: 15px 30px;
        width: 120px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        background-color: #F9F9F9;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'HarmonyOS_Sans_Bold';
    }

    .pro-tab-btn:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .pro-tab-btn.active {
        background-color: #1E2380;
        color: #fff;
    }

    .pro-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--nav-blue);
    }

    .pro-tab-pane {
        display: none;
    }

    .pro-tab-pane.active {
        display: block;
    }

    .pro-tab-pane table {
        width: 100%;
    }

    .pro-tab-pane table tr {
        border-bottom: 1px solid #e0e0e0;
    }

    .pro-tab-pane table tr td {
        width: 20%;
        padding: 5px;
        text-align: center;
    }

    .pro-tab-pane table tr td h6 {
        margin-bottom: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pro-tab-pane h3 {
        color: var(--nav-blue);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pro-tab-pane p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* 产品详情 */
}




































@media (min-width: 1441px) and (max-width: 1640px) {
    .mt-80 {
        margin-top: 100px;
    }

    .mb-80 {
        margin-bottom: 100px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .plr-300 {
        padding-left: 200px;
        padding-right: 200px;
    }

    .mlr-300 {
        margin-left: 200px;
        margin-right: 200px;
    }

    .btn1 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #F39800;
        color: #fff;
    }

    .btn1:hover {
        background-color: #fff;
        color: #F39800;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: 1px solid #fff;
        color: #fff;
    }

    .btn2:hover {
        background-color: #1E2380;
        border: 1px solid #1E2380;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn3 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #1E2380;
        color: #fff;
    }

    .btn3:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .bg-gray {
        background-color: #F9F9F9;
    }

    .mtb-20 {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .text-right {
        text-align: right;
    }

    .white {
        color: #fff;
    }

    .black {
        color: #000;
    }











    /* 网站导航栏 */
    .header {
        padding: 20px 30px;
        background-color: white;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 9;
        transition: all 0.3s ease;
    }

    .header.scrolled {
        background-color: rgba(255, 255, 255, 32%);
        backdrop-filter: blur(40px);
    }

    .header-logo img {
        width: 220px;
    }

    .header-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu li {
        margin: 0 15px;
        position: relative;
    }

    .header-menu li a {
        font-size: 0.8rem;
        color: #000;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 0;
        display: block;
        transition: color 0.3s ease;
    }
    
    .header-menu .dropdown-menu .dropdown-category a {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .header-menu li a:hover {
        color: #F39800;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .header-menu li.active a {
        position: relative;
        color: #1E2380;
        text-decoration: none;
    }

    .header-menu-drop.active a::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }
    
    .solution-dropdown-item.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    .dropdown.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    /* Dropdown Menu Styles */
    .header-menu {
        position: relative;
    }

    .header-menu .dropdown {
        position: static;
    }

    .header-menu .dropdown-menu {
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        display: flex;
        padding: 40px 30px 30px 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-menu .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .dropdown-container {
        flex: 1;
        margin: 0 10px;
    }

    .header-menu .dropdown-category {
        color: #000;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px 0;
    }

    .header-menu .dropdown-container ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .dropdown-container li {
        margin: 0;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .dropdown-container li a {
        color: var(--nav-blue);
        padding: 8px 0;
        font-size: 13px;
        text-transform: none;
        transition: color 0.3s ease;
        display: block;
    }

    .header-menu .dropdown-container li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* Solution Dropdown Menu Styles */
    .header-menu .solution-dropdown-item {
        position: relative;
    }

    .header-menu .solution-menu {
        position: absolute;
        top: 130%;
        left: -100%;
        width: 280px;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        padding: 30px;
    }

    .header-menu .solution-dropdown-item:hover .solution-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .solution-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .solution-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .solution-menu li a {
        color: #000;
        padding: 10px 0;
        font-size: 13px;
        text-transform: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: block;
    }

    .header-menu .solution-menu li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .header-menu .dropdown-toggle::after,
    .header-menu .solution-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .header-menu .caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    /* Header Button Styles */
    .header-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 46.4px;
    }

    .header-btn i {
        font-size: 1.2rem;
    }

    .header-btn-search,
    .header-btn-language {
        margin-left: 20px;
        position: relative;
    }

    .header-btn-search .search-toggle {
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-toggle:hover {
        color: #F39800;
    }

    .header-btn-language a {
        color: #000;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .header-btn-language a:hover {
        color: #F39800;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    /* Search Box Styles */
    .header-btn-search .search-box {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 300px;
        border-radius: 0;
        border: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-btn-search .search-box.active {
        opacity: 1;
        visibility: visible;
    }

    .header-btn-search .search-box form {
        display: flex;
        align-items: center;
        background-color: #f9f9f9;
        border-radius: 25px;
        overflow: hidden;
    }

    .header-btn-search .search-box input {
        flex: 1;
        border: none;
        padding: 0 20px;
        background: none;
        font-size: 14px;
        outline: none;
    }

    .header-btn-search .search-box button {
        background: none;
        border: none;
        color: var(--nav-blue);
        font-size: 16px;
        cursor: pointer;
        padding: 5px 10px;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-box button:hover {
        color: #F39800;
    }

    /* 网站导航栏 */














    /* 滚动大图轮播 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 1000px;
        overflow: hidden;
    }

    .swiper-slide-content {
        width: 100%;
        height: 800px;
        overflow: hidden;
    }

    .swiper-slide-content-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 800px;
        display: flex;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Slider Image Animation */
    @keyframes zoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.2);
        }
    }

    .swiper-slide-content-bg {
        overflow: hidden;
        position: relative;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: auto;
        animation: zoomIn 10s ease infinite alternate;
    }

    .swiper-slide-content-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e23804f;
        z-index: 1;
    }

    .swiper-slide-content-text {
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        height: 1000px;
        color: #fff;
        z-index: 2;
        width: 70%;
    }

    .swiper-slide-content-text h1 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
    }

    .swiper-slide-content-text p {
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        text-transform: none;
        text-transform: uppercase;
    }

    .swiper-slide-content-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .slider-product {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
    }

    .slider-product-box {
        width: 100%;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, .5);
        backdrop-filter: blur(40px);
    }

    .slider-product-category {
        width: 85%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .slider-product-category-item {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        padding: 30px;
        text-align: center;
    }

    .slider-product-category-item-img a {
        display: flex;
        justify-content: center;
    }

    .slider-product-category-item-img img {
        width: 70%;
    }

    .slider-product-category-item:hover .slider-product-category-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .slider-product-category-item a {
        font-size: 1.2rem;
        color: #000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .slider-product-category-item:hover a {
        color: #1E2380;
        transition: color 0.3s ease;
    }

    .slider-product-btn {
        width: 25%;
    }

    .slider-product-btn button {
        background: #F39800;
        border: none;
        width: 100%;
        height: 260px;
        font-size: 2rem;
        color: #fff;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .slider-product-btn button:hover {
        background-color: #1E2380;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease;
    }


    /* 滚动大图轮播 */






    /* Quote Modal Styles */
    .quote-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(40px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .quote-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .quote-modal-content {
        background-color: #ffffffb5;
        backdrop-filter: blur(40px);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        animation: slideIn 0.3s ease;
        overflow: hidden;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .quote-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .quote-modal-header h3 {
        color: var(--nav-blue);
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

    .quote-modal-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--muted);
        transition: color 0.3s ease;
    }

    .quote-modal-close:hover {
        color: var(--nav-blue);
    }

    .quote-modal-body {
        padding: 20px;
    }

    .quote-form .form-group {
        margin-bottom: 20px;
    }

    .quote-form .form-group span {
        color: red;
    }

    .quote-form label {
        display: block;
        margin-bottom: 8px;
        color: var(--nav-blue);
        font-size: 14px;
        font-weight: 500;
    }

    .quote-form input,
    .quote-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        outline: none;
        border-color: var(--nav-blue);
    }

    .quote-form textarea {
        resize: vertical;
    }

    .form-group button {
        border: none;
    }

    .quote-form .btn1 {
        width: 100%;
        text-align: center;
    }

    /* 留言表单 */







    /* 解决方案 */
    .solution-area-title {
        text-align: center;
    }

    .solution-area-title p {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .solution-area-content {
        margin-top: 30px;
    }

    .solution-area-content-item {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .solution-area-content-item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .solution-area-content-item:hover .solution-area-content-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .solution-area-content-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e238057;
        z-index: 1;
    }

    .solution-area-content-item:hover .solution-area-content-item-mask {
        background-color: #1e2380eb;
        transition: background-color 0.3s ease;
    }

    .solution-area-content-item-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .solution-area-content-item-text a {
        text-decoration: none;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .solution-area-content-item:hover .solution-area-content-item-text a {
        color: #F39800;
        transition: color 0.3s ease;
    }

    /* 解决方案 */















    /* 新闻资讯 */
    .latest-article {
        margin-top: 30px;
    }

    .latest-article-hot {
        width: 100%;
        background-color: #F9F9F9;
    }

    .latest-article-hot-img {
        width: 100%;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .latest-article-hot-img img {
        width: 100%;
        object-fit: cover;
    }

    .latest-article-hot:hover .latest-article-hot-img img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    .latest-article-hot-text {
        padding: 30px 30px 50px 30px;
    }

    .latest-article-hot:hover .latest-article-hot-text {
        background-color: #1E2380;
        transition: background-color 0.5s ease;
        color: #fff;
    }

    .latest-article-hot-text-title a {
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        transition: color 0.5s ease;
    }

    .latest-article-hot:hover .latest-article-hot-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-title a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-date {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .latest-article-hot-text-date p {
        color: #818181;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-hot-text-content {
        margin-bottom: 40px;
    }

    .latest-article-hot-text-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .latest-article-list-item {
        display: flex;
        background-color: #f8f8f8;
    }

    .latest-article-list-item:hover {
        background-color: #1E2380;
        color: #fff;
        transition: ease-in-out 0.5s ease;
    }

    .latest-article-list-item-date {
        width: 30%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: #1E2380;
        color: #fff;
    }

    .latest-article-list-item-date-day h1 {
        font-size: 3.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .latest-article-list-item-text {
        padding: 30px;
        width: 70%;
    }

    .latest-article-list-item-text-title a {
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .latest-article-list-item:hover .latest-article-list-item-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-list-item-text-content {
        margin-top: 10px;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 新闻资讯 */














    /* 跳转链接 */
    .links-area-item {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item a {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item img {
        width: 100%;
        object-fit: cover;
    }

    .links-area-item:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 跳转链接 */











    /* 网站底部 */
    .footer-area {
        background-color: #1E2380;
    }

    .footer-area-box-quote-map img {
        width: 70%;
        object-fit: cover;
    }

    .footer-area-box-quote-btn {
        margin-top: 50px;
        width: 100%;
    }

    .footer-area-box-quote-btn a {
        width: 60%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F39800;
        color: #fff;
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
    }

    .footer-area-box-quote-btn a:hover {
        background-color: #fff;
        color: #F39800;
        transition: ease 0.5s ease;
    }

    .footer-area-box-menu-item-title {
        color: #fff;
    }

    .footer-area-box-menu-item-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-area-box-menu-item-content a {
        color: #fff;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
        text-transform: uppercase;
    }

    .footer-area-box-menu-item-content a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright {
        padding: 20px 60px;
        background-color: #272727;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-area-copyright-social {
        width: 20%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-area-copyright-social a {
        text-decoration: none;
    }

    .footer-area-copyright-social i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-area-copyright-social a:hover i {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-text {
        display: flex;
        gap: 20px;
        width: 60%;
        justify-content: center;
    }

    .footer-area-copyright-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #707070;
    }

    .footer-area-copyright-text a {
        color: #707070;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
    }

    .footer-area-copyright-text a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-logo {
        width: 20%;
    }

    .footer-area-copyright-logo a {
        display: flex;
        justify-content: flex-end;
    }

    .footer-area-copyright-logo img {
        width: 160px;
        object-fit: cover;
    }

    /* 网站底部 */













    /* 内页Banner */
    .page-banner {
        position: relative;
        width: 100%;
        height: 700px;
        overflow: hidden;
    }

    .page-banner-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        display: flex;
        justify-content: center;
    }

    .page-banner-bg img {
        animation: zoomIn 10s ease infinite alternate;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .page-banner-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 200px;
    }

    .page-banner-content span {
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        color: #fff;
        background-color: #1E2380;
        padding: 8px 15px;
        border-radius: 10px;
        width: 150px;
    }

    .page-banner-content h1 {
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #fff;
        font-weight: 600;
        margin: 10px 0;
    }

    .page-banner-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #fff;
    }

    .page-banner-content-btn {
        margin-top: 40px;
    }

    /* 内页Banner */














    /* 博威故事 */
    .about-pauway-img img {
        width: 100%;
        object-fit: cover;
    }

    .about-pauway-content2 {
        background-color: #F9F9F9;
    }

    .about-pauway-content {
        display: flex;
        justify-content: space-between;
    }

    .about-pauway-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        width: 49%;
    }

    .story-area-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .story-area-title-line {
        border-bottom: 4px solid #F39800;
        width: 100px;
        margin: 0 auto;
    }

    .story-area-item-content {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        padding: 60px;
    }

    .story-area-item-content h5 {
        margin: 10px 0;
    }

    .story-area-item-content-btn {
        margin-top: 40px;
    }

    .story-area-item-img {
        width: 100%;
        height: 400px;
        display: flex;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .story-area-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .story-area-item-img:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 博威故事 */





















    /* 博威服务 */
    .icare-tab {
        margin-top: 40px;
    }

    .icare-tab-buttons {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .icare-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .icare-tab-btn:hover {
        color: var(--nav-blue);
    }

    .icare-tab-btn.active {
        color: #1E2380;
    }

    .icare-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #1E2380;
    }

    .icare-tab-content {
        padding: 20px 0;
    }

    .icare-tab-pane {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .icare-tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .icare-tab-pane-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .icare-tab-pane-text {
        width: 49%;
        padding: 60px;
    }

    .icare-tab-pane-text span {
        padding: 5px 12px;
        border-radius: 10px;
        background-color: #1E2380;
        color: #fff;
    }

    .icare-tab-pane-text h1 {
        margin-top: 10px;
    }

    .icare-tab-pane-btn {
        margin-top: 40px;
    }

    .icare-tab-pane-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .icare-tab-pane-img {
        width: 50%;
    }

    .icare-tab-pane-img img {
        width: 100%;
        object-fit: cover;
    }

    /* 博威服务 */















    /* 合作伙伴 */
    .pauway-partner p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 合作伙伴 */












    /* 里程碑 */
    .milestone-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .milestone-content {
        margin-top: 50px;
    }

    .milestone-item-box {
        width: 45%;
        height: 200px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .milestone-item-content {
        width: 60%;
        height: 200px;
        padding: 40px;
        background-color: #F9F9F9;
        overflow: hidden;
    }

    .milestone-item-img {
        width: 40%;
        height: 200px;
        display: flex;
        overflow: hidden;
    }

    .milestone-item-img img {
        width: 100%;
    }

    .milestone-item-circle {
        width: 10%;
        display: flex;
        justify-content: center;
    }

    .milestone-item-circle-item {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #F9F9F9;
    }

    .milestone-item-none {
        width: 45%;
    }

    /* 里程碑 */














    /* 联系我们 */
    .contact-support-item {
        display: flex;
        gap: 20px;
        padding: 40px 0;
    }

    .contact-support-item-icon i {
        font-size: 4rem;
    }

    .contact-info-form {
        padding: 50px;
        border: 1px solid #dfdfdf;
        border-radius: 15px;
    }

    .contact-info-form form {
        margin-top: 30px;
    }

    .contact-info-form-item {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-info-form-item label {
        width: 20%;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .contact-info-form-item label span {
        color: red;
    }

    .contact-info-form-item input {
        width: 80%;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }

    .contact-info-form-item textarea {
        width: 80%;
        height: 100px;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }


    .contact-info-form-btn {
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-info-form-btn button {
        padding: 10px 20px;
        border: none;
        background-color: #1E2380;
        color: #fff;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-info-form-btn button:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    .contact-info-box-item {
        margin-top: 30px;
    }

    /* 联系我们页面 */










    /* 荣誉资质 */
    .cert-content {
        margin-top: 50px;
    }

    .honor {
        padding: 100px 0;
    }

    .honor-item {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 3D容器 */
    .image-container {
        position: relative;
        width: 300px;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    /* 单个图片样式 */
    .image-item {
        position: absolute;
        width: 100%;
        backface-visibility: hidden;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.5s ease;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 控制按钮 */
    .control-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #1E2380;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .control-btn:hover {
        background-color: #F39800;
        transition: all 0.3s ease;
    }

    .prev-btn {
        left: 5%;
    }

    .next-btn {
        right: 5%;
    }

    /* 荣誉资质 */













    /* 下载中心 */
    .download-area-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .download-area-item-img {
        width: 50%;
        height: 400px;
        overflow: hidden;
        display: flex;
    }

    .download-area-item-img img {
        width: 100%;
        height: auto;
    }

    .download-area-item:hover .download-area-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .download-area-item-content {
        width: 50%;
        height: 100%;
        padding: 60px;
        background-color: #F9F9F9;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .download-area-item:hover .download-area-item-content {
        background-color: #1E2380;
        color: #fff;
        transition: all 0.3s ease;
    }

    .download-area-item-content-btn {
        margin-top: 40px;
    }

    /* 下载中心 */














    /* 新闻列表 */
    .article-hot-box {
        display: flex;
        justify-content: space-between;
        padding: 40px;
        width: 100%;
        border-radius: 15px;
        border: 1px solid #dfdfdf;
    }

    .article-hot-img {
        width: 48%;
    }

    .article-hot-img a {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-hot-img img {
        width: 100%;
        height: auto;
    }

    .article-hot-box:hover .article-hot-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-hot-content {
        width: 48%;
        padding-top: 20px;
    }

    .article-hot-content span {
        color: #1E2380;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
    }

    .article-hot-content-title {
        margin: 10px 0;
    }

    .article-hot-content-title a {
        font-size: 1.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-hot-content-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-hot-content-btn {
        margin-top: 40px;
    }

    .article-list-item {
        margin-bottom: 60px;
    }

    .article-list-item-line {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 40px;
    }

    .article-list-item-img {
        width: 100%;
    }

    .article-list-item-img a {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-list-item-img img {
        width: 100%;
    }

    .article-list-item:hover .article-list-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-list-item-title {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-title a {
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-content {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 新闻列表 */













    /* 新闻详情 */
    .article-content-detail h2 {
        margin-bottom: 20px;
    }

    .article-content-text img {
        width: 100%;
        margin-bottom: 50px;
    }

    .sidebar-content-item {
        margin-bottom: 40px;
    }

    .sidebar-content-item-title {
        padding: 15px 20px;
        background-color: #1E2380;
    }

    .sidebar-content-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .sidebar-content-item-content {
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
    }

    .sidebar-content-item-content a {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #e9e9e9;
    }

    .sidebar-content-item-content a:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 新闻详情 */












    /* 研发成果 */
    .rd-area-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .rd-area-item img {
        width: 100%;
        filter: blur(1px);
    }

    /* 研发成果 */















    /* 行业应用 */

    /* WebKit 浏览器隐藏滚动条 */
    .solution-area::-webkit-scrollbar {
        display: none;
    }

    /* 每一屏设置为视口高度，启用 snap 对齐 */
    .solution-area-item {
        width: 100%;
        height: 100vh;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .solution-area-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        display: flex;
        justify-content: center;
    }

    .solution-area-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 30%);
        z-index: -1;
    }

    .solution-area-item-content-box {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .solution-area-item-content-box span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .solution-area-item-content-box-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 2.5rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .solution-area-item-content-box-title:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .solution-area-item-content-box p {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #fff;
    }

    .solution-area-item-content-box-btn {
        margin-top: 40px;
    }

    .solution-area-item-content-box-tag {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    /* 行业应用 */















    /* 应用详情 */
    .solution-details-img {
        width: 100%;
        overflow: hidden;
        display: flex;
    }

    .solution-details-content-btn {
        margin-top: 40px;
    }

    .solution-details-img img {
        width: 100%;
    }

    .related-products-content {
        margin-top: 30px;
    }

    .related-products-content-item {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item a {
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item img {
        width: 100%;
    }

    .related-products-content-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content {
        margin-top: 30px;
    }

    .latest-news-content-item {
        border: 1px solid #e9e9e9;
    }

    .latest-news-content-item-img {
        width: 100%;
        height: 160px;
        overflow: hidden;
    }

    .latest-news-content-item-img a {
        width: 100%;
        height: 160px;
        overflow: hidden;
        display: flex;
    }

    .latest-news-content-item-img img {
        width: 100%;
    }

    .latest-news-content-item:hover .latest-news-content-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content-item-text {
        padding: 20px;
    }

    .latest-news-content-item-text span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .latest-news-content-item-text-title {
        margin: 20px 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }

    .latest-news-content-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-date {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 0.8rem;
        color: #808080;
    }

    .latest-news-content-item-text-line {
        margin: 20px 0;
        width: 100%;
        height: 1px;
        background-color: #e9e9e9;
    }

    .latest-news-content-item-text-btn a {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-btn a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* 应用详情 */














    /* 产品列表 */
    .pro-list-content-text-app {
        margin-top: 30px;
    }

    .pro-list-content-box {
        margin-top: 50px;
    }

    .pro-list-content-box-item {
        margin-bottom: 30px;
        display: flex;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    }

    .pro-list-content-box-item-img {
        width: 20%;
        padding: 30px;
    }

    .pro-list-content-box-item-img a {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .pro-list-content-box-item-img img {
        width: 100%;
    }

    .pro-list-content-box-item-text {
        width: 80%;
        padding: 40px;
    }

    .pro-list-content-box-item-text-title {
        margin-bottom: 10px;
    }

    .pro-list-content-box-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.3rem;
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item {
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pro-list-content-box-item-text-no-item a {
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

























    /* 产品详情 */
    .pro-details-content-img {
        width: 100%;
        border: 1px solid #e9e9e9;
    }

    .pro-details-content-text h5 {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #F39800;
    }

    .pro-details-content-text-btn {
        margin-top: 40px;
    }

    .pro-details-content-img img {
        width: 100%;
    }

    .pro-details-content-tab {
        margin-top: 40px;
    }

    .pro-tab-buttons {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        gap: 1px;
    }

    .pro-tab-btn {
        padding: 15px 30px;
        width: 120px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        background-color: #F9F9F9;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'HarmonyOS_Sans_Bold';
    }

    .pro-tab-btn:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .pro-tab-btn.active {
        background-color: #1E2380;
        color: #fff;
    }

    .pro-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--nav-blue);
    }

    .pro-tab-pane {
        display: none;
    }

    .pro-tab-pane.active {
        display: block;
    }

    .pro-tab-pane table {
        width: 100%;
    }

    .pro-tab-pane table tr {
        border-bottom: 1px solid #e0e0e0;
    }

    .pro-tab-pane table tr td {
        width: 20%;
        padding: 5px;
        text-align: center;
    }

    .pro-tab-pane table tr td h6 {
        margin-bottom: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pro-tab-pane h3 {
        color: var(--nav-blue);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pro-tab-pane p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* 产品详情 */
}

























@media (min-width: 1201px) and (max-width: 1440px) {
    .mt-80 {
        margin-top: 80px;
    }

    .mb-80 {
        margin-bottom: 80px;
    }

    .pt-80 {
        padding-top: 80px;
    }

    .pb-80 {
        padding-bottom: 80px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .plr-300 {
        padding-left: 100px;
        padding-right: 100px;
    }

    .mlr-300 {
        margin-left: 100px;
        margin-right: 100px;
    }

    .btn1 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #F39800;
        color: #fff;
    }

    .btn1:hover {
        background-color: #fff;
        color: #F39800;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: 1px solid #fff;
        color: #fff;
    }

    .btn2:hover {
        background-color: #1E2380;
        border: 1px solid #1E2380;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn3 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #1E2380;
        color: #fff;
    }

    .btn3:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .bg-gray {
        background-color: #F9F9F9;
    }

    .mtb-20 {
        margin-top: 15px;
        padding-bottom: 15px;
    }

    .text-right {
        text-align: right;
    }

    .white {
        color: #fff;
    }

    .black {
        color: #000;
    }











    /* 网站导航栏 */
    .header {
        padding: 20px 30px;
        background-color: white;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 9;
        transition: all 0.3s ease;
    }

    .header.scrolled {
        background-color: rgba(255, 255, 255, 32%);
        backdrop-filter: blur(40px);
    }

    .header-logo img {
        width: 220px;
    }

    .header-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu li {
        margin: 0 15px;
        position: relative;
    }

    .header-menu li a {
        color: #000;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 0;
        display: block;
        transition: color 0.3s ease;
    }

    .header-menu li a:hover {
        color: #F39800;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .header-menu li.active a {
        position: relative;
        color: #1E2380;
        text-decoration: none;
    }

    .header-menu-drop.active a::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }
    
    .solution-dropdown-item.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    .dropdown.active .dropdown-toggle::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #1E2380;
    }

    /* Dropdown Menu Styles */
    .header-menu {
        position: relative;
    }

    .header-menu .dropdown {
        position: static;
    }

    .header-menu .dropdown-menu {
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        display: flex;
        padding: 40px 30px 30px 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-menu .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .dropdown-container {
        flex: 1;
        margin: 0 10px;
    }

    .header-menu .dropdown-category {
        color: #000;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px 0;
    }

    .header-menu .dropdown-container ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .dropdown-container li {
        margin: 0;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .dropdown-container li a {
        color: var(--nav-blue);
        padding: 8px 0;
        font-size: 13px;
        text-transform: none;
        transition: color 0.3s ease;
        display: block;
    }

    .header-menu .dropdown-container li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* Solution Dropdown Menu Styles */
    .header-menu .solution-dropdown-item {
        position: relative;
    }

    .header-menu .solution-menu {
        position: absolute;
        top: 130%;
        left: -100%;
        width: 280px;
        background-color: white;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        padding: 30px;
    }

    .header-menu .solution-dropdown-item:hover .solution-menu {
        opacity: 1;
        visibility: visible;
    }

    .header-menu .solution-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-menu .solution-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
    }

    .header-menu .solution-menu li a {
        color: #000;
        padding: 10px 0;
        font-size: 13px;
        text-transform: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: block;
    }

    .header-menu .solution-menu li a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .header-menu .dropdown-toggle::after,
    .header-menu .solution-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    .header-menu .caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid \9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }

    /* Header Button Styles */
    .header-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 46.4px;
    }

    .header-btn i {
        font-size: 1.2rem;
    }

    .header-btn-search,
    .header-btn-language {
        margin-left: 20px;
        position: relative;
    }

    .header-btn-search .search-toggle {
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-toggle:hover {
        color: #F39800;
    }

    .header-btn-language a {
        color: #000;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .header-btn-language a:hover {
        color: #F39800;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    /* Search Box Styles */
    .header-btn-search .search-box {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 300px;
        border-radius: 0;
        border: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-btn-search .search-box.active {
        opacity: 1;
        visibility: visible;
    }

    .header-btn-search .search-box form {
        display: flex;
        align-items: center;
        background-color: #f9f9f9;
        border-radius: 25px;
        overflow: hidden;
    }

    .header-btn-search .search-box input {
        flex: 1;
        border: none;
        padding: 0 20px;
        background: none;
        font-size: 14px;
        outline: none;
    }

    .header-btn-search .search-box button {
        background: none;
        border: none;
        color: var(--nav-blue);
        font-size: 16px;
        cursor: pointer;
        padding: 5px 10px;
        transition: color 0.3s ease;
    }

    .header-btn-search .search-box button:hover {
        color: #F39800;
    }

    /* 网站导航栏 */














    /* 滚动大图轮播 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 1000px;
        overflow: hidden;
    }

    .swiper-slide-content {
        width: 100%;
        height: 800px;
        overflow: hidden;
    }

    .swiper-slide-content-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 800px;
        display: flex;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Slider Image Animation */
    @keyframes zoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.2);
        }
    }

    .swiper-slide-content-bg {
        overflow: hidden;
        position: relative;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: auto;
        animation: zoomIn 10s ease infinite alternate;
    }

    .swiper-slide-content-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e23804f;
        z-index: 1;
    }

    .swiper-slide-content-text {
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        height: 1000px;
        color: #fff;
        z-index: 2;
        width: 70%;
    }

    .swiper-slide-content-text h1 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
    }

    .swiper-slide-content-text p {
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        text-transform: none;
        text-transform: uppercase;
    }

    .swiper-slide-content-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .slider-product {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
    }

    .slider-product-box {
        width: 100%;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, .5);
        backdrop-filter: blur(40px);
    }

    .slider-product-category {
        width: 85%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .slider-product-category-item {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        padding: 30px;
        text-align: center;
    }

    .slider-product-category-item-img a {
        display: flex;
        justify-content: center;
    }

    .slider-product-category-item-img img {
        width: 70%;
    }

    .slider-product-category-item:hover .slider-product-category-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .slider-product-category-item a {
        font-size: 1.2rem;
        color: #000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .slider-product-category-item:hover a {
        color: #1E2380;
        transition: color 0.3s ease;
    }

    .slider-product-btn {
        width: 25%;
    }

    .slider-product-btn button {
        background: #F39800;
        border: none;
        width: 100%;
        height: 260px;
        font-size: 2rem;
        color: #fff;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .slider-product-btn button:hover {
        background-color: #1E2380;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease;
    }


    /* 滚动大图轮播 */






    /* Quote Modal Styles */
    .quote-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(40px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .quote-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .quote-modal-content {
        background-color: #ffffffb5;
        backdrop-filter: blur(40px);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        animation: slideIn 0.3s ease;
        overflow: hidden;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .quote-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .quote-modal-header h3 {
        color: var(--nav-blue);
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

    .quote-modal-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--muted);
        transition: color 0.3s ease;
    }

    .quote-modal-close:hover {
        color: var(--nav-blue);
    }

    .quote-modal-body {
        padding: 20px;
    }

    .quote-form .form-group {
        margin-bottom: 20px;
    }

    .quote-form .form-group span {
        color: red;
    }

    .quote-form label {
        display: block;
        margin-bottom: 8px;
        color: var(--nav-blue);
        font-size: 14px;
        font-weight: 500;
    }

    .quote-form input,
    .quote-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        outline: none;
        border-color: var(--nav-blue);
    }

    .quote-form textarea {
        resize: vertical;
    }

    .form-group button {
        border: none;
    }

    .quote-form .btn1 {
        width: 100%;
        text-align: center;
    }

    /* 留言表单 */







    /* 解决方案 */
    .solution-area-title {
        text-align: center;
    }

    .solution-area-title p {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .solution-area-content {
        margin-top: 30px;
    }

    .solution-area-content-item {
        position: relative;
        width: 100%;
        height: 360px;
        overflow: hidden;
    }

    .solution-area-content-item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .solution-area-content-item:hover .solution-area-content-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .solution-area-content-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e238057;
        z-index: 1;
    }

    .solution-area-content-item:hover .solution-area-content-item-mask {
        background-color: #1e2380eb;
        transition: background-color 0.3s ease;
    }

    .solution-area-content-item-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .solution-area-content-item-text a {
        text-decoration: none;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .solution-area-content-item:hover .solution-area-content-item-text a {
        color: #F39800;
        transition: color 0.3s ease;
    }

    /* 解决方案 */















    /* 新闻资讯 */
    .latest-article {
        margin-top: 30px;
    }

    .latest-article-hot {
        width: 100%;
        background-color: #F9F9F9;
    }

    .latest-article-hot-img {
        width: 100%;
        height: 320px;
        display: flex;
        overflow: hidden;
    }

    .latest-article-hot-img img {
        width: 100%;
        object-fit: cover;
    }

    .latest-article-hot:hover .latest-article-hot-img img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    .latest-article-hot-text {
        padding: 30px 30px 50px 30px;
    }

    .latest-article-hot:hover .latest-article-hot-text {
        background-color: #1E2380;
        transition: background-color 0.5s ease;
        color: #fff;
    }

    .latest-article-hot-text-title a {
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        transition: color 0.5s ease;
    }

    .latest-article-hot:hover .latest-article-hot-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-title a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-date {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .latest-article-hot-text-date p {
        color: #818181;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-hot-text-content {
        margin-bottom: 40px;
    }

    .latest-article-hot-text-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .latest-article-list-item {
        display: flex;
        background-color: #f8f8f8;
    }

    .latest-article-list-item:hover {
        background-color: #1E2380;
        color: #fff;
        transition: ease-in-out 0.5s ease;
    }

    .latest-article-list-item-date {
        width: 30%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: #1E2380;
        color: #fff;
    }

    .latest-article-list-item-date-day h1 {
        font-size: 3.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .latest-article-list-item-text {
        padding: 30px;
        width: 70%;
    }

    .latest-article-list-item-text-title a {
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .latest-article-list-item:hover .latest-article-list-item-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-list-item-text-content {
        margin-top: 10px;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 新闻资讯 */














    /* 跳转链接 */
    .links-area-item {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item a {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item img {
        width: 100%;
        object-fit: cover;
    }

    .links-area-item:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 跳转链接 */











    /* 网站底部 */
    .footer-area {
        background-color: #1E2380;
    }

    .footer-area-box-quote-map img {
        width: 70%;
        object-fit: cover;
    }

    .footer-area-box-quote-btn {
        margin-top: 50px;
        width: 100%;
    }

    .footer-area-box-quote-btn a {
        width: 60%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F39800;
        color: #fff;
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
    }

    .footer-area-box-quote-btn a:hover {
        background-color: #fff;
        color: #F39800;
        transition: ease 0.5s ease;
    }

    .footer-area-box-menu-item-title {
        color: #fff;
    }

    .footer-area-box-menu-item-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-area-box-menu-item-content a {
        color: #fff;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
        text-transform: uppercase;
    }

    .footer-area-box-menu-item-content a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright {
        padding: 20px 60px;
        background-color: #272727;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-area-copyright-social {
        width: 20%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-area-copyright-social a {
        text-decoration: none;
    }

    .footer-area-copyright-social i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-area-copyright-social a:hover i {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-text {
        display: flex;
        gap: 20px;
        width: 60%;
        justify-content: center;
    }

    .footer-area-copyright-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #707070;
    }

    .footer-area-copyright-text a {
        color: #707070;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
    }

    .footer-area-copyright-text a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-logo {
        width: 20%;
    }

    .footer-area-copyright-logo a {
        display: flex;
        justify-content: flex-end;
    }

    .footer-area-copyright-logo img {
        width: 160px;
        object-fit: cover;
    }

    /* 网站底部 */













    /* 内页Banner */
    .page-banner {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
    }

    .page-banner-bg {
        width: 100%;
        height: 600px;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        display: flex;
        justify-content: center;
    }

    .page-banner-bg img {
        animation: zoomIn 10s ease infinite alternate;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .page-banner-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 100px;
    }

    .page-banner-content span {
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        color: #fff;
        background-color: #1E2380;
        padding: 8px 15px;
        border-radius: 10px;
        width: 150px;
    }

    .page-banner-content h1 {
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #fff;
        font-weight: 600;
        margin: 10px 0;
    }

    .page-banner-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #fff;
    }

    .page-banner-content-btn {
        margin-top: 40px;
    }

    /* 内页Banner */














    /* 博威故事 */
    .about-pauway-img img {
        width: 100%;
        object-fit: cover;
    }

    .about-pauway-content2 {
        background-color: #F9F9F9;
    }

    .about-pauway-content {
        display: flex;
        justify-content: space-between;
    }

    .about-pauway-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        width: 49%;
    }

    .story-area-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .story-area-title-line {
        border-bottom: 4px solid #F39800;
        width: 100px;
        margin: 0 auto;
    }

    .story-area-item-content {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
        padding: 30px 30px 30px 0;
    }

    .story-area-item-content h5 {
        margin: 10px 0;
    }

    .story-area-item-content-btn {
        margin-top: 40px;
    }

    .story-area-item-img {
        width: 100%;
        height: 400px;
        display: flex;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .story-area-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .story-area-item-img:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 博威故事 */





















    /* 博威服务 */
    .icare-tab {
        margin-top: 40px;
    }

    .icare-tab-buttons {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .icare-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .icare-tab-btn:hover {
        color: var(--nav-blue);
    }

    .icare-tab-btn.active {
        color: #1E2380;
    }

    .icare-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #1E2380;
    }

    .icare-tab-content {
        padding: 20px 0;
    }

    .icare-tab-pane {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .icare-tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .icare-tab-pane-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .icare-tab-pane-text {
        width: 49%;
        padding: 20px;
    }

    .icare-tab-pane-text span {
        padding: 5px 12px;
        border-radius: 10px;
        background-color: #1E2380;
        color: #fff;
    }

    .icare-tab-pane-text h1 {
        margin-top: 10px;
    }

    .icare-tab-pane-btn {
        margin-top: 40px;
    }

    .icare-tab-pane-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .icare-tab-pane-img {
        width: 50%;
    }

    .icare-tab-pane-img img {
        width: 100%;
        object-fit: cover;
    }

    /* 博威服务 */















    /* 合作伙伴 */
    .pauway-partner p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 合作伙伴 */












    /* 里程碑 */
    .milestone-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .milestone-content {
        margin-top: 50px;
    }

    .milestone-item-content p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 5;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .milestone-item-box {
        width: 45%;
        height: 200px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .milestone-item-content {
        width: 60%;
        height: 200px;
        padding: 20px;
        background-color: #F9F9F9;
        overflow: hidden;
    }

    .milestone-item-img {
        width: 40%;
        height: 200px;
        display: flex;
        overflow: hidden;
    }

    .milestone-item-img img {
        width: 100%;
    }

    .milestone-item-circle {
        width: 10%;
        display: flex;
        justify-content: center;
    }

    .milestone-item-circle-item {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #F9F9F9;
    }

    .milestone-item-none {
        width: 45%;
    }

    /* 里程碑 */














    /* 联系我们 */
    .contact-support-item {
        display: flex;
        gap: 20px;
        padding: 40px 0;
    }

    .contact-support-item-icon i {
        font-size: 4rem;
    }

    .contact-info-form {
        padding: 50px;
        border: 1px solid #dfdfdf;
        border-radius: 15px;
    }

    .contact-info-form form {
        margin-top: 30px;
    }

    .contact-info-form-item {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-info-form-item label {
        width: 20%;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .contact-info-form-item label span {
        color: red;
    }

    .contact-info-form-item input {
        width: 80%;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }

    .contact-info-form-item textarea {
        width: 80%;
        height: 100px;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }


    .contact-info-form-btn {
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-info-form-btn button {
        padding: 10px 20px;
        border: none;
        background-color: #1E2380;
        color: #fff;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-info-form-btn button:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    .contact-info-box-item {
        margin-top: 30px;
    }

    /* 联系我们页面 */










    /* 荣誉资质 */
    .cert-content {
        margin-top: 50px;
    }

    .honor {
        padding: 100px 0;
    }

    .honor-item {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 3D容器 */
    .image-container {
        position: relative;
        width: 300px;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    /* 单个图片样式 */
    .image-item {
        position: absolute;
        width: 100%;
        backface-visibility: hidden;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.5s ease;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 控制按钮 */
    .control-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #1E2380;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .control-btn:hover {
        background-color: #F39800;
        transition: all 0.3s ease;
    }

    .prev-btn {
        left: 5%;
    }

    .next-btn {
        right: 5%;
    }

    /* 荣誉资质 */













    /* 下载中心 */
    .download-area-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .download-area-item-img {
        width: 50%;
        height: 400px;
        overflow: hidden;
        display: flex;
    }

    .download-area-item-img img {
        width: 100%;
        height: auto;
    }

    .download-area-item:hover .download-area-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .download-area-item-content {
        width: 50%;
        height: 100%;
        padding: 60px;
        background-color: #F9F9F9;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .download-area-item:hover .download-area-item-content {
        background-color: #1E2380;
        color: #fff;
        transition: all 0.3s ease;
    }

    .download-area-item-content-btn {
        margin-top: 40px;
    }

    /* 下载中心 */














    /* 新闻列表 */
    .article-hot-box {
        display: flex;
        justify-content: space-between;
        padding: 40px;
        width: 100%;
        border-radius: 15px;
        border: 1px solid #dfdfdf;
    }

    .article-hot-img {
        width: 48%;
    }

    .article-hot-img a {
        width: 100%;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-hot-img img {
        width: 100%;
        height: auto;
    }

    .article-hot-box:hover .article-hot-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-hot-content {
        width: 48%;
        padding-top: 20px;
    }

    .article-hot-content span {
        color: #1E2380;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
    }

    .article-hot-content-title {
        margin: 10px 0;
    }

    .article-hot-content-title a {
        font-size: 1.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-hot-content-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-hot-content-btn {
        margin-top: 40px;
    }

    .article-list-item {
        margin-bottom: 60px;
    }

    .article-list-item-line {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 40px;
    }

    .article-list-item-img {
        width: 100%;
    }

    .article-list-item-img a {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-list-item-img img {
        width: 100%;
    }

    .article-list-item:hover .article-list-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-list-item-title {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-title a {
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-content {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .article-list-item-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 新闻列表 */













    /* 新闻详情 */
    .article-content-detail h2 {
        margin-bottom: 20px;
    }

    .article-content-text img {
        width: 100%;
        margin-bottom: 50px;
    }

    .sidebar-content-item {
        margin-bottom: 40px;
    }

    .sidebar-content-item-title {
        padding: 15px 20px;
        background-color: #1E2380;
    }

    .sidebar-content-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .sidebar-content-item-content {
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
    }

    .sidebar-content-item-content a {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #e9e9e9;
    }

    .sidebar-content-item-content a:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 新闻详情 */












    /* 研发成果 */
    .rd-area-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .rd-area-item img {
        width: 100%;
        filter: blur(1px);
    }

    /* 研发成果 */















    /* 行业应用 */

    /* WebKit 浏览器隐藏滚动条 */
    .solution-area::-webkit-scrollbar {
        display: none;
    }

    /* 每一屏设置为视口高度，启用 snap 对齐 */
    .solution-area-item {
        width: 100%;
        height: 100vh;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .solution-area-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        display: flex;
        justify-content: center;
    }

    .solution-area-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 30%);
        z-index: -1;
    }

    .solution-area-item-content-box {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .solution-area-item-content-box span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .solution-area-item-content-box-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 2.5rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .solution-area-item-content-box-title:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .solution-area-item-content-box p {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #fff;
    }

    .solution-area-item-content-box-btn {
        margin-top: 40px;
    }

    .solution-area-item-content-box-tag {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    /* 行业应用 */















    /* 应用详情 */
    .solution-details-img {
        width: 100%;
        overflow: hidden;
        display: flex;
    }

    .solution-details-content-btn {
        margin-top: 40px;
    }

    .solution-details-img img {
        width: 100%;
    }

    .related-products-content {
        margin-top: 30px;
    }

    .related-products-content-item {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item a {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item img {
        width: 100%;
    }

    .related-products-content-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content {
        margin-top: 30px;
    }

    .latest-news-content-item {
        border: 1px solid #e9e9e9;
    }

    .latest-news-content-item-img {
        width: 100%;
        height: 160px;
        overflow: hidden;
    }

    .latest-news-content-item-img a {
        width: 100%;
        height: 160px;
        overflow: hidden;
        display: flex;
    }

    .latest-news-content-item-img img {
        width: 100%;
    }

    .latest-news-content-item:hover .latest-news-content-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content-item-text {
        padding: 20px;
    }

    .latest-news-content-item-text span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .latest-news-content-item-text-title {
        margin: 20px 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }

    .latest-news-content-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-date {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 0.8rem;
        color: #808080;
    }

    .latest-news-content-item-text-line {
        margin: 20px 0;
        width: 100%;
        height: 1px;
        background-color: #e9e9e9;
    }

    .latest-news-content-item-text-btn a {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-btn a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* 应用详情 */














    /* 产品列表 */
    .pro-list-content-text-app {
        margin-top: 30px;
    }

    .pro-list-content-box {
        margin-top: 50px;
    }

    .pro-list-content-box-item {
        margin-bottom: 30px;
        display: flex;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    }

    .pro-list-content-box-item-img {
        width: 20%;
        padding: 30px;
    }

    .pro-list-content-box-item-img a {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .pro-list-content-box-item-img img {
        width: 100%;
    }

    .pro-list-content-box-item-text {
        width: 80%;
        padding: 40px;
    }

    .pro-list-content-box-item-text-title {
        margin-bottom: 10px;
    }

    .pro-list-content-box-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.3rem;
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item {
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pro-list-content-box-item-text-no-item a {
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

























    /* 产品详情 */
    .pro-details-content-img {
        width: 100%;
        border: 1px solid #e9e9e9;
    }

    .pro-details-content-text {
        padding: 10px 0 0 10px;
    }

    .pro-details-content-text h1 {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .pro-details-content-text h5 {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #F39800;
    }

    .pro-details-content-text-btn {
        margin-top: 40px;
    }

    .pro-details-content-img img {
        width: 100%;
    }

    .pro-details-content-tab {
        margin-top: 40px;
    }

    .pro-tab-buttons {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        gap: 1px;
    }

    .pro-tab-btn {
        padding: 15px 30px;
        width: 120px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        background-color: #F9F9F9;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'HarmonyOS_Sans_Bold';
    }

    .pro-tab-btn:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .pro-tab-btn.active {
        background-color: #1E2380;
        color: #fff;
    }

    .pro-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--nav-blue);
    }

    .pro-tab-pane {
        display: none;
    }

    .pro-tab-pane.active {
        display: block;
    }

    .pro-tab-pane table {
        width: 100%;
    }

    .pro-tab-pane table tr {
        border-bottom: 1px solid #e0e0e0;
    }

    .pro-tab-pane table tr td {
        width: 20%;
        padding: 5px;
        text-align: center;
    }

    .pro-tab-pane table tr td h6 {
        margin-bottom: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pro-tab-pane h3 {
        color: var(--nav-blue);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pro-tab-pane p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* 产品详情 */
}


























@media (max-width: 1200px) {
    .mt-80 {
        margin-top: 30px;
    }

    .mb-80 {
        margin-bottom: 20px;
    }

    .pt-80 {
        padding-top: 30px;
    }

    .pb-80 {
        padding-bottom: 30px;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .plr-300 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mlr-300 {
        margin-left: 20px;
        margin-right: 20px;
    }

    .btn1 {
        padding: 10px 12px;
        border-radius: 5px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #F39800;
        color: #fff;
    }

    .btn1:hover {
        background-color: #fff;
        color: #F39800;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn2 {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: 1px solid #fff;
        color: #fff;
    }

    .btn2:hover {
        background-color: #1E2380;
        border: 1px solid #1E2380;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn3 {
        padding: 5px 8px;
        border-radius: 5px;
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        background-color: #1E2380;
        color: #fff;
    }

    .btn3:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .bg-gray {
        background-color: #F9F9F9;
    }

    .mtb-20 {
        margin-top: 10px;
        padding-bottom: 10px;
    }

    .text-right {
        text-align: right;
    }

    .white {
        color: #fff;
    }

    .black {
        color: #000;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }









    /* 网站导航栏 */
    .header {
        display: none;
    }

    /* 网站导航栏 */














    /* 滚动大图轮播 */
    .slider-area {
        position: relative;
        width: 100%;
        height: 980px;
        overflow: hidden;
    }

    .swiper-slide-content {
        width: 100%;
        height: 600px;
        overflow: hidden;
    }

    .swiper-slide-content-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 800px;
        display: flex;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Slider Image Animation */
    @keyframes zoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.2);
        }
    }

    .swiper-slide-content-bg {
        overflow: hidden;
        position: relative;
    }

    .swiper-slide-content-bg img {
        width: 100%;
        height: auto;
        animation: zoomIn 10s ease infinite alternate;
    }

    .swiper-slide-content-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e23804f;
        z-index: 1;
    }

    .swiper-slide-content-text {
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        height: 1000px;
        color: #fff;
        z-index: 2;
        width: 100%;
    }

    .swiper-slide-content-text h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
    }

    .swiper-slide-content-text p {
        font-size: 2rem;
        margin-bottom: 40px;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        text-transform: none;
        text-transform: uppercase;
    }

    .swiper-slide-content-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .slider-product {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
    }

    .slider-product-box {
        width: 100%;
        background-color: rgba(255, 255, 255, .5);
        backdrop-filter: blur(40px);
        overflow: hidden;
    }

    .slider-product-category {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .slider-product-category-item {
        width: 49%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        padding: 20px;
        text-align: center;
    }

    .slider-product-category-item-img a {
        display: flex;
        justify-content: center;
    }

    .slider-product-category-item-img img {
        width: 70%;
    }

    .slider-product-category-item:hover .slider-product-category-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .slider-product-category-item a {
        color: #000;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .slider-product-category-item:hover a {
        color: #1E2380;
        transition: color 0.3s ease;
    }

    .slider-product-btn {
        width: 100%;
    }

    .slider-product-btn button {
        background: #F39800;
        border: none;
        width: 100%;
        height: 60px;
        font-size: 2rem;
        color: #fff;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .slider-product-btn button:hover {
        background-color: #1E2380;
        color: #fff;
        transition: background-color 0.3s ease, color 0.3s ease;
    }


    /* 滚动大图轮播 */






    /* Quote Modal Styles */
    .quote-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(40px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .quote-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .quote-modal-content {
        background-color: #ffffffb5;
        backdrop-filter: blur(40px);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        animation: slideIn 0.3s ease;
        overflow: hidden;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .quote-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .quote-modal-header h3 {
        color: var(--nav-blue);
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

    .quote-modal-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--muted);
        transition: color 0.3s ease;
    }

    .quote-modal-close:hover {
        color: var(--nav-blue);
    }

    .quote-modal-body {
        padding: 20px;
    }

    .quote-form .form-group {
        margin-bottom: 20px;
    }

    .quote-form .form-group span {
        color: red;
    }

    .quote-form label {
        display: block;
        margin-bottom: 8px;
        color: var(--nav-blue);
        font-size: 14px;
        font-weight: 500;
    }

    .quote-form input,
    .quote-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        outline: none;
        border-color: var(--nav-blue);
    }

    .quote-form textarea {
        resize: vertical;
    }

    .form-group button {
        border: none;
    }

    .quote-form .btn1 {
        width: 100%;
        text-align: center;
    }

    /* 留言表单 */







    /* 解决方案 */
    .solution-area-title {
        text-align: center;
    }

    .solution-area-title p {
        font-size: 1.5rem;
        text-transform: uppercase;
    }

    .solution-area-content {
        margin-top: 30px;
    }

    .solution-area-content-item {
        position: relative;
        width: 100%;
        height: 360px;
        overflow: hidden;
    }

    .solution-area-content-item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .solution-area-content-item:hover .solution-area-content-item-img img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .solution-area-content-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1e238057;
        z-index: 1;
    }

    .solution-area-content-item:hover .solution-area-content-item-mask {
        background-color: #1e2380eb;
        transition: background-color 0.3s ease;
    }

    .solution-area-content-item-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .solution-area-content-item-text a {
        text-decoration: none;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .solution-area-content-item:hover .solution-area-content-item-text a {
        color: #F39800;
        transition: color 0.3s ease;
    }

    /* 解决方案 */















    /* 新闻资讯 */
    .latest-article {
        margin-top: 30px;
    }

    .latest-article-hot {
        width: 100%;
        background-color: #F9F9F9;
        margin-bottom: 30px;
    }

    .latest-article-hot-img {
        width: 100%;
        height: 250px;
        display: flex;
        overflow: hidden;
    }

    .latest-article-hot-img img {
        width: 100%;
        object-fit: cover;
    }

    .latest-article-hot:hover .latest-article-hot-img img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    .latest-article-hot-text {
        padding: 20px 20px 30px 20px;
    }

    .latest-article-hot:hover .latest-article-hot-text {
        background-color: #1E2380;
        transition: background-color 0.5s ease;
        color: #fff;
    }

    .latest-article-hot-text-title a {
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        transition: color 0.5s ease;
    }

    .latest-article-hot:hover .latest-article-hot-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-title a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .latest-article-hot-text-date {
        margin: 10px 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .latest-article-hot-text-date p {
        color: #818181;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-hot-text-content {
        margin-bottom: 40px;
    }

    .latest-article-hot-text-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .latest-article-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .latest-article-list-item {
        background-color: #f8f8f8;
    }

    .latest-article-list-item:hover {
        background-color: #1E2380;
        color: #fff;
        transition: ease-in-out 0.5s ease;
    }

    .latest-article-list-item-date {
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background-color: #1E2380;
        color: #fff;
    }

    .latest-article-list-item-date-day h1 {
        font-size: 3.5rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .latest-article-list-item-text {
        padding: 20px;
    }

    .latest-article-list-item-text-title a {
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    .latest-article-list-item:hover .latest-article-list-item-text-title a {
        color: #fff;
        transition: color 0.5s ease;
    }

    .latest-article-list-item-text-content {
        margin-top: 10px;
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 2;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
    }

    /* 新闻资讯 */














    /* 跳转链接 */
    .links-area-item {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .links-area-item a {
        width: 100%;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .links-area-item img {
        width: 100%;
        object-fit: cover;
    }

    .links-area-item:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 跳转链接 */











    /* 网站底部 */
    .footer-area {
        background-color: #1E2380;
    }

    .footer-area-box-quote {
        margin-bottom: 30px;
    }

    .footer-area-box-quote-map img {
        width: 70%;
        object-fit: cover;
    }

    .footer-area-box-quote-btn {
        margin-top: 50px;
        width: 100%;
    }

    .footer-area-box-quote-btn a {
        width: 60%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F39800;
        color: #fff;
        font-size: 1.3rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
    }

    .footer-area-box-quote-btn a:hover {
        background-color: #fff;
        color: #F39800;
        transition: ease 0.5s ease;
    }

    .footer-area-box-menu-item {
        margin-bottom: 30px;
    }

    .footer-area-box-menu-item-title {
        color: #fff;
    }

    .footer-area-box-menu-item-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-area-box-menu-item-content a {
        color: #fff;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
        text-transform: uppercase;
    }

    .footer-area-box-menu-item-content a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright {
        padding: 10px 20px;
        background-color: #272727;
    }

    .footer-area-copyright-social {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-area-copyright-social a {
        text-decoration: none;
    }

    .footer-area-copyright-social i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-area-copyright-social a:hover i {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-text {
        margin: 10px 0;
    }

    .footer-area-copyright-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #707070;
    }

    .footer-area-copyright-text a {
        color: #707070;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        text-decoration: none;
    }

    .footer-area-copyright-text a:hover {
        color: #F39800;
        transition: color 0.5s ease;
    }

    .footer-area-copyright-logo img {
        width: 160px;
        object-fit: cover;
    }

    /* 网站底部 */













    /* 内页Banner */
    .page-banner {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
    }

    .page-banner-bg {
        width: 100%;
        height: 600px;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        display: flex;
        justify-content: center;
    }

    .page-banner-bg img {
        animation: zoomIn 10s ease infinite alternate;
    }

    .page-banner-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .page-banner-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 20px;
    }

    .page-banner-content span {
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
        color: #fff;
        background-color: #1E2380;
        padding: 8px 15px;
        border-radius: 10px;
        width: 150px;
    }

    .page-banner-content h1 {
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #fff;
        font-weight: 600;
        margin: 10px 0;
    }

    .page-banner-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #fff;
    }

    .page-banner-content-btn {
        margin-top: 40px;
    }

    /* 内页Banner */














    /* 博威故事 */
    .about-pauway-img img {
        width: 100%;
        object-fit: cover;
    }

    .about-pauway-content2 {
        background-color: #F9F9F9;
    }

    .about-pauway-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .story-area-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .story-area-title-line {
        border-bottom: 4px solid #F39800;
        width: 100px;
        margin: 0 auto;
    }

    .story-area-item-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .story-area-item-content h5 {
        margin: 10px 0;
    }

    .story-area-item-content-btn {
        margin-top: 30px;
    }

    .story-area-item-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .story-area-item-img img {
        width: 100%;
        object-fit: cover;
    }

    .story-area-item-img:hover img {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    /* 博威故事 */





















    /* 博威服务 */
    .icare-tab {
        margin-top: 40px;
    }

    .icare-tab-buttons {
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .icare-tab-btn {
        padding: 15px 0;
        background: none;
        border: none;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        text-align: left;
    }

    .icare-tab-btn:hover {
        color: var(--nav-blue);
    }

    .icare-tab-btn.active {
        color: #1E2380;
    }

    .icare-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #1E2380;
    }

    .icare-tab-content {
        padding: 20px 0;
    }

    .icare-tab-pane {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .icare-tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .icare-tab-pane-item {
        margin-bottom: 30px;
    }

    .icare-tab-pane-text {
        margin-bottom: 30px;
    }

    .icare-tab-pane-text span {
        padding: 5px 12px;
        border-radius: 10px;
        background-color: #1E2380;
        color: #fff;
    }

    .icare-tab-pane-text h1 {
        margin: 15px 0;
    }

    .icare-tab-pane-btn {
        margin-top: 40px;
    }

    .icare-tab-pane-text p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .icare-tab-pane-img {
        margin-bottom: 30px;
    }

    .icare-tab-pane-img img {
        width: 100%;
        object-fit: cover;
    }

    /* 博威服务 */















    /* 合作伙伴 */
    .pauway-partner p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 合作伙伴 */












    /* 里程碑 */
    .milestone-item {
        margin-bottom: 20px;
    }

    .milestone-content {
        margin-top: 50px;
    }

    .milestone-item-content p {
        display: -webkit-box;
        /* 必须结合的弹性盒子模型 */
        -webkit-box-orient: vertical;
        /* 设置子元素的排列方式 */
        -webkit-line-clamp: 5;
        /* 限制显示行数（此处为3行） */
        overflow: hidden;
        /* 隐藏超出内容 */
        text-overflow: ellipsis;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    .milestone-item-box {
        overflow: hidden;
    }

    .milestone-item-content {
        height: 200px;
        padding: 20px;
        background-color: #F9F9F9;
        overflow: hidden;
    }

    .milestone-item-img {
        width: 100%;
        height: 200px;
        display: flex;
        overflow: hidden;
    }

    .milestone-item-img img {
        width: 100%;
    }

    .milestone-item-circle {
        display: none;
    }

    .milestone-item-circle-item {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #F9F9F9;
    }

    .milestone-item-none {
        width: 45%;
    }

    /* 里程碑 */














    /* 联系我们 */
    .contact-support-item {
        display: flex;
        gap: 20px;
        padding: 20px 0;
    }

    .contact-support-item-icon i {
        font-size: 4rem;
    }

    .contact-info-form {
        padding: 20px;
        border: 1px solid #dfdfdf;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .contact-info-form form {
        margin-top: 30px;
    }

    .contact-info-form-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info-form-item label {
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
    }

    .contact-info-form-item label span {
        color: red;
    }

    .contact-info-form-item input {
        width: 100%;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }

    .contact-info-form-item textarea {
        width: 100%;
        height: 100px;
        border: none;
        padding: 10px 20px;
        background: #F9F9F9;
    }


    .contact-info-form-btn {
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-info-form-btn button {
        padding: 10px 20px;
        border: none;
        background-color: #1E2380;
        color: #fff;
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-info-form-btn button:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    .contact-info-box-item {
        margin-top: 30px;
    }

    /* 联系我们页面 */










    /* 荣誉资质 */
    .cert-content {
        margin-top: 50px;
    }

    .honor {
        padding: 100px 0;
    }

    .honor-item {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 3D容器 */
    .image-container {
        position: relative;
        width: 300px;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    /* 单个图片样式 */
    .image-item {
        position: absolute;
        width: 100%;
        backface-visibility: hidden;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.5s ease;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 控制按钮 */
    .control-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #1E2380;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .control-btn:hover {
        background-color: #F39800;
        transition: all 0.3s ease;
    }

    .prev-btn {
        left: 5%;
    }

    .next-btn {
        right: 5%;
    }

    /* 荣誉资质 */













    /* 下载中心 */
    .download-area-item {
        margin-bottom: 30px;
        width: 100%;
        overflow: hidden;
    }

    .download-area-item-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
    }

    .download-area-item-img img {
        width: 100%;
        height: auto;
    }

    .download-area-item:hover .download-area-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .download-area-item-content {
        width: 100%;
        padding: 20px 20px 30px 20px;
        background-color: #F9F9F9;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .download-area-item:hover .download-area-item-content {
        background-color: #1E2380;
        color: #fff;
        transition: all 0.3s ease;
    }

    .download-area-item-content-btn {
        margin-top: 40px;
    }

    /* 下载中心 */














    /* 新闻列表 */
    .article-hot-box {
        padding: 20px;
        width: 100%;
        border-radius: 15px;
        border: 1px solid #dfdfdf;
    }

    .article-hot-img {
        width: 100%;
    }

    .article-hot-img a {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-hot-img img {
        width: 100%;
        height: auto;
    }

    .article-hot-box:hover .article-hot-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-hot-content {
        width: 100%;
        padding: 20px 0;
    }

    .article-hot-content span {
        color: #1E2380;
        font-family: "HarmonyOS_Sans_Thin", sans-serif;
    }

    .article-hot-content-title {
        margin: 10px 0;
    }

    .article-hot-content-title a {
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-hot-content-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-hot-content-btn {
        margin-top: 20px;
    }

    .article-list-item {
        margin-bottom: 60px;
    }

    .article-list-item-line {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 40px;
    }

    .article-list-item-img {
        width: 100%;
    }

    .article-list-item-img a {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .article-list-item-img img {
        width: 100%;
    }

    .article-list-item:hover .article-list-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .article-list-item-title {
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 20px;
    }

    .article-list-item-title a {
        font-size: 1.2rem;
        font-family: "HarmonyOS_Sans_Bold", sans-serif;
        color: #000;
        text-decoration: none;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-title a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .article-list-item-content {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 20px;
    }

    .article-list-item-content p {
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
    }

    /* 新闻列表 */













    /* 新闻详情 */
    .article-content-detail h2 {
        margin-bottom: 20px;
    }

    .article-content-text {
        margin-bottom: 30px;
    }

    .article-content-text img {
        width: 100%;
        margin-bottom: 50px;
    }

    .sidebar-content-item {
        margin-bottom: 40px;
    }

    .sidebar-content-item-title {
        padding: 15px 20px;
        background-color: #1E2380;
    }

    .sidebar-content-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .sidebar-content-item-content {
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
    }

    .sidebar-content-item-content a {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-family: "HarmonyOS_Sans_Regular", sans-serif;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #e9e9e9;
    }

    .sidebar-content-item-content a:hover {
        background-color: #F39800;
        color: #fff;
        transition: all 0.3s ease;
    }

    /* 新闻详情 */












    /* 研发成果 */
    .rd-area-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .rd-area-item img {
        width: 100%;
        filter: blur(1px);
    }

    /* 研发成果 */















    /* 行业应用 */

    /* WebKit 浏览器隐藏滚动条 */
    .solution-area::-webkit-scrollbar {
        display: none;
    }

    /* 每一屏设置为视口高度，启用 snap 对齐 */
    .solution-area-item {
        width: 100%;
        height: 100vh;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .solution-area-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        display: flex;
        justify-content: center;
    }

    .solution-area-item-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 30%);
        z-index: -1;
    }

    .solution-area-item-content-box {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .solution-area-item-content-box span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .solution-area-item-content-box-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .solution-area-item-content-box-title:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .solution-area-item-content-box p {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #fff;
    }

    .solution-area-item-content-box-btn {
        margin-top: 40px;
    }

    .solution-area-item-content-box-tag {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    /* 行业应用 */















    /* 应用详情 */
    .solution-details-img {
        width: 100%;
        overflow: hidden;
        display: flex;
    }

    .solution-details-content {
        margin-bottom: 30px;
    }

    .solution-details-content-btn {
        margin-top: 20px;
    }

    .solution-details-img img {
        width: 100%;
    }

    .related-products-content {
        margin-top: 30px;
    }

    .related-products-content-item {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
        margin-bottom: 20px;
    }

    .related-products-content-item a {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
    }

    .related-products-content-item img {
        width: 100%;
    }

    .related-products-content-item:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content {
        margin-top: 30px;
    }

    .latest-news-content-item {
        border: 1px solid #e9e9e9;
        margin-bottom: 20px;
    }

    .latest-news-content-item-img {
        width: 100%;
        height: 160px;
        overflow: hidden;
    }

    .latest-news-content-item-img a {
        width: 100%;
        height: 160px;
        overflow: hidden;
        display: flex;
    }

    .latest-news-content-item-img img {
        width: 100%;
    }

    .latest-news-content-item:hover .latest-news-content-item-img img {
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

    .latest-news-content-item-text {
        padding: 20px;
    }

    .latest-news-content-item-text span {
        padding: 8px 12px;
        width: 100px;
        background-color: #1E2380;
        color: #fff;
        border-radius: 10px;
        font-size: 0.8rem;
        text-shadow: none;
        font-family: 'HarmonyOS_Sans_Thin', sans-serif;
    }

    .latest-news-content-item-text-title {
        margin: 20px 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }

    .latest-news-content-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-date {
        font-family: 'HarmonyOS_Sans_Regular';
        font-size: 0.8rem;
        color: #808080;
    }

    .latest-news-content-item-text-line {
        margin: 20px 0;
        width: 100%;
        height: 1px;
        background-color: #e9e9e9;
    }

    .latest-news-content-item-text-btn a {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #000;
        text-decoration: none;
    }

    .latest-news-content-item-text-btn a:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    /* 应用详情 */














    /* 产品列表 */
    .pro-list-content-text-app {
        margin-top: 30px;
    }

    .pro-list-content-box {
        margin-top: 50px;
    }

    .pro-list-content-box-item {
        margin-bottom: 30px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    }

    .pro-list-content-box-item-img {
        padding: 30px;
    }

    .pro-list-content-box-item-img a {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }

    .pro-list-content-box-item-img img {
        width: 100%;
    }

    .pro-list-content-box-item-text {
        padding: 20px;
    }

    .pro-list-content-box-item-text-title {
        margin-bottom: 10px;
    }

    .pro-list-content-box-item-text-title a {
        font-family: 'HarmonyOS_Sans_Bold';
        font-size: 1.3rem;
        color: #000;
        text-decoration: none;
    }

    .pro-list-content-box-item-text-no-item {
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pro-list-content-box-item-text-no-item a {
        color: #000;
        text-decoration: none;
        font-size: 0.8rem;
        font-family: 'HarmonyOS_Sans_Regular';
    }

    .pro-list-content-box-item-text-no-item:hover a {
        color: #F39800;
        transition: all 0.3s ease;
    }

























    /* 产品详情 */
    .pro-details-content-img {
        width: 100%;
        border: 1px solid #e9e9e9;
    }

    .pro-details-content-text {
        padding: 10px 0 0 10px;
    }

    .pro-details-content-text h1 {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .pro-details-content-text h5 {
        font-family: 'HarmonyOS_Sans_Regular';
        color: #F39800;
    }

    .pro-details-content-text-btn {
        margin-top: 20px;
    }

    .pro-details-content-img img {
        width: 100%;
    }

    .pro-details-content-tab {
        margin-top: 40px;
    }

    .pro-tab-buttons {
        display: flex;
        border-bottom: 1px solid #e0e0e0;
        gap: 1px;
    }

    .pro-tab-btn {
        padding: 10px 15px;
        width: 120px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 500;
        background-color: #F9F9F9;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'HarmonyOS_Sans_Bold';
    }

    .pro-tab-btn:hover {
        color: #F39800;
        transition: all 0.3s ease;
    }

    .pro-tab-btn.active {
        background-color: #1E2380;
        color: #fff;
    }

    .pro-tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--nav-blue);
    }

    .pro-tab-pane {
        display: none;
    }

    .pro-tab-pane.active {
        display: block;
    }

    .pro-tab-pane table {
        width: 100%;
    }

    .pro-tab-pane table tr {
        border-bottom: 1px solid #e0e0e0;
    }

    .pro-tab-pane table tr td {
        width: 20%;
        padding: 5px;
        text-align: center;
    }

    .pro-tab-pane table tr td h6 {
        margin-bottom: 0;
        font-size: 0.6rem;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pro-tab-pane h3 {
        color: var(--nav-blue);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pro-tab-pane p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* 产品详情 */
}