/* 公共样式 */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-around {
    justify-content: space-around;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

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

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

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

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

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

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

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

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

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

.mr-10 {
    margin-right: 10px;
}

.mr-12 {
    margin-right: 12px;
}

.mr-16 {
    margin-right: 16px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-12 {
    margin-left: 12px;
}

.ml-16 {
    margin-left: 16px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

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

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

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

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

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

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

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

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

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

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

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

/* 单行文本溢出隐藏 */
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

/* 两行文本溢出隐藏 */
.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 三行文本溢出隐藏 */
.text-ellipsis-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* 公共变量 */
:root {
    --main-color: #29aae3;
    --main-color-light: #f5f5f5;
    --main-color-dark: #1d8398;
    --main-color-darker: #0f5e7a;
    --main-color-darkest: #0b4b62;
    --main-color-lighter: #e6f7ff;
    --main-color-lightest: #d1ecff;
    --main-text-color: #333;
    --main-text-color-light: #666;
    --main-text-color-dark: #999;
    --main-text-color-darker: #ccc;
    --main-text-color-darkest: #eee;
    --main-text-color-lighter: #fff;
    --main-text-color-lightest: #f5f5f5;
}

/* 头部样式 */
.head-section {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    position: fixed;
    z-index: 999;
}

.head-section .navbar-default {
    background-color: #fff;
    border: none;
}

.head-section .navbar-toggle {
    margin-top: 30px;
}

.head-section .navbar-collapse ul.navbar-nav {
    float: right;
    margin-top: 20px;
}

.head-top {
    justify-content: flex-end;
    height: 30px;
}

.head-top-left {
    align-items: center;
}

.navbar {
    margin-bottom: 0;
}

.navbar-nav .nav-item.checked {
    color: var(--main-color);
}

.navbar-nav .nav-item {
    position: unset;
    height: 70px;
    box-sizing: border-box;
}

.navbar-nav .nav-item>a,.navbar-nav .search-icon {
    color: var(--main-text-color) !important;
    font-size: 18px;
    cursor: pointer;
}
.navbar-nav .nav-item .search-icon{
    padding: 10px 15px;
}
.navbar-nav .nav-item.checked>a {
    color: var(--main-color) !important;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-item:hover {
    /* color: var(--main-color); */
}

.navbar-nav .nav-item:hover>a {
    color: var(--main-color) !important;
    border-bottom: 2px solid var(--main-color);
}

.search-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
    padding: 30px 0;
}

.search-input-box {
    width: 80%;
    margin: 0 auto;
}

.search-input-box form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 5px;
}

.search-input-box form .search-input {
    width: 100%;
    border: none;
    outline: none;
}

.search-input-box form .search-btn {
    border: none;
    outline: none;
}

.search-close {
    text-align: right;
    font-size: 20px;
    color: var(--main-text-color-light);
    cursor: pointer;
    padding: 10px 20px;
}

.search-close:hover {
    color: var(--main-color);
}

.language{
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}
.language-img{
    height: 20px;
    margin-right: 10px;
}
.language-name{
    font-size: 18px;
}

.language-text{
    font-size: 18px;
    color: #333;
    margin-right: 10px;
}

.lucency .language i{
    color: #fff;
}
.lucency .language-text{
    color: #fff;
}
.language-box{
    position: absolute;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    border-radius: 6px;
    overflow: hidden;
    display: none;
}


.language-box ul li {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
}
.language-box ul li span{
    font-size: 16px;
    color: var(--main-text-color);
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}
.language-box ul li a{
    padding-left: 10px;
}
.language-box ul li a p{
    font-size: 14px;
    color: var(--main-text-color-light);
    margin: 0;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.language-box ul li a p:hover{
    border-bottom: 2px solid var(--main-color);
}
.language-box ul li a p.active{
    border-bottom: 2px solid var(--main-color);
}
/* 隐藏下拉菜单 */
.navbar-nav .dropdown-menu {
    display: block;
    /* 始终显示，但通过 opacity 和 transform 控制可见性 */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    padding: 60px 0;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    transform: translateY(10px);
    /* 初始位置向下偏移 */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    /* 添加过渡效果 */
}

.dropdown-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dropdown-box h2 {
    font-size: 28px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    padding: 15px;
}

.dropdown-box .child-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.child-name {
    font-size: 16px;
    color: var(--main-text-color);
    padding: 10px 15px;
    border-bottom: 1px solid var(--main-text-color-light);
}

.child-name.active {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.child-name.active i {
    display: block;
}

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

.child-name i {
    display: none;
}

.dropdown-box .second-child-item {
    display: none;
}

.dropdown-box .second-child-item.active {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dropdown-box .third-child-item {
    display: none;
}

.dropdown-box .third-child-item.active {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* 箭头图标样式 */
.dropdown-toggle .arrow-icon {
    margin-left: 5px;
    /* 调整箭头与文字的距离 */
    font-size: 12px;
    /* 调整箭头大小 */
    transition: transform 0.3s ease;
    /* 添加旋转过渡效果 */
}

/* 鼠标移入时箭头旋转 */
.dropdown:hover .dropdown-toggle .arrow-icon {
    transform: rotate(180deg);
    /* 旋转 180 度 */
}

/* 鼠标移入时显示下拉菜单 */
.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* 恢复到原始位置 */
}
.colorful-logo img,.lucency-logo img{
    height: 60px;
		 width:141px;
}


/* 底部样式 */
.footer {
    width: 100%;
}

.footer-top {
    background-color: #272727;
    color: #a2a6a9;
    padding: 60px 0;
}

.footer-bottom {
    background-color: #272727;
    color: #a2a6a9;
    padding: 10px 0;
    text-align: center;
}

.footer-col-wrap {
    align-items: center;
    padding: 0 15px;
}
.footer-col-logo img{
    height: 60px;
}

.footer-sns-item {
    width: 42px;
    height: 42px;
    line-height: 40px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #a2a6a9;
}

.footer-sns-item a {
    width: 100%;
    height: 100%;
    /* 去掉标签默认样式 */
    text-decoration: none;
    color: #a2a6a9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-sns-item:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.footer-sns-item:hover a {
    color: #fff;
}

.footer-col-menu {
    width: 100%;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.footer-menu-item {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-menu-item:hover a {
    color: #fff;
}

.footer-menu-item p {
    flex: 1;
}


/* 右侧悬浮框 */
.action {
    position: fixed;
    right: 50px;
    z-index: 999;
}

.action-item {
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 20px;
    cursor: pointer;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    position: relative;
}
.action-item:focus {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}
.action-item:hover {
    background-color: #009ee7;
    color: #fff;
    text-decoration: none;
}

.action-item:hover .action-item-text {
    width: 180px;
    visibility: visible;
    opacity: 1;
    /* 平滑动效 */
    transform: translateX(-5px);
    transition: all .3s ease;
}

.action-item-text {
    position: absolute;
    top: 0;
    right: 50px;
    opacity: 0;
    width: 180px;
    visibility: hidden;
    height: 50px;
    line-height: 50px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding-left: 10px;
    box-sizing: border-box;
    transition: all .3s ease;
}

/* 首页banner样式 */
.swiper-wrapper {
    height: auto;
}

/* 产品主页样式 */
.product-banner {
    width: 100%;
    position: relative;
}

.product-banner img {
    width: 100%;
    height: auto;
}

.product-banner-title {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 10;
    padding: 20px;
    color: #fff;
    width: 100%;
}


.press-area {
    width: 100%;
    padding: 60px 0;
}

.press-title {
    font-size: 40px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    text-align: center;
    margin-bottom: 40px;
}

.press-content {
    width: 100%;
}

.press-list {
    width: 100%;
    padding: 20px 150px 10px 150px;
    box-sizing: border-box;
    background-color: #f7f8fa;
    border-radius: 6px;
}

.press-item {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    align-items: center;
}

.press-item h3 {
    flex: 1;
    margin-right: 60px;
}

.press-item:last-child {
    border-bottom: none;
}

.press-item:hover {
    color: var(--main-color);
}

.press-more {
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.solution-area {
    width: 100%;
    padding: 60px 0;
}

.solution-title-area {
    width: 100%;
    margin-bottom: 30px;
}

.solution-title-left {
    flex: 1;
}

.solution-title {
    font-size: 40px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 20px;
}

.solution-title-left p {
    font-size: 20px;
    color: var(--main-text-color);
}

.solution-title-right {
    position: relative;
    width: 120px;
}

/* 左右切换按钮 */
.solution-title-right .swiper-button-prev,
.solution-title-right .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text-color);
    transition: all 0.3s ease;
}

.solution-title-right .swiper-button-prev {
    left: 10px;
}

.solution-title-right .swiper-button-next {
    right: 10px;
}

.solution-title-right .swiper-button-prev::after,
.solution-title-right .swiper-button-next::after {
    font-size: 1.2rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--main-color);
    color: #fff;
}

.solution-item {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: block;
    cursor: pointer;

}

.solution-item:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

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

.solution-item-image img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.solution-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-item-pay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 30px;
}

.slide-title {
    padding: 20px;
    background-color: #fff;
    font-size: 18px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    display: flex;
    cursor: pointer;
}

.slide-title:hover {
    color: var(--main-color);
    /* 加下划线 */
    text-decoration: underline;
}

.solution-item-title {
    font-size: 24px;
    font-family: 'OpenSans-Semibold';
    margin-bottom: 10px;
    position: relative;
}

.solution-item-title::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--main-color);
    bottom: -10px;
    left: 0;
}

.solution-item-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.solution-item-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
}


/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
		 height:80%;
    text-align: center;
}

