 /*简单reset*/
        * {
            margin: 0;
            padding: 0;
        }
        /*必须，关系到单个page能否全屏显示*/
        html,
        body {
            height: 100%;
            overflow: hidden;
        }
        #container,
        .sections,
        .section {
            /*必须，兼容，在浏览器不支持transform属性时，通过改变top/left完成滑动动画*/
            position: relative;
            /*必须，关系到单个page能否全屏显示*/
            height: 100%;
			
        }
        .section {
            /*有背景图时必须，关系到背景图能够全屏显示*/
            background-color: #383838;
            background-size: cover;
            background-position: 50% 50%;
			overflow:hidden;
        }
        /*非必需，只是用来设置背景图，id不会被插件用到*/
        #section0 {
           /* background-image: url(img/img4.png);*/
        }
        #section1 {
           /* background-image: url(img/img4.png);*/
        }
        #section2 {
           /* background-image: url(img/img4.png);*/
        }
        #section3 {
            /* background-image: url(img/img4.png);*/
        }
		 #section4 {
           /* background-image: url(img/img4.png);*/
        }
        /*以下样式用来设置slider样式，可自行修改*/
        .pages {
            position:fixed;
            right: 10px;
            top: 50%;
            list-style: none;
        }
        .pages li {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            margin: 15px 0 0 3px;
        }
        .pages li.active {
            margin-left: 0;
            width: 14px;
            height: 14px;
            border: 4px solid #FFFFFF;
            background: none;
        }