.hide{
    display: none;
}
.lf{
	float: left;
}
.lr{
	float: right;
}
.red, .red a,.red a h5, .red a p{
    color:#FF0000 !important;
}
a {
    text-decoration: none;
    color: inherit;
}
.mr2 {
	margin-right: 1rem;
}
.ml2 {
	margin-left: 1rem;
}

.main-group{
	box-sizing: border-box;
	width:100%;
	padding:8% 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.main-group .items-group{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 150px;
	box-sizing: border-box;
	animation: animate 15s linear infinite;
	animation-delay: calc(3s * var(--delay));
	position: absolute;
	opacity: 0;
}
.main-group .items-group:last-child{
	animation-delay: calc(-3s * var(--delay));
}
.main-group .items-group.no-animation{
	animation-play-state: paused;
}
@keyframes animate {
	0%{
		opacity: 0;
		transform: translateY(100%) scale(0.5);
	}
	5%, 20%{
		opacity: 0.4;
		transform: translateY(100%) scale(0.7);
	}
	25%, 40%{
		opacity: 1;
		z-index: 1;
		pointer-events: auto;
		transform: translateY(0%) scale(1);
	}
	40%{
		font-weight: bold;
	}
	45%, 60%{
		opacity: 0.4;
		transform: translateY(-100%) scale(0.7);
		font-weight: normal;
	}
	65%,100%{
		opacity: 0;
		transform: translateY(-100%) scale(0.5);
	}
}
.main-group .items-group .items-box{
	display: flex;
	align-items: center;
	/* justify-content: center; */
}
.main-group .items-group .img{
	width: 90px;
	height: 90px;
	display: none;
}
.items-group .img img{
	width:100%;
	height:100%;
	border-radius: 50%;
	box-shadow: 0 0 10px #888888;
}
.main-group .items-group .desc{
	font-size: 60px;
	color: #fff;
}
.main-group .items-group .desc .name{
	font-size: 16px;
	font-weight: bold;
	display: none;
}
.main-group .items-group .follow-btn{
	border-radius: 16px;
	font-weight: bold;
	padding:5px 26px;
	color: #fff;
	background: linear-gradient(to bottom, #bea2e7 0%,#86b7e7 100% );
	display: none;
}
.main-group .items-group .del-follow{
	background: linear-gradient(to bottom, #1f1f1f 0%,#a8a8a8 100% );
}

@media screen and (max-width:1600px){
	.main-group .items-group .desc{ font-size: 50px;}
	.main-group .items-group{ height: 120px;}
}
@media screen and (max-width:1440px){
	.main-group .items-group .desc{ font-size: 40px;}
	.main-group .items-group{ height: 100px;}
}
@media screen and (max-width:991px){
	.main-group .items-group .desc{ font-size: 30px;}
	.main-group .items-group{ height: 70px;}
}
@media screen and (max-width:768px){
	.main-group .items-group .desc{ font-size: 24px;}
	.main-group .items-group{ height: 70px;}
}
@media screen and (max-width:500px){
	.main-group .items-group .desc{ font-size: 18px;}
	.main-group .items-group{ height: 50px;}
}
