﻿.rotation-container{
    width: 100%;
    height: 700px;  
    position: relative;
    overflow: hidden;
}
.rotation-container img{
    width: 100%;
    height: 100%;
	/* object-fit: fill; */
    /* object-fit: contain; */
    /* object-fit: scale-down; */
	/* height:auto;
	image-rendering: pixelated; */
}
.rotation-container ul{
    width: 10000px;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
}
.rotation-container li{
    /* width: 100%; */
    height: 100%;
    float: left;
}
/* .rotation-container ul li img{
    width: 100%;
    height: 100%;
} */
.btn{
    width: 60px;
    background: #fff;
    border-radius: 50%;
    height: 60px;
    position: absolute;
    color: #fff;
    opacity: 0;
    text-align: center;
    line-height: 60px;
    padding: 10px;
    top: 50%;
    cursor: pointer;
    transition: all .3s;
}
.btn img{
    width: 100%;
    height: 100%;
    /* transform: scaleY(1.7) */
}
.leftBtn{
	background: url(../img/btn.png);
	background-position: left;
    left: 10%;
}
.rightBtn{
	background: url(../img/btn.png);
	background-position: right;
    right: 10%;
}
.rotation-container:hover .btn{
    opacity: 0.8;
}
.page{
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
}
.page span{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C0C0C0;
    margin-right: 10px;
    cursor: pointer;
}
.page .active{
    background-color: #FF0000;
}