.slide-holder{
margin:0 auto;
}
.slide-container { /*slide-container là khối bao mà slide-stage có thể "trượt" bên trong */
height: 100px;
width: 100%;
top: -15px;
overflow: hidden;
position:relative;
}
.slide-stage{
position: absolute;
}
.slide-image { /*Độ rộng của .slide-image có thể được thay đổi theo nhu cầu, ảnh hưởng đến độ rộng chung của slideshow*/
float:left;
width:180px;
height:100px;
text-align: center;
}
.slide-image img{
width:95%;
margin:0 auto;
}
.slide-pager{
position:relative;
}
.slide-control-prev {
position: absolute;
text-align: center;
width: 20px;
height: 30px;
background: #0957FF;
line-height: 30px;
color: #fff;
cursor: pointer;
top: 20px;
left: -20px;
}
.slide-control-next{
position: absolute;
text-align: center;
width: 20px;
height: 30px;
background: #0957FF;
line-height: 30px;
color: #fff;
cursor: pointer;
top: 20px;
right: -20px;
}