
.about-container{
	width: 100%;
	padding: 80px 0 100px;
	background: #fff;
}

.about-wrapper{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}

.model-wrapper{
	margin-top: 50px;
}

.model-wrapper a{
	font-size: 26px;
	margin-left: 64px;
	display: inline-block;
}

.model-wrapper a::after{
	content: ' ';
	width: 100%;
	height: 2px;
	background: #191919;
	display: block;
	margin-top: 10px;
}

.model-wrapper a:hover{
	color: #0387d9;
}
.model-wrapper a:hover::after{
	background: #0387d9;
}

.qr-wrapper{
	margin: 50px 0;
}

.info-wrapper{
	width: 675px;
	margin: 0 auto;
	text-align: left;
	font-size: 24px;
	line-height: 60px;
}



.about-left{
	width: 270px;
	float: left;
	margin-right: -100%
}

.about-left img{
	margin-bottom: 20px;
}

.about-right{
	width: 100%;
}
.about-right-content{
	margin-left: 270px;
	padding-left: 40px;
	text-align: left;
	font-size: 20px;
    color: #999;
    line-height: 30px;
}

.about-right-content p{
	margin-bottom: 30px;
}


.event-ul{
	margin-top: 50px;
}

.event-ul li{
	height: 160px;
	line-height: 160px;
	position: relative;
}

.event-ul .time, .event-ul .title{
	width: 50%;
	box-sizing: border-box;
	float: left;
}

.event-ul li div:nth-child(1){
	text-align: right;
	padding-right: 45px;
}

.event-ul li div:nth-child(3){
	text-align: left;
	padding-left: 45px;
}

.event-ul .time{
	color: #0387d9;
	font-size: 24px;
}

.event-ul .title{
	color: #999;
	font-size: 22px;
	text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
}

.event-ul .dot::before{
	content: ' ';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #99cdff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -9px;

}

.event-ul li::before{
	content: ' ';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #99cdff;
	left: 50%;
}

.event-ul li.active .title span{
	display: inline-block;
	color: #fff;
	background-color: #0387d9;
	padding: 20px 40px;
	box-shadow: 1px 1px 10px #0387d9;
	line-height: 32px;
	border-radius: 5px;
}

.event-ul li.active .dot::before{
	background-color: #0387d9;
	animation: dotActive .7s linear .5s infinite;
    -webkit-animation: dotActive .7s linear .5s infinite;
}

@keyframes dotActive {
	0% {
		width: 20px;
		height: 20px;
		margin-top: -10px;
		margin-left: -9px;
	}

	50% {
		width: 25px;
		height: 25px;
		margin-top: -12.5px;
		margin-left: -11.5px;
	}

	100% { 
		width: 30px;
		height: 30px;
		margin-top: -15px;
		margin-left: -14px;
	}
}

@-webkit-keyframes dotActive {
	0% {
		width: 20px;
		height: 20px;
		margin-top: -10px;
		margin-left: -9px;
	}

	50% {
		width: 25px;
		height: 25px;
		margin-top: -12.5px;
		margin-left: -11.5px;
	}

	100% { 
		width: 30px;
		height: 30px;
		margin-top: -15px;
		margin-left: -14px;
	}
}

