* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Abel';
    src: url('/static/font/Abel.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Bahn';
    src: url('/static/font/Bahn.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Impact';
    src: url('/static/font/impact.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

p {
    font-family: 'Abel', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bahn', sans-serif;
    margin-bottom: 0;
}

ul {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

@keyframes zoomIn {
   0% { transform: scale(1); } /* 初始状态为原始大小 */
   50% { transform: scale(1.2); } /* 放大到1.2倍 */
   100% { transform: scale(1.4); } /* 最后放大到1.4倍 */
}

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

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

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

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





/* 欢迎栏 */
.welcome {
    padding: 5px 0;
    width: 100%;
    background: #0954fc;
}

.welcome-social {
    display: flex;
    gap:5px;
    height: 30px;
    align-items: center;
}

.welcome-social a {
    text-decoration: none;
    color: #fff;
}

.welcome-social a:hover {
    color: #3875fc;
    transition: all .3s ease;
}

.welcome-text {
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
}

.welcome-text p {
    font-size: 0.9rem;
}

.welcome-text a {
    text-decoration: underline;
    color: #fff;
}

.welcome-language {
    display: flex;
    gap:10px;
    align-items: center;
    width: 100%;
    justify-content: end;
    height: 30px;
}

.welcome-language a {
    text-decoration: none;
    color: #fff;
}
/* 欢迎栏 */





/* 网站顶部 */
.header-logo img {
    width: 70px;
}

.header-menu .header-menu-box {
    display: flex;
    height: 95px;
    align-items: center;
    gap:20px;
}

.header-menu ul li {
    color: #333; /* 未选中状态文字颜色 */
    background-color: transparent; /* 未选中状态背景色 */
    font-family: 'Bahn', sans-serif;
    font-size: 1rem;
}

.header-menu ul li .nav-link {
    color:#333;
}

.header-menu ul li .nav-link:hover {
    color:#0954fc;
}

/* 下拉菜单样式 */
.nav-item.dropdown .nav-link {
    color: #333; /* 未选中状态文字颜色 */
    background-color: transparent; /* 未选中状态背景色 */
    font-family: 'Bahn', sans-serif;
    font-size: 1rem;
}

.nav-item.dropdown .nav-link:hover {
    color: #0954fc; /* 悬停时文字颜色 */
}

/* 鼠标悬停显示二级菜单 */
.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0; /* 消除默认的小间距，避免hover闪烁 */
}

.header-menu ul li.nav-item.dropdown .dropdown-menu {
    display: none !important; /* 更高特异性确保默认隐藏 */
    background-color: #0954fc;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0.25rem;
    color: #fff;
}

/* 鼠标悬停显示二级菜单 */
.header-menu ul li.nav-item.dropdown:hover .dropdown-menu {
    display: block !important; /* 匹配特异性确保悬停显示 */
    margin-top: 0;
    font-family: 'Abel', sans-serif;
}

.header-menu ul li.nav-item.dropdown:hover .dropdown-menu .dropdown-item {
    color: #fff;
}

.dropdown-menu-box {
    position: absolute;
    left: -150%;
    top: 40px;
    padding: 20px;
    background-color: #0954fc;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0.25rem;
    color: #fff;
    z-index: 999;
    display: none;
}

.dropdown:hover .dropdown-menu-box {
    display: block;
}

.dropdown-menu-box-list {
    display: flex;
    gap: 100px;
}

.dropdown-menu-box-list-item-select {
    margin-top: 10px;
}

.dropdown-menu-box-list-item a {
    text-decoration: none;
    font-family: 'Abel', sans-serif;
    color: #fff;
}

.header-menu .nav-item.active .nav-link {
    color: #0954fc;
}

.dropdown-item {
    color: #333;
}

.dropdown-item:hover {
    color: #fff;
    background-color: #0954fc;
}

.header-menu-btn {
    width: 100%;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-menu-btn button {
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-family: 'Bahn', sans-serif;
    background-color: #f71c18;
    color: #fff;
}

.header-menu-btn button:hover {
    background-color: #0954fc;
    transition: all .3s ease;
}
/* 网站顶部 */





/* 滚动大图 */
.slider-item {
    position: relative;
    width: 100%;
    max-height: 900px;
    overflow: hidden;
}

.slider-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    overflow: hidden;
    z-index: -2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-item-bg img {
    width: 100%;
    object-fit: cover;
}

.slider-item-text {
    padding: 150px 0;
}

.slider-item-text-box {
    padding: 50px;
    background-color: #fff;
}

.slider-item-text-box h6 {
    color: #979696;
}

.lider-item-text-box-slogan {
    font-family: 'Bahn', sans-serif;
    color: #272727;
    font-size: 2.4rem;
    text-transform: uppercase;
}

.lider-item-text-box-slogan h1 {
    color: #f71c18;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0;
}

.slider-item-text-box-line {
    margin: 20px 0;
    border-bottom: 10px solid #0954fc;
    width: 80px;
}

.slider-item-text-box-btn {
    margin-top: 50px;
}

.slider-item-text-box-btn a {
    padding: 15px 35px;
    border: 1px solid #979696;
    font-family: 'Bahn', sans-serif;
    color: #979696;
    border-radius: 25px;
}

.slider-item-text-box-btn a:hover {
    background-color: #0954fc;
    color: #fff;
    text-decoration: none;
    border: none;
    transition: all .3s ease;
}
/* 滚动大图 */




/* 横幅 */
.home-adv {
    padding: 20px 0;
    background-color: #f3f3f3;
    width: 100%;
}

.home-adv-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-adv-box-item {
    width: 19%;
}

.home-adv-box-item-icon {
    display: flex;
    gap:10px;
    align-items: center;
}

.home-adv-box-item-icon:hover {
    transform: translateY(-10px);
    transition: all .3s ease;
}

.home-adv-box-item-icon i {
    font-size: 3rem;
    color: #0954fc;
}

.home-adv-box-item-icon:hover i {
    color: #3875fc;
    transition: all .3s ease;
}

.home-adv-box-item-icon h5 {
    text-transform: uppercase;
    margin-bottom: 0;
}

.home-adv-box-item-icon:hover h5 {
    color: #3875fc;
    transition: all .3s ease;
}
/* 横幅 */







/* 产品展示 */
.home-product-title {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.home-product-big {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.home-product-big-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
}

.home-product-big-bg img {
    height: 100%;
}

.home-product-big-text {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 30px;
    left: 0;
    background-color: #0956fccb;
    z-index: 2;
    opacity: 0;
}

.home-product-big:hover .home-product-big-text {
    opacity: 1;
    transition: all .5s ease;
}

.home-product-big:hover .home-product-big-bg img {
    transform: scale(1.1);
    transition: all .5s ease;
}

.home-product-big-text {
    color: #fff;
}

.home-product-big-text a {
    color: #fff;
    font-family: 'Bahn', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.home-product-big-text a:hover {
    text-decoration: none;
}

.home-product-big-text-right {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

.home-product-big-text-right i {
    font-size: 3rem;
}

.home-product-big-text-right a {
    text-align: center;
}

.home-product-big-text-right a:hover {
    text-decoration: none;
}

.home-product-right {
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap:20px;
}

.home-product-right-item {
    width: 100%;
    height: 290px;
    overflow: hidden;
    position: relative;
}

.home-product-right-item-bg {
    width: 100%;
    height: 290px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.home-product-right-item-bg img {
    height: 100%;
}

.home-product-right-item:hover .home-product-right-item-bg img {
    transform: scale(1.1);
    transition: all .5s ease;
}

.home-product-right-item-text {
    position: absolute;
    bottom: 0;
    padding: 15px;
    left: 0;
    z-index: 2;
    background-color: #0956fccb;
    color: #fff;
    width: 100%;
    display: flex;
    opacity: 0;
}

.home-product-right-item:hover .home-product-right-item-text {
    opacity: 1;
    transition: all .5s ease;
}

.home-product-right-item-text-left {
    width: 80%;
}

.home-product-right-item-text-left a {
    font-family: 'Bahn', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.home-product-right-item-text-right {
    display: flex;
    width: 20%;
    justify-content: flex-end;
    height: 100px;
    align-items: end;
}

.home-product-right-item-text-right i {
    font-size: 2rem;
    color: #fff;
}

.home-product-right-item-text-right a:hover {
    text-decoration: none;
}
/* 产品展示 */






/* 超级新品 */
.home-hot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.home-hot-list-item {
    width: 18%;
}

.home-hot-list-item-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.home-hot-list-item:hover .home-hot-list-item-img img {
    transform: scale(1.1);
    transition: all .5s ease;
}

.home-hot-list-item-text a {
    font-family: 'Bahn', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #272727;
}

.home-hot-list-item-text a:hover {
    color: #0954fc;
    transition: all .5s ease;
}

.home-hot-list-item-text-des {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap:10px;
}

.home-hot-list-item-text-des span {
    font-family: 'Bahn', sans-serif;
    font-size: 0.5rem;
    color: #979696;
}

.home-hot-btn {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-hot-btn a {
    padding: 10px 35px;
    border: 1px solid #979696;
    font-family: 'Bahn', sans-serif;
    color: #979696;
    border-radius: 25px;
}

.home-hot-btn a:hover {
    background-color: #0954fc;
    color: #fff;
    text-decoration: none;
    border: 1px solid #0954fc;
    transition: all .3s ease;
}
/* 超级新品 */







/* 首页关于我们 */
.home-about {
    width: 100%;
    background-color: #0954fc;
    padding: 120px 0;
}

.home-about-title {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.home-about-left {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 420px;
}

.home-about-left-mask {
    position: absolute;
    width: 100%;
    height: 420px;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(to top, #000000b6, rgba(0, 0, 0, 0));
}

.home-about-left-text {
    position: absolute;
    width: 100%;
    left: 30px;
    bottom: 30px;
    z-index: 3;
    color: #fff;
    text-transform: uppercase;
}

.home-about-left-text h2 {
    margin-bottom: 0;
}

.home-about-left-img img {
    width: 100%;
}

.home-about-left:hover .home-about-left-img img {
    transform: scale(1.1);
    transition: all .5s ease;
}

.home-about-middle {
    display: flex;
    flex-direction: column;
    gap:20px;
}

.home-about-middle-item {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.home-about-middle-img {
    display: flex;
}

.home-about-middle-img img {
    height: 100%;
}

.home-about-middle-item:hover .home-about-middle-img img {
    transform: scale(1.1);
    transition: all .5s ease;
}

.home-about-middle-mask {
    position: absolute;
    width: 100%;
    height: 200px;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(to top, #000000b6, rgba(0, 0, 0, 0));
}

.home-about-middle-text {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    bottom: 20px;
    z-index: 3;
    color: #fff;
    text-transform: uppercase;
}

.home-about-middle-text h5 {
    margin-bottom: 0;
    white-space: ;
}

.home-about-right-text {
    text-align: right;
    color: #fff;
}

.home-about-right-text p {
    font-size: 1rem;
}

.home-about-right-data {
    margin-top: 50px;
    text-align: center;
}

.home-about-right-data-item {
    color: #fff;
    margin-bottom: 30px;
}

.home-about-right-data-item h2 {
    font-size: 2rem;
    font-family: 'Impact', sans-serif;
}
/* 首页关于我们 */







/* 首页行业应用 */
.home-app-item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.home-app-item-img {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-app-item-img img {
    height: 100%;
}

.home-app-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    background-color: #0956fcdd;
}

.home-app-item:hover .home-app-item-mask {
    display: none;
    transition: all .3s ease;
}

.home-app-item-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    padding: 0 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
}

.home-app-item-text-icon i {
    font-size: 4rem;
}

.home-app-item-text-btn {
    width: 150px;
}

.home-app-item-text-btn a {
    padding: 10px 15px;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
}

.home-app-item-text-btn a:hover {
    background: #fff;
    color: #0954fc;
    transition: .5s ease;
    text-decoration: none;
}

.home-honor-item-img img {
    width: 100%;
}

.home-partner img {
    width: 100%;
}
/* 首页行业应用 */








/* 网站底部 */
.footer {
    background-color: #0954fc;
}

.footer-message {
    padding: 15px 0;
    background-color: #f3f3f3;
}

.footer-message-box {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-message-text {
    width: 25%;
}

.footer-message-text h4 {
    color: #f71c18;
    margin-bottom: 0;
}

.footer-message-box form {
    width: 70%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-message-box form input {
    width: 80%;
    border: none;
    padding: 10px 20px;
    background-color: #f3dddd;
    color: #fff;
}

.footer-message-box form button {
    width: 20%;
    padding: 10px 20px;
    border: none;
    background-color: #f71c18;
    color: #fff;
}

.footer-content {
    padding: 80px 0;
}

.footer-logo p {
    margin: 20px 0;
    color: #fff;
    font-size: 0.9rem;
}

.footer-logo img {
    width: 60px;
}

.footer-social {
    display: flex;
    gap:5px;
}

.footer-social i {
    font-size: 1rem;
    color: #fff;
}

.footer-social i:hover {
    color: #3875fc;
    transition: all .3s ease;
}

.footer-menu {
    margin-top: 50px;
    color: #fff;
}

.footer-menu-item-list {
    display: flex;
    flex-direction: column;
}

.footer-menu-item-list p {
    display: flex;
    gap:8px;
    align-items: center;
    font-size: 1rem;
}

.footer-menu-item-list a {
    color: #bbbbbb;
}

.footer-menu-item-list a:hover {
    color: #fff;
    text-decoration: none;
    transition: .5s ease;
}

.footer-qr {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap:10px;
    align-items: center;
    color: #fff;
}

.footer-qr img {
    width: 60%;
}


/* 产品详情图片切换样式 */
.product-detail-img {
    position: relative;
}

.main-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.thumbnail-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.thumbnail-slider {
    display: flex;
    overflow: hidden;
    width: calc(100% - 60px);
    scroll-behavior: smooth;
}

.thumbnail {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #0954fc;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-prev, .thumbnail-next {
    width: 30px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    z-index: 10;
}

.thumbnail-prev:hover, .thumbnail-next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .thumbnail-prev, .thumbnail-next {
        height: 60px;
    }
}

.product-detail-text span {
    color: #bbbbbb;
    font-family: 'Abel', sans-serif;
    font-size: 1.1rem;
}

.product-detail-text h1 {
    margin: 0.2em 0;
}

.product-detail-text-des {
    margin: 20px 0;
}

.product-detail-text-tips h6 {
    color: #ababab;
    font-weight: 100;
}

.product-detail-text-btn {
    margin-top: 30px;
    display: flex;
    gap:10px;
}

.product-detail-text-btn a {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Bahn', sans-serif;
}

.product-detail-text-btn a:hover {
    text-decoration: none;
    background-color: #272727;
    transition: all 0.3s ease;
}

.product-detail-text-btn .button1 {
    background-color: red;
}

.product-detail-text-btn .button2 {
    background-color: #0954fc;
}

.footer-copyright-line {
    border-bottom: 1px solid #ffffff39;
    width: 100%;
}

.footer-copyright {
    display: flex;
    gap:100px;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    text-transform: uppercase;
    color: #9d9d9d;
}

.footer-copyright p {
    font-size: 0.9rem;
}
/* 网站底部 */






/* 关于我们 */
.pageban {
    width: 100%;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.pageban-mask {
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 400px;
    background-color: #0956fcc5;
    z-index: 2;
}

.pageban-bg-img img {
    width: 100%;
}

.page-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    color: #fff;
}

.page-text-line {
    border-bottom: 5px solid #fff;
    width: 50px;
    margin: 20px 0;
}

.page-text a {
    color: #fff;
    font-size: 1.3rem;
}

.page-text a:hover {
    text-decoration: none;
}


.about-area-img img {
    width: 100%;
}

.about-area-text {
    margin-top: 10px;
}

.about-area-text h1 {
    text-transform: uppercase;
}

.about-area-text p {
    margin-top: 10px;
    font-size: 1rem;
}

.about-area-text-btn {
    margin-top: 30px;
}

.about-area-text-btn a {
    padding: 12px 20px;
    background-color: #0954fc;
    border-radius: 25px;
    color: #fff;
    font-family: 'Bahn', sans-serif;
    text-transform: uppercase;
}

.about-area-text-btn a:hover {
    text-decoration: none;
}

.about-area-data {
    margin-top: 50px;
}

.about-area-data-item {
    text-align: center;
}

.about-area-data-item-text {
    display: flex;
    gap:10px;
    justify-content: center;
    align-items: center;
    color: #0954fc;
}

.about-area-data-item-text h1 {
    font-weight: 600;
    font-family: 'Impact', sans-serif;
}

.about-area-data-item-text small {
    font-size: 1.5rem;
}

.about-area-company-item {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.about-area-company-item-img {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-area-company-item:hover .about-area-company-item-img {
    transform: scale(1.05);
    -webkit-transition: .3s ease-in-out;
    transition: .5s ease;
}

.about-area-company-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 450px;
    background: linear-gradient(to top, #000000d4, rgba(0, 0, 0, 0));
}

.about-area-company-item-mask-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
}

.about-area-video-item {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.about-area-video-item video {
    width: 100%;
}

.about-area-video-item-mask {
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 700px;
    background-color: #0956fce3;
    z-index: 1;
}

.about-area-video-item-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.about-area-video-item-btn h1 {
    text-transform: uppercase;
}

.about-area-video-item-btn a {
    margin-top: 30px;
}

.about-area-video-item-btn i {
    font-size: 3.5rem;
    color: #fff;
}

.about-area-map-box {
  width: 100%;
  margin: 0 auto;
  position: relative;
  transform: translateY(-50px);
}

.Map-container {
  position: relative;
}

#Map-svg {
  width: 100%;
  height: auto;
}

.Location-nav {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.75);
}
.Location-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.Location-nav li {
  margin: 15px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.Location-nav li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s linear, transform 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.Location-nav li:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.about-area-development-big {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.about-area-development-big img {
    width: 100%;
}

.about-area-development-big:hover img {
    transform: scale(1.05);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease;
}

.about-area-development-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-area-development-item i {
    font-size: 3rem;
    color: #0954fc;
}

.about-area-development-item:hover {
    transform: translateY(-15px);
    transition: 0.4s ease-in-out;
    background-color: #3875fc;
}

.about-area-development-item:hover i {
    color:#fff;
    transition: 0.4s ease-in-out;
}

.about-area-development-item h5 {
    text-transform: uppercase;
}

.about-area-development-item p {
    font-size: 0.9rem;
}

.about-area-development-item:hover h5 {
    color:#fff;
    transition: 0.4s ease-in-out;
}

.about-area-development-item:hover p {
    color:#fff;
    transition: 0.4s ease-in-out;
}
/*关于我们*/







/* 产品列表页 */
.product-list-sidebar {
    margin-bottom: 30px;
}

.product-list-sidebar-title {
    padding: 10px 30px;
    color: #fff;
    background-color: #0954fc;
}

.product-list-sidebar-title h4 {
    margin-bottom: 0;
}

.product-list-sidebar-box-category {
    padding: 10px 30px;
    background-color: #ceddfe;
}

.product-list-sidebar-box-category h5 {
    margin-bottom: 0;
}

.product-list-sidebar-box-content-item {
    padding: 10px 30px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #0956fc17;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-list-sidebar-box-content-item label {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

/* 隐藏原始复选框 */
.product-list-sidebar-box-content-item label input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
}

/* 自定义复选框样式 - 未选中状态 */
.product-list-sidebar-box-content-item label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ceddfe, #fff);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* 自定义复选框样式 - 选中状态 */
.product-list-sidebar-box-content-item label:has(input[type="checkbox"]:checked)::before {
    background: linear-gradient(45deg, #0954fc, #0954fc);
}

/* 选中标记 */
.product-list-sidebar-box-content-item label:has(input[type="checkbox11111"]:checked)::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
}

.product-list-more {
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px 7px #f4f4f471;
}

.product-list-more-img {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.product-list-more-img img {
    width: 100%;
}

.product-list-more:hover img {
    transform: scale(1.05);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease;
}

.product-list-more-text {
    padding: 20px;
}

.product-list-more-text a {
    font-family: 'Bahn', sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
    color: #272727;
}

.product-list-more-text a:hover {
    color: #0954fc;
    transition: 0.4s ease-in-out;
}

.product-list-more-text-des {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.product-list-more-text-des span {
    font-family: 'Abel', sans-serif;
    font-size: 0.8rem;
    color: #979696;
}

.pageinfo {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap:10px;
}

.pageinfo a {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: linear-gradient(45deg, #ceddfe, #fff);
    text-align: center;
    line-height: 30px;
    color: #0954fc;
    font-family: 'Bahn', sans-serif;
}

.pageinfo a:hover {
    text-decoration: none;
}

.pageinfo a.active {
    background: linear-gradient(45deg, #0954fc, #0954fc);
    color: #fff;
}
/* 产品列表页 */







/* 产品详情页 */
/* Tab选项卡样式 */
.tab-container {
    width: 100%;
    margin: 20px 0;
}

.tab-header {
    display: flex;
    border-bottom: 2px solid #0954fc;
}

.tab-item {
    padding: 12px 24px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    background-color: #f5f5f5;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 0.3s ease;
    width: 50%;
    text-align: center;
    font-family: 'Bahn', sans-serif;
    text-transform: uppercase;
}

.tab-item.active {
    background-color: #0954fc;
    color: white;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* 产品详情页 */






/* 行业应用 */
.application-area-title {
    margin-bottom: 50px;
    text-align: center;
}

.application-area-title h1 {
    text-transform: uppercase;
}

.application-area-box-item {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.application-area-box-item-bg {
    width: 100%;
    height: 250px;
    display: flex;
}

.application-area-box-item-bg img {
    width: 100%;
}

.application-area-box-item:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.application-area-box-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, #0956fcb5, #0956fc00);
}

.application-area-box-item:hover .application-area-box-item-mask {
    background: linear-gradient(to top, #0956fc, #0956fcb9);
    transition: all 0.3s ease;
}

.application-area-box-item-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
}

.application-area-box-item-btn a {
    font-family: 'Bahn', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
}

.application-area-box-item-btn a:hover {
    text-decoration: none;
}
/* 行业应用 */





/* 应用详情页 */
.application-detail-content-img img {
    width: 100%;
}

.application-detail-more h1 {
    margin: 20px 0;
}

.application-detail-sidebar {
    margin-bottom: 30px;
}

.application-detail-sidebar-title {
    padding: 10px 20px;
    background-color: #0954fc;
}

.application-detail-sidebar-title h5 {
    margin-bottom: 0;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Bahn';
}

.application-detail-sidebar-list {
    display: flex;
    flex-direction: column;
}

.application-detail-sidebar-list a {
    padding: 10px 20px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #0956fc17;
    width: 100%;
    font-family: 'Abel', sans-serif;
    font-size: 1rem;
}

.application-detail-sidebar-list a:hover {
    text-decoration: none;
    background-color: #ceddfe;
    color: #fff;
}
/* 应用详情页 */









/* 联系我们 */
.contact-area-title {
    margin-bottom: 50px;
    text-align: center;
}

.contact-area-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 15px;
}

.contact-area-info-item:hover {
    background-color: #0954fc;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-area-info-item-icon i {
    font-size: 3rem;
    color: #0954fc;
}

.contact-area-info-item:hover i {
    color: #fff;
    transition: all 0.3s ease;
}

.contact-area-info-item h1 {
    margin: 20px 0;
}

.contact-area-form-img {
    width: 100%;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
}

.contact-area-form-img img {
    width: 100%;
}

.contact-area-form-img:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.contact-area-form form input {
    border: none;
    padding: 20px 30px;
    width: 100%;
    background-color: #f7f7f7;
    margin-bottom: 30px;
    border-radius: 10px;
    font-family: 'Abel';
}

.contact-area-form form input:focus {
    outline: none;
    background-color: #0954fc;
    color: #fff;
}

.contact-area-form form textarea {
    border: none;
    padding: 20px 30px;
    width: 100%;
    background-color: #f7f7f7;
    margin-bottom: 30px;
    border-radius: 10px;
    height: 90px;
    font-family: 'Abel';
}

.contact-area-form form textarea:focus {
    outline: none;
    background-color: #0954fc;
    color: #fff;
}

.contact-area-form form button {
    border: none;
    padding: 20px 60px;
    background-color: #0954fc;
    color: #fff;
    font-family: 'Bahn', sans-serif;
    text-transform: uppercase;
    border-radius: 8px;
}

.contact-area-map {
    border-radius: 15px;
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
}

.contact-area-map img {
    width: 100%;
}
/* 联系我们 */




/*视频中心*/
.video-box-left video {
    width: 100%;
}

.video-content-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    box-shadow: 0px 0px 20px 7px #f4f4f471;
}

.video-content-item-video {
    width: 40%;
}

.video-content-item-video video {
    width: 100%;
}

.video-content-item-text {
    width: 60%;
    padding: 10px 20px;
}

.video-content-item-text a {
    color: #272727;
    font-family: 'Abel', sans-serif;
    font-size: 0.9rem;
}

.video-content-item-text a:hover {
    text-decoration: none;
    color: #0954fc;
    transition: all 0.3s ease;
}
/*视频中心*/





/*质量保证页面*/
.quality-adv-item {
    padding: 30px;
    background-color: #f7f7f7;
    width: 100%;
    height: 380px;
    position: relative;
}

.quality-adv-item:hover {
    background-color: #0954fc;
    transition: all 0.3s ease;
    color:#fff;
}

.quality-adv-item h5 {
    color: #0954fc;
    text-transform: uppercase;
}

.quality-adv-item:hover h5 {
    transition: all 0.3s ease;
    color:#fff;
}

.quality-adv-item p {
    margin: 20px 0;
}

.quality-adv-item a {
    font-family: 'Bahn', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.quality-adv-item:hover a {
    transition: all 0.3s ease;
    color:#fff;
    text-decoration: none;
}

.quality-area-line {
    margin: 80px 0;
}

.quality-area-line-bottom {
    border-bottom: 1px solid #0954fc;
}
/*质量保证页面*/





/*资料下载页面*/
.tab-box {
    width: 100%;
    margin-top: 40px;
}

.tab-box .tab {
    margin-bottom: 30px;
}

.tab-box .tab ul {
    display: flex;
    justify-content: space-between;
}

.tab-box .tab ul li {
    width: 16.5%;
    float: left;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: #e6eaf9;
    border-radius: 8px;
    color: #0954fc;
    font-family: 'Bahn', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.tab-box .tab ul li.action {
    background-color: #0954fc;
    color: #fff;
}

.tab-box .box {
    width: 100%;
}

.tab-box .box .item {
    display: none;
}

.tab-box .box .item:first-child {
    display: block;
}

.download-content {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1rem;
    word-break: break-all;
    font-family: 'Abel';
    margin-bottom: 20px;
}

.download-content img {
    width: 30px;
}

.download-content a {
    color: #272727;
    text-decoration: none;
}
.download-content a:hover {
    color: #0954fc;
    transition: all 0.3s ease;
}
/*资料下载页面*/