* {
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
  }
  
  .container_l {
    position: relative;
    
    height: 500px;
    box-shadow: 0 0 5px green;
    overflow: hidden;
  }
  
  .container_l .wrap_l {
    position: absolute;
    width: 6400px;
    height: 500px;
    z-index: 1;
  }
  
  .container_l .wrap_l img {
    float: left;
    width: 600px;
    height: 500px;
  }
  
  .container_l .buttons_l {
    position: absolute;
    right: 5px;
    bottom: 40px;
    width: 130px;
    height: 10px;
    z-index: 2;
  }
  
  .container_l .buttons_l span {
    margin-left: 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffdccc;
    text-align: center;
    color: #000;
    cursor: pointer;
  }
  
  .container_l .buttons_l span.on {
    background-color: red;
  }
  
  .container_l .arrow_l {
    position: absolute;
    top: 35%;
    color: #ffdccc;
    padding: 0px 14px;
    border-radius: 50%;
    font-size: 50px;
    z-index: 2;
    display: none;
  }
  
  .container_l .arrow_l_left {
    left: 10px;
  }
  
  .container_l .arrow_l_right {
    right: 10px;
  }
  
  .container_l:hover .arrow_l {
    display: block;
  }
  
  .container_l .arrow_l:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }