/*简单reset*/
* {
    margin: 0;
    padding: 0;
}
/*必须，关系到单个page能否全屏显示*/
html,
body {
    height: 100%;
    overflow: hidden;
}
#container,
.sections,
.section {
    /*必须，兼容，在浏览器不支持transform属性时，通过改变top/left完成滑动动画*/
    position: relative;
    /*必须，关系到单个page能否全屏显示*/
    height: 100%;
}
/*以下样式用来设置slider样式，可自行修改*/
.pages {
    position:fixed;
    right: 10px;
    top: 50%;
    list-style: none;
}
.pages li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d78686;
    margin: 15px 0 0 7px;
}
.pages li.active {
    margin-left: 0;
    width: 14px;
    height: 14px;
    border: 4px solid #f3d397;
    background: none;
}
