body {
	font-family: Arial;
}

.cntl {
	position: relative;
	width: 1200px;
	margin: 40px auto;
	overflow: hidden;
}

.cntl-center {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.cntl-bar {
	position: absolute;
	width: 7px;
	top: 0;
	bottom: 0;
	background-color: #ccc;
	box-shadow: inset 0px 0px 7px -2px #000;
}

.cntl-bar-fill {
	background-color: #349bf8;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 0;
}

.cntl-state {
	position: relative;
	width: 100%;
	min-height: 200px;
	margin-bottom: 50px;
}

.cntl-state::after {
	display: block;
	content: ' ';
	clear: both;
}

.cntl-icon {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
}

.cntl-content {
	width: 40%;
	padding: 2%;
	background-color: rgba(238, 238, 238, 0.25);
	border-radius: 8px;
	border-bottom: solid 3px #349bf8;
	float: left;
	opacity: 0;
	margin-left: -40%;
}

.contact_words {
	width: 100%;
	line-height: 25px;
	height: 225px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 9;
	overflow: hidden;
	text-indent: 2em;
}

.cntl-content img {
	width: 100%;
	height: 200px;
	display: block;
	margin-bottom: 10px;
}

.contest_cg {
	width: 100%;
	margin-top: 10px;
}

.contest_title {
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
	color: #000;
}

.contest_two {
	height: 105px;
	display: block;
}

.contest_two li {
	width: 50%;
	line-height: 35px;
	float: left;
}

.contest_num {
	width: 100%;
	height: 35px;
	line-height: 35px;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #333;
}

.cntl-state:nth-child(2n+2) .cntl-content {
	float: right;
	margin-right: -40%;
}

.cntl-image {
	width: 40%;
	height: 320px;
	padding: 4% 2%;
	overflow: hidden;
}

.cntl-state:nth-child(2n+1) .cntl-image {
	float: right;
}

.cntl-image img {
	width: 100%;
	height: 320px;
	display: block;
}

.cntl-content h4 {
	font-size: 26px;
	font-weight: normal;
	margin-bottom: 10px;
}

.contest_more {
	display: inline-block;
	width: 90px;
	text-align: center;
	height: 26px;
	border: 1px solid #349BF8;
	border-radius: 15px;
	line-height: 26px;
	margin-top: 15px;
}


/*
animations
*/

.cntl-bar-fill,
.cntl-content,
.cntl-image {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
}

.cntl-state:nth-child(2n+2).cntl-animate .cntl-content {
	margin-right: 0%;
}

.cntl-animate .cntl-content {
	opacity: 1;
	margin-left: 0%;
}

.cntl-animate .cntl-image {
	margin-right: 0%;
}


/*.cntl-animate .cntl-image {
	opacity:1;
}*/


/* mobile support */

@media (max-width: 600px) {
	.cntl-bar {
		left: auto;
		right: 37px;
	}
	.cntl-content {
		width: 80%;
		float: none;
	}
	.cntl-state:nth-child(2n+2) .cntl-content {
		margi-right: 0%;
		float: none;
	}
	.cntl-image {
		width: 80%;
	}
	.cntl-state:nth-child(2n+1) .cntl-image {
		float: none;
	}
	.animate .cntl-content {
		margin-left: 2%;
	}
	.cntl-icon {
		left: auto;
		right: 0;
	}
}