@CHARSET "UTF-8";
/* Form Group  */
   a:{
	  text-decoration:none;
   }
   a:focus{
	   outline:none;
   	   text-decoration:none;
   }
   .onClaess{
	  border:0px; background-color:#f1f1f1; line-height:32px; margin-left:10%; color:#000000; border-radius:10px;
   }
   .onClaess .focus{
	     outline:none!important;
   	     box-shadow:none!important; 
   	     border-radius:10px;
   }
   select{
	 bordeR:none;
   	 outline:none;
   	
   }
   select:focus{
	  outline:none;
   	  border-color:none;
   }
   .srlanm{
	  background-color:#f6f6f6;
   	  list-style-type:none;
   	  margin-right:2%;
   	  width:auto;
   	  padding:5px 10px;
   	  margin-bottom:1%;
   	  border-radius:10px;
   	  color:#dedede;
   	  margin-top:1px;
   }
   
   .srlanm-over{
	  background-color:#333333;
   	  list-style-type:none;
   	  margin-right:2%;
   	  width:auto;
   	  padding:5px 10px;
   	  margin-bottom:1%;
   	  border-radius:10px;
   	  color:#fff;
   	  margin-top:1px;
   }
   
   .two-list{
	  margin-left:15.4%;
   
   }
   .two-list ul li a{
	  text-decoration:none;
   	  color:#787878;
   	  
   }
   
   .two-list ul .srlanm-over a{
	   color:#fff;
   }
   
   .prods ul li a{
   	  color:#787878;
	  text-decoration:none;
   }
   
   .prods ul li a:focus{
	  text-decoration:none;
   }
   
   a:hover, a:focus{
	  text-decoration:none;
   	  
   }
   .produinfo .prods{
	 list-style-type:none; 
	 padding:10px; 
	 border-radius:10px; 
	 background-color:#f1f1f1;
   }
   
   .produinfo .prods .title{
	   font-size:14px; 
	   color:#787878; 
	   text-decoration:none; 
	   margin-top:2%;
   	   height:40px;
   } 
    .produinfo .prods .model{
	  font-size:14px; 
	  color:#787878;  
	  text-decoration:none;
    }
    
    .produinfo .prods a img{
	    height:340px!important;
	    width:340px;
    }
   
   
   
   
   .produinfo .prods:hover{
	   background-color:#2874a9;
   }
   
   .produinfo .prods:hover .title{
	   color:#fff;
   }
   
    .produinfo .prods:hover .model{
	   font-size:14px; 
	   color:#fff;  
	  text-decoration:none;
    }
    
    @media(min-width: 1200px){
	    .col-lg-3 {
        width: 23%;
        margin: 1% 1%;
    }
    
/* 容器样式 */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    cursor: pointer;
}

/* 触发器（显示的那个框） */
.custom-select-trigger {
    background: #f5f5f5; /* 浅灰色背景 */
    
    border-radius: 20px; /* 大圆角 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
	margin-top:6px;
}


/* 右侧箭头图标 */
.arrow-icon::after {
    content: '\25bc'; /* 倒三角符号 */
    font-size: 10px;
    margin-left: 10px;
    transition: transform 0.3s;
}

/* 选项列表（默认隐藏） */
.custom-options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    overflow: hidden;
}

/* 展开状态 */
.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
}

.custom-select-wrapper.open .arrow-icon::after {
    transform: rotate(180deg);
}

/* 单个选项样式 */
.custom-option {
    padding: 10px 20px;
    color: #666;
    transition: background 0.2s;
}

