
		body,div,ul,li,img{
			padding: 0;
			margin: 0; 
		}
		.img-scroll-content{
			position: relative;
			margin: 0 auto;
			overflow: hidden;
			font-size: 16px;
			/* 根节点字号 */
		}
		.img-scroll-ul{
			position: relative;
			left: 0;
		}
		.img-scroll-ul li{
			float: left;
			list-style: none;
			position: relative;
		}
		.img-scroll-ul img{
			cursor: pointer;
		}
		/*选图小圆点*/
		.img-scroll-tab{
			position: absolute;
			bottom: 30px;
			width: 100%;
			display: flex;
			justify-content: center;
			/* left: 45%; */
			/*right: 50px;*/
		}
		.img-scroll-tab a{
			display: inline-block;
			width: 40px;
			height: 6px;
			margin: 0 4px;
			/*border-radius: 50%;*/
			background-color: #fff;
			cursor: pointer;
		}
		/*.img-scroll-tab a:hover{*/
		/*	background-color: #fff;*/
		/*}*/
		.img-scroll-tab .current{
			background-color: #0EAD7D;
		}
		/*prev next*/
		.lun-btn{
			display: none;
			position: absolute;
			top: 30%;
			width: 50px;
			height: 140px;
		    /* top: 33%;
    		width: 3.8%;
    		height: 33%; */
			background-image: url("/https/security.360.cn/static/img/index/lun.png");
			background-repeat: no-repeat;
			color: rgba(0,0,0,0);
			cursor: pointer;
		}
		.prev-btn{
			background-position: 0 0;
			left: 0;
		}
		.prev-btn:hover{
			background-position: -153px 0;
		}
		.next-btn{
			background-position: -51px 0;
			right: 0;
		}
		.next-btn:hover{
			background-position: -102px 0;
		}
		/* 初始化样式 */
		.img-scroll-content{
			position: relative;
		}
		.img-scroll-content>div.img-content{
			position: absolute;
			top: 0;
			left: 0;
		}
		/* 每个滚动块内部样式 */
		.img-content img{
			width: 100%;
			height: 100%;
		}