.site .content .top{
	min-height: 100px;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 90%);
}

.site .content .top .logoName{
	width: 460px;
	height: 100%;
	background-image: url(/imgs/logo-new_55.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	margin: 0px 15px 0px 15px;
}

.site .content .center{
	position: relative;
	text-align: center;
}

.site .content .center h1.title{
	padding: 10px 0px 10px 0px;
}

.site .content .center .concerts{
	position: absolute;
	top: 55px;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%, 0);
	overflow: auto;
	scrollbar-color: #a200c2 #e4e4e4;
	scrollbar-width: thin;
	width: 100%;
	max-width: 1100px;
	max-height: 100%;
}


.site .content .center .concerts::-webkit-scrollbar{
	width: 8px;
}

.site .content .center .concerts::-webkit-scrollbar-track{
	background-color: #e4e4e4;
}

.site .content .center .concerts::-webkit-scrollbar-thumb{
	background: #a200c2;
	box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

.site .content .center .concerts .item{
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: rgba(0,0,0,0.60);
	border-radius: 20px;
	margin: 15px 50px 15px 50px;
}

.site .content .center .concerts .item .text{
	text-align: left;
	font-size: 1.3em;
}

.site .content .center .concerts .item .text a{
	display: inline-block;
	white-space: nowrap;
	text-decoration: none;
	padding: 8px 10px 8px 10px;
	margin: 5px 10px 5px 10px;
	background: rgb(134,130,208);
	background: linear-gradient(0deg, rgba(134,130,208,1) 0%, rgba(9,9,121,1) 50%, rgba(0,212,255,1) 100%);
	font-size: 12px;
	color: #FFF;
	font-weight: bold;
	border-radius: 3px;
	text-shadow: 0px 0px 4px #000000, 0px 0px 8px #000000, 0px 0px 13px #000000;
}




@media screen and (max-width: 414px) {
	
	.site .content .center .concerts .item{
		margin: 10px 10px 10px 10px;
	}
	
	.site .content .center .concerts .item .text a{
		float: right;
		margin: 20px 10px 5px 10px;
	}
	
	.site .content .top{
		display: none;
	}
}