
/*  phone   */


  /*body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }*/
  
    ul.slides {
      position: relative;
      width: 100%;
      height: 400px;
      list-style: none;
      margin: 0;
      padding: 0;
      background-color: #eee;
      overflow: hidden;
      background-position: center center;
      margin-left: 0%;
      
      
    }
    
    li.slide {
      margin: 0;
      padding: 0;
      width: inherit;
      height: inherit;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: Helvetica;
      font-size: 120px;
      color: #fff;
      transition: .5s transform ease-in-out;
      
      
    }
    
    .slide:nth-of-type(1) {
      width: 100%;
     background-color: rgb(255, 255, 255);
      background-image: url('images/index_moble/index_banner1.jpg');
      background-repeat: no-repeat;
    }
    
    .slide:nth-of-type(2) {
      /*background-color: rgb(255, 255, 255);*/
      left: 100%;
      background-image: url('images/index_moble/index_banner2.jpg');
      background-repeat: no-repeat;
    }
    
    .slide:nth-of-type(3) {
    background-color: rgb(255, 255, 255);
      left: 200%;
      background-image: url('images/index_moble/index_banner3.jpg');
      background-repeat: no-repeat;
    }
    
    input[type="radio"] {
      position: relative;
      z-index: 100;
      display: none;
    }
    
    .controls-visible {
      position: absolute;
      width: 100%;
      bottom: 12px;
      text-align: center;
    }
    
    .controls-visible label {
      display: inline-block;
      width: 10px;
      height: 10px;
      background-color: #fff;
      border-radius: 50%;
      margin: 0 3px;
      border: 2px solid #fff;
      
    }
    
    .slides input[type="radio"]:nth-of-type(1):checked ~ .controls-visible label:nth-of-type(1) {
      background-color: rgb(0, 0, 0);
      
    }
    
    .slides input[type="radio"]:nth-of-type(2):checked ~ .controls-visible label:nth-of-type(2) {
      background-color: rgb(0, 0, 0);
    }
    
    .slides input[type="radio"]:nth-of-type(3):checked ~ .controls-visible label:nth-of-type(3) {
      background-color: rgb(0, 0, 0)3;
    }
    
    .slides input[type="radio"]:nth-of-type(1):checked ~ .slide {
      transform: translatex(0%);
    }
    
    .slides input[type="radio"]:nth-of-type(2):checked ~ .slide {
      transform: translatex(-100%);
    }
    
    .slides input[type="radio"]:nth-of-type(3):checked ~ .slide {
      transform: translatex(-200%);
    }
    
    
    /* Left/Right Button Classes Below */
    
    .navigator {
      position: absolute;
      top: 50%;
      transform: translatey(-50%);
      width: 100%;
      z-index: 100;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      box-sizing: border-box;
      display: none;
      
    }
    
    .navigator i {
      font-size: 32px;
      color: #333;
      
    }
    
    .slides input[type="radio"]:nth-of-type(1):checked ~ .navigator:nth-of-type(1) {
      display: flex;
    }
    
    .slides input[type="radio"]:nth-of-type(2):checked ~ .navigator:nth-of-type(2) {
      display: flex;
    }
    
    .slides input[type="radio"]:nth-of-type(3):checked ~ .navigator:nth-of-type(3) {
      display: flex;
    }
  
  





@media only screen and (min-width: 481px) {
/*body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }*/

  ul.slides {
    position: relative;
    width: 100%;
    height: 870px;/*調整高度*/
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #eee;
    overflow: hidden;
    background-position: center center;
    margin-left: 0%;
    
    
  }
  
  li.slide {
    margin: 0;
    padding: 0;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica;
    font-size: 120px;
    color: #fff;
    transition: .5s transform ease-in-out;
    
    
  }
  
  .slide:nth-of-type(1) {
    width: 100%;
   background-color: rgb(255, 255, 255);
    background-image: url('images/index_pc/index_banner1.jpg');
    background-repeat: no-repeat;
  }
  
  .slide:nth-of-type(2) {
    /*background-color: rgb(255, 255, 255);*/
    left: 100%;
    background-image: url('images/index_pc/index_banner2.jpg');
    background-repeat: no-repeat;
  }
  
  .slide:nth-of-type(3) {
  background-color: rgb(255, 255, 255);
    left: 200%;
    background-image: url('images/index_pc/index_banner3.jpg');
    background-repeat: no-repeat;
  }
  
  input[type="radio"] {
    position: relative;
    z-index: 100;
    display: none;
  }
  
  .controls-visible {
    position: absolute;
    width: 100%;
    bottom: 12px;
    text-align: center;
  }
  
  .controls-visible label {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 3px;
    border: 2px solid #fff;
    
  }
  
  .slides input[type="radio"]:nth-of-type(1):checked ~ .controls-visible label:nth-of-type(1) {
    background-color: rgb(0, 0, 0);
    
  }
  
  .slides input[type="radio"]:nth-of-type(2):checked ~ .controls-visible label:nth-of-type(2) {
    background-color: rgb(0, 0, 0);
  }
  
  .slides input[type="radio"]:nth-of-type(3):checked ~ .controls-visible label:nth-of-type(3) {
    background-color: rgb(0, 0, 0);
  }
  
  .slides input[type="radio"]:nth-of-type(1):checked ~ .slide {
    transform: translatex(0%);
  }
  
  .slides input[type="radio"]:nth-of-type(2):checked ~ .slide {
    transform: translatex(-100%);
  }
  
  .slides input[type="radio"]:nth-of-type(3):checked ~ .slide {
    transform: translatex(-200%);
  }
  
  
  /* Left/Right Button Classes Below */
  
  .navigator {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    width: 100%;
    z-index: 100;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    display: none;
    
  }
  
  .navigator i {
    font-size: 32px;
    color: #333;
    
  }
  
  .slides input[type="radio"]:nth-of-type(1):checked ~ .navigator:nth-of-type(1) {
    display: flex;
  }
  
  .slides input[type="radio"]:nth-of-type(2):checked ~ .navigator:nth-of-type(2) {
    display: flex;
  }
  
  .slides input[type="radio"]:nth-of-type(3):checked ~ .navigator:nth-of-type(3) {
    display: flex;
  }


}