/*瀑布流*/
			#gallery-wrapper {
				position: relative;
				max-width: 100%;
				width: 100%;
			}
			
			img.thumb {
				width: 100%;
				max-width: 100%;
				height: auto;
			}
			
			.white-panel {
				position: absolute;
				background: url(../img/loading.gif) no-repeat center center;
				padding: 15px;
				cursor: pointer;
				color: transparent !important;
			}
			/*弹窗详情*/
			.listBox {
				display: flex;
				position: fixed;
				overflow: hidden;
				width: 100vw;
				height: 100vh;
				top: 0;
				bottom: 0;
				right: 0;
				left: 0;
				z-index: 999;
				background: rgba(0, 0, 0, .9);
				transform: scale(0);
				transition: all .3s;
			}
			
			.listBox .ulBox {
				width: 80%;
				margin: 0 auto;
				overflow: hidden;
				display: flex;
				z-index: 1;
			}
			
			.listBox .ulBox ul {
				display: flex;
				align-items: center;
				justify-content: center;
				position: relative;
			}
			
			.listBox .ulBox li {
				display: flex;
				justify-content: center;
				height: 100vh;
				position: relative;
			}
			
			.listBox .ulBox li>p:not(:nth-of-type(1)){
				display: none;
				width: 15%;
				color: #fff;
			}
			
			.listBox .ulBox li .photoText {
				text-align:center!important;
				width: 40%;
				display: inline-block;
				position: absolute;
				bottom: 1%;
				color: #fff;
			}
			
			.listBox .ulBox li img {
				max-width:100%;
				max-height: 75%;
				width: auto;
				display: block;
				overflow: hidden;
				position: absolute;
				left: 50%;
				top: 50%;
				transform: translate(-50%, -50%);
			}
			
			.listBox>a {
				display: block;
				width: 20px;
				height: 20px;
				border-bottom: 4px solid #fff;
				border-left: 4px solid #fff;
				position: fixed;
				top: 50%;
				cursor: pointer;
				z-index: 2;
			}
			
			.listBox .prev {
				margin-left: 50px;
				transform: rotate(45deg);
			}
			
			.listBox .next {
				right: 0;
				margin-right: 50px;
				transform: rotate(-135deg);
			}
			
			.listBox .close {
				width: 50px;
				height: 50px;
				font-size: 40px;
				color: #fff;
				position: fixed;
				top: 5%;
				right: 5%;
				cursor: pointer;
			}
			
			.listBox .nums {
				position: fixed;
				width: 80px;
				height: 40px;
				line-height: 40px;
				right: 10px;
				bottom: 5px;
				background: #000000;
				color: #fff;
				text-align: center;
				margin: 0;
			}
			
			.listBox .curr_num {
				color: #FFC107;
			}
			
			.listBox .alert {
				display: none;
				z-index: 8;
				width: 240px;
				height: 40px;
				line-height: 40px;
				position: fixed;
				top: 45%;
				left: 45%;
				background: rgba(0, 0, 0, .8);
				color: #fff;
				font-size: 20px;
				border-radius: 20px;
				text-align: center;
			}
			#listUl{
				padding-left:0px;
			}