@charset "UTF-8";
/**********重置一些原样式2026-07-03**************/
.fixed-top {
  z-index:999;
}
.pages{
   min-height: 500px;
}
.content {
  min-height:200px;
}
.content h2{
   margin-bottom: 0.5rem;
   font-weight: bold;
}
.content h3{
   font-weight: bold;
   margin-bottom: 0.5rem;
}
.content-product {
   color:#AEAEAE;
}
.content-product h2{
   margin-bottom: 0.5rem;
   font-weight: bold;
}
.content-product h3{
   font-weight: bold;
   margin-bottom: 0.5rem;
}


input:focus,textarea:focus,button:focus {
  outline:none;
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
  margin-bottom:0;
}
table {
  width:100%!important;
  background:#AEAEAE;
}
td {
  border:1px solid #ddd;
  padding:0.75rem 1.5rem;
  font-size:1rem;
  font-weight:normal;
  line-height:2.4rem;
}
tr:nth-child(2n) {
  background:#f8f8f8;
}
tr:hover {
  cursor:pointer;
}
.clear {
  clear:both;
}
.col-20 {
  -ms-flex:0 0 20%;
  flex:0 0 20%;
  max-width:20%;
}
.nav-pills .nav-link.active,.nav-pills .show>.nav-link,.nav-pills .nav-link {
  border:none;
}
.nav-link {
  padding:1rem 1rem;
}
 
.nav-tabs .nav-link {
  margin-right:2px;
}

h2{
   font-weight: bold;
}

/* 1. 初始状态：让下拉菜单处于“隐身”但逻辑上“存在”的状态 */
.navbar-nav .dropdown-menu {
    display: block;          /* 必须强制设为 block，否则 transition 不起作用 */
    visibility: hidden;      /* 使用 visibility 隐藏 */
    opacity: 0;
    border: none;
    background: #FFF;
    transform: translateY(20px); /* 初始位置稍微下移，实现向上滑入的效果 */
    transition: all 0.4s ease-in-out; 
    pointer-events: none;    /* 隐藏时禁止鼠标交互 */
    position: absolute;
    padding:1rem 0;

}
.navbar-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;           /* 向上露出一半 */
    left: 25px;
    width: 10px;
    height: 10px;
    background: #FFF;    /* 与背景色一致 */
    transform: rotate(45deg); /* 旋转 45 度变成菱形 */
    z-index: -1;         /* 放在菜单背景后面，防止遮挡内容 */
    /* 如果菜单有阴影，可以给它也加一点 */
    box-shadow: -2px -2px 2px rgba(0,0,0,0.05); 
}

/* 2. 激活状态：当 Bootstrap 给菜单加上 .show 类时 */
.navbar-nav .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);    /* 回到原位 */
    pointer-events: auto;       /* 恢复鼠标交互 */
}

/* 1. 鼠标悬停时的背景（Hover）和 获得焦点时（Focus） */
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    background-color: #f8f9fa; /* 浅灰色背景 */
    color: #333;               /* 文字颜色 */
}

/* 2. 点击瞬间或处于激活状态时（Active）- 即你提到的蓝色背景 */
.navbar-nav .dropdown-menu .dropdown-item:active,
.navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: #ddd;    /* 自定义你的背景色，比如 #ddd */
    color: #000;               /* 点击后的文字颜色 */
}


/* 修改默认的箭头 */
.dropdown-toggle::after {
    /* 彻底重置原生样式 */
    border: none !important;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    
    /* 注入 SVG 图像 */
    display:none;
    width: 0em;
    height: 0em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    
    transition: transform 0.3s;
}

/* 展开时旋转 */
.show.dropdown-toggle::after {
    transform: rotate(180deg);
}

.head-sm-height{
   height: 58px;
}

/**********重置一些原结束**************/

/*********自定义一些基本设置**************/
:root {
  --colorred: #FF3B30;
  --colorred2: #FF3B30;
  --coloryellow: #FB9614;
  --coloryellow2: #F3E734;
  --colorredbg: #FF3B30;
}


html,body{
  color:#fff;
  max-width: 100%;  
  font-family:'Roboto',"PingFangSC-Regular", "PingFang SC", "Microsoft Yahei", Arial !important; 
  background: #111;
}
.Anton{
   font-family: 'Anton'!important;
}
.Tapestry{
   font-family: 'Tapestry'!important; 
}

