.sqxzjcgszl_content{margin-top: 0;}
.sqxzjcgszl_lm{overflow: hidden; margin-top: 20px;}
.sqxzjcgszl_lm ul{margin-left: -10px; margin-right: -10px;}
.sqxzjcgszl_lm li{width: 16.66%; float: left;text-align: center;position: relative;}
.sqxzjcgszl_lm li a{display: block; margin: 0 10px; border: 1px solid #A6CFFF; padding: 20px;}
.sqxzjcgszl_lm li img{display:block; margin:0 auto .5em; transition: .3s all; height: 107px;}
.sqxzjcgszl_lm li span{font-size: 18px;line-height:35px;color: #333;}
.sqxzjcgszl_lm li:hover img{  transform: scale(-1, 1); }


@media (max-width:1200px){
.sqxzjcgszl_lm li{width: 33.33%; margin-bottom: 20px;}	
}


@media (max-width:640px){
.sqxzjcgszl_lm li{width: 50%;}	
.sqxzjcgszl_lm li img{height: 50px;}
}
.sqxzjcgszl_banner {
  position: relative;
}
  .scrolling-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(236, 233, 233, 0.4);;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
  }
  
  .scrolling-text {
    display: inline-block;
    padding-left: 100%; /* 初始位置在右侧不可见区域 */
    animation: scroll 24s linear infinite;
    animation-play-state: running;
  }

  .scrolling-text {
    text-decoration: none;
    font-size: 16px;
    color: #333;
  }

    /* 悬停时暂停动画 */
  .scrolling-text:hover {
    animation-play-state: paused;
    cursor: default;
  }
  @keyframes scroll {
    0% {
      transform: translateX(-100%); /* 向左移动自身宽度 */
    }
    100% {
      transform: translateX(0);
    }
  }