@charset "utf-8";
/* CSS Document */
  
.img1{
    width:100%;
    height:100%;
    border-radius:0%;
    }
     
.slider{
    position:relative;
    /*设置高度和宽度为了单选框能够上去*/
    width:800px;
    height:800px;
  
    margin:0px auto;
    padding:0px;
    border-radius:0%;
    top:0px;}
  
/*左箭头*/
.prev{
    position:absolute;
    top:270px;
    left:5px;
    width:70px;
    opacity:0.30;
    }
.prev:hover{
    transform:scale(1.1);
    opacity:1.0;}
  
/*右箭头*/    
.next{
    position:absolute;
    top:270px;
    right:5px;
    width:70px;
    opacity:0.30;}
.next:hover{
    transform:scale(1.1);
    opacity:1;
     }
  
.rdodiv{
    position:absolute;
    bottom:10px;
    z-index:999;
    left:220px;}
.rdodiv input{
    transform: scale(1.8);
    width:30px;}
.rdodiv input:hover{
    transform: scale(2.5);
    }