a{
    text-decoration: none;
}
img{
    display: block;
}
html,body{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.g_carousel-container {
    width: 100%;
    height: 4.3rem;
    position: relative;
    background: #fff;
  }
  .g_carousel-container .g_carousel-list {
    height: 100%;
    transition: 0.5s;
  }
  .g_carousel-container li{
      height: 100%;
      width: 7.5rem;
float: left;
  }
  .g_carousel-container img{
      height: 100%;
      width: 100%;
  }

  /* 显示器指示器 */
  .g_carousel-container .g_carousel-indicator{
    width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 0.2rem;
  height: 0.17rem;
  display: flex;
  justify-content: center;
  align-items: center;


  }
  .g_carousel-container .g_carousel-indicator li{
    margin-right: 0.15rem;
    width: 0.17rem;
    height: 0.17rem;
    background: #67b1ff;
    transform: rotate(45deg);
  }
  .g_carousel-container .g_carousel-indicator li.selected {
    background: #202629;
  }
  /* 左右点 */
  .g_carousel-container .g_carousel-prev,
  .g_carousel-container .g_carousel-next{
    background: url(../assets/btn-lefRight.png) no-repeat;
    background-size: 7.03rem 1.2rem;
    width: 0.6rem;
    height: 1.2rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .g_carousel-container .g_carousel-prev {
    left: 10px;
  }
  .g_carousel-container .g_carousel-next {
    background-position: -6.43rem 0;
    right: 10px;
  }
  

  .g_carousel-container .g_carousel-prev.disabled,
.g_carousel-container .g_carousel-next.disabled {
  opacity: 0.35;
}