*{
	 font-size: 1.4rem; 
   word-break: keep-all;
}

pre{ position: relative; padding:40px 20px 20px; background:#222; color:#f8f8f8; padding-top:50px; border-radius:10px;}
pre::before {
    content: '';
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fc625d;
    width: 1.2rem;
    height: 1.2rem;
    top:10px;
    left: 20px;
    -webkit-box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
    box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
    z-index: 2;
}

input:-webkit-autofill {
 box-shadow: 0 0 0 1000px #fff inset;
 -webkit-text-fill-color: #333;
}

 


html ::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #233b67;
}
html ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}


 
.d-flex-center{
  display: flex;
  justify-content:center;
  align-items:center;
}
.d-flex-center-x{
  display: flex;
  justify-content:center; 
} 
.d-flex-center-y{
  display: flex; 
  align-items:center;
}

.fweight {
  font-weight:bold;
}
.fw300 {
  font-weight:300;
}
.fn {
  font-weight:normal;
}
.coloron {
  color:var(--colorred)!important;
}
.color000 {
  color:#000!important;
}
.colorfff {
  color:#fff!important;
}
.color666 {
  color:#6f6f6f!important;
}
.color888 {
  color:#888!important;
}
.color333 {
  color:#333!important;
}
.colorred {
  color:var(--colorred)!important;
}
.bg000 {
  background:#000!important;
}
.bgf3 {
  background:#333!important;
}
.bgf8 {
  background:#f8f8f8!important;
}
.bgblue {
  background:#EDF0FA!important;
}
.bgred {
  background:var(--colorred)!important;
}
.bgfff {
  background:#fff!important;
}
.bg-glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.fa-square:before,
.fa-circle:before,
.fa-check-square:before{
	margin-right: 3px;
}

.title-bg{
	 background-image: url(../images/titilebg.jpg);
	 -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: center center;
    background-size: cover;
    color: #fff;
    display: inline-block; 
}

.navbar-light .navbar-toggler,
.navbar-toggler{
	border: none!important;
  outline: none!important;
  box-shadow: none;
}
.navbar-light .navbar-toggler-icon{
   background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} 
.navbar-toggler-icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      vertical-align: middle;
      content: "";
      background: no-repeat center center;
      background-size: 100% 100%;
}
.navbar-toggler-icon.open {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M2 2l12 12M14 2L2 14'/%3E%3C/svg%3E");  
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px; /* 或者是具体的像素值，如 16px 16px */
}

 
.leftmenus .onemenu .leftmenus-link{   
    display: block;
    color:#fff;
    }
.leftmenus .twomenu a{
      font-size: 1.4rem;
      padding-left:1.4rem;
}
#submensleft{
   padding-bottom: 2rem;
}

.banner{
   height: 40rem;
   overflow: hidden;
   display: flex;
   align-items: center;
}

.upp{
   text-transform: uppercase;
}


/**********自定义一些基本设置结束**************/
.navbar-expand-lg{
   flex-wrap: wrap;
}
.top-head{
   width:100%;
   display: block;
    padding:15px 0;
   border-bottom: 1px solid #333;
   color:#fff;
}

.top-head .icos i{
   color:#fff;
   margin-left: 15px;
}

h1{font-size: 2.4rem;}


.logo{
   display: inline-block;
   position: relative;
   height: 30px;
}
.logo::after{
    content:"";
    position: absolute;
    height: 10px;
    width:100%;
    background: var(--colorred);
    z-index: -1;
    bottom:0;
    left:0;
}

.navbar{
   height: auto;
   padding:0px;
}
.logo-sm-height{
   height: 6rem;
   padding:1rem 0;
}

.navbar-expand-lg .navbar-nav .nav-link {    
    padding: 1.6rem; 
    color:#fff;
    font-size: 1.4rem;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
    color:var(--colorred);
}
.nav-item .nav-link{
   color:#fff;
   display: block;
}


.menu-on .nav-link{
   color:var(--colorred)!important;
}


.nav-item .dropdown-item{
  color: #333;
  display: block;
}

.head-sm-height{
   height: 11rem;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
    background-color: transparent !important;
    color: inherit !important;
  
}
.dropdown-menu li{
  padding:5px 0;
}
.dropdown-menu li:hover,
.dropdown-menu li:hover a{
  background: var(--colorred);
  color:#fff;
}


.index-banner{
   width: 100%;
   height: auto;
   position: relative;
}

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


.index-banner .position-absolute{
   position: absolute;
   left:0;
   top:0%;
   z-index: 3;
   width: 100%;
   height:100%;
   display: flex;
   align-items: center;  
}

.index-banner .position-absolute .text{
    padding-left: 5%;
    width:90%;
}
.index-banner .position-absolute .text h2{
    font-size:6rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color:#333;
    font-family:"标点";
} 
.index-banner .position-absolute .text h3{
   font-size: 3rem;
   font-family: 'Roboto', sans-serif;
    font-weight: 300; 
    margin-bottom: 2rem;
     color:#333;
     
}
.index-banner .position-absolute .text h4{
   font-size: 1.8rem;
    color:#333; 
    
}


 







.P-box{
   display: flex;
   flex-wrap: wrap;
   width: 100%;   
}
.left-bar{
   width:300px;
   margin-right: 20px;
   position: sticky; 
} 

.right-box{
   width:calc(100% - 320px);
}


.index-product{
   display: block;
   margin-bottom: 10px;
}
.index-product .ico{
  width: 100%;  
  height: 0;  
  padding-top: 100%;       /* 5:3 比例对应的上方内边距 */
  position: relative;     /* 方便内部子元素定位 */
  background-color: #000;
  overflow: hidden;
}
.index-product .ico img{
    position: absolute;  
  top: 0;  
  left: 0;  
  width: 100%;  
  height: 100%;
   object-fit: cover;
   transition: all 0.6s;
}

.index-product .title{
   height: 48px;
   line-height: 24px;
   text-align: center;
   margin-top: 0.5rem;
   font-size: 1.4rem; 
   color:#fff;
}

.index-product:hover .ico img{
   transform: scale(1.05);
}

.index-product:hover .title{
   color:var(--colorred); 
}


.index-bumen{
   background: #333;
   width: 100%; 
   height: 100%;
   display: inline-block;
   border-radius: 10px;
   overflow: hidden;
}

.index-bumen .ico{
   width:100%;
    height: 25rem;
   background: rgba(0,0,0,0.2);
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
}
.index-bumen .ico::after{
      content:'';
      position: absolute;
   width:100%;
   height: 100%;
   z-index: 2;
   left:0;
   top:0;
   background: rgba(0,0,0,0);
}
.index-bumen .ico img{
     width:100%;
     height: 100%;
     object-fit: cover;
}
.index-bumen:hover .ico::after{
   background: rgba(0,0,0,0.5);
}
.index-bumen .title{
   color:#fff;
}
.index-bumen .desc{
     padding:10px 15px 15px 15px;
     color:#fff;
     font-size: 1.2rem;
}
.index-bumen .desc p{
   font-size: 1.2rem;
}
 
.index-bumen:hover{
    background: #000;
}
 








.oem-box { 
            padding: 20px;
            background-color: #333;            
            height: 520px;
            width:100%; 
            display: flex;
            align-items: center;
            border-radius: 10px;
            position: relative;
}

.oem-box2{
          padding: 20px;
             height: 250px;
             background:#333;
             margin-bottom:20px;    
                display: flex;
            align-items: center;
              border-radius: 10px;
                position: relative;
        } 

.oem-box .ico,
.oem-box2 .ico{
    position: absolute;
    right:15px;
    top:15px;
    z-index: 5;
    width:30px;
}
 
   
.index-oemlist{ 
   transition: all 0.6s;
   cursor: pointer;
}
 
.index-oemlist .title{
   text-align: center; 
}
 
.index-oemlist .desc{
   font-size: 1.2rem;
   line-height: 1.5; 
}
.oem-box:hover,
.oem-box2:hover{
  background: #000; 
    border:1px solid #555;
    color:#fff;
}
.oem-box:hover .title,
.oem-box2:hover .title{
   color:var(--colorred);
}




.index-about{
   line-height: 24px;
}
.index-about h2{ 
   margin-bottom: 5px;
}






.index-news{
   width:100%;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  color:#888;
}
.index-news .ico{
   width: 100%;  
  height: 0;  
  padding-top: 100%;       /* 5:3 比例对应的上方内边距 */
  position: relative;     /* 方便内部子元素定位 */
  overflow: hidden;
}
.index-news .ico img{
  position: absolute;  
  top: 0;  
  left: 0;  
  width: 100%;  
  height: 100%;
   object-fit: cover;
   transition: all 0.6s;
}
.index-news:hover .ico img{
   transform: scale(1.1);
}
.index-news .cont{
   padding:15px;
}