.close {
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

#modalVideo {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 加入我们公共样式 */
.contact-us-area {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-us-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 0;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contact-us-bg img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.contact-us-message {
    position: relative;
    z-index: 3;
    width: 100%;
}

.contact-us-message h2 {
    font-size: 40px;
    color: var(--main-text-color);
    margin-bottom: 20px;
    font-family: 'OpenSans-Semibold';
    text-align: center;
}

.contact-us-message p {
    font-size: 20px;
    color: var(--main-text-color);
    margin-bottom: 40px;
    text-align: center;
}

.contact-us-message .contact-us-btn {
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
    background: var(--main-color);
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.contact-us-message .contact-us-btn:hover {
    background: #1d8ebf
}


/* 面包屑 */
.breadcrumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    width: 100%;
}
.breadcrumb {
    padding: 10px 20px;
    line-height: 30px;
}

/* 产品列表页样式 */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.product-title-box{
    color: #fff;
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    display: none;
}

/* 产品列表页产品样式 */
.product_message {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    position: relative;
}
.product_bg{
    background-image: url('../images/bg.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.product_bg:hover{
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
    /* transform: rotate(4deg); */
}
.product_new{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    font-style: oblique;
    color: var(--main-color);
    font-family: 'OpenSans-Semibold';
}

.product_coming_soon{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    font-style: oblique;
    /* 即将上市 给个不同的颜色 */
    color: #FF4F00;
    font-family: 'OpenSans-Semibold';
}
.product_new_coming_soon{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    display: flex;
    gap: 10px;
}
.product_new_coming_soon .product_new{
    position: static;
    color: #d7150e;
}
.product_new_coming_soon .product_coming_soon{
    color: #FF4F00;
    position: static;
}

.product_message::before,
.product_message::after {
    content: "";
    position: absolute;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.product_message::before {
    top: 2px;
    left: 2px;
    z-index: -3;
    transform: rotate(-3deg);
}

.product_message:hover::before {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    transform: rotate(-4deg);
}

.product_message::after {
    top: 0;
    left: 0;
    z-index: -4;
    transform: rotate(2deg);
}

.product_message:hover::after {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    transform: rotate(4deg);
}

.product_message .product_img {
    width: 36%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_bg:hover .product_info .product_title{
    color: var(--main-color);
}

.product_message:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.product_message .product_img img {
    width: 100%;
    max-width: 260px;
    transition: all 0.3s ease-in-out;
}

.product_bg:hover .product_img img{
    transform: scale(1);
    transition: all 0.3s ease-in-out;
} 



.product_info {
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
}

.product_title {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 10px;
}

.product_btn:hover,
.product_title:hover {
    color: var(--main-color);
}

.product_text {
    width: 100%;
    line-height: 24px;
    font-size: 16px;
    color: var(--main-text-color-light);
    flex: 1;
}

.product_btn {
    font-size: 14px;
    color: var(--main-text-color);
    font-family: 'OpenSans-Semibold';
}

.difference {
    background-color: #fff;
}

.difference-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
}

.difference-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.difference-img img {
    width: 100%;
}

.difference-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    padding: 20px 60px;
    border-radius: 8px;
}

.difference-item:hover .difference-text {
    display: flex;
}

.difference-title {
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 60%;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    color: var(--main-text-color);
    text-align: center;
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    border-radius: 8px;
}

/* 基础样式 */
.product-info {
    padding: 40px 0;
}

.product-info-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-info-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 图片在左侧 */
.product-info-item.odd {
    flex-direction: row;
}

/* 图片在右侧 */
.product-info-item.even {
    flex-direction: row-reverse;
}

/* 顶部布局 */
.product-info-item.top {
    flex-direction: column;
}

/* 底部布局 */
.product-info-item.bottom {
    flex-direction: column-reverse;
}
.product-info-item.bottom .product-info-item-text,.product-info-item.top .product-info-item-text{
    text-align: center;
}

.product-info-item-img {
    flex: 1;
    overflow: hidden;
}

.product-info-item-img img {
    max-width: 100%;
    object-fit: cover;
}

.product-info-item-text {
    flex: 1;
}

.product-info-item-text h3 {
    font-size: 24px;
    font-family: 'OpenSans-Semibold';
    margin-bottom: 10px;
    color: var(--main-text-color);
}

.product-info-item-text p {
    font-size: 16px;
    color: var(--main-text-color-light);
    line-height: 1.6;
}


/* 首页相关产品卡片样式 */

.product-item {
    box-sizing: border-box;
    padding: 5px;
    box-shadow: 1px 1px 5px #ccc;
    border-radius: 6px;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.product-item:hover {
    box-shadow: 2px 2px 10px #ccc;

}

.product-item:hover img {
    transform: scale(1.2);
    transition: all 0.5s ease-in-out;
}

.product-item:hover h4 {
    color: var(--main-color);
}

.product-item img {
    width: 180px;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
}

.product-desc p {
    padding: 0 12px;
}

.product-desc h4 {
    padding: 0 12px;
}

.swiper-wrapper img {
    width: 100%;
		 height:auto;
}

.product-technology {
    background: #fff;
}

.product-technology-item {
    background: #fff;
    border-radius: 10px;
    height: 200px;
    background-color: #f7f8fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-technology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.product-technology-content {
    display: flex;
    align-items: center;
}

.product-technology-img {
    flex: 0 0 90px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-technology-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.product-technology-desc {
    flex: 1;
}




.product-technology-desc div p {
    margin: 0 !important;
}

.why-choose-img {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.why-choose-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.why-choose-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
}

.why-choose-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-subtitle {
    color: var(--main-color);
}



.why-choose-desc p {
    font-size: 14px !important;
}



/* 首页样式 ****************************************************************************************************************************************************************** */
.hot-product {
    background-color: #f5f5f5;
}

.index-header {
    text-align: center;
}

.swiper-slide-product {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
.hot-product-new {
    position: absolute;
    
}
.swiper-container {
    width: 100%;
}

.hot-product .swiper-slide {
    height: 500px;
}
.hot-product-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-product-img img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.hot-product-info {
    text-align: center;
}

.swiper-slide-product:hover .hot-product-title {
    color: var(--main-color);
}

/* 整体布局 */
.solutions {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
}

/* 左侧子栏目 */
.solutions .sidebar {
    width: 25%;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solutions .sidebar-description {
    font-size: 22px;
    color: #333;
}

.solutions .sub-catalogs .sub-catalog-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.solutions .sub-catalogs .sub-catalog-item:last-child {
    margin-bottom: 0;
}

.solutions .sub-catalogs .sub-catalog-item span {
    color: var(--main-text-color-dark);
    position: relative;
    border-bottom: 4px solid transparent;
}

.solutions .sub-catalogs .sub-catalog-item.active span {
    color: var(--main-text-color);
    border-bottom: 4px solid var(--main-color);
}
.solution-tab span{
    color: var(--main-text-color-dark);
    position: relative;
    border-bottom: 4px solid transparent;
}
.solution-tab .active span{
    color: var(--main-text-color);
    border-bottom: 4px solid var(--main-color);
}



/* 右侧内容区域 */
.solutions .content-area {
    width: 75%;
    padding-left: 20px;
}

.solutions .content-list {
    display: none;
    gap: 20px;
    flex-wrap: wrap;
}

.solutions .content-list.active {
    display: flex;
}

.solutions .content-item {
    width: calc(22.25% - 20px);
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.solutions .content-item.active {
    width: calc(55.5% - 20px);
}


.solutions .content-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.solutions .content-item.active img {
    opacity: 0.9;
}

.solutions .content-item .content-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.solutions .content-item.active .content-details {
    opacity: 1;
}

.solutions .content-details p {
    line-height: 1.5;
    display: none;
}

.solutions .content-item.active .content-details p {
    display: block;
}


.home-technology {
    background-color: #f5f5f5;
}

.home-solution-content{
    width: 100%;
    overflow: hidden;
}

.home-solution-swiper{
    width: 100%;
    display: none;
}

.home-solution-content .active{
    display: block;
}
.solution-swiper-slide{
    width: 100%;
}
.solution-swiper-slide img{
    width: 100%;
    object-fit: cover;
}


/* 轮播容器 */
.home-technology .swiper-container.mySwiper2 {
    width: 100%;
    height: auto;
    /* 高度自适应 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* 轮播项 */
.home-technology .mySwiper2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.home-technology .slide-content {
    display: flex;
    flex-direction: row;
    /* 移动端改为垂直布局 */
    width: 100%;
    height: 100%;
}

/* 图片区域 */
.home-technology .slide-image {
    width: 50%;
    height: 100%;
    /* 移动端固定高度 */
    overflow: hidden;
}

.home-technology .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 信息描述区域 */
.home-technology .slide-info {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}


/* 分页器样式 */
.mySwiper2 .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.mySwiper2 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: background-color 0.3s ease;
}

.mySwiper2 .swiper-pagination-bullet-active {
    background-color: #009ee7;
}

.home-about {
    background-color: #fff;
}

.about-content {
    display: flex;
    gap: 20px;
}

/* 第一个内容：左侧带图片 */
.about-first {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
		 height:auto;
    object-fit: cover;
    transition: 0.3s ease;
}

.about-first:hover .about-image img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.about-info {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.meta {
    display: flex;
    gap: 10px;
}

/* 手风琴列表 */
.accordion-list {
    width: 60%;
}

.accordion-item {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header-top {
    display: flex;
    flex-direction: column;
    margin-right: 60px;
}

.accordion-header a h3:hover {
    color: var(--main-color);
}

.accordion-header .meta {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: #999;
}

.accordion-header i {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 20px;
}

.accordion-content.show {
    display: block;
}




/* 产品详情样式 */
.product-details {
    width: 100%;
}

.product-details-content {
    width: 100%;
}

.product-details-content-left {
    padding: 0 30px;
}
.product-details-content-left .mySwiper2  {
    width: 480px;
    height: 480px
}

.details_top_left .big-img {
    width: 450px;
}

.small-img {
    width: 280px;
}

.product-details-content-right h1 {
    font-size: 36px;
    color: var(--main-text-color);
    font-family: 'OpenSans-Semibold';
}

.product-details-content-right h3 {
    font-size: 22px;
    color: var(--main-text-color);
}

.details_top_right_decs {
    font-size: 16px;
    color: var(--main-text-color);
}

.desc_item span {
    line-height: 24px;
}

.desc_item .fa {
    color: var(--main-color);
    font-size: 16px;
    line-height: 24px;
    margin-right: 8px;
}

.product-details-content-left-list .swiper {
    flex: 1;
}

.product-details-content-left-list .swiper-slide-thumb-active {
    box-sizing: border-box;
    border: 1px solid var(--main-color);
}

.button-item {
    cursor: pointer;
    padding: 0 10px;
}

.tabs-container {
    width: 100%;
    position: sticky;
    top: 90px;
    z-index: 99;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 60px;
    margin-top: 60px;
}

.tabs-container .tabs {
    justify-content: center;
}

.tabs-container .tab {
    padding: 10px 20px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-text-color);
    border-bottom: 2px solid transparent;
}

.tabs-container .tab.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

.download-container {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.download-container:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-text {
    font-size: 16px;
    color: var(--main-text-color);
    flex-grow: 1;
    margin-right: 20px;
    word-break: break-word;
    overflow-wrap: anywhere; /* 更智能的换行 */
    hyphens: auto; /* 连字符支持 */
}

.download-button {
    padding: 10px 20px;
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* 产品分类主页 */
.banner-wrapper {
    position: relative;
}

.classify-banner {
    width: 100%;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: relative;
    right: 0;
    top: 0;
}

.classify-banner img {
    width: 100%;
}

.classify-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(134deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2) 57%, transparent 57.05%, transparent);
}

.classify-banner:after {
    border-bottom: 0 solid transparent;
    border-left: 100vw solid #fff;
    border-left: 100vw solid #fff;
    border-right: 0 solid transparent;
    border-top: 6vw solid transparent;
    bottom: 6vw;
    bottom: 0;
    clear: both;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
}

.banner-content .description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.banner-content .title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* 第二级分类样式 */
.second-content {
    padding: 60px 0;
}

.filter-box {
    width: 400px;
}

.filter-content,
.filter-list,
.filter-item {
    width: 100%;
}

.filter-list>.filter-item {
    padding: 15px 10px;
    box-sizing: border-box;
    border-bottom: var(--main-text-color-light) 1px solid;
}

.filter-title {
    font-size: 18px;
    color: var(--main-text-color);
    font-weight: 600;
}

.filter-arrow i {
    cursor: pointer;
    padding: 0 10px;
}

.filter-sub-list {
    margin-top: 10px;
}

.filter-sub-list>.filter-item {
    padding: 5px 0;
    cursor: pointer;
}

.filter-list .active {
    color: var(--main-color);
}

.second-right {
    flex: 1;
}
.pages {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin: 30px 0;
  }

  .pages span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin: 0 6px;
    cursor: pointer;
    box-sizing: border-box;
  }

  .pages span.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
  }
.second-right-title h2 {
    font-size: 24px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 20px;
}

.second-right-title p {
    font-size: 16px;
    color: var(--main-text-color-light);
    margin-bottom: 20px;
}

.column .product_message {
    width: 100%;
    height:400px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.column .product_message .product_img {
    width: 100%;
    margin-bottom: 20px;
}

.column .product_info {
    margin-left: 0;
}

.column .product_info .product_title {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 10px;
    text-align: center;
}

.column .product_info .product_text {
    font-size: 16px;
    color: var(--main-text-color-light);
    text-align: center;
}



.classify-nav a {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: var(--main-text-color);
    padding: 0 10px;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
}

.classify-nav a.active {
    color: var(--main-color);
    border: 1px solid var(--main-color);
}



/* 大标题样式 */
.section-title {
    font-size: 40px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--main-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.navigation-links {
    margin-top: 20px;
    font-size: 0.9em;
}

.navigation-links p {
    margin: 5px 0;
}

.navigation-links a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
}

.navigation-links a:hover {
    text-decoration: underline;
}

.no-link {
    color: #999;
    font-style: italic;
}

.ArticleContent h1,
.ArticleContent h2,
.ArticleContent h3,
.ArticleContent h4,
.ArticleContent h5,
.ArticleContent h6,
.ArticleContent table {
    width: 100% !important;
}

.ArticleContent img {
    max-width: 100% !important;
}

.ArticleContent tbody,
.ArticleContent tr,
.ArticleContent td {
    border: 1px solid rgb(220, 220, 220);
}

/* 左侧竖排选项卡容器 */
.left-tab {
    width: 250px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-right: 30px;
}

/* 父级分类标题 */
.tab-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--main-color);
}

/* 子级分类列表 */
.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 子级分类项 */
.tab-item {
    margin-bottom: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.tab-item:hover {
    background-color: #f8f9fa;
}

/* 子级分类链接 */
.tab-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.tab-link:hover {
    color: var(--main-color);
    background-color: #e9f5ff;
}

/* 当前激活的分类项 */
.tab-item.active {
    background-color: var(--main-color);
}

.tab-item.active .tab-link {
    color: #ffffff;
}

.tab-item.active:hover {
    background-color: var(--main-color);
}

/* 新闻相关样式******************************************************************************************************** */
/* 通用样式 */
.new-page {
    background-color: #fff;
}

.new-title h2 {
    font-size: 40px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    text-align: center;
    margin-bottom: 20px;
}

hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin-bottom: 40px;
}

/* 基础样式 */
.new-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* 栏目间距 */
    padding: 20px 0;
}

.new-item {
    width: calc(33.333% - 20px);
    /* 桌面端一行三栏 */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.new-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.new-item-img {
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 图片比例 */
}

.new-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.new-item:hover .new-item-img img {
    transform: scale(1.1);
}

.new-item-content {
    padding: 20px;
    text-align: left;
}

.new-item-content h3 {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    margin-bottom: 10px;
    color: var(--main-text-color);
    /* 2行溢出隐藏 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-item-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.new-item-content h3 a:hover {
    color: #29aae3;
}

.new-item-content .time {
    display: block;
    font-size: 16px;
    color: var(--main-text-color-light);
    margin-bottom: 10px;
}

.new-item-content p {
    font-size: 18px;
    color: var(--main-text-color-light);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-more {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    font-size: 16px;
    font-family: 'OpenSans-Semibold'
}

.new-more:hover {
    color: var(--main-color)
}

.new-more i {
    margin-left: 5px;
}

.pagination {
    width: 100%;
    text-align: center;
}

.page_link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border: 1px solid #ddd;
    margin: 0 5px;
    color: var(--main-text-color-light);
    font-size: 16px;
    font-family: 'OpenSans-Semibold';
    border-radius: 40px;
}

.page_active {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
}

/* 新闻相关筛选样式 */


.new-filter {
    align-items: baseline;
    justify-content: space-between;
    /* 左右布局 */
    padding: 20px;
}

/* 左侧标题 */
.new-filter-left h2 {
    font-size: 28px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
}

/* 右侧筛选和搜索 */
.new-filter-right {
    gap: 20px;
    /* 元素间距 */
}

/* 下拉框样式 */
.filter-select{
    position: relative;
}
.filter-select select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    padding-right: 30px;
    /* 为图标留出空间 */
    border-radius: 36px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari 和 Chrome */
    appearance: none; 
    position: relative;
}

/* 下拉框图标样式 */
.filter-select i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-text-color-light);
    cursor: pointer;
}
/* 搜索框样式 */
.filter-search {
    position: relative;
}

.filter-search input {
    padding: 8px 12px;
    padding-right: 30px;
    /* 为图标留出空间 */
    border: 1px solid #ddd;
    border-radius: 36px;
    font-size: 16px;
}

.filter-search i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-text-color-light);
    cursor: pointer;
}

/* 清除按钮样式 */
.filter-clear button {
    padding: 8px 12px;
    background-color: #fff;
    font-size: 18px;
    color: var(--main-text-color);
    cursor: pointer;
    text-decoration: underline;
}

.product-description {
    display: none;
		 padding-top: 30px;
    /* 默认隐藏 */
}

/* 技术方案样式***************************************************************************************************** */
.technology {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 480px;
    /* 设置固定高度 */
}

.technology:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 图片区域 */
.technology-img {
    overflow: hidden;
    /* height: 200px; */
    /* 设置图片区域高度 */
   /* margin-bottom: 15px; */
    /* 图片与信息区的间距 */
}

.technology-img img {
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
}

.technology:hover .technology-img img {
    transform: scale(1.1);
}

/* 信息区域 */
.technology-message {
    padding: 15px;
    flex: 1;
    /* 使信息区域填充剩余空间 */
    display: flex;
    flex-direction: column;
}

.technology-message h4 {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 10px;
    position: relative;
    display: flex;
    position: relative;
    align-items: center;
    height: 54px;
}

.technology-message h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 1.5px;
    background-color: var(--main-color);
}

.technology-message .description {
    font-size: 16px;
    color: var(--main-text-color-light);
    line-height: 1.6;
    /* 增加行间距 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* 限制为6行 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

/* 了解更多按钮样式 */
.learn-more {
    color: var(--main-text-color);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
    /* 按钮始终位于底部 */
    align-self: flex-start;
    /* 按钮左对齐 */
}

.learn-more:hover {
    color: #29aae3;
    text-decoration: underline;
}

/* 内容块之间的间距 */
.solution-list {
    margin-bottom: 50px;
}

.technology-details-item-content-child-item-info-desc{
    line-height: 30px;
    font-size: 16px;
}

.technology-details-item-content-child-item-info-desc ul{
    list-style: disc;
    padding-left: 20px;
}

/* 关于模块页面样式********************************************************************************************************************************** */
.support-desc {
    width: 60%;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

.support-list {
    display: flex;
    width: 100%;
    gap: 30px;
}

.support-item {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    background-color: #f5f5f7;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.support-icon {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.support-icon img {
    width: 100%;
}

/* 关于内容下载样式 */
.download-box {
    background-color: #fff;
}

.download-box .download-title {
    font-size: 40px;
    font-family: 'openSans-Semibold';
    color: var(--main-text-color);
    margin-bottom: 30px;
}

.download-box .download-tab {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.download-box .download-tab .download-tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    font-size: 18px;
    color: var(--main-text-color);
    cursor: pointer;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
}

.download-tab-item-img {
    width: 50px;
    margin-bottom: 10px;
}

.download-tab-item-img img {
    width: 100%;
}

.check-img {
    display: block;
}

.checked-img {
    display: none;
}

.download-box .download-tab .download-tab-item.active {
    border-bottom: 2px solid var(--main-color);
}

.download-box .download-tab .download-tab-item.active .check-img {
    display: none;
}

.download-box .download-tab .download-tab-item.active .checked-img {
    display: block;
}

/* 下载列表容器 */
.download-list {
    display: none;
    flex-wrap: wrap;
    width: 100%;
}

.download-list.active {
    display: block;
}

.download-item {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
}

/* 文件图标 */
.download-icon .file-link {
    color: var(--main-color);
    font-size: 50px;
    margin-right: 20px;
}

/* 文件信息 */
.download-info {
    flex: 1;
}

.download-info .file-title {
    font-size: 20px;
    color: var(--main-text-color);
    text-decoration: none;
}

.download-info .file-title:hover {
    color: var(--main-color);
}

.download-info .file-date {
    font-size: 16px;
    color: var(--main-text-color-light);
}

/* 下载按钮 */
.download-action .download-link {
    color: var(--main-text-color);
    font-size: 20px;
    transition: color 0.3s ease;
}

.download-action .download-link:hover {
    color: var(--main-color);
}

/* 未找到链接提示 */
.no-links {
    text-align: center;
    color: #666;
    font-size: 16px;
    width: 100%;
}

/* 关于FAQ***************************************************************************************************************** */
.faq-box {
    background-color: #f8f8f8;
}

.faq-item {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px;
}

.faq-title {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
    cursor: pointer;
}

.faq-title:hover .faq-question {
    color: var(--main-color);
}

.faq-title:hover .faq-icon {
    background-color: var(--main-color);
}

.faq-icon {
    font-size: 20px;
    color: #fff;
    background-color: #e0e0e0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.faq-item .fa-chevron-down {
    transition: transform 0.3s ease;
    color: var(--main-text-color);
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--main-text-color);
}

.faq-content {
    display: none;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding: 30px 30px 0 30px;
    box-sizing: border-box;
    width: 100%;
}

.faq-content.show {
    display: block;
}

/* 动画效果 */
.faq-content {
    animation: fadeIn 0.3s ease;
}

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

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

/* 关于视频*************************************************************************************************************************************** */
.video-list {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    background-color: #f5f5f7;
    border-radius: 20px;
}

.video-item {
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-item-link {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.video-thumb {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-size: 28px;
}

.video-info {
    padding: 10px 20px;
}

.video-tip {
    font-size: 14px;
    color: var(--main-text-color-dark);
}

.video-title {
    font-size: 20px;
    font-family: 'OpenSans-Semibold';
    margin-top: 10px;
    height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--main-text-color);
    margin-bottom: 10px;
}

.video-desc {
    font-size: 16px;
    overflow: hidden;
    height: 70px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--main-text-color-light);
}

.video-info:hover .video-title {
    color: var(--main-color);
}

.home-solution-mobile{
    display: none;
}


.lucency {
    background-color: transparent;
    position: absolute;
  }

  .lucency .navbar-default {
    background-color: transparent;
    border-bottom: 1px solid #fff;
  }

  .lucency .head-top {
    color: #fff;
  }

  .lucency .navbar-nav .nav-item>a,.lucency .search-icon {
    color: #fff !important;
  }

  .lucency .navbar-nav .nav-item:hover>a {
    border-color: #fff !important;
  }

  .lucency-logo {
    display: none;
  }

  .lucency .lucency-logo {
    display: block;
  }

  .lucency .colorful-logo {
    display: none;
  }

  .lucency .navbar-nav .header-search:hover>a {
    border-color: transparent !important;
    cursor: pointer;
    color: #fff !important;
  }

  .navbar-nav .header-search:hover>a {
    border-color: transparent !important;
    cursor: pointer;
    color: #333 !important;
  }


  .tag-group {
    width: 260px;
}

.search-product-header {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.search-product-header h2 {
    font-size: 24px;
    font-family: 'OpenSans-Semibold';
    color: var(--main-text-color);
}

.search-product-header .reset-btn {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    height: 30px;
    padding: 0 10px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    color: var(--main-text-color);
}

.search-product-box {
    padding: 20px 0;
}

.search-product-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0 10px;
    height: 40px;
    display: flex;
    overflow: hidden;
    font-size: 14px;
    color: var(--main-text-color);
}

.search-product-input input {
    flex: 1;
}


.tag-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    overflow: hidden;
}

.tag-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--main-text-color);
    font-size: 16px;
}

.tag-header i {
    transition: transform 0.3s ease;
}

.tag-item.active .tag-header i {
    transform: rotate(180deg);
}

.tag-options {
    display: none;
    margin-top: 20px;
}

.form-check {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-check-label {
    font-size: 14px;
    color: var(--main-text-color);
    font-weight: normal;
    display: flex;
    margin-bottom: 0;
    cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    margin-right: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.form-check:last-child {
    margin-bottom: 0;
}

.tag-item.active .tag-options {
    display: block;
}

.mobile-search {
    display: none;
}

.mobile-search .search-product-box {
    padding: 0;
    margin-bottom: 20px;
}

.show-filter {
    padding: 0 12px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--main-text-color-light);
    cursor: pointer;
    margin-left: 20px;
}

.show-filter i {
    margin-right: 10px;
}

.filter-content {
    position: fixed;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
}

.filter-content .filter-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.filter-content-box {
    width: 100%;
    background-color: #fff;
    max-height: 90%;
    display: flex;
    flex-direction: column;
}

.filter-content-list {
    flex: 1;
    overflow: auto;
    padding: 0 15px;
    background-color: #fff;
}

.filter-content-list .tag-header {
    font-size: 14px;
}

.filter-content-list .form-check-label {
    font-size: 14px;
}

.filter-content-title {
    width: 100%;
    background-color: #fff;
    align-items: center;
    padding: 16px 15px 9px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 19px;
}

.filter-content-list .tag-item {
    padding: 12px 0;
}

.filter-content-list .tag-options {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px 12px 15px 12px;
    font-size: 14px;
}
.filter-btn{
    display: flex;
}
.filter-btn div{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.filter-btn .reset-btn{
    background-color: #ccc;
}
.filter-btn .confirm-btn{
    background-color: var(--main-color);
}


.item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    align-items: stretch;
    transition: all .3s ease 0s;
}

.item-img {
    position: relative;
    width: 30%;
    flex-shrink: 0;
    flex-grow: 0;
    transition: box-shadow .3s ease 0s;
    margin-right: 30px;
}

.post-loop-default .item-img .item-img-inner {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.post-loop-default .item-img img {
    width: 100%;
    object-fit: cover;
    transition: all .3s ease-out 0s;
}

.post-loop-default .item-category {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background-color: #000;
    filter: alpha(opacity=60);
    background: rgba(0, 0, 0, .6);
    border-radius: 3px;
    text-decoration: none;
}

.post-loop-default .item-content {
    display: grid;
    width: 100%;
    row-gap: 0;
    grid-template-rows: min-content auto 24px;
}

.post-loop-default .item-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.5;
    color: var(--main-text-color);
    font-family: 'OpenSans-Semibold';
}

.post-loop-default .item-excerpt {
    line-height: 1.625;
    color: var(--theme-gray-color);
    font-size: 16px;
}

.catalog-lab {
    color: #333;
    width: 300px;
    margin-right: 30px;
    font-size: 18px;
}

.catalog-lab-list {
    width: 100%;
}

.first-child-item {
    width: 100%;
}

.catalog-children {
    box-sizing: border-box;
    padding-left: 20px;
}

.catalog-lab-list div {
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 7px 0;
    justify-content: space-between;
}

.catalog-lab-list div:hover {
    background-color: #f5f5f5
}

.catalog-lab li>div:hover {
    color: var(--main-color);
}

.catalog-lab li>div span {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 500;
}

.catalog-lab li>div i {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 20px;
}

.catalog-lab-list li>div:hover i {
    color: var(--main-color);
}

.catalog-lab-list li.active>div {
    color: var(--main-color);
}

.catalog-lab-list li.active>div i {
    color: var(--main-color);
}

.content-lab {
    flex: 1;
}
.result-filter{
    text-align: right;
}
.result-filter-btn{
    display: inline-block;
    padding: 0 12px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--main-text-color-light);
    cursor: pointer;
    line-height: 32px;
}