.custom-option:hover {
    background: #eef4f9; /* 悬停颜色 */
    color: #0056b3;
}
.form-group {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}
.form-group label {
  position: absolute;
  left: 0;
  width: 100%;
  top: 9px;
  color: #c1c1c1;
  transition: 0.3s;
  z-index: -1;
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 28px;
  font-weight:normal;
}
.form-group input, .form-group select {
  border: 0;
  border-bottom: 2px solid #f1f1f1;
  background-color: transparent;
  padding-bottom: 8px;
  padding-top: 8px;
	width:100%;
}
.form-group input[type=submit] {
  border: 2px solid #000248;
  background: #ffffff;
  color: #000248;
  font-size: 16px;
  font-weight: 700;
  height: 46px;
  line-height: 44px;
  padding: 0;
  text-transform: capitalize;
}
.form-group input[type=submit]:hover {
  background: #000248;
  color: #ffffff;
}
.form-group textarea {
  border: 0;
  min-height: 165px;
  padding-bottom: 8px;
  padding-top: 8px;
  border-bottom: 1px solid #f1f1f1;
  background-color: transparent;
  resize: none;
}
.form-group span.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f1f1f1;
  transition: 0.4s;
}
.form-group.focused label {
  top: -10px;
  font-size: 12px;
  color: #02e3fa;
  transition: 0.3s;
}
.form-group.focused span.focus-border {
  width: 100%;
  transition: 0.4s;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a, .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a, .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a, .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
            z-index: 3;
            color: #23527c;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    .pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
  .w-webflow-badge {
   display:none!Important; 
  } 
  /* fixes select input styling on mobile devices */
  
  
  select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
  
  
  select {
  appearance: none;
  background-size: 16px;
  padding-right: 12px 36px 12px 16px;
}
  
  .rich-text, .rich-text p {
	font-size:16px;
  }
  
  
  .rich-text li {
	padding:8px;

  }
  
  .rich-text ul {
  list-style: none; /* remove default bullets */
  padding-left: 0.5em;   /* reset default UL padding */
}

.rich-text ul li {
  padding-left: 1em; /* space for the custom bullet */
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0.5em; /* adjust size of bullet */
}

/* 容器设置 */
.product-marquee-container {
    overflow: hidden;
    background-color: #ffffff;
    width: 80%;
	margin:0 auto;
	margin-top:3%;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite; /* 30秒一圈，可调 */
}

/* 鼠标放上去：1.整个轨道停止滚动 */
.product-marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* 轨道设置 */
.marquee-track {
    display: flex;
    flex-shrink: 0;
}

/* 产品卡片样式 - 参考截图 */
.product-card {
    padding: 20px 15px;
    width: 16%; /* 卡片宽度 */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-inner {
    background: #f4f4f4;
    border: 1px solid #eee;
    border-radius: 20px; /* 大圆角 */
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.card-inner img {
    width: 100%;
    height: 180px;
    object-fit: contain; /* 保证模型图片不拉伸 */
    margin-bottom: 15px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
}

/* 鼠标放上去：2.单个卡片放大效果 */
.product-card:hover {
    transform: scale(1.12); /* 放大 12% */
    z-index: 99;
}

.product-card:hover .card-inner {
    border-color: #f4f4f4; /* 蓝色边框高亮 */
    box-shadow: 0 10px 30px rgba(0,123,255,0.15) !important;
	background-color:#e1ebf4;
}

/* 动画定义 */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 滚动完第一组后无缝重置 */
}

/* 移动端适配 */
@media (max-width: 768px) {
    .product-card { width: 100%; }
    .card-inner img { height: 120px; }
}

@media(min-width:1280px){
	.about-index{
	   position:relative; 
	   margin-top:4%; 
	   background-color:#f4f4f4; 
	   width:100%; 
	   height:auto;
	}
	.about-index-left{
	    float:left;
	    width:50%;
	    margin:36px 0px;
	    border-radius:10px 0px 0px 10px;
	    height:auto;
	    background-color:#ffffff;
	    margin-left:10%;
		padding-bottom:36px;  
	}
	
	.about-index-left .about-nr{
	   color:#c1c1c1;
	   line-height:24px; 
	   padding-left:6%; 
	   padding-right:6%;
	}
	
    .about-index-left .about-link{
	   display:block; 
	   width:18%; 
	   text-align:center;
	   line-height:32px; 
	   border-radius:16px; 
	   background-color:#2874a9; 
	   margin-left:6%; 
	   margin-top:5%; 
	   text-decoration:none;
	}
	.about-index-right{
	   float:left; 
	   border:1px solid #000; 
	   margin:36px 0px; 
	   width:30%; 
	   height:434px; 
	   border-radius:0px 10px 10px 0px;
	}
	
	.news-list-info{
	   float:left; 
	   width:30%; 
	   margin-right:3%
	}
	
	.produ-span{
	   margin:0 auto; 
	   width:6%; 
	   height:24px; 
	   background-color:#2874a9; 
	   border-radius:18px; 
	   display:block; 
	   border:1px solid #2874a9;
	}
    .news-span{
	   margin:0 auto; 
	   width:6%; 
	   height:24px; 
	   background-color:#2874a9; 
	   border-radius:18px; 
	   display:block; 
	   border:1px solid #2874a9;
	}
	.news-title{
	   color:#c1c1c1; 
	   line-height:24px; 
	   margin-top:3%;
	}
	.news-titlemodel{
	   background-color:#2874a9; 
	   width:33%; 
	   border-radius:10px; 
	   text-align:center; 
	   line-height:24px; 
	   color:#fff; 
	   font-size:16px; 
	   display:block;
	}
	.footer-tts ul{
	    padding:0px;
		margin:0px;
	}
	
	.footer-tts ul li a{
	   text-decoration:none;
	} 
	
	.footeer-tts ul li{
	  list-style-type:none;
	}
	
	.footer-one{
	  margin-left:10%; 
	  float:left; 
	  width:20%
	}
	
	.footer-one img{
	   width:40%; 
	   margin-top:14%; 
	   margin-left:4%; 
	   margin-bottom:5%;
	}
	
	.footer-tts{
	   float:left;
	   width:20%;
	}
	
	.footer-tts h2{
	   color:#173f63; 
	   font-weight:bold; 
	   font-size:18px; 
	   text-align:left;
	}
	
	.contact-left{
	   width:40%;  
	   margin-left:10%; 
	   margin-top:3%; 
	   border-radius:10px; 
	   padding-bottom:5%; 
	   box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	}
	
	.contact-left .ph{
	   margin-left:45%; 
	}
	.contact-left .yx{
	   margin-left:45%; 
	   width:8%; 
	   margin-top:2%;
	   
	}
	
.contact-right{
	    float:left; 
	    width:45%; 
	    margin-left:5%; 
	    margin-top:2.4%;
	}
	
    .contact-form .form-group button{
	  border: 0px;
      width: 38%;
      background-color: #2874a9;
      color: #fff;
      border-radius: 10px;
      float:right;
	}
	
    .pro-oneClass .pro-all{
	    
		background-color:#2874a9; 
		border-radius:10px; 
		text-align:center; 
		line-height:32px; 
		color:#fff; 
		
	}
	
	.pro-list-ny{
	
		  margin-top:4%; 
		  width:80%; 
		  margin-bottom:2%; 
		  margin-left:10%;
	}
	
    .pro-oneClass .pro-select-all{
	    background-color:#f1f1f1; 
	    height:32px; 
	    margin-left:1.4%; 
	    border-radius:10px;
    	width:20%;
	}
	
    .produifo-list{
	    width:80%; 
	    margin-left:10%;  
	    margin-bottom:20;
    }
    
     .produinfo .prods .button{
	  background-color:#fff; 
	  color:#333; 
	  width:50%; 
	  line-height:28px; 
	  margin-left:25%; 
	  text-align:center; 
	  margin-top:3%; 
	  border-radius:10px; 
	  padding:0px 10px;
      border:0px;
   }
   
    .pagination p{
	    float:left; text-indent:41.5em; line-height:38px;
    }
}



  