.index-news .title{ 
   color:#AAA;
   font-size: 1.3rem;
   line-height: 1.5;
}
.index-news .date{
  transition: all 0.6s;
}
.index-news .desc{ 
   color:#888;
     transition: all 0.6s;
     height: 0px;
     overflow: hidden;
}

.index-news:hover .title{
    color: #FFF;
}

.index-news:hover .date{
  font-size:1.6rem;
}
.index-news:hover .desc{
  height: 70px;
}





.footer{
   background: #000;
   padding-top: 5rem;  
}

.copyright{
   border-top: 1px solid #333;
   margin-top: 3rem;
}
.foot-menu li{
   margin-bottom: 1rem;
   color:#888;
}
.foot-menu li a{
   color:#888;
}
.foot-menu li a:hover{
   color:#fff;
}
.tags-left{
   padding:0px 0px 15px 0;
   color:#888;
}
.tags-left a{ 
   color:#888!important;
   border-radius: 20px;
 
   display: inline-block;
}
.tags-left a:hover{
   color:#fff!important;
}
.tags-left a i{
   margin-right: 5px;
}

.slogan p{
  margin-bottom: 10px;
  color:#888;
}

.slogan p strong{
   color:#fff;
   font-size: 1.6rem;
}
.foot-menu2 li{
    color:#888;
    margin-bottom: 1rem;
    display: flex;
}
.foot-menu2 .icos img{
   width:24px;
   height: 24px;
}

.foot-menu{
 display: flex;
 flex-wrap: wrap;
}

.foot-menu li{
  width:33.33%;
}




.title-line{
   position: relative;
   padding-bottom: 8px;
   cursor: pointer;
}

.title-line::after{
   content:'';
   position: absolute;
   left:0;
   bottom:0;
   height:5px;
   width:6rem;
   background: var(--colorred);
   z-index: 2;
   transition: all 0.6s;
}

.title-line:hover::after{
    width:10rem;
}


/*****slide-bar侧边导航*************/

.slide-bar-box{
   padding-right: 20px;
    position: sticky;
    top:130px;
    padding-top: 0;

}
.slide-bar{
   background: #333;
}
.slide-bar .name{
    background: var(--colorred);
    padding:5px 10px;
}

.slide-bar .slide-menu{
    padding: 15px 10px;
}
.slide-bar .slide-menu li{
    margin-bottom: 10px;
}
.slide-bar .slide-menu li a{
   display: block;
   width: 100%;
   color:#fff;
}
.slide-bar .slide-menu li .on,
.slide-bar .slide-menu li a:hover{
    color:var(--colorred);
    font-weight: bold;
}


/*****More btn*************/
.More{
  
}



.More .More-btn {
    border: 2px solid #fff;
    border-radius: 3rem;
    font-weight: 500;
    padding: 0 3rem;
    line-height: 4rem;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.6s;  /* 明确指定颜色过渡 */
    cursor: pointer;        /* 建议增加手型光标 */
    z-index: 1;             /* 确保文字在最上层 */
}

.More .More-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    /* 初始状态：圆心在中间，半径为0 */
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.75s ease-in-out;
    z-index: -1;            /* 放在背景位置 */
     /* filter: blur(2px);*/
}

/* 悬停效果：圆圈扩散至100% */
.More .More-btn:hover::before {
    clip-path: circle(100% at 50% 50%);
}

/* 悬停效果：文字变色 */
.More .More-btn:hover {   
    color: #333;
}


.More .More-btn i{
    margin-left: 2rem;
    font-size: 2rem; 
}


.More-black{
    
}
 .More-black .More-btn-black{
   
    border-radius: 3rem;
    font-weight: 500;
    padding:0 15px;
    line-height: 3.4rem;
    background-color: #555;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color:#FFF;
    font-size: 1.2rem;
    transition: all 0.6s;
}

.More-black .More-btn-black i{
    margin-left: 0.5rem;
    font-size: 1.4rem; 
    font-weight: 300;
    transition: all 0.6s;
}
 .More-black a i{
  margin-left:5px;
  transition: all 0.6s;
 }
 .More-black a:hover{
     color:var(--colorred);
 }
 .More-black a:hover i{
   margin-left: 10px;
 }
 
  .More-black .More-btn-black:hover{
     background:var(--colorred);
     color:#fff;
 }
 
  .More-black .More-btn-black:hover i{
     margin-left:1rem;
 }
 
 
