/* 动画效果------- */

.data_item:hover .icon{
    animation: 1s shake;
}

@keyframes shake {
    0% { transform: rotate(0); }
    25%{ transform: rotate(15deg); }
  
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0); }
  }

  @-webkit-keyframes shake {
    0% { transform: rotate(0); }
    25%{ transform: rotate(15deg); }
  
    75% { transform: rotate(-15deg); }
    100% { transform: rotate(0); }
  }

  .news_item{
      transition: all .5s;
  }

  .news_item:hover{
      color: #c8161e;
      padding: 10px;
      padding-bottom: 0;
      background:rgba(200, 22, 30, .1);
      /* background:#c8161e; */
  }
  .news_item:hover .date_info em,.news_item:hover .date_info b,.news_item:hover .news_content p{
    color: #c8161e;
  }
 
  .notice_more a,.icon_more_red,.icon_more_yellow,.sc_item img,.sc_item,.news_title a,.notice_item{
      transition: all .5s;
  }
  .news_title a:hover{
      background:rgba(200, 22, 30, .8) url(../img/icon_more_red.png) no-repeat 72px center;
      background-size: 7px;
      color:#fff;
  }
  .icon_more_red:hover{
      background-size: 600px;
      background-position: -109px -485px;
  }
  .icon_more_yellow:hover{
      background-size: 600px;
      background-position: -7px -485px;
  }
  .sc_item{
      overflow: hidden;
  }
  
  .sc_item:hover img{
      transform: scale(1.1);
  }
  .notice_container.flex_between{
      align-items: flex-start;
  }
  .notice_item:hover{
      background:rgba(255, 255, 255, .2);
      padding-bottom: 20px;
      /* color: #c8161e; */
  }
  .notice_more a:hover{
    color: #e9aa45;
    font-weight: bold;
    background-size: 80px;
  }

  .home .nav li ul li{
      transition: all .5s;
  }
  .home .nav li ul li a{
      transition: all .5s;
  }

  .home .nav li ul li a:hover{
      color: #fff;
        font-weight: bold;
  }
  .home .nav ul li:hover{
      background:#f98d0d;
      color: #fff;
      font-weight: bold;
  }
  .sw_media_item .img_container img,.jiangzuo_img_container img{
      transition: all .5s;
  }
.jiangzuo_img_container{
    overflow: hidden;
    width: 100%;
}
 
  .sw_media_container .sw_media_item:hover .img_container img{
     transform: scale(1.1);
  }
  .jiangzuo_content_container:hover .jiangzuo_img_container img{
    transform: scale(1.1);
  }

  .friend_link a{
      transition:  all .5s;
  }

  .friend_link a:hover{
      color: #e9aa45;
  }
  .footer .footer_link a:hover{
    color: #fbefd4;
  }
  .footer .footer_link a:hover i{
    animation: .7s scale;
    
}
.slogan_content:hover img{
    animation: .7s scale;
}

@keyframes scale {
    0% { transform: scale(1); }
    50%{ transform: scale(1.2); }
 
    100% { transform: scale(1); }
  }

  @-webkit-keyframes scale {
    0% { transform: scale(1); }
    50%{ transform: scale(1.2); }
 
    100% { transform: scale(1); }
  }

  .sc_item a{
      transition: all 1s;
  }
  .sc_item a:hover{
    animation: 1s moveline;
    font-weight: bold;
  }

  @keyframes moveline {
    0% { background-position-x: -225px; }
    30% { background-position-x: -185px; }
    31%{background-position-x: 233px;}
    100% { background-position-x: 272px; }
  }

 body.home .scr_news.wrapper{
      /* width: 100%; */

  }

  .scr_news .news_box{
      /* border-radius: 0; */
  }
  
 #sw_media_next,#sw_media_prev{
     float: left;
     width: 207px;
     height: 207px;
     margin: 0;
 }
.media_slide_container{
    width: 810px;
}

#sw_media_current{
    float: left;
}
 
#sw_media_next .img_container,#sw_media_prev .img_container{
    height: 87px;
    width: 207px;
}

#sw_media_next .text,#sw_media_prev .text{
    height: 120px;
   font-size: 14px;
}

#sw_media_current .text{
    position: absolute;
    width: auto;
    bottom: -20px;
    right: 20px;
    height: 58px;
    line-height: 58px;
}

  .sw_media_container .swiper-wrapper{
      display: flex;
  }
  .sw_media_container{
      width: 580px;
      overflow: hidden;
      position: relative;
  }

  .my-swiper-pagination2{
      padding-top: 20px;
  }
  /* .my-swiper-pagination2 {
      display: flex;
      justify-content: center;
  } */
  .my-swiper-pagination2 .swiper-pagination-bullet {
      height: 12px;
      width: 12px;
      margin: 0 !important;
      margin-right: 15px !important;
  }

  @media only screen and (max-width : 750px){
    #sw_media_next,#sw_media_prev{
        display: none;
    }
    .media_slide_container{
        width: calc(100% - 58px);
    }
    .sw_media_container{
        width: 100%;
        margin-left: 0;
    }
    #sw_media_current .text{
            position: relative;
    width: 100%;
  bottom: auto;
   right: auto;
    height: 58px;
    line-height: 16px;
    font-size: 14px;
    }
    .my-swiper-pagination2{
        padding-top: 30px;
    }
  }