/* ==========================================================================
    Slider core styles
===========================================================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.slider-container_pd{width: 100%; margin-top: 40px;}
.slider-container {
  position: relative;
  overflow: hidden;

  padding: 0 30px;
 
  margin: 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.slider {
  position: relative;
  width: 9999px;
}
.slider:before,
.slider:after {
  display: table;
  content: ' ';
}
.slider:after {
  clear: both;
}
.slider__item {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slider__item ul{overflow: hidden;}
.slider__item ul li{ width: 546px; float: left; margin-bottom: 20px; margin-right: 30px; margin-left: 5px;}
.slider__item ul li.mg4{ margin-right: 0;}
.slider__item ul li:nth-child(2){ margin-right: 0;}
.slider__item ul li:nth-child(4){ margin-right: 0;}
.itemNews_lf{  width: 170px;float: left;}
.itemNews_lf img{ width: 100%; border-radius: 5px;}
.itemNews_rt{ width: 360px; float: right;}
.itemNews_rt a{ display: block; font-size: 18px; color: #333; font-weight: bold; line-height: 30px; margin-bottom: 6px;}
.itemNews_rt em{ color: #333; font-size: 14px; font-weight: 200; line-height: 24px;}
/* Arrows */
.slider__switch {
  position: absolute;
  top: 29%;
  display: block;
  width: 27px;
    height: 53px;
  /*margin-top: -35px;*/
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
  border-radius: 1px;
  background: #000;
  opacity: .3;
  transition: opacity .15s ease;
  fill: #fff;
  
}

.slider__switch--prev {
  left: 0px;
  background: url(../images/jt_lf.png) left center no-repeat;
}
.slider__switch--next {
  right: 0px;
  background: url(../images/jt_rt.png) right center no-repeat;
}

.slider__switch:hover {
  opacity: .85;
}

.slider__caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: block;
  max-width: 500px;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 20px 10px rgba(0,0,0,.4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000'); /* ie8 */
}
.slider__switch[disabled] {
    visibility: hidden;
    opacity: 0;
}
.slider__caption[disabled] {
  opacity: 0;
  visibility: hidden;
}
.slider-nav {
  line-height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 99999;
  filter: alpha(opacity=90); /* ie8 */
}
.slider-nav{ display: none; padding-bottom: 70px;}
.slider-nav__control {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 3px;
  -webkit-transition: background .5s ease;
     -moz-transition: background .5s ease;
       -o-transition: background .5s ease;
          transition: background .5s ease;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #bfbfbf;
}

.slider-nav__control.is-active {
  width: 14px;
  height: 14px;
  background: #2960db;
}

@media (max-width: 580px) {
  .slider__switch {
    display: none;
  }
  .slider__caption {
    display: none;
  }
}