







.img-margin{
     margin: 0 10px; 
}




.img90{
    width: 150px; 
    height: 150px;
}

.imgyj{
    border-radius: 0.1rem;
}



.text-gray,a.text-gray:link,a.text-gray:visited,.button.border-gray,blockquote.border-gray strong,.pager.border-gray a,.pager-prev.border-gray,.pager-next.border-gray {
    color: #888888
}

.height-middle {
    line-height: 26px
}


.text-center {
    text-align: center
}

.radius {
    border-radius: 4px
}



.padding {
    padding: 10px
}


footer ul li.item-6 {width:10%}




.a_button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.a_button:hover {
    background-color: #45a049;
}

.a_button:active {
    background-color: #3e8e41;
    transform: translateY(2px);
}

      
      
      
      .w {
    width: 1200px;
    margin: 0 auto
}
.web_position.s1>.position {
    text-align: left
}
.web_position .position {
    float: left;
    width: 50%;
    text-align: right;
    height: 55px;
    line-height: 55px;
    color: #888;
    font-size: 16px;
    overflow: hidden
}
.web_xiazai_list {
    margin: 30px 0;
    overflow: hidden
}

.web_xiazai_list .item {
    display: flex;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5
}

.web_xiazai_list {
    margin: 30px 0;
    overflow: hidden
}

.web_xiazai_list .item {
    display: flex;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5
}

.web_xiazai_list .item:last-child {
    margin: 0
}


.web_xiazai_list .item .info {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.web_xiazai_list .item .info .title {
    font-size: 18px;
    color: #555
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-bottom: 5px
}

.web_xiazai_list .item .info .title a:hover {
    color: #d88d8d
}

.web_xiazai_list .item .link {
    background: #ffd101;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 4px;
    width: 140px;
    height: 36px;
    transition: all .2s linear;
    white-space: nowrap;
    overflow: hidden;
    padding: 0px 10px;
}













/*悬停抖动 开始*/
	.hover-shake {
    display: inline-block;
    transition: transform 0.2s ease;
  }
  
  .hover-shake:hover {
    animation: shakeHover 0.5s ease-in-out;
  }
  
  @keyframes shakeHover {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px) rotate(-1deg); }
    50% { transform: translateX(4px) rotate(1deg); }
    75% { transform: translateX(-4px) rotate(-1deg); }
  }
	/*悬停抖动 结束*/
	
	
	
	
	/*周期性文字左右抖动 开始*/
	 .pulse-shake {
    display: inline-block;
    animation: pulseShake 3s ease-in-out infinite;
  }
  
  @keyframes pulseShake {
    0%, 10%, 20%, 100% { transform: translateX(0); }
    5%, 15% { transform: translateX(-3px) rotate(-1deg); }
  }
  /*周期性文字左右抖动 结束*/
	
	
	
	
	/*文字波浪 开始*/
      .wave-title span {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
  }
  
  .wave-title span:nth-child(1) { animation-delay: 0s; }
  .wave-title span:nth-child(2) { animation-delay: 0.1s; }
  .wave-title span:nth-child(3) { animation-delay: 0.2s; }
  .wave-title span:nth-child(4) { animation-delay: 0.3s; }
  .wave-title span:nth-child(5) { animation-delay: 0.4s; }
  
  @keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /*文字波浪 结束*/
	
	
	
	
	
	
	
	
	
	/*按钮悬停抖动开始*/
    .hover-shake-shadow {
    transition: all 0.2s ease;
  }
  .hover-shake-shadow:hover {
    animation: shake-shadow 0.5s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  @keyframes shake-shadow {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    50% { transform: translateX(2px) rotate(1deg); }
    75% { transform: translateX(-2px) rotate(-1deg); }
  }
    /*按钮悬停抖动结束*/
    
    
    
    
    
    
    
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* 图片闪烁边框 开始 */
	
  .shanshuo-image {
    border: 3px solid #3498db;
    animation: blink 1.5s infinite;
  }
  
  @keyframes blink {
    0%, 100% { border-color: #3498db; }
    50% { border-color: #e74c3c; }
  }

	/* 图片闪烁边框 结束 */
	
	
	
 
  /*图片呼吸灯边框 开始*/
   .huxideng-image {
    border: 3px solid rgba(52, 152, 219, 1);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { border-color: rgba(52, 152, 219, 1); }
    50% { border-color: rgba(52, 152, 219, 0.4); }
    100% { border-color: rgba(52, 152, 219, 1); }
  }
  /*图片呼吸灯边框 结束*/
  
  
   a.jianbian-text {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff);
    background-size: 300% 300%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradient 8s ease infinite;
    text-decoration: none;
  }

  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  
  
  
   a.shanshuo-text {
    animation: blink 2s infinite;
    text-decoration: none;
    color: #FF5722;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  
  
  
  
  
  
  
  /*鼠标移动到图片上图片抖动-开始*/
  /* 基础图片样式 */
.shaky-image {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* 鼠标悬停时的抖动动画 */
.shaky-image:hover {
    animation: shake 0.5s infinite;
}

/* 定义抖动动画 */
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
/*鼠标移动到图片上图片抖动-结束*/




/*打字机从上往下由左往右-开始*/
.daziji2-text {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #333;
  overflow: hidden;
  padding-bottom: 2px;
}

/* 定义每个字符的容器 */
.daziji2-text span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}

/* 创建字符逐个显示的效果 */
.daziji2-text span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform-origin: 0 50%;
  animation: typing 0.5s steps(1) forwards;
}

/* 根据字符位置设置不同的动画延迟 */
.daziji2-text span:nth-child(1)::after { animation-delay: 0.1s; }
.daziji2-text span:nth-child(2)::after { animation-delay: 0.2s; }
.daziji2-text span:nth-child(3)::after { animation-delay: 0.3s; }
.daziji2-text span:nth-child(4)::after { animation-delay: 0.4s; }
.daziji2-text span:nth-child(5)::after { animation-delay: 0.5s; }
.daziji2-text span:nth-child(6)::after { animation-delay: 0.6s; }
.daziji2-text span:nth-child(7)::after { animation-delay: 0.7s; }
.daziji2-text span:nth-child(8)::after { animation-delay: 0.8s; }
.daziji2-text span:nth-child(9)::after { animation-delay: 0.9s; }
.daziji2-text span:nth-child(10)::after { animation-delay: 1.0s; }
/* 可根据需要继续添加更多字符的延迟 */

@keyframes typing {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}
/*打字机从上往下由左往右-结束*/







@media(max-width:1220px) {
    .w {
        width: 96%
    }

    .contenter {
        width: calc(100% - 309px)
    }

    .products .pro_cate {
        width: 22.5%
    }

    .products .contenter {
        width: 73%;
        margin-left: 0
    }
}
