* {
    margin:0;
    padding:0;
  }
  a{
    text-decoration: none;
  }
  .banner {
    position: relative;
    width: 1000px;
    height: 560px;
    margin:10px auto 0 auto;
    box-shadow: 0 0 0px rgb(180, 182, 180);
    overflow: hidden;
  }
  .banner .wrap {
    position: absolute;
    width: 4000px;
    height: 560px;
    z-index: 1;
  }
  .banner .wrap img {
    float: left;
    width: 1000px;
    height: 560px;
  }
  .banner .buttons {
    position: absolute;
    right: 5px;
    bottom:20px;
    width: 120px;
    height: 10px;
    z-index: 2;
  }
  .banner .buttons span {
    margin-left: 5px;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(211, 212, 211);
    text-align: center;
    color:white;
    cursor: pointer;
  }
  .banner .buttons span.on{
    background-color: rgb(151, 150, 150);
  }
  .banner .arrow {
    position: absolute;
    top: 40%;
    color: rgb(179, 182, 179);
    padding:0px 15px;
    border-radius: 50%;
    font-size: 50px;
    z-index: 2;
    display: none;
  }
  .banner .arrow_left {
    left: 10px;
  }
  .banner .arrow_right {
    right: 10px;
  }
  .banner:hover .arrow {
    display: block;
  }
  .banner .arrow:hover {
    background-color: rgba(0,0,0,0.2);
  }