/******关于**********/

.about-asklist{
   margin-bottom: 2rem;
}

.about-asklist .title{
   font-weight: bold;
   display: flex;
   align-items: center;
   margin-bottom: 5px;
}
.about-asklist .title strong{  
   color:#fff;
   margin-right: 1.5rem;
   background:var(--colorred);
   display: inline-block;  
   width:20px;
   height: 20px;
   text-align: center;
   line-height: 20px;
   border-radius: 5px;
   font-size: 14px;
   font-weight: bold;
   flex-shrink: 0;
}
.about-asklist .subtitle{
   display: flex;
   line-height: 1.5;
}

.about-asklist .subtitle strong{  
   color:#333;
   margin-right: 1.5rem;
   background:#ddd;
   display: inline-block; 
   width:20px;
   height: 20px;
   text-align: center;
   line-height: 20px;
   border-radius: 5px;
   font-size: 14px;
   font-weight: bold;
   flex-shrink: 0;
   margin-top: 5px;
}

.about-imgs img{
   width: 100%;
   border-radius: 5px;
}



/*******新闻 列表*************/
.news-list {   
    display: flex!important;
    background: #333;  
    border:1px solid #000;
    border-radius: 0!important;
}

.news-list .ico {
    width: 240px;
    height: 240px;
    overflow: hidden;
    margin-right:5rem;
    display: flex;
    align-items: center;
}

.news-list .ico img { 
    height:100%;
    max-height: 100%;
    transition: all 0.6s;
    object-fit: cover;
}
.news-list .title{
  color:#fff;
}
.news-list .desc {
    width: 65%;
    display: flex;
    align-items: center;    
    justify-content: space-between;  
}
.news-list .date{
     display: flex;
     align-items: center;
     width: 300px;
     justify-content: center;     
}
.news-list .date .year{
     font-size: 4rem;
     font-weight: bold;
     color:var(--colorred);
     margin-bottom: 1rem;
}
.news-list .date .md{
     font-size: 1.6rem;
      color:#888;
      text-align: center;
}
.news-list:hover {
    cursor: pointer;
    background: #000;
      border:1px solid #333;
}

.news-list:hover .ico img {
    transform: scale(1.1);
}
.more-link{
   display: flex;
   align-items: center;
   font-size: 1.4rem;
  
}
.more-link i{
   transition: all 0.6s;
    margin-left: 0.5rem;
    font-size: 1.2rem;
     
}
.more-link:hover i{
   margin-left: 1.5rem;
   color:var(--colorred);
}
.more-link:hover,
.more-link:hover i{
   font-weight: bold;
  color:var(--colorred);
}

.news-list:hover .more-link,
.news-list:hover .more-link i{
   font-weight: bold;
  color:var(--colorred);
}
.news-list:hover .more-link i{
   margin-left: 1.5rem;
   color:var(--colorred);
   font-weight: bold;
}


.product-tj {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(112,112,112,0.1);
    flex-wrap: wrap;
    height: 100%;
}

.product-tj .all-box {
    width: 100%; 
    display: block;
    padding:1rem;
}
.product-tj .all-box .title{
   height: 4rem;
   line-height: 2rem;
   overflow: hidden;
}
.product-tj .all-box .ico{
    width:100%;
    max-height: 18rem;
    overflow: hidden;
    display: inline-block;
}
.product-tj .all-box .ico img{
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.6s;
}
.product-tj .all-box:hover .ico img{
   transform: scale(1.1);
}

.product-tj:hover .all-box a .title {
    color: var(--colorblue);
}
 



/*******新闻 详情*************/

.line{
   background: #333;
   width: 100%;
   height: 1px;
}


.tuijian-title {
    position: relative;
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
    cursor: pointer;
}

.tuijian-title:after {
    content: '';
    position: absolute;
    width: 5rem;
    height: 4px;
    background: var(--colorblue);
    left: 0;
    bottom: 0;
    transition: all 0.6s;
}
.tuijian-title:hover:after{
     width: 10rem;
}
.news-tj {
    display: flex;
    align-items: center;
    padding-bottom:2rem;
    border-bottom: 1px solid rgba(112,112,112,0.1)
}

.news-tj .ico-box {
    width: 100px;
    margin-right: 10px;
}

.news-tj .all-box {
    width: 100%;
}

.news-tj:hover .all-box a .title {
    color: var(--colorred);
}
.news-tj .all-box .date{
   color:#888;
   margin-top: 1rem;
}
.news-jian {
    display: flex;
    justify-content: center;
}

.news-jian .line {
    width: 1px;
    height: 100%;
    background: #333;
}


.pre-next a:hover{
   color:var(--colorblue);
   font-weight: bold;
}


.p-prev i, 
.p-next i{ 
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
   background: #333;
}

.news-content,
.news-content p{
   color:#AEAFAE
}
.news-content p img{
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
}
.news-content h3,
.news-content h2,
.news-content h4{
   margin-top:15px;
   margin-bottom: 5px;
   font-weight: bold;
   color:#AEAFAE
}

.hoverred:hover{
   color:var(--colorred)!important;
}

.tags a{ 
   display: inline-block;
   font-size: 12px;
}
.tags a i{
  margin-right:3px;
  font-size: 11px;
}
.tags a:hover{ 
   color:#000;
}

/******Porduct**************/
.Porduct-info{
    border-bottom: 1px solid var(--colorredbg);
    margin-top: 0rem;
    height: 3rem;
}

.Porduct-info span{
   display: inline-block;
   background:var(--colorredbg);
   color:#fff;
   height: 3rem;
   line-height: 3rem;
   border-radius: 0 15px 0 0;
   padding:0 20px 0 15px;
}


/********contact**************/

.contact-main  li{
     font-size: 1.6rem;
     margin-bottom: 1rem;
}
.contact-main  li .icos img{
    width:30px;
    height:30px;
}

 	.contact-man{
 		width:100%;
 	}
 	.contact-man .ico{
 		 width:100%;
 		 border-radius: 5px;
 		 overflow: hidden;
 	}
 	.contact-man .ico img{
 		 width: 100%;
 	}


#ny-banner {
    color: #fff;
    height: 500px;
    max-height: 500px;
    position: relative;
    width: 100%; 
    background: #fff;
}
#ny-banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/static/images/float.png) 50%/cover no-repeat;
}
#ny-banner .pic {
    position: absolute;
    right: 0;
    width: 68%;
    height: 100%;
    display: none;
}
#ny-banner .pic.active {
    display: block;
}
#ny-banner .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ny-banner .ny-banner-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
#ny-banner .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    position: relative;
    color: #fff;
}
#ny-banner .display { 
    line-height: 1.18;
    white-space: pre-line;
    opacity: 1;
    word-break: break-word;
    color:#333;
}
#ny-banner .sub {
    color: #8c8c96;
    font-size: 16px;
    line-height: 1.75; 
    max-width: 500px;
}
 

@media screen and (max-width:768px) {
    #ny-banner {
        background-color: #f4f9fe;
        height: 400px; 
    }
    #ny-banner:after {
        background: url(/static/images/float-wap.png?v=22) 50%/cover no-repeat;
        background-size: cover;
        content: "";
    }
    #ny-banner .pic{
       height: 320px;
        margin-top: 0px;
    }
    #ny-banner:after {
        height:400px;
        margin-top: 0px;
    }
    #ny-banner .pic {
        width: 100%;
    }
    #ny-banner .container {
        justify-content: flex-end;
        margin-left: 10px;
        margin-right: 10px; 
        width: calc(100% - 20px);
        padding-bottom: 2rem;
    }
    #ny-banner .display { 
        line-height: 37px;
        margin-bottom: 22px;
        opacity:1;
    }
    #ny-banner .sub { 
        line-height: 1.4;
        margin-bottom: 0px;
        max-width: 100%;
        color:#666;
    }
}







/********OEM**************/


.oem-content h4{
   font-weight: bold;
   margin-top: 5px;
}


.order-en-wrapper {
    width: 100%;
    padding: 40px 0px; 
    box-sizing: border-box;
    overflow-x: auto;
}

.order-en-card {
    width: 100%;
    margin: 0 auto;
    padding: 36px 44px;
    background: #191919;
    border: 1px solid #333;
    border-radius: 15px; 
}

.order-en-title {
    margin-bottom: 34px;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #AEAEAE;
}

.order-en-chart {
    width: max-content;
    margin: 0 auto;
}

.order-en-row {
    display: grid;
    grid-template-columns: 300px 86px 300px;
    align-items: start;
}

.order-en-box {
    min-height: 58px;  
     background: #303030;
   
    color: #AEAEAE;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.25;
    box-sizing: border-box; 
}
.order-en-box:hover{
    background: var(--colorred);
    color:#fff;
    cursor: pointer;
}

.order-en-main-box {
    width: 300px;
    gap: 10px;
}

.order-en-main-box span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #333;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
}

.order-en-side-box {
    width: 300px;
    min-height: 50px;
    font-size: 14px; 
}

.order-en-main-cell {
    position: relative;
    width: 300px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    overflow: visible;
}
 /* 只有当 .order-en-row 不是最后一个时，里面的 main-cell 才生成向下箭头 */
.order-en-row:not(:last-child) .order-en-main-cell::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 1.5px;
    height: 20px;
    background: #FFF;
}

.order-en-row:not(:last-child) .order-en-main-cell::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #FFF;
}

/* 最后一个循环行的 main-cell 去掉底部间距 */
.order-en-row:last-child .order-en-main-cell {
    padding-bottom: 0;
}

.order-en-arrow-right {
    position: relative;
    height: 42px;
    margin: 0 14px;
}

.order-en-arrow-right::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1.5px;
    background: #FFF;
    transform: translateY(-50%);
}

.order-en-arrow-right::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #FFF;
}






/* 手机端：100%宽度显示 */
@media (max-width: 1200px) {
    .order-en-wrapper {
        padding: 24px 10px;
        overflow-x: hidden;
    }

    .order-en-card {
        width: 100%;
        min-width: 0;
        padding: 24px 12px;
        border-radius: 14px;
    }

    .order-en-title {
        margin-bottom: 24px;
        font-size: 22px;
    }

    .order-en-chart {
        width: 100%;
    }

    .order-en-row {
        grid-template-columns: 44% 12% 44%;
    }

    .order-en-main-cell {
        width: 100%;
        padding-bottom: 26px;
    }

    .order-en-main-box,
    .order-en-side-box {
        width: 100%;
    }

    .order-en-box {
        min-height: 40px;
        padding: 6px 6px;
        font-size: 11px;
        line-height: 1.18;
        border-radius: 6px;
    }

    .order-en-main-box {
        gap: 5px;
    }

    .order-en-main-box span {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .order-en-side-box {
        font-size: 10.5px;
    }

    .order-en-arrow-right {
        height: 40px;
        margin: 0 5px;
    }

    .order-en-main-cell:not(.order-en-last)::after {
        height: 17px;
        bottom: 7px;
    }

    .order-en-main-cell:not(.order-en-last)::before {
        border-left-width: 4px;
        border-right-width: 4px;
        border-top-width: 7px;
    }
}


@media (max-width: 768px) {
   .order-en-card{
     border:none;
   }
}




.flow-wrapper {
    width: 100%;
    padding: 30px 20px;
    overflow-x: hidden;
     border: 1px solid #222;
     border-radius: 15px;
     background: #191919;
}
.flow-chart {
    width: max-content;
    max-width: 970px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: max-content 90px 300px 90px max-content;
    row-gap: 10px;
    align-items: center;
}


/* 所有盒子自动适应内容 */
.box {
    min-height: 58px;  
       background:#303030;     

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: fit-content;
    min-width: 180px;
    max-width: 320px;

    padding: 5px 14px;
    font-size: 16px;
    line-height: 1.25;
    white-space: normal;

    color:#AEAEAE;


}
 .box:hover{
      background: var(--colorred);
      color:#fff;
      cursor: pointer;
    }

/* 中间主流程盒子 */
.main-box {
    min-height: 68px;
    font-size: 14px;
    position: relative;

    width: fit-content;
    min-width: 300px;
    max-width: 300px;
}

/* 左右侧盒子 */
.side-box {
    font-size: 14px;
    min-width: 180px;
    max-width: 200px;
    margin-bottom: 35px;
}

.side-box {
    font-size: 14px;
    margin-bottom: 35px;
}

.empty {
    min-height: 58px;
}


/* 主流程单元格 */
.main-cell {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: visible;

    width: auto;
    justify-self: center;
     width: 100%;
}

/* 除最后一个节点外，给下方箭头预留空间 */
.main-cell:not(.last) {
    padding-bottom: 32px;
}

/* 向下连接线：在矩形框外部 */
.main-cell:not(.last)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: #fff;
}

/* 向下箭头：在矩形框外部 */
.main-cell:not(.last)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid #fff;
    z-index: 2;
}


/* 左右 OK / NG 连接线区域 */
.connector {
    position: relative;
    height: 70px;
    display: block;
    font-size: 15px;
    font-weight: 700;
    overflow: visible;
    margin:0 15px;
    margin-bottom: 35px;
}

/* OK 与 NG 两条线 */
.connector .ok,
.connector .ng {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
}

/* OK 那条线 */
.connector .ok {
    top: 25px;
}

/* NG 那条线 */
.connector .ng {
    top: 43px;
}

/* 横向线条 */
.connector .line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: #fff;
    flex: none;
}

/* OK / NG 文字 */
.connector .label {
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    text-align: center;
    line-height: 1;
}

/* OK 在线条上方 */
.connector .ok .label {
    top: -22px;
}

/* NG 在线条下方 */
.connector .ng .label {
    top: 8px;
}


/* 右侧连接线：OK 向右，NG 向左 */
.connector-right .ok .line::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
}

.connector-right .ng .line::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #fff;
}


/* 左侧连接线：OK 向左，NG 向右 */
.connector-left .ok .line::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #fff;
}

.connector-left .ng .line::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
}


.connector .line {
    flex: 1;
}



/* mobile */
@media (max-width: 1200px) {
     .flow-wrapper {
        width: 100%;
        padding: 20px 10px;
        overflow-x: hidden;
    }

    .flow-chart {
        width: 100%;
        min-width: 0;
        margin: 0 auto;

        display: grid;

        /* 手机端仍然保持五栏结构，但整体压缩到100% */
        grid-template-columns: 22% 8% 32% 8% 30%;

        row-gap: 8px;
        align-items: center;
    }
    .flow-chart-2{
       /* 手机端仍然保持五栏结构，但整体压缩到100% */
        grid-template-columns: 0% 0% 43% 16% 41%;
    }

    .box {
        width: 100%;
        min-width: 0;
        max-width: none;

        min-height: 48px;
        padding: 5px 4px;

        font-size: 11px;
        line-height: 1.18;
        border-width: 1.5px;
        border-radius: 5px;

        word-break: normal;
        overflow-wrap: break-word;
    }

    .main-box {
        width: 100%;
        min-width: 0;
        max-width: none;

        min-height: 56px;
        font-size: 11px;
        width: 100%;
        box-sizing: border-box;
    }
   
    .side-box {
        width: 100%;
        min-width: 0;
        max-width: none;

        font-size: 10px;
        margin-bottom: 28px;
    }

    .main-cell {
        width: 100%;
        justify-self: center;
    }

    .main-cell:not(.last) {
        padding-bottom: 26px;
    }

    .main-cell:not(.last)::after {
        bottom: 8px;
        height: 15px;
        width: 1.5px;
    }

    .main-cell:not(.last)::before {
        bottom: 0;
        border-left-width: 5px;
        border-right-width: 5px;
        border-top-width: 8px;
    }

    .connector {
        height: 58px;
        margin: 0 4px 28px;
        font-size: 10px;
    }

    .connector .ok {
        top: 21px;
    }

    .connector .ng {
        top: 36px;
    }

    .connector .line {
        height: 1.5px;
    }

    .connector .ok .label {
        top: -16px;
    }

    .connector .ng .label {
        top: 6px;
    }

    .connector-right .ok .line::after,
    .connector-left .ng .line::after {
        top: -4px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-left-width: 7px;
    }

    .connector-right .ng .line::after,
    .connector-left .ok .line::after {
        top: -4px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-right-width: 7px;
    }
}


@media (max-width: 768px) {
     .flow-wrapper { 
        border: none;
         padding: 20px 0px;
    }
}    









.tags a:hover{
  color:#fff;
}


.product-info-banner{
          width:100%;
          margin:0 auto;
          margin-bottom: 20px;
       }
     .mySwiper2 { 
      width: 100%;
    }
    .mySwiper2 .swiper {
      width: 100%;
      height: 100%;
    }

    .mySwiper2 .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .mySwiper2 .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

 
    .mySwiper {
      height: 15%;
      box-sizing: border-box;
      padding: 10px;
      background: #333;
    }

    .mySwiper .swiper-slide {
      width: 20%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .mySwiper .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