.form-container {
    display: flex;
    flex-wrap: wrap;
}
.form-container .form-group:first-child {
    width: 100%;
}
.form-container > :nth-child(-n+5){
    width: 48%;
    margin-right: 2%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-family: 'OpenSans-Semibold';
}
.form-group label i{
    color: red;
}

.form-control {
    width: 100%; /* 确保输入框宽度占满父容器 */
    padding: 15px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* 防止 padding 影响宽度 */
}

.form-control:focus {
    border-color: var(--main-color);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-group {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.submit-btn {
    padding: 15px 20px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--main-color);
}

.touch h2 {
    font-size: 40px;
    font-family: 'OpenSans-semibold';
    color: #333;
    margin: 60px 0;
}

.contactus-box {
    width: 800px;
    margin: 0 auto;
}


.about-item{
    align-items: center;
}
.about-item-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
.home-about-content{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.home-about-content-title{
    margin-bottom: 10px;
}
.about-more{
    padding: 15px 20px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    cursor: pointer;
    width: 126px;
}
.about-more:hover{
    color: #fff;
}
.home-about-img{
    width: 45%; 
}
.home-about-img img{
    width: 100%;
}
.about-content-left{
    width: 45%;
}
.about-content-left p{
    font-size: 16px;
    line-height: 1.5;
}
.about-content-right{
    margin-left: 30px;
    flex: 1;
}
.about-right-item{
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    background-color: #ebebeb;
    border-radius: 6px;
    margin-right: 20px;
    box-sizing: border-box;
    width: 278px;
}
.about-right-item img{
    width: 60px;
    margin-bottom: 10px;
}
.about-right-item span{
    font-size: 16px;
    color: var(--main-text-color);
    margin-bottom: 10px;
}
.about-right-item p{
    font-size: 14px;
}


.advantages-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.advantages-content-item {
    flex: 1 0 calc(50% - 30px);
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f7f9fc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantages-content-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.advantages-content-item-img {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.advantages-content-item-info h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'OpenSans-Semibold';
    color: #333;
    margin-bottom: 10px;
}

.advantages-content-item-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
/* FAQ区域样式 */
.faqs {
    display: flex;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faqs-left {
    width: 40%;
    padding: 40px;
    background: #fff;
    position: relative;
}

.faqs-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.faqs-left h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--main-color);
}

.faqs-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.faqs-right {
    width: 60%;
    padding: 40px;
}

.faqs-right-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.faqs-right-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    user-select: none;
}

.faqs-right-item-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faqs-right-item-title i {
    color: var(--main-color);
    font-size: 16px;
    transition: transform 0.2s ease;
}

.faqs-right-item-title.active i {
    transform: rotate(180deg);
}

.faqs-right-item-content {
    display: none;
    font-size: 16px;
    line-height: 32px;
    color: #333;
    position: relative;
    box-sizing: border-box;
    padding: 0 50px 20px 50px;
}

.i-lefts {
    position: absolute;
    left: 24px;
    top: 0;
    color: #babbbc;
}

.i-rights {
    position: absolute;
    right: 10px;
    bottom: 20px;
    color: #babbbc;
}

.active .faqs-right-item-content{
    display: block;
}
.technology-details-item-content-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.technology-details-item-content-img img{
    max-width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.technology-details-item-content-img img:hover{
    transform: scale(1.1);
    cursor: pointer;
}
.technology-details-item-content-child-item-info-desc img{
    max-width: 100% !important;
}

.big-img{
    height: 300px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .faqs {
        flex-direction: column;
    }
    .faqs-left h2{
        font-size: 24px;
    }
    .faqs-left,
    .faqs-right {
        width: 100%;
        padding: 30px;
    }

    .faqs-left {
        text-align: center;
    }

    .faqs-left h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .faqs-left img {
        max-width: 300px;
        margin: 0 auto;
    }
    .action-item{
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .action{
        right: 10px;
        bottom: 10% !important;
    }

    .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{
        padding-left: 5px;
        padding-right: 5px;
    }
    .navbar-collapse{
        background-color: #fff;
    }
    .lucency .navbar-nav .nav-item>a {
        color: #333 !important;
    }
    .colorful-logo img,.lucency-logo img{
        height: 40px;
       	width:94px;
    }
    .head-section .navbar-toggle{
        margin-top: 20px;
    }
    .home-solution-mobile{
        display: block;
    }
    .product_message .product_img ,.column .product_message .product_img{
        width: 40%;
        margin-bottom: 0px;
    }
    .column .product_info .product_title{
        font-size: 16px;
        text-align: left;
    }
    .column .product_info .product_text{
        font-size: 14px;
        line-height: 22px;
        text-align: left;
    }
     .product_info,.column .product_info{
        margin-left: 10px;
    }
 
    .product_title {
        font-size: 16px;
    }

    .product_text,
    .product_btn {
        font-size: 12px;
    }

    .product_img img {
        width: 120px;
    }
    .product-info,.second-content{
        padding: 20px 0;
    }
    .product-info-box{
        gap: 20px;
    }


    /* 首页相关产品卡片样式 */
    .product-item {
        height: auto;
        padding: 20px 0;
    }

    .product-item img {
        width: 120px;
    }

    .product-desc p {
        padding: 0 20px;
        text-align: center;
        font-size: 12px;
    }

    .product-desc h4 {
        padding: 0 10px;
        text-align: center;
        font-size: 14px;
        height:40px;
    }
    .mb-20{
        margin-bottom: 10px;
    }
    .mb-30{
        margin-bottom: 15px;
    }
    .mb-40{
        margin-bottom: 20px;
    }
    .mb-50{
        margin-bottom: 25px;
    }
    .mb-60{
        margin-bottom: 30px;
    }
    .mb-70{
        margin-bottom: 35px;
    }
    .mb-80{
        margin-bottom: 40px;
    }
    .press-area,.contact-us-area{
        padding: 30px 0 !important;
    }

    .second-right-title h2{
        font-size: 24px;
        text-align: center;
        margin-bottom: 0;
    }
    .product-technology-item{
        height: auto;
    }
    .hide-on-small {
        display: none !important;
    }

    .show-on-small {
        display: block !important;
    }
    
    .column .product_message{
        flex-direction: row;
        height:auto;
    }
    .product-details-content-right h1{
        font-size: 24px;
    }
    .product-details-content-right h3{
        font-size: 18px;
    }
    .details_top_right_decs{
        font-size: 14px;
        margin-top: 10px;
    }
    .desc_item{
        margin-bottom: 5px;
    }
    .desc_item span{
        line-height: 18px;
    }
    .tabs-container{
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .head-section .navbar-collapse ul.navbar-nav {
        float: none;
        margin-top: 0;
    }

    .product-banner-title {
        top: 40%;
    }

    .product-banner-title h1 {
        font-size: 24px;
    }

    .product-banner-title p {
        font-size: 14px;
    }

    .breadcrumbs {
        padding: 5px 0;
        font-size: 14px;

    }

    .press-list {
        padding: 10px 24px;
    }

    .press-item {
        padding: 12px 0;
    }


    .home-technology .slide-content {
        flex-direction: column;
    }

    .home-technology .slide-image {
        width: 100%;
        height: 200px;
    }

    .home-technology .slide-info {
        width: 100%;
        padding: 20px;
    }

    .home-technology .slide-info h3 {
        font-size: 24px;
    }

    .home-technology .slide-info p {
        font-size: 16px;
    }

    .solution-title,
    .contact-us-message h2,
    .press-title {
        font-size: 24px;
    }

    .solution-title-left p,
    .contact-us-message p {
        font-size: 14px;
    }
    .hot-product-img img {
        max-width: 300px;
    }
    .hot-product .swiper-slide {
        height: 420px;
    }
    .about-content{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .about-content .about-first{
        width: 100%;
    }
    .about-content .accordion-list{
        width: 100%;
    }
    .home-banner{
        height: auto;
    }
    .home-banner .swiper-slide{
        height: auto;
    }
    .home-banner .swiper-slide img{
        height: 100%;
        object-fit: cover;
    }
    .swiper-slide video{
        height: 100%;
        object-fit: cover;
    }
    .product-banner{
        height: 300px;
    }
    .product-banner img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .new-filter{
        display: flex;
    }
    .new-filter-left h2{
        font-size: 20px;
    }
    .new-filter-left{
        margin-bottom: 16px;
    }
    .new-filter-right {
        display: flex;
        flex-wrap: wrap;
    }
    .new-filter-right{
        gap: 10px;
    }
    .section-title{
        font-size: 24px;
    }
    .newsroom-title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .newsroom-list{
        gap: 20px;
    }
    .product-details-content-left .mySwiper2 {
        width: 100%;
        height: auto;
    }
    .support-desc{
        width: 80%;
    }
    .support-item{
        min-height: 200px;
    }
    .support-icon{
        width: 60px;
    }
    .download-box .download-title{
        font-size: 24px;
    }
    .download-tab-item-img{
        width: 40px;
    }
    .download-box .download-tab .download-tab-item{
        font-size: 14px;
    }
    .download-item{
        padding: 15px;
    }
    .download-icon .file-link{
        font-size: 30px;
        margin-right: 15px;
    }
    .download-info .file-date{
        font-size: 12px;
    }
    .download-info .file-title{
        font-size: 16px;
    }
    .download-action .download-link{
        display: flex;
        flex-direction: column;
        font-size: 14px;
        text-align: center;
    }
    .download-action .download-link span{
        margin-left: 0;
    }
    .filter-select select{
        font-size: 14px;
    }
    .filter-clear button{
        font-size: 16px;
    }
    .video-title{
        font-size: 16px;
        height: 44px;
    }
    .video-desc{
        font-size: 12px;
    }
    .video-thumb{
        height: 150px;
    }
    .new-filter{
        padding: 0;
    }
    .new-title h2   {
        font-size: 24px;
    }
    .download-button{
        font-size: 12px;
        padding: 10px;
    }
    .product-details-content-right{
        padding: 0 !important;
    }
    .second-right{
        width: 100%;
    }
    .difference-title,.slide-title{
        font-size: 16px;
    }
    .second-right-title p{
        font-size: 14px;
        text-align: center;
    }
    .product_new{
        font-size: 12px;
    }
		 .product_coming_soon{
					font-size: 12px;
		 }
    .navbar-nav .nav-item{
        height: auto;
    }
    .post-loop-default .item-title{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .post-loop-default .item-excerpt{
        font-size: 12px;
    }
    .item {
        padding: 15px 0;
    }
    .post-loop-default .item-content{
        grid-template-rows: min-content auto 0px;
    }
    .item-img{
        width: 36%;
        margin-right: 10px;
    }
    .post-loop-default .item-category{
        font-size: 10px;
        left: 0;
        top: -5px;
        padding: 3px 5px;
    }
    .lucency .language i{
        color: #333;
    }
    .lucency .language-text {
        color: #333;
    }
    .lucency .navbar-nav .nav-item>a, .lucency .search-icon {
        color: #333 !important;
    }
    .submit-btn{
        padding: 12px 16px;
        font-size: 12px;
    }
    .form-group label{
        font-size: 12px;
    }
    .form-control{
        height: 32px;
        font-size: 12px;
    }
    .form-group{
        margin-bottom: 12px;
    }
    .touch h2{
        font-size: 24px;
        margin: 30px 0;
    }
    .contactus-box{
        width: 100%;
    }
    .technology{
        height: auto;
    }
    .technology-img{
        height: auto;
        margin-bottom: 0;
    }
    .technology-message h4{
        font-size: 18px;
    }
    .technology-message .description{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .learn-more{
        font-size: 14px;
    }
    .newsroom{
        padding: 30px 0 !important;
    }
    .newsroom-title{
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
    .new-filter{
        flex-direction: column;
    }
    hr{
        margin-bottom: 20px;
    }
    .new-item-content {
        padding: 15px;
    }
    .new-item-content .time{
        font-size: 12px;
        margin-bottom: 5px;
    }
    .new-item-content h3{
        font-size: 18px;
        margin-bottom: 5px;
    }
    .new-item-content p{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .new-more{
        font-size: 14px;
    }
    .about-item{
        flex-direction: column;
    }
    .home-about-img{
        width: 100%;
        margin-bottom: 20px;
    }
    .about-item-content{
        margin-left: 0;
    }
    .home-about-content{
        margin-bottom: 20px;
    }
    .about-more{
        padding: 10px 12px;
        font-size: 12px;
        width: 100px;
    }
    .why-about{
        flex-direction: column;
    }
    .about-content-left{
        width: 100%;
					 flex:1 !important;
        margin-bottom: 30px;
        text-align: center;
    }
    .about-content-left p{
        font-size: 14px;
        margin-top: 10px;
    }
		 .technology-details-item-content-child-item-info-desc{
        font-size: 14px;
        line-height: 20px;
    }
    .product_bg{
        background: none;
					 background-color:#fff;
    }
   	.language-box{
				  right: 0;
        top: 180px;
        height: 360px;
        overflow: auto;
		 }
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    .pc-only {
        display: block;
    }
    .mobile-only {
        display: none;
    }
